]> git.karo-electronics.de Git - karo-tx-linux.git/blob - sound/pci/hda/patch_realtek.c
[ALSA] hda-codec - Add SPDIF support on ALC880 fujitsu model
[karo-tx-linux.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_SONY_ASSAMD,
97         ALC262_BENQ_T31,
98         ALC262_AUTO,
99         ALC262_MODEL_LAST /* last tag */
100 };
101
102 /* ALC268 models */
103 enum {
104         ALC268_3ST,
105         ALC268_TOSHIBA,
106         ALC268_ACER,
107         ALC268_AUTO,
108         ALC268_MODEL_LAST /* last tag */
109 };
110
111 /* ALC861 models */
112 enum {
113         ALC861_3ST,
114         ALC660_3ST,
115         ALC861_3ST_DIG,
116         ALC861_6ST_DIG,
117         ALC861_UNIWILL_M31,
118         ALC861_TOSHIBA,
119         ALC861_ASUS,
120         ALC861_ASUS_LAPTOP,
121         ALC861_AUTO,
122         ALC861_MODEL_LAST,
123 };
124
125 /* ALC861-VD models */
126 enum {
127         ALC660VD_3ST,
128         ALC660VD_3ST_DIG,
129         ALC861VD_3ST,
130         ALC861VD_3ST_DIG,
131         ALC861VD_6ST_DIG,
132         ALC861VD_LENOVO,
133         ALC861VD_DALLAS,
134         ALC861VD_HP,
135         ALC861VD_AUTO,
136         ALC861VD_MODEL_LAST,
137 };
138
139 /* ALC662 models */
140 enum {
141         ALC662_3ST_2ch_DIG,
142         ALC662_3ST_6ch_DIG,
143         ALC662_3ST_6ch,
144         ALC662_5ST_DIG,
145         ALC662_LENOVO_101E,
146         ALC662_AUTO,
147         ALC662_MODEL_LAST,
148 };
149
150 /* ALC882 models */
151 enum {
152         ALC882_3ST_DIG,
153         ALC882_6ST_DIG,
154         ALC882_ARIMA,
155         ALC882_W2JC,
156         ALC882_TARGA,
157         ALC882_ASUS_A7J,
158         ALC885_MACPRO,
159         ALC885_MBP3,
160         ALC885_IMAC24,
161         ALC882_AUTO,
162         ALC882_MODEL_LAST,
163 };
164
165 /* ALC883 models */
166 enum {
167         ALC883_3ST_2ch_DIG,
168         ALC883_3ST_6ch_DIG,
169         ALC883_3ST_6ch,
170         ALC883_6ST_DIG,
171         ALC883_TARGA_DIG,
172         ALC883_TARGA_2ch_DIG,
173         ALC883_ACER,
174         ALC883_ACER_ASPIRE,
175         ALC883_MEDION,
176         ALC883_MEDION_MD2,      
177         ALC883_LAPTOP_EAPD,
178         ALC883_LENOVO_101E_2ch,
179         ALC883_LENOVO_NB0763,
180         ALC888_LENOVO_MS7195_DIG,
181         ALC883_HAIER_W66,               
182         ALC888_6ST_HP,
183         ALC888_3ST_HP,
184         ALC883_AUTO,
185         ALC883_MODEL_LAST,
186 };
187
188 /* for GPIO Poll */
189 #define GPIO_MASK       0x03
190
191 struct alc_spec {
192         /* codec parameterization */
193         struct snd_kcontrol_new *mixers[5];     /* mixer arrays */
194         unsigned int num_mixers;
195
196         const struct hda_verb *init_verbs[5];   /* initialization verbs
197                                                  * don't forget NULL
198                                                  * termination!
199                                                  */
200         unsigned int num_init_verbs;
201
202         char *stream_name_analog;       /* analog PCM stream */
203         struct hda_pcm_stream *stream_analog_playback;
204         struct hda_pcm_stream *stream_analog_capture;
205
206         char *stream_name_digital;      /* digital PCM stream */
207         struct hda_pcm_stream *stream_digital_playback;
208         struct hda_pcm_stream *stream_digital_capture;
209
210         /* playback */
211         struct hda_multi_out multiout;  /* playback set-up
212                                          * max_channels, dacs must be set
213                                          * dig_out_nid and hp_nid are optional
214                                          */
215
216         /* capture */
217         unsigned int num_adc_nids;
218         hda_nid_t *adc_nids;
219         hda_nid_t dig_in_nid;           /* digital-in NID; optional */
220
221         /* capture source */
222         unsigned int num_mux_defs;
223         const struct hda_input_mux *input_mux;
224         unsigned int cur_mux[3];
225
226         /* channel model */
227         const struct hda_channel_mode *channel_mode;
228         int num_channel_mode;
229         int need_dac_fix;
230
231         /* PCM information */
232         struct hda_pcm pcm_rec[3];      /* used in alc_build_pcms() */
233
234         /* dynamic controls, init_verbs and input_mux */
235         struct auto_pin_cfg autocfg;
236         unsigned int num_kctl_alloc, num_kctl_used;
237         struct snd_kcontrol_new *kctl_alloc;
238         struct hda_input_mux private_imux;
239         hda_nid_t private_dac_nids[5];
240
241         /* hooks */
242         void (*init_hook)(struct hda_codec *codec);
243         void (*unsol_event)(struct hda_codec *codec, unsigned int res);
244
245         /* for pin sensing */
246         unsigned int sense_updated: 1;
247         unsigned int jack_present: 1;
248
249 #ifdef CONFIG_SND_HDA_POWER_SAVE
250         struct hda_loopback_check loopback;
251 #endif
252 };
253
254 /*
255  * configuration template - to be copied to the spec instance
256  */
257 struct alc_config_preset {
258         struct snd_kcontrol_new *mixers[5]; /* should be identical size
259                                              * with spec
260                                              */
261         const struct hda_verb *init_verbs[5];
262         unsigned int num_dacs;
263         hda_nid_t *dac_nids;
264         hda_nid_t dig_out_nid;          /* optional */
265         hda_nid_t hp_nid;               /* optional */
266         unsigned int num_adc_nids;
267         hda_nid_t *adc_nids;
268         hda_nid_t dig_in_nid;
269         unsigned int num_channel_mode;
270         const struct hda_channel_mode *channel_mode;
271         int need_dac_fix;
272         unsigned int num_mux_defs;
273         const struct hda_input_mux *input_mux;
274         void (*unsol_event)(struct hda_codec *, unsigned int);
275         void (*init_hook)(struct hda_codec *);
276 #ifdef CONFIG_SND_HDA_POWER_SAVE
277         struct hda_amp_list *loopbacks;
278 #endif
279 };
280
281
282 /*
283  * input MUX handling
284  */
285 static int alc_mux_enum_info(struct snd_kcontrol *kcontrol,
286                              struct snd_ctl_elem_info *uinfo)
287 {
288         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
289         struct alc_spec *spec = codec->spec;
290         unsigned int mux_idx = snd_ctl_get_ioffidx(kcontrol, &uinfo->id);
291         if (mux_idx >= spec->num_mux_defs)
292                 mux_idx = 0;
293         return snd_hda_input_mux_info(&spec->input_mux[mux_idx], uinfo);
294 }
295
296 static int alc_mux_enum_get(struct snd_kcontrol *kcontrol,
297                             struct snd_ctl_elem_value *ucontrol)
298 {
299         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
300         struct alc_spec *spec = codec->spec;
301         unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
302
303         ucontrol->value.enumerated.item[0] = spec->cur_mux[adc_idx];
304         return 0;
305 }
306
307 static int alc_mux_enum_put(struct snd_kcontrol *kcontrol,
308                             struct snd_ctl_elem_value *ucontrol)
309 {
310         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
311         struct alc_spec *spec = codec->spec;
312         unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
313         unsigned int mux_idx = adc_idx >= spec->num_mux_defs ? 0 : adc_idx;
314         return snd_hda_input_mux_put(codec, &spec->input_mux[mux_idx], ucontrol,
315                                      spec->adc_nids[adc_idx],
316                                      &spec->cur_mux[adc_idx]);
317 }
318
319
320 /*
321  * channel mode setting
322  */
323 static int alc_ch_mode_info(struct snd_kcontrol *kcontrol,
324                             struct snd_ctl_elem_info *uinfo)
325 {
326         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
327         struct alc_spec *spec = codec->spec;
328         return snd_hda_ch_mode_info(codec, uinfo, spec->channel_mode,
329                                     spec->num_channel_mode);
330 }
331
332 static int alc_ch_mode_get(struct snd_kcontrol *kcontrol,
333                            struct snd_ctl_elem_value *ucontrol)
334 {
335         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
336         struct alc_spec *spec = codec->spec;
337         return snd_hda_ch_mode_get(codec, ucontrol, spec->channel_mode,
338                                    spec->num_channel_mode,
339                                    spec->multiout.max_channels);
340 }
341
342 static int alc_ch_mode_put(struct snd_kcontrol *kcontrol,
343                            struct snd_ctl_elem_value *ucontrol)
344 {
345         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
346         struct alc_spec *spec = codec->spec;
347         int err = snd_hda_ch_mode_put(codec, ucontrol, spec->channel_mode,
348                                       spec->num_channel_mode,
349                                       &spec->multiout.max_channels);
350         if (err >= 0 && spec->need_dac_fix)
351                 spec->multiout.num_dacs = spec->multiout.max_channels / 2;
352         return err;
353 }
354
355 /*
356  * Control the mode of pin widget settings via the mixer.  "pc" is used
357  * instead of "%" to avoid consequences of accidently treating the % as 
358  * being part of a format specifier.  Maximum allowed length of a value is
359  * 63 characters plus NULL terminator.
360  *
361  * Note: some retasking pin complexes seem to ignore requests for input
362  * states other than HiZ (eg: PIN_VREFxx) and revert to HiZ if any of these
363  * are requested.  Therefore order this list so that this behaviour will not
364  * cause problems when mixer clients move through the enum sequentially.
365  * NIDs 0x0f and 0x10 have been observed to have this behaviour as of
366  * March 2006.
367  */
368 static char *alc_pin_mode_names[] = {
369         "Mic 50pc bias", "Mic 80pc bias",
370         "Line in", "Line out", "Headphone out",
371 };
372 static unsigned char alc_pin_mode_values[] = {
373         PIN_VREF50, PIN_VREF80, PIN_IN, PIN_OUT, PIN_HP,
374 };
375 /* The control can present all 5 options, or it can limit the options based
376  * in the pin being assumed to be exclusively an input or an output pin.  In
377  * addition, "input" pins may or may not process the mic bias option
378  * depending on actual widget capability (NIDs 0x0f and 0x10 don't seem to
379  * accept requests for bias as of chip versions up to March 2006) and/or
380  * wiring in the computer.
381  */
382 #define ALC_PIN_DIR_IN              0x00
383 #define ALC_PIN_DIR_OUT             0x01
384 #define ALC_PIN_DIR_INOUT           0x02
385 #define ALC_PIN_DIR_IN_NOMICBIAS    0x03
386 #define ALC_PIN_DIR_INOUT_NOMICBIAS 0x04
387
388 /* Info about the pin modes supported by the different pin direction modes. 
389  * For each direction the minimum and maximum values are given.
390  */
391 static signed char alc_pin_mode_dir_info[5][2] = {
392         { 0, 2 },    /* ALC_PIN_DIR_IN */
393         { 3, 4 },    /* ALC_PIN_DIR_OUT */
394         { 0, 4 },    /* ALC_PIN_DIR_INOUT */
395         { 2, 2 },    /* ALC_PIN_DIR_IN_NOMICBIAS */
396         { 2, 4 },    /* ALC_PIN_DIR_INOUT_NOMICBIAS */
397 };
398 #define alc_pin_mode_min(_dir) (alc_pin_mode_dir_info[_dir][0])
399 #define alc_pin_mode_max(_dir) (alc_pin_mode_dir_info[_dir][1])
400 #define alc_pin_mode_n_items(_dir) \
401         (alc_pin_mode_max(_dir)-alc_pin_mode_min(_dir)+1)
402
403 static int alc_pin_mode_info(struct snd_kcontrol *kcontrol,
404                              struct snd_ctl_elem_info *uinfo)
405 {
406         unsigned int item_num = uinfo->value.enumerated.item;
407         unsigned char dir = (kcontrol->private_value >> 16) & 0xff;
408
409         uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
410         uinfo->count = 1;
411         uinfo->value.enumerated.items = alc_pin_mode_n_items(dir);
412
413         if (item_num<alc_pin_mode_min(dir) || item_num>alc_pin_mode_max(dir))
414                 item_num = alc_pin_mode_min(dir);
415         strcpy(uinfo->value.enumerated.name, alc_pin_mode_names[item_num]);
416         return 0;
417 }
418
419 static int alc_pin_mode_get(struct snd_kcontrol *kcontrol,
420                             struct snd_ctl_elem_value *ucontrol)
421 {
422         unsigned int i;
423         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
424         hda_nid_t nid = kcontrol->private_value & 0xffff;
425         unsigned char dir = (kcontrol->private_value >> 16) & 0xff;
426         long *valp = ucontrol->value.integer.value;
427         unsigned int pinctl = snd_hda_codec_read(codec, nid, 0,
428                                                  AC_VERB_GET_PIN_WIDGET_CONTROL,
429                                                  0x00);
430
431         /* Find enumerated value for current pinctl setting */
432         i = alc_pin_mode_min(dir);
433         while (alc_pin_mode_values[i] != pinctl && i <= alc_pin_mode_max(dir))
434                 i++;
435         *valp = i <= alc_pin_mode_max(dir) ? i: alc_pin_mode_min(dir);
436         return 0;
437 }
438
439 static int alc_pin_mode_put(struct snd_kcontrol *kcontrol,
440                             struct snd_ctl_elem_value *ucontrol)
441 {
442         signed int change;
443         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
444         hda_nid_t nid = kcontrol->private_value & 0xffff;
445         unsigned char dir = (kcontrol->private_value >> 16) & 0xff;
446         long val = *ucontrol->value.integer.value;
447         unsigned int pinctl = snd_hda_codec_read(codec, nid, 0,
448                                                  AC_VERB_GET_PIN_WIDGET_CONTROL,
449                                                  0x00);
450
451         if (val < alc_pin_mode_min(dir) || val > alc_pin_mode_max(dir))
452                 val = alc_pin_mode_min(dir);
453
454         change = pinctl != alc_pin_mode_values[val];
455         if (change) {
456                 /* Set pin mode to that requested */
457                 snd_hda_codec_write_cache(codec, nid, 0,
458                                           AC_VERB_SET_PIN_WIDGET_CONTROL,
459                                           alc_pin_mode_values[val]);
460
461                 /* Also enable the retasking pin's input/output as required 
462                  * for the requested pin mode.  Enum values of 2 or less are
463                  * input modes.
464                  *
465                  * Dynamically switching the input/output buffers probably
466                  * reduces noise slightly (particularly on input) so we'll
467                  * do it.  However, having both input and output buffers
468                  * enabled simultaneously doesn't seem to be problematic if
469                  * this turns out to be necessary in the future.
470                  */
471                 if (val <= 2) {
472                         snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
473                                                  HDA_AMP_MUTE, HDA_AMP_MUTE);
474                         snd_hda_codec_amp_stereo(codec, nid, HDA_INPUT, 0,
475                                                  HDA_AMP_MUTE, 0);
476                 } else {
477                         snd_hda_codec_amp_stereo(codec, nid, HDA_INPUT, 0,
478                                                  HDA_AMP_MUTE, HDA_AMP_MUTE);
479                         snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
480                                                  HDA_AMP_MUTE, 0);
481                 }
482         }
483         return change;
484 }
485
486 #define ALC_PIN_MODE(xname, nid, dir) \
487         { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0,  \
488           .info = alc_pin_mode_info, \
489           .get = alc_pin_mode_get, \
490           .put = alc_pin_mode_put, \
491           .private_value = nid | (dir<<16) }
492
493 /* A switch control for ALC260 GPIO pins.  Multiple GPIOs can be ganged
494  * together using a mask with more than one bit set.  This control is
495  * currently used only by the ALC260 test model.  At this stage they are not
496  * needed for any "production" models.
497  */
498 #ifdef CONFIG_SND_DEBUG
499 #define alc_gpio_data_info      snd_ctl_boolean_mono_info
500
501 static int alc_gpio_data_get(struct snd_kcontrol *kcontrol,
502                              struct snd_ctl_elem_value *ucontrol)
503 {
504         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
505         hda_nid_t nid = kcontrol->private_value & 0xffff;
506         unsigned char mask = (kcontrol->private_value >> 16) & 0xff;
507         long *valp = ucontrol->value.integer.value;
508         unsigned int val = snd_hda_codec_read(codec, nid, 0,
509                                               AC_VERB_GET_GPIO_DATA, 0x00);
510
511         *valp = (val & mask) != 0;
512         return 0;
513 }
514 static int alc_gpio_data_put(struct snd_kcontrol *kcontrol,
515                              struct snd_ctl_elem_value *ucontrol)
516 {
517         signed int change;
518         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
519         hda_nid_t nid = kcontrol->private_value & 0xffff;
520         unsigned char mask = (kcontrol->private_value >> 16) & 0xff;
521         long val = *ucontrol->value.integer.value;
522         unsigned int gpio_data = snd_hda_codec_read(codec, nid, 0,
523                                                     AC_VERB_GET_GPIO_DATA,
524                                                     0x00);
525
526         /* Set/unset the masked GPIO bit(s) as needed */
527         change = (val == 0 ? 0 : mask) != (gpio_data & mask);
528         if (val == 0)
529                 gpio_data &= ~mask;
530         else
531                 gpio_data |= mask;
532         snd_hda_codec_write_cache(codec, nid, 0,
533                                   AC_VERB_SET_GPIO_DATA, gpio_data);
534
535         return change;
536 }
537 #define ALC_GPIO_DATA_SWITCH(xname, nid, mask) \
538         { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0,  \
539           .info = alc_gpio_data_info, \
540           .get = alc_gpio_data_get, \
541           .put = alc_gpio_data_put, \
542           .private_value = nid | (mask<<16) }
543 #endif   /* CONFIG_SND_DEBUG */
544
545 /* A switch control to allow the enabling of the digital IO pins on the
546  * ALC260.  This is incredibly simplistic; the intention of this control is
547  * to provide something in the test model allowing digital outputs to be
548  * identified if present.  If models are found which can utilise these
549  * outputs a more complete mixer control can be devised for those models if
550  * necessary.
551  */
552 #ifdef CONFIG_SND_DEBUG
553 #define alc_spdif_ctrl_info     snd_ctl_boolean_mono_info
554
555 static int alc_spdif_ctrl_get(struct snd_kcontrol *kcontrol,
556                               struct snd_ctl_elem_value *ucontrol)
557 {
558         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
559         hda_nid_t nid = kcontrol->private_value & 0xffff;
560         unsigned char mask = (kcontrol->private_value >> 16) & 0xff;
561         long *valp = ucontrol->value.integer.value;
562         unsigned int val = snd_hda_codec_read(codec, nid, 0,
563                                               AC_VERB_GET_DIGI_CONVERT, 0x00);
564
565         *valp = (val & mask) != 0;
566         return 0;
567 }
568 static int alc_spdif_ctrl_put(struct snd_kcontrol *kcontrol,
569                               struct snd_ctl_elem_value *ucontrol)
570 {
571         signed int change;
572         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
573         hda_nid_t nid = kcontrol->private_value & 0xffff;
574         unsigned char mask = (kcontrol->private_value >> 16) & 0xff;
575         long val = *ucontrol->value.integer.value;
576         unsigned int ctrl_data = snd_hda_codec_read(codec, nid, 0,
577                                                     AC_VERB_GET_DIGI_CONVERT,
578                                                     0x00);
579
580         /* Set/unset the masked control bit(s) as needed */
581         change = (val == 0 ? 0 : mask) != (ctrl_data & mask);
582         if (val==0)
583                 ctrl_data &= ~mask;
584         else
585                 ctrl_data |= mask;
586         snd_hda_codec_write_cache(codec, nid, 0, AC_VERB_SET_DIGI_CONVERT_1,
587                                   ctrl_data);
588
589         return change;
590 }
591 #define ALC_SPDIF_CTRL_SWITCH(xname, nid, mask) \
592         { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0,  \
593           .info = alc_spdif_ctrl_info, \
594           .get = alc_spdif_ctrl_get, \
595           .put = alc_spdif_ctrl_put, \
596           .private_value = nid | (mask<<16) }
597 #endif   /* CONFIG_SND_DEBUG */
598
599 /*
600  * set up from the preset table
601  */
602 static void setup_preset(struct alc_spec *spec,
603                          const struct alc_config_preset *preset)
604 {
605         int i;
606
607         for (i = 0; i < ARRAY_SIZE(preset->mixers) && preset->mixers[i]; i++)
608                 spec->mixers[spec->num_mixers++] = preset->mixers[i];
609         for (i = 0; i < ARRAY_SIZE(preset->init_verbs) && preset->init_verbs[i];
610              i++)
611                 spec->init_verbs[spec->num_init_verbs++] =
612                         preset->init_verbs[i];
613         
614         spec->channel_mode = preset->channel_mode;
615         spec->num_channel_mode = preset->num_channel_mode;
616         spec->need_dac_fix = preset->need_dac_fix;
617
618         spec->multiout.max_channels = spec->channel_mode[0].channels;
619
620         spec->multiout.num_dacs = preset->num_dacs;
621         spec->multiout.dac_nids = preset->dac_nids;
622         spec->multiout.dig_out_nid = preset->dig_out_nid;
623         spec->multiout.hp_nid = preset->hp_nid;
624         
625         spec->num_mux_defs = preset->num_mux_defs;
626         if (!spec->num_mux_defs)
627                 spec->num_mux_defs = 1;
628         spec->input_mux = preset->input_mux;
629
630         spec->num_adc_nids = preset->num_adc_nids;
631         spec->adc_nids = preset->adc_nids;
632         spec->dig_in_nid = preset->dig_in_nid;
633
634         spec->unsol_event = preset->unsol_event;
635         spec->init_hook = preset->init_hook;
636 #ifdef CONFIG_SND_HDA_POWER_SAVE
637         spec->loopback.amplist = preset->loopbacks;
638 #endif
639 }
640
641 /* Enable GPIO mask and set output */
642 static struct hda_verb alc_gpio1_init_verbs[] = {
643         {0x01, AC_VERB_SET_GPIO_MASK, 0x01},
644         {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
645         {0x01, AC_VERB_SET_GPIO_DATA, 0x01},
646         { }
647 };
648
649 static struct hda_verb alc_gpio2_init_verbs[] = {
650         {0x01, AC_VERB_SET_GPIO_MASK, 0x02},
651         {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x02},
652         {0x01, AC_VERB_SET_GPIO_DATA, 0x02},
653         { }
654 };
655
656 static struct hda_verb alc_gpio3_init_verbs[] = {
657         {0x01, AC_VERB_SET_GPIO_MASK, 0x03},
658         {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x03},
659         {0x01, AC_VERB_SET_GPIO_DATA, 0x03},
660         { }
661 };
662
663 /* 32-bit subsystem ID for BIOS loading in HD Audio codec.
664  *      31 ~ 16 :       Manufacture ID
665  *      15 ~ 8  :       SKU ID
666  *      7  ~ 0  :       Assembly ID
667  *      port-A --> pin 39/41, port-E --> pin 14/15, port-D --> pin 35/36
668  */
669 static void alc_subsystem_id(struct hda_codec *codec,
670                              unsigned int porta, unsigned int porte,
671                              unsigned int portd)
672 {
673         unsigned int ass, tmp;
674
675         ass = codec->subsystem_id;
676         if (!(ass & 1))
677                 return;
678
679         /* Override */
680         tmp = (ass & 0x38) >> 3;        /* external Amp control */
681         switch (tmp) {
682         case 1:
683                 snd_hda_sequence_write(codec, alc_gpio1_init_verbs);
684                 break;
685         case 3:
686                 snd_hda_sequence_write(codec, alc_gpio2_init_verbs);
687                 break;
688         case 7:
689                 snd_hda_sequence_write(codec, alc_gpio3_init_verbs);
690                 break;
691         case 5:
692                 switch (codec->vendor_id) {
693                 case 0x10ec0862:
694                 case 0x10ec0660:
695                 case 0x10ec0662:        
696                 case 0x10ec0267:
697                 case 0x10ec0268:
698                         snd_hda_codec_write(codec, 0x14, 0,
699                                             AC_VERB_SET_EAPD_BTLENABLE, 2);
700                         snd_hda_codec_write(codec, 0x15, 0,
701                                             AC_VERB_SET_EAPD_BTLENABLE, 2);
702                         return;
703                 }
704         case 6:
705                 if (ass & 4) {  /* bit 2 : 0 = Desktop, 1 = Laptop */
706                         hda_nid_t port = 0;
707                         tmp = (ass & 0x1800) >> 11;
708                         switch (tmp) {
709                         case 0: port = porta; break;
710                         case 1: port = porte; break;
711                         case 2: port = portd; break;
712                         }
713                         if (port)
714                                 snd_hda_codec_write(codec, port, 0,
715                                                     AC_VERB_SET_EAPD_BTLENABLE,
716                                                     2);
717                 }
718                 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_COEF_INDEX, 7);
719                 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_PROC_COEF,
720                                     (tmp == 5 ? 0x3040 : 0x3050));
721                 break;
722         }
723 }
724
725 /*
726  * Fix-up pin default configurations
727  */
728
729 struct alc_pincfg {
730         hda_nid_t nid;
731         u32 val;
732 };
733
734 static void alc_fix_pincfg(struct hda_codec *codec,
735                            const struct snd_pci_quirk *quirk,
736                            const struct alc_pincfg **pinfix)
737 {
738         const struct alc_pincfg *cfg;
739
740         quirk = snd_pci_quirk_lookup(codec->bus->pci, quirk);
741         if (!quirk)
742                 return;
743
744         cfg = pinfix[quirk->value];
745         for (; cfg->nid; cfg++) {
746                 int i;
747                 u32 val = cfg->val;
748                 for (i = 0; i < 4; i++) {
749                         snd_hda_codec_write(codec, cfg->nid, 0,
750                                     AC_VERB_SET_CONFIG_DEFAULT_BYTES_0 + i,
751                                     val & 0xff);
752                         val >>= 8;
753                 }
754         }
755 }
756
757 /*
758  * ALC880 3-stack model
759  *
760  * DAC: Front = 0x02 (0x0c), Surr = 0x05 (0x0f), CLFE = 0x04 (0x0e)
761  * Pin assignment: Front = 0x14, Line-In/Surr = 0x1a, Mic/CLFE = 0x18,
762  *                 F-Mic = 0x1b, HP = 0x19
763  */
764
765 static hda_nid_t alc880_dac_nids[4] = {
766         /* front, rear, clfe, rear_surr */
767         0x02, 0x05, 0x04, 0x03
768 };
769
770 static hda_nid_t alc880_adc_nids[3] = {
771         /* ADC0-2 */
772         0x07, 0x08, 0x09,
773 };
774
775 /* The datasheet says the node 0x07 is connected from inputs,
776  * but it shows zero connection in the real implementation on some devices.
777  * Note: this is a 915GAV bug, fixed on 915GLV
778  */
779 static hda_nid_t alc880_adc_nids_alt[2] = {
780         /* ADC1-2 */
781         0x08, 0x09,
782 };
783
784 #define ALC880_DIGOUT_NID       0x06
785 #define ALC880_DIGIN_NID        0x0a
786
787 static struct hda_input_mux alc880_capture_source = {
788         .num_items = 4,
789         .items = {
790                 { "Mic", 0x0 },
791                 { "Front Mic", 0x3 },
792                 { "Line", 0x2 },
793                 { "CD", 0x4 },
794         },
795 };
796
797 /* channel source setting (2/6 channel selection for 3-stack) */
798 /* 2ch mode */
799 static struct hda_verb alc880_threestack_ch2_init[] = {
800         /* set line-in to input, mute it */
801         { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
802         { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
803         /* set mic-in to input vref 80%, mute it */
804         { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
805         { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
806         { } /* end */
807 };
808
809 /* 6ch mode */
810 static struct hda_verb alc880_threestack_ch6_init[] = {
811         /* set line-in to output, unmute it */
812         { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
813         { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
814         /* set mic-in to output, unmute it */
815         { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
816         { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
817         { } /* end */
818 };
819
820 static struct hda_channel_mode alc880_threestack_modes[2] = {
821         { 2, alc880_threestack_ch2_init },
822         { 6, alc880_threestack_ch6_init },
823 };
824
825 static struct snd_kcontrol_new alc880_three_stack_mixer[] = {
826         HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
827         HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
828         HDA_CODEC_VOLUME("Surround Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
829         HDA_BIND_MUTE("Surround Playback Switch", 0x0f, 2, HDA_INPUT),
830         HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
831         HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
832         HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
833         HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
834         HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
835         HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
836         HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
837         HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
838         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
839         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
840         HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x3, HDA_INPUT),
841         HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x3, HDA_INPUT),
842         HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
843         HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
844         HDA_CODEC_MUTE("Headphone Playback Switch", 0x19, 0x0, HDA_OUTPUT),
845         {
846                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
847                 .name = "Channel Mode",
848                 .info = alc_ch_mode_info,
849                 .get = alc_ch_mode_get,
850                 .put = alc_ch_mode_put,
851         },
852         { } /* end */
853 };
854
855 /* capture mixer elements */
856 static struct snd_kcontrol_new alc880_capture_mixer[] = {
857         HDA_CODEC_VOLUME("Capture Volume", 0x07, 0x0, HDA_INPUT),
858         HDA_CODEC_MUTE("Capture Switch", 0x07, 0x0, HDA_INPUT),
859         HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x08, 0x0, HDA_INPUT),
860         HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x08, 0x0, HDA_INPUT),
861         HDA_CODEC_VOLUME_IDX("Capture Volume", 2, 0x09, 0x0, HDA_INPUT),
862         HDA_CODEC_MUTE_IDX("Capture Switch", 2, 0x09, 0x0, HDA_INPUT),
863         {
864                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
865                 /* The multiple "Capture Source" controls confuse alsamixer
866                  * So call somewhat different..
867                  * FIXME: the controls appear in the "playback" view!
868                  */
869                 /* .name = "Capture Source", */
870                 .name = "Input Source",
871                 .count = 3,
872                 .info = alc_mux_enum_info,
873                 .get = alc_mux_enum_get,
874                 .put = alc_mux_enum_put,
875         },
876         { } /* end */
877 };
878
879 /* capture mixer elements (in case NID 0x07 not available) */
880 static struct snd_kcontrol_new alc880_capture_alt_mixer[] = {
881         HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
882         HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
883         HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
884         HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
885         {
886                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
887                 /* The multiple "Capture Source" controls confuse alsamixer
888                  * So call somewhat different..
889                  * FIXME: the controls appear in the "playback" view!
890                  */
891                 /* .name = "Capture Source", */
892                 .name = "Input Source",
893                 .count = 2,
894                 .info = alc_mux_enum_info,
895                 .get = alc_mux_enum_get,
896                 .put = alc_mux_enum_put,
897         },
898         { } /* end */
899 };
900
901
902
903 /*
904  * ALC880 5-stack model
905  *
906  * DAC: Front = 0x02 (0x0c), Surr = 0x05 (0x0f), CLFE = 0x04 (0x0d),
907  *      Side = 0x02 (0xd)
908  * Pin assignment: Front = 0x14, Surr = 0x17, CLFE = 0x16
909  *                 Line-In/Side = 0x1a, Mic = 0x18, F-Mic = 0x1b, HP = 0x19
910  */
911
912 /* additional mixers to alc880_three_stack_mixer */
913 static struct snd_kcontrol_new alc880_five_stack_mixer[] = {
914         HDA_CODEC_VOLUME("Side Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
915         HDA_BIND_MUTE("Side Playback Switch", 0x0d, 2, HDA_INPUT),
916         { } /* end */
917 };
918
919 /* channel source setting (6/8 channel selection for 5-stack) */
920 /* 6ch mode */
921 static struct hda_verb alc880_fivestack_ch6_init[] = {
922         /* set line-in to input, mute it */
923         { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
924         { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
925         { } /* end */
926 };
927
928 /* 8ch mode */
929 static struct hda_verb alc880_fivestack_ch8_init[] = {
930         /* set line-in to output, unmute it */
931         { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
932         { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
933         { } /* end */
934 };
935
936 static struct hda_channel_mode alc880_fivestack_modes[2] = {
937         { 6, alc880_fivestack_ch6_init },
938         { 8, alc880_fivestack_ch8_init },
939 };
940
941
942 /*
943  * ALC880 6-stack model
944  *
945  * DAC: Front = 0x02 (0x0c), Surr = 0x03 (0x0d), CLFE = 0x04 (0x0e),
946  *      Side = 0x05 (0x0f)
947  * Pin assignment: Front = 0x14, Surr = 0x15, CLFE = 0x16, Side = 0x17,
948  *   Mic = 0x18, F-Mic = 0x19, Line = 0x1a, HP = 0x1b
949  */
950
951 static hda_nid_t alc880_6st_dac_nids[4] = {
952         /* front, rear, clfe, rear_surr */
953         0x02, 0x03, 0x04, 0x05
954 };
955
956 static struct hda_input_mux alc880_6stack_capture_source = {
957         .num_items = 4,
958         .items = {
959                 { "Mic", 0x0 },
960                 { "Front Mic", 0x1 },
961                 { "Line", 0x2 },
962                 { "CD", 0x4 },
963         },
964 };
965
966 /* fixed 8-channels */
967 static struct hda_channel_mode alc880_sixstack_modes[1] = {
968         { 8, NULL },
969 };
970
971 static struct snd_kcontrol_new alc880_six_stack_mixer[] = {
972         HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
973         HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
974         HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
975         HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
976         HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
977         HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
978         HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
979         HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
980         HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
981         HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT),
982         HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
983         HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
984         HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
985         HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
986         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
987         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
988         HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
989         HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
990         HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
991         HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
992         {
993                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
994                 .name = "Channel Mode",
995                 .info = alc_ch_mode_info,
996                 .get = alc_ch_mode_get,
997                 .put = alc_ch_mode_put,
998         },
999         { } /* end */
1000 };
1001
1002
1003 /*
1004  * ALC880 W810 model
1005  *
1006  * W810 has rear IO for:
1007  * Front (DAC 02)
1008  * Surround (DAC 03)
1009  * Center/LFE (DAC 04)
1010  * Digital out (06)
1011  *
1012  * The system also has a pair of internal speakers, and a headphone jack.
1013  * These are both connected to Line2 on the codec, hence to DAC 02.
1014  * 
1015  * There is a variable resistor to control the speaker or headphone
1016  * volume. This is a hardware-only device without a software API.
1017  *
1018  * Plugging headphones in will disable the internal speakers. This is
1019  * implemented in hardware, not via the driver using jack sense. In
1020  * a similar fashion, plugging into the rear socket marked "front" will
1021  * disable both the speakers and headphones.
1022  *
1023  * For input, there's a microphone jack, and an "audio in" jack.
1024  * These may not do anything useful with this driver yet, because I
1025  * haven't setup any initialization verbs for these yet...
1026  */
1027
1028 static hda_nid_t alc880_w810_dac_nids[3] = {
1029         /* front, rear/surround, clfe */
1030         0x02, 0x03, 0x04
1031 };
1032
1033 /* fixed 6 channels */
1034 static struct hda_channel_mode alc880_w810_modes[1] = {
1035         { 6, NULL }
1036 };
1037
1038 /* Pin assignment: Front = 0x14, Surr = 0x15, CLFE = 0x16, HP = 0x1b */
1039 static struct snd_kcontrol_new alc880_w810_base_mixer[] = {
1040         HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1041         HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
1042         HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
1043         HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
1044         HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
1045         HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
1046         HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
1047         HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
1048         HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
1049         { } /* end */
1050 };
1051
1052
1053 /*
1054  * Z710V model
1055  *
1056  * DAC: Front = 0x02 (0x0c), HP = 0x03 (0x0d)
1057  * Pin assignment: Front = 0x14, HP = 0x15, Mic = 0x18, Mic2 = 0x19(?),
1058  *                 Line = 0x1a
1059  */
1060
1061 static hda_nid_t alc880_z71v_dac_nids[1] = {
1062         0x02
1063 };
1064 #define ALC880_Z71V_HP_DAC      0x03
1065
1066 /* fixed 2 channels */
1067 static struct hda_channel_mode alc880_2_jack_modes[1] = {
1068         { 2, NULL }
1069 };
1070
1071 static struct snd_kcontrol_new alc880_z71v_mixer[] = {
1072         HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1073         HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
1074         HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
1075         HDA_BIND_MUTE("Headphone Playback Switch", 0x0d, 2, HDA_INPUT),
1076         HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
1077         HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
1078         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1079         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
1080         { } /* end */
1081 };
1082
1083
1084 /* FIXME! */
1085 /*
1086  * ALC880 F1734 model
1087  *
1088  * DAC: HP = 0x02 (0x0c), Front = 0x03 (0x0d)
1089  * Pin assignment: HP = 0x14, Front = 0x15, Mic = 0x18
1090  */
1091
1092 static hda_nid_t alc880_f1734_dac_nids[1] = {
1093         0x03
1094 };
1095 #define ALC880_F1734_HP_DAC     0x02
1096
1097 static struct snd_kcontrol_new alc880_f1734_mixer[] = {
1098         HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1099         HDA_BIND_MUTE("Headphone Playback Switch", 0x0c, 2, HDA_INPUT),
1100         HDA_CODEC_VOLUME("Internal Speaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
1101         HDA_BIND_MUTE("Internal Speaker Playback Switch", 0x0d, 2, HDA_INPUT),
1102         HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
1103         HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
1104         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1105         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
1106         { } /* end */
1107 };
1108
1109
1110 /* FIXME! */
1111 /*
1112  * ALC880 ASUS model
1113  *
1114  * DAC: HP/Front = 0x02 (0x0c), Surr = 0x03 (0x0d), CLFE = 0x04 (0x0e)
1115  * Pin assignment: HP/Front = 0x14, Surr = 0x15, CLFE = 0x16,
1116  *  Mic = 0x18, Line = 0x1a
1117  */
1118
1119 #define alc880_asus_dac_nids    alc880_w810_dac_nids    /* identical with w810 */
1120 #define alc880_asus_modes       alc880_threestack_modes /* 2/6 channel mode */
1121
1122 static struct snd_kcontrol_new alc880_asus_mixer[] = {
1123         HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1124         HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
1125         HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
1126         HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
1127         HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
1128         HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
1129         HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
1130         HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
1131         HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
1132         HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
1133         HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
1134         HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
1135         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1136         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
1137         {
1138                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1139                 .name = "Channel Mode",
1140                 .info = alc_ch_mode_info,
1141                 .get = alc_ch_mode_get,
1142                 .put = alc_ch_mode_put,
1143         },
1144         { } /* end */
1145 };
1146
1147 /* FIXME! */
1148 /*
1149  * ALC880 ASUS W1V model
1150  *
1151  * DAC: HP/Front = 0x02 (0x0c), Surr = 0x03 (0x0d), CLFE = 0x04 (0x0e)
1152  * Pin assignment: HP/Front = 0x14, Surr = 0x15, CLFE = 0x16,
1153  *  Mic = 0x18, Line = 0x1a, Line2 = 0x1b
1154  */
1155
1156 /* additional mixers to alc880_asus_mixer */
1157 static struct snd_kcontrol_new alc880_asus_w1v_mixer[] = {
1158         HDA_CODEC_VOLUME("Line2 Playback Volume", 0x0b, 0x03, HDA_INPUT),
1159         HDA_CODEC_MUTE("Line2 Playback Switch", 0x0b, 0x03, HDA_INPUT),
1160         { } /* end */
1161 };
1162
1163 /* additional mixers to alc880_asus_mixer */
1164 static struct snd_kcontrol_new alc880_pcbeep_mixer[] = {
1165         HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
1166         HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
1167         { } /* end */
1168 };
1169
1170 /* TCL S700 */
1171 static struct snd_kcontrol_new alc880_tcl_s700_mixer[] = {
1172         HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1173         HDA_CODEC_MUTE("Front Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
1174         HDA_CODEC_MUTE("Headphone Playback Switch", 0x14, 0x0, HDA_OUTPUT),
1175         HDA_CODEC_VOLUME("CD Playback Volume", 0x0B, 0x04, HDA_INPUT),
1176         HDA_CODEC_MUTE("CD Playback Switch", 0x0B, 0x04, HDA_INPUT),
1177         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0B, 0x0, HDA_INPUT),
1178         HDA_CODEC_MUTE("Mic Playback Switch", 0x0B, 0x0, HDA_INPUT),
1179         HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
1180         HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
1181         {
1182                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1183                 /* The multiple "Capture Source" controls confuse alsamixer
1184                  * So call somewhat different..
1185                  * FIXME: the controls appear in the "playback" view!
1186                  */
1187                 /* .name = "Capture Source", */
1188                 .name = "Input Source",
1189                 .count = 1,
1190                 .info = alc_mux_enum_info,
1191                 .get = alc_mux_enum_get,
1192                 .put = alc_mux_enum_put,
1193         },
1194         { } /* end */
1195 };
1196
1197 /* Uniwill */
1198 static struct snd_kcontrol_new alc880_uniwill_mixer[] = {
1199         HDA_CODEC_VOLUME("HPhone Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1200         HDA_BIND_MUTE("HPhone Playback Switch", 0x0c, 2, HDA_INPUT),
1201         HDA_CODEC_VOLUME("iSpeaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
1202         HDA_BIND_MUTE("iSpeaker Playback Switch", 0x0d, 2, HDA_INPUT),
1203         HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
1204         HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
1205         HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
1206         HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
1207         HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
1208         HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
1209         HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
1210         HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
1211         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1212         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
1213         HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
1214         HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
1215         HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
1216         HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
1217         {
1218                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1219                 .name = "Channel Mode",
1220                 .info = alc_ch_mode_info,
1221                 .get = alc_ch_mode_get,
1222                 .put = alc_ch_mode_put,
1223         },
1224         { } /* end */
1225 };
1226
1227 static struct snd_kcontrol_new alc880_fujitsu_mixer[] = {
1228         HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1229         HDA_BIND_MUTE("Headphone Playback Switch", 0x0c, 2, HDA_INPUT),
1230         HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
1231         HDA_BIND_MUTE("Speaker Playback Switch", 0x0d, 2, HDA_INPUT),
1232         HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
1233         HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
1234         HDA_CODEC_VOLUME("Ext Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1235         HDA_CODEC_MUTE("Ext Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
1236         HDA_CODEC_VOLUME("Int Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
1237         HDA_CODEC_MUTE("Int Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
1238         { } /* end */
1239 };
1240
1241 static struct snd_kcontrol_new alc880_uniwill_p53_mixer[] = {
1242         HDA_CODEC_VOLUME("HPhone Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1243         HDA_BIND_MUTE("HPhone Playback Switch", 0x0c, 2, HDA_INPUT),
1244         HDA_CODEC_VOLUME("iSpeaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
1245         HDA_BIND_MUTE("iSpeaker Playback Switch", 0x0d, 2, HDA_INPUT),
1246         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1247         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
1248         { } /* end */
1249 };
1250
1251 /*
1252  * build control elements
1253  */
1254 static int alc_build_controls(struct hda_codec *codec)
1255 {
1256         struct alc_spec *spec = codec->spec;
1257         int err;
1258         int i;
1259
1260         for (i = 0; i < spec->num_mixers; i++) {
1261                 err = snd_hda_add_new_ctls(codec, spec->mixers[i]);
1262                 if (err < 0)
1263                         return err;
1264         }
1265
1266         if (spec->multiout.dig_out_nid) {
1267                 err = snd_hda_create_spdif_out_ctls(codec,
1268                                                     spec->multiout.dig_out_nid);
1269                 if (err < 0)
1270                         return err;
1271         }
1272         if (spec->dig_in_nid) {
1273                 err = snd_hda_create_spdif_in_ctls(codec, spec->dig_in_nid);
1274                 if (err < 0)
1275                         return err;
1276         }
1277         return 0;
1278 }
1279
1280
1281 /*
1282  * initialize the codec volumes, etc
1283  */
1284
1285 /*
1286  * generic initialization of ADC, input mixers and output mixers
1287  */
1288 static struct hda_verb alc880_volume_init_verbs[] = {
1289         /*
1290          * Unmute ADC0-2 and set the default input to mic-in
1291          */
1292         {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
1293         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1294         {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
1295         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1296         {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
1297         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1298
1299         /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
1300          * mixer widget
1301          * Note: PASD motherboards uses the Line In 2 as the input for front
1302          * panel mic (mic 2)
1303          */
1304         /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
1305         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1306         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1307         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
1308         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
1309         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
1310         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)},
1311         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)},
1312
1313         /*
1314          * Set up output mixers (0x0c - 0x0f)
1315          */
1316         /* set vol=0 to output mixers */
1317         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1318         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1319         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1320         {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1321         /* set up input amps for analog loopback */
1322         /* Amp Indices: DAC = 0, mixer = 1 */
1323         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1324         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1325         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1326         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1327         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1328         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1329         {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1330         {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1331
1332         { }
1333 };
1334
1335 /*
1336  * 3-stack pin configuration:
1337  * front = 0x14, mic/clfe = 0x18, HP = 0x19, line/surr = 0x1a, f-mic = 0x1b
1338  */
1339 static struct hda_verb alc880_pin_3stack_init_verbs[] = {
1340         /*
1341          * preset connection lists of input pins
1342          * 0 = front, 1 = rear_surr, 2 = CLFE, 3 = surround
1343          */
1344         {0x10, AC_VERB_SET_CONNECT_SEL, 0x02}, /* mic/clfe */
1345         {0x11, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
1346         {0x12, AC_VERB_SET_CONNECT_SEL, 0x03}, /* line/surround */
1347
1348         /*
1349          * Set pin mode and muting
1350          */
1351         /* set front pin widgets 0x14 for output */
1352         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1353         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1354         /* Mic1 (rear panel) pin widget for input and vref at 80% */
1355         {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1356         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1357         /* Mic2 (as headphone out) for HP output */
1358         {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1359         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1360         /* Line In pin widget for input */
1361         {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1362         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1363         /* Line2 (as front mic) pin widget for input and vref at 80% */
1364         {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1365         {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1366         /* CD pin widget for input */
1367         {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1368
1369         { }
1370 };
1371
1372 /*
1373  * 5-stack pin configuration:
1374  * front = 0x14, surround = 0x17, clfe = 0x16, mic = 0x18, HP = 0x19,
1375  * line-in/side = 0x1a, f-mic = 0x1b
1376  */
1377 static struct hda_verb alc880_pin_5stack_init_verbs[] = {
1378         /*
1379          * preset connection lists of input pins
1380          * 0 = front, 1 = rear_surr, 2 = CLFE, 3 = surround
1381          */
1382         {0x11, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
1383         {0x12, AC_VERB_SET_CONNECT_SEL, 0x01}, /* line/side */
1384
1385         /*
1386          * Set pin mode and muting
1387          */
1388         /* set pin widgets 0x14-0x17 for output */
1389         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1390         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1391         {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1392         {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1393         /* unmute pins for output (no gain on this amp) */
1394         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1395         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1396         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1397         {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1398
1399         /* Mic1 (rear panel) pin widget for input and vref at 80% */
1400         {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1401         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1402         /* Mic2 (as headphone out) for HP output */
1403         {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1404         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1405         /* Line In pin widget for input */
1406         {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1407         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1408         /* Line2 (as front mic) pin widget for input and vref at 80% */
1409         {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1410         {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1411         /* CD pin widget for input */
1412         {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1413
1414         { }
1415 };
1416
1417 /*
1418  * W810 pin configuration:
1419  * front = 0x14, surround = 0x15, clfe = 0x16, HP = 0x1b
1420  */
1421 static struct hda_verb alc880_pin_w810_init_verbs[] = {
1422         /* hphone/speaker input selector: front DAC */
1423         {0x13, AC_VERB_SET_CONNECT_SEL, 0x0},
1424
1425         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1426         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1427         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1428         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1429         {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1430         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1431
1432         {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1433         {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1434
1435         { }
1436 };
1437
1438 /*
1439  * Z71V pin configuration:
1440  * Speaker-out = 0x14, HP = 0x15, Mic = 0x18, Line-in = 0x1a, Mic2 = 0x1b (?)
1441  */
1442 static struct hda_verb alc880_pin_z71v_init_verbs[] = {
1443         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1444         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1445         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1446         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1447
1448         {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1449         {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1450         {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1451         {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1452
1453         { }
1454 };
1455
1456 /*
1457  * 6-stack pin configuration:
1458  * front = 0x14, surr = 0x15, clfe = 0x16, side = 0x17, mic = 0x18,
1459  * f-mic = 0x19, line = 0x1a, HP = 0x1b
1460  */
1461 static struct hda_verb alc880_pin_6stack_init_verbs[] = {
1462         {0x13, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
1463
1464         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1465         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1466         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1467         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1468         {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1469         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1470         {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1471         {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1472
1473         {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1474         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1475         {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1476         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1477         {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1478         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1479         {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1480         {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1481         {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1482         
1483         { }
1484 };
1485
1486 /*
1487  * Uniwill pin configuration:
1488  * HP = 0x14, InternalSpeaker = 0x15, mic = 0x18, internal mic = 0x19,
1489  * line = 0x1a
1490  */
1491 static struct hda_verb alc880_uniwill_init_verbs[] = {
1492         {0x13, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
1493
1494         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1495         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1496         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1497         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1498         {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1499         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1500         {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1501         {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1502         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
1503         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
1504         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
1505         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
1506         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
1507         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
1508
1509         {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1510         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1511         {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1512         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1513         {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1514         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1515         /* {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP}, */
1516         /* {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, */
1517         {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1518
1519         {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
1520         {0x18, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_MIC_EVENT},
1521
1522         { }
1523 };
1524
1525 /*
1526 * Uniwill P53
1527 * HP = 0x14, InternalSpeaker = 0x15, mic = 0x19, 
1528  */
1529 static struct hda_verb alc880_uniwill_p53_init_verbs[] = {
1530         {0x13, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
1531
1532         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1533         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1534         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1535         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1536         {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1537         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1538         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
1539         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
1540         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
1541         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
1542         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
1543         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
1544
1545         {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1546         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1547         {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1548         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1549         {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1550         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1551
1552         {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
1553         {0x21, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_DCVOL_EVENT},
1554
1555         { }
1556 };
1557
1558 static struct hda_verb alc880_beep_init_verbs[] = {
1559         { 0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(5) },
1560         { }
1561 };
1562
1563 /* toggle speaker-output according to the hp-jack state */
1564 static void alc880_uniwill_hp_automute(struct hda_codec *codec)
1565 {
1566         unsigned int present;
1567         unsigned char bits;
1568
1569         present = snd_hda_codec_read(codec, 0x14, 0,
1570                                      AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
1571         bits = present ? HDA_AMP_MUTE : 0;
1572         snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0,
1573                                  HDA_AMP_MUTE, bits);
1574         snd_hda_codec_amp_stereo(codec, 0x16, HDA_OUTPUT, 0,
1575                                  HDA_AMP_MUTE, bits);
1576 }
1577
1578 /* auto-toggle front mic */
1579 static void alc880_uniwill_mic_automute(struct hda_codec *codec)
1580 {
1581         unsigned int present;
1582         unsigned char bits;
1583
1584         present = snd_hda_codec_read(codec, 0x18, 0,
1585                                      AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
1586         bits = present ? HDA_AMP_MUTE : 0;
1587         snd_hda_codec_amp_stereo(codec, 0x0b, HDA_INPUT, 1, HDA_AMP_MUTE, bits);
1588 }
1589
1590 static void alc880_uniwill_automute(struct hda_codec *codec)
1591 {
1592         alc880_uniwill_hp_automute(codec);
1593         alc880_uniwill_mic_automute(codec);
1594 }
1595
1596 static void alc880_uniwill_unsol_event(struct hda_codec *codec,
1597                                        unsigned int res)
1598 {
1599         /* Looks like the unsol event is incompatible with the standard
1600          * definition.  4bit tag is placed at 28 bit!
1601          */
1602         switch (res >> 28) {
1603         case ALC880_HP_EVENT:
1604                 alc880_uniwill_hp_automute(codec);
1605                 break;
1606         case ALC880_MIC_EVENT:
1607                 alc880_uniwill_mic_automute(codec);
1608                 break;
1609         }
1610 }
1611
1612 static void alc880_uniwill_p53_hp_automute(struct hda_codec *codec)
1613 {
1614         unsigned int present;
1615         unsigned char bits;
1616
1617         present = snd_hda_codec_read(codec, 0x14, 0,
1618                                      AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
1619         bits = present ? HDA_AMP_MUTE : 0;
1620         snd_hda_codec_amp_stereo(codec, 0x15, HDA_INPUT, 0, HDA_AMP_MUTE, bits);
1621 }
1622
1623 static void alc880_uniwill_p53_dcvol_automute(struct hda_codec *codec)
1624 {
1625         unsigned int present;
1626         
1627         present = snd_hda_codec_read(codec, 0x21, 0,
1628                                      AC_VERB_GET_VOLUME_KNOB_CONTROL, 0);
1629         present &= HDA_AMP_VOLMASK;
1630         snd_hda_codec_amp_stereo(codec, 0x0c, HDA_OUTPUT, 0,
1631                                  HDA_AMP_VOLMASK, present);
1632         snd_hda_codec_amp_stereo(codec, 0x0d, HDA_OUTPUT, 0,
1633                                  HDA_AMP_VOLMASK, present);
1634 }
1635
1636 static void alc880_uniwill_p53_unsol_event(struct hda_codec *codec,
1637                                            unsigned int res)
1638 {
1639         /* Looks like the unsol event is incompatible with the standard
1640          * definition.  4bit tag is placed at 28 bit!
1641          */
1642         if ((res >> 28) == ALC880_HP_EVENT)
1643                 alc880_uniwill_p53_hp_automute(codec);
1644         if ((res >> 28) == ALC880_DCVOL_EVENT)
1645                 alc880_uniwill_p53_dcvol_automute(codec);
1646 }
1647
1648 /* FIXME! */
1649 /*
1650  * F1734 pin configuration:
1651  * HP = 0x14, speaker-out = 0x15, mic = 0x18
1652  */
1653 static struct hda_verb alc880_pin_f1734_init_verbs[] = {
1654         {0x10, AC_VERB_SET_CONNECT_SEL, 0x02},
1655         {0x11, AC_VERB_SET_CONNECT_SEL, 0x00},
1656         {0x12, AC_VERB_SET_CONNECT_SEL, 0x01},
1657         {0x13, AC_VERB_SET_CONNECT_SEL, 0x00},
1658
1659         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1660         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1661         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1662         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1663
1664         {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1665         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1666         {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1667         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1668         {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1669         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1670         {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1671         {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1672         {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1673
1674         { }
1675 };
1676
1677 /* FIXME! */
1678 /*
1679  * ASUS pin configuration:
1680  * HP/front = 0x14, surr = 0x15, clfe = 0x16, mic = 0x18, line = 0x1a
1681  */
1682 static struct hda_verb alc880_pin_asus_init_verbs[] = {
1683         {0x10, AC_VERB_SET_CONNECT_SEL, 0x02},
1684         {0x11, AC_VERB_SET_CONNECT_SEL, 0x00},
1685         {0x12, AC_VERB_SET_CONNECT_SEL, 0x01},
1686         {0x13, AC_VERB_SET_CONNECT_SEL, 0x00},
1687
1688         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1689         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1690         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1691         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1692         {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1693         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1694         {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1695         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1696
1697         {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1698         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1699         {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1700         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1701         {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1702         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1703         {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1704         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1705         {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1706         
1707         { }
1708 };
1709
1710 /* Enable GPIO mask and set output */
1711 #define alc880_gpio1_init_verbs alc_gpio1_init_verbs
1712 #define alc880_gpio2_init_verbs alc_gpio2_init_verbs
1713
1714 /* Clevo m520g init */
1715 static struct hda_verb alc880_pin_clevo_init_verbs[] = {
1716         /* headphone output */
1717         {0x11, AC_VERB_SET_CONNECT_SEL, 0x01},
1718         /* line-out */
1719         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1720         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1721         /* Line-in */
1722         {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1723         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1724         /* CD */
1725         {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1726         {0x1c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1727         /* Mic1 (rear panel) */
1728         {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1729         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1730         /* Mic2 (front panel) */
1731         {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1732         {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1733         /* headphone */
1734         {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1735         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1736         /* change to EAPD mode */
1737         {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
1738         {0x20, AC_VERB_SET_PROC_COEF,  0x3060},
1739
1740         { }
1741 };
1742
1743 static struct hda_verb alc880_pin_tcl_S700_init_verbs[] = {
1744         /* change to EAPD mode */
1745         {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
1746         {0x20, AC_VERB_SET_PROC_COEF,  0x3060},
1747
1748         /* Headphone output */
1749         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1750         /* Front output*/
1751         {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1752         {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
1753
1754         /* Line In pin widget for input */
1755         {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1756         /* CD pin widget for input */
1757         {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1758         /* Mic1 (rear panel) pin widget for input and vref at 80% */
1759         {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1760
1761         /* change to EAPD mode */
1762         {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
1763         {0x20, AC_VERB_SET_PROC_COEF,  0x3070},
1764
1765         { }
1766 };
1767
1768 /*
1769  * LG m1 express dual
1770  *
1771  * Pin assignment:
1772  *   Rear Line-In/Out (blue): 0x14
1773  *   Build-in Mic-In: 0x15
1774  *   Speaker-out: 0x17
1775  *   HP-Out (green): 0x1b
1776  *   Mic-In/Out (red): 0x19
1777  *   SPDIF-Out: 0x1e
1778  */
1779
1780 /* To make 5.1 output working (green=Front, blue=Surr, red=CLFE) */
1781 static hda_nid_t alc880_lg_dac_nids[3] = {
1782         0x05, 0x02, 0x03
1783 };
1784
1785 /* seems analog CD is not working */
1786 static struct hda_input_mux alc880_lg_capture_source = {
1787         .num_items = 3,
1788         .items = {
1789                 { "Mic", 0x1 },
1790                 { "Line", 0x5 },
1791                 { "Internal Mic", 0x6 },
1792         },
1793 };
1794
1795 /* 2,4,6 channel modes */
1796 static struct hda_verb alc880_lg_ch2_init[] = {
1797         /* set line-in and mic-in to input */
1798         { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
1799         { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
1800         { }
1801 };
1802
1803 static struct hda_verb alc880_lg_ch4_init[] = {
1804         /* set line-in to out and mic-in to input */
1805         { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
1806         { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
1807         { }
1808 };
1809
1810 static struct hda_verb alc880_lg_ch6_init[] = {
1811         /* set line-in and mic-in to output */
1812         { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
1813         { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
1814         { }
1815 };
1816
1817 static struct hda_channel_mode alc880_lg_ch_modes[3] = {
1818         { 2, alc880_lg_ch2_init },
1819         { 4, alc880_lg_ch4_init },
1820         { 6, alc880_lg_ch6_init },
1821 };
1822
1823 static struct snd_kcontrol_new alc880_lg_mixer[] = {
1824         /* FIXME: it's not really "master" but front channels */
1825         HDA_CODEC_VOLUME("Master Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
1826         HDA_BIND_MUTE("Master Playback Switch", 0x0f, 2, HDA_INPUT),
1827         HDA_CODEC_VOLUME("Surround Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1828         HDA_BIND_MUTE("Surround Playback Switch", 0x0c, 2, HDA_INPUT),
1829         HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0d, 1, 0x0, HDA_OUTPUT),
1830         HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0d, 2, 0x0, HDA_OUTPUT),
1831         HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0d, 1, 2, HDA_INPUT),
1832         HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0d, 2, 2, HDA_INPUT),
1833         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
1834         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
1835         HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x06, HDA_INPUT),
1836         HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x06, HDA_INPUT),
1837         HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x0b, 0x07, HDA_INPUT),
1838         HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x0b, 0x07, HDA_INPUT),
1839         {
1840                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1841                 .name = "Channel Mode",
1842                 .info = alc_ch_mode_info,
1843                 .get = alc_ch_mode_get,
1844                 .put = alc_ch_mode_put,
1845         },
1846         { } /* end */
1847 };
1848
1849 static struct hda_verb alc880_lg_init_verbs[] = {
1850         /* set capture source to mic-in */
1851         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
1852         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
1853         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
1854         /* mute all amp mixer inputs */
1855         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(5)},
1856         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)},
1857         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)},
1858         /* line-in to input */
1859         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1860         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1861         /* built-in mic */
1862         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1863         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1864         /* speaker-out */
1865         {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1866         {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1867         /* mic-in to input */
1868         {0x11, AC_VERB_SET_CONNECT_SEL, 0x01},
1869         {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1870         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1871         /* HP-out */
1872         {0x13, AC_VERB_SET_CONNECT_SEL, 0x03},
1873         {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1874         {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1875         /* jack sense */
1876         {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | 0x1},
1877         { }
1878 };
1879
1880 /* toggle speaker-output according to the hp-jack state */
1881 static void alc880_lg_automute(struct hda_codec *codec)
1882 {
1883         unsigned int present;
1884         unsigned char bits;
1885
1886         present = snd_hda_codec_read(codec, 0x1b, 0,
1887                                      AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
1888         bits = present ? HDA_AMP_MUTE : 0;
1889         snd_hda_codec_amp_stereo(codec, 0x17, HDA_OUTPUT, 0,
1890                                  HDA_AMP_MUTE, bits);
1891 }
1892
1893 static void alc880_lg_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_automute(codec);
1900 }
1901
1902 /*
1903  * LG LW20
1904  *
1905  * Pin assignment:
1906  *   Speaker-out: 0x14
1907  *   Mic-In: 0x18
1908  *   Built-in Mic-In: 0x19
1909  *   Line-In: 0x1b
1910  *   HP-Out: 0x1a
1911  *   SPDIF-Out: 0x1e
1912  */
1913
1914 static struct hda_input_mux alc880_lg_lw_capture_source = {
1915         .num_items = 3,
1916         .items = {
1917                 { "Mic", 0x0 },
1918                 { "Internal Mic", 0x1 },
1919                 { "Line In", 0x2 },
1920         },
1921 };
1922
1923 #define alc880_lg_lw_modes alc880_threestack_modes
1924
1925 static struct snd_kcontrol_new alc880_lg_lw_mixer[] = {
1926         HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1927         HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
1928         HDA_CODEC_VOLUME("Surround Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
1929         HDA_BIND_MUTE("Surround Playback Switch", 0x0f, 2, HDA_INPUT),
1930         HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
1931         HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
1932         HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
1933         HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
1934         HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
1935         HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
1936         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1937         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
1938         HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x0b, 0x01, HDA_INPUT),
1939         HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x0b, 0x01, HDA_INPUT),
1940         {
1941                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1942                 .name = "Channel Mode",
1943                 .info = alc_ch_mode_info,
1944                 .get = alc_ch_mode_get,
1945                 .put = alc_ch_mode_put,
1946         },
1947         { } /* end */
1948 };
1949
1950 static struct hda_verb alc880_lg_lw_init_verbs[] = {
1951         {0x13, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
1952         {0x10, AC_VERB_SET_CONNECT_SEL, 0x02}, /* mic/clfe */
1953         {0x12, AC_VERB_SET_CONNECT_SEL, 0x03}, /* line/surround */
1954
1955         /* set capture source to mic-in */
1956         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1957         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1958         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1959         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)},
1960         /* speaker-out */
1961         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1962         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1963         /* HP-out */
1964         {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1965         {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1966         /* mic-in to input */
1967         {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1968         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1969         /* built-in mic */
1970         {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1971         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1972         /* jack sense */
1973         {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | 0x1},
1974         { }
1975 };
1976
1977 /* toggle speaker-output according to the hp-jack state */
1978 static void alc880_lg_lw_automute(struct hda_codec *codec)
1979 {
1980         unsigned int present;
1981         unsigned char bits;
1982
1983         present = snd_hda_codec_read(codec, 0x1b, 0,
1984                                      AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
1985         bits = present ? HDA_AMP_MUTE : 0;
1986         snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0,
1987                                  HDA_AMP_MUTE, bits);
1988 }
1989
1990 static void alc880_lg_lw_unsol_event(struct hda_codec *codec, unsigned int res)
1991 {
1992         /* Looks like the unsol event is incompatible with the standard
1993          * definition.  4bit tag is placed at 28 bit!
1994          */
1995         if ((res >> 28) == 0x01)
1996                 alc880_lg_lw_automute(codec);
1997 }
1998
1999 #ifdef CONFIG_SND_HDA_POWER_SAVE
2000 static struct hda_amp_list alc880_loopbacks[] = {
2001         { 0x0b, HDA_INPUT, 0 },
2002         { 0x0b, HDA_INPUT, 1 },
2003         { 0x0b, HDA_INPUT, 2 },
2004         { 0x0b, HDA_INPUT, 3 },
2005         { 0x0b, HDA_INPUT, 4 },
2006         { } /* end */
2007 };
2008
2009 static struct hda_amp_list alc880_lg_loopbacks[] = {
2010         { 0x0b, HDA_INPUT, 1 },
2011         { 0x0b, HDA_INPUT, 6 },
2012         { 0x0b, HDA_INPUT, 7 },
2013         { } /* end */
2014 };
2015 #endif
2016
2017 /*
2018  * Common callbacks
2019  */
2020
2021 static int alc_init(struct hda_codec *codec)
2022 {
2023         struct alc_spec *spec = codec->spec;
2024         unsigned int i;
2025
2026         for (i = 0; i < spec->num_init_verbs; i++)
2027                 snd_hda_sequence_write(codec, spec->init_verbs[i]);
2028
2029         if (spec->init_hook)
2030                 spec->init_hook(codec);
2031
2032         return 0;
2033 }
2034
2035 static void alc_unsol_event(struct hda_codec *codec, unsigned int res)
2036 {
2037         struct alc_spec *spec = codec->spec;
2038
2039         if (spec->unsol_event)
2040                 spec->unsol_event(codec, res);
2041 }
2042
2043 #ifdef CONFIG_SND_HDA_POWER_SAVE
2044 static int alc_check_power_status(struct hda_codec *codec, hda_nid_t nid)
2045 {
2046         struct alc_spec *spec = codec->spec;
2047         return snd_hda_check_amp_list_power(codec, &spec->loopback, nid);
2048 }
2049 #endif
2050
2051 /*
2052  * Analog playback callbacks
2053  */
2054 static int alc880_playback_pcm_open(struct hda_pcm_stream *hinfo,
2055                                     struct hda_codec *codec,
2056                                     struct snd_pcm_substream *substream)
2057 {
2058         struct alc_spec *spec = codec->spec;
2059         return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream);
2060 }
2061
2062 static int alc880_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
2063                                        struct hda_codec *codec,
2064                                        unsigned int stream_tag,
2065                                        unsigned int format,
2066                                        struct snd_pcm_substream *substream)
2067 {
2068         struct alc_spec *spec = codec->spec;
2069         return snd_hda_multi_out_analog_prepare(codec, &spec->multiout,
2070                                                 stream_tag, format, substream);
2071 }
2072
2073 static int alc880_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
2074                                        struct hda_codec *codec,
2075                                        struct snd_pcm_substream *substream)
2076 {
2077         struct alc_spec *spec = codec->spec;
2078         return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout);
2079 }
2080
2081 /*
2082  * Digital out
2083  */
2084 static int alc880_dig_playback_pcm_open(struct hda_pcm_stream *hinfo,
2085                                         struct hda_codec *codec,
2086                                         struct snd_pcm_substream *substream)
2087 {
2088         struct alc_spec *spec = codec->spec;
2089         return snd_hda_multi_out_dig_open(codec, &spec->multiout);
2090 }
2091
2092 static int alc880_dig_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
2093                                            struct hda_codec *codec,
2094                                            unsigned int stream_tag,
2095                                            unsigned int format,
2096                                            struct snd_pcm_substream *substream)
2097 {
2098         struct alc_spec *spec = codec->spec;
2099         return snd_hda_multi_out_dig_prepare(codec, &spec->multiout,
2100                                              stream_tag, format, substream);
2101 }
2102
2103 static int alc880_dig_playback_pcm_close(struct hda_pcm_stream *hinfo,
2104                                          struct hda_codec *codec,
2105                                          struct snd_pcm_substream *substream)
2106 {
2107         struct alc_spec *spec = codec->spec;
2108         return snd_hda_multi_out_dig_close(codec, &spec->multiout);
2109 }
2110
2111 /*
2112  * Analog capture
2113  */
2114 static int alc880_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
2115                                       struct hda_codec *codec,
2116                                       unsigned int stream_tag,
2117                                       unsigned int format,
2118                                       struct snd_pcm_substream *substream)
2119 {
2120         struct alc_spec *spec = codec->spec;
2121
2122         snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number],
2123                                    stream_tag, 0, format);
2124         return 0;
2125 }
2126
2127 static int alc880_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
2128                                       struct hda_codec *codec,
2129                                       struct snd_pcm_substream *substream)
2130 {
2131         struct alc_spec *spec = codec->spec;
2132
2133         snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number],
2134                                    0, 0, 0);
2135         return 0;
2136 }
2137
2138
2139 /*
2140  */
2141 static struct hda_pcm_stream alc880_pcm_analog_playback = {
2142         .substreams = 1,
2143         .channels_min = 2,
2144         .channels_max = 8,
2145         /* NID is set in alc_build_pcms */
2146         .ops = {
2147                 .open = alc880_playback_pcm_open,
2148                 .prepare = alc880_playback_pcm_prepare,
2149                 .cleanup = alc880_playback_pcm_cleanup
2150         },
2151 };
2152
2153 static struct hda_pcm_stream alc880_pcm_analog_capture = {
2154         .substreams = 2,
2155         .channels_min = 2,
2156         .channels_max = 2,
2157         /* NID is set in alc_build_pcms */
2158         .ops = {
2159                 .prepare = alc880_capture_pcm_prepare,
2160                 .cleanup = alc880_capture_pcm_cleanup
2161         },
2162 };
2163
2164 static struct hda_pcm_stream alc880_pcm_digital_playback = {
2165         .substreams = 1,
2166         .channels_min = 2,
2167         .channels_max = 2,
2168         /* NID is set in alc_build_pcms */
2169         .ops = {
2170                 .open = alc880_dig_playback_pcm_open,
2171                 .close = alc880_dig_playback_pcm_close,
2172                 .prepare = alc880_dig_playback_pcm_prepare
2173         },
2174 };
2175
2176 static struct hda_pcm_stream alc880_pcm_digital_capture = {
2177         .substreams = 1,
2178         .channels_min = 2,
2179         .channels_max = 2,
2180         /* NID is set in alc_build_pcms */
2181 };
2182
2183 /* Used by alc_build_pcms to flag that a PCM has no playback stream */
2184 static struct hda_pcm_stream alc_pcm_null_playback = {
2185         .substreams = 0,
2186         .channels_min = 0,
2187         .channels_max = 0,
2188 };
2189
2190 static int alc_build_pcms(struct hda_codec *codec)
2191 {
2192         struct alc_spec *spec = codec->spec;
2193         struct hda_pcm *info = spec->pcm_rec;
2194         int i;
2195
2196         codec->num_pcms = 1;
2197         codec->pcm_info = info;
2198
2199         info->name = spec->stream_name_analog;
2200         if (spec->stream_analog_playback) {
2201                 snd_assert(spec->multiout.dac_nids, return -EINVAL);
2202                 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = *(spec->stream_analog_playback);
2203                 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dac_nids[0];
2204         }
2205         if (spec->stream_analog_capture) {
2206                 snd_assert(spec->adc_nids, return -EINVAL);
2207                 info->stream[SNDRV_PCM_STREAM_CAPTURE] = *(spec->stream_analog_capture);
2208                 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[0];
2209         }
2210
2211         if (spec->channel_mode) {
2212                 info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max = 0;
2213                 for (i = 0; i < spec->num_channel_mode; i++) {
2214                         if (spec->channel_mode[i].channels > info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max) {
2215                                 info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max = spec->channel_mode[i].channels;
2216                         }
2217                 }
2218         }
2219
2220         /* SPDIF for stream index #1 */
2221         if (spec->multiout.dig_out_nid || spec->dig_in_nid) {
2222                 codec->num_pcms = 2;
2223                 info = spec->pcm_rec + 1;
2224                 info->name = spec->stream_name_digital;
2225                 if (spec->multiout.dig_out_nid &&
2226                     spec->stream_digital_playback) {
2227                         info->stream[SNDRV_PCM_STREAM_PLAYBACK] = *(spec->stream_digital_playback);
2228                         info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dig_out_nid;
2229                 }
2230                 if (spec->dig_in_nid &&
2231                     spec->stream_digital_capture) {
2232                         info->stream[SNDRV_PCM_STREAM_CAPTURE] = *(spec->stream_digital_capture);
2233                         info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->dig_in_nid;
2234                 }
2235         }
2236
2237         /* If the use of more than one ADC is requested for the current
2238          * model, configure a second analog capture-only PCM.
2239          */
2240         /* Additional Analaog capture for index #2 */
2241         if (spec->num_adc_nids > 1 && spec->stream_analog_capture &&
2242             spec->adc_nids) {
2243                 codec->num_pcms = 3;
2244                 info = spec->pcm_rec + 2;
2245                 info->name = spec->stream_name_analog;
2246                 /* No playback stream for second PCM */
2247                 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = alc_pcm_null_playback;
2248                 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = 0;
2249                 if (spec->stream_analog_capture) {
2250                         info->stream[SNDRV_PCM_STREAM_CAPTURE] = *(spec->stream_analog_capture);
2251                         info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[1];
2252                 }
2253         }
2254
2255         return 0;
2256 }
2257
2258 static void alc_free(struct hda_codec *codec)
2259 {
2260         struct alc_spec *spec = codec->spec;
2261         unsigned int i;
2262
2263         if (!spec)
2264                 return;
2265
2266         if (spec->kctl_alloc) {
2267                 for (i = 0; i < spec->num_kctl_used; i++)
2268                         kfree(spec->kctl_alloc[i].name);
2269                 kfree(spec->kctl_alloc);
2270         }
2271         kfree(spec);
2272 }
2273
2274 /*
2275  */
2276 static struct hda_codec_ops alc_patch_ops = {
2277         .build_controls = alc_build_controls,
2278         .build_pcms = alc_build_pcms,
2279         .init = alc_init,
2280         .free = alc_free,
2281         .unsol_event = alc_unsol_event,
2282 #ifdef CONFIG_SND_HDA_POWER_SAVE
2283         .check_power_status = alc_check_power_status,
2284 #endif
2285 };
2286
2287
2288 /*
2289  * Test configuration for debugging
2290  *
2291  * Almost all inputs/outputs are enabled.  I/O pins can be configured via
2292  * enum controls.
2293  */
2294 #ifdef CONFIG_SND_DEBUG
2295 static hda_nid_t alc880_test_dac_nids[4] = {
2296         0x02, 0x03, 0x04, 0x05
2297 };
2298
2299 static struct hda_input_mux alc880_test_capture_source = {
2300         .num_items = 7,
2301         .items = {
2302                 { "In-1", 0x0 },
2303                 { "In-2", 0x1 },
2304                 { "In-3", 0x2 },
2305                 { "In-4", 0x3 },
2306                 { "CD", 0x4 },
2307                 { "Front", 0x5 },
2308                 { "Surround", 0x6 },
2309         },
2310 };
2311
2312 static struct hda_channel_mode alc880_test_modes[4] = {
2313         { 2, NULL },
2314         { 4, NULL },
2315         { 6, NULL },
2316         { 8, NULL },
2317 };
2318
2319 static int alc_test_pin_ctl_info(struct snd_kcontrol *kcontrol,
2320                                  struct snd_ctl_elem_info *uinfo)
2321 {
2322         static char *texts[] = {
2323                 "N/A", "Line Out", "HP Out",
2324                 "In Hi-Z", "In 50%", "In Grd", "In 80%", "In 100%"
2325         };
2326         uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2327         uinfo->count = 1;
2328         uinfo->value.enumerated.items = 8;
2329         if (uinfo->value.enumerated.item >= 8)
2330                 uinfo->value.enumerated.item = 7;
2331         strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);
2332         return 0;
2333 }
2334
2335 static int alc_test_pin_ctl_get(struct snd_kcontrol *kcontrol,
2336                                 struct snd_ctl_elem_value *ucontrol)
2337 {
2338         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2339         hda_nid_t nid = (hda_nid_t)kcontrol->private_value;
2340         unsigned int pin_ctl, item = 0;
2341
2342         pin_ctl = snd_hda_codec_read(codec, nid, 0,
2343                                      AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
2344         if (pin_ctl & AC_PINCTL_OUT_EN) {
2345                 if (pin_ctl & AC_PINCTL_HP_EN)
2346                         item = 2;
2347                 else
2348                         item = 1;
2349         } else if (pin_ctl & AC_PINCTL_IN_EN) {
2350                 switch (pin_ctl & AC_PINCTL_VREFEN) {
2351                 case AC_PINCTL_VREF_HIZ: item = 3; break;
2352                 case AC_PINCTL_VREF_50:  item = 4; break;
2353                 case AC_PINCTL_VREF_GRD: item = 5; break;
2354                 case AC_PINCTL_VREF_80:  item = 6; break;
2355                 case AC_PINCTL_VREF_100: item = 7; break;
2356                 }
2357         }
2358         ucontrol->value.enumerated.item[0] = item;
2359         return 0;
2360 }
2361
2362 static int alc_test_pin_ctl_put(struct snd_kcontrol *kcontrol,
2363                                 struct snd_ctl_elem_value *ucontrol)
2364 {
2365         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2366         hda_nid_t nid = (hda_nid_t)kcontrol->private_value;
2367         static unsigned int ctls[] = {
2368                 0, AC_PINCTL_OUT_EN, AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN,
2369                 AC_PINCTL_IN_EN | AC_PINCTL_VREF_HIZ,
2370                 AC_PINCTL_IN_EN | AC_PINCTL_VREF_50,
2371                 AC_PINCTL_IN_EN | AC_PINCTL_VREF_GRD,
2372                 AC_PINCTL_IN_EN | AC_PINCTL_VREF_80,
2373                 AC_PINCTL_IN_EN | AC_PINCTL_VREF_100,
2374         };
2375         unsigned int old_ctl, new_ctl;
2376
2377         old_ctl = snd_hda_codec_read(codec, nid, 0,
2378                                      AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
2379         new_ctl = ctls[ucontrol->value.enumerated.item[0]];
2380         if (old_ctl != new_ctl) {
2381                 int val;
2382                 snd_hda_codec_write_cache(codec, nid, 0,
2383                                           AC_VERB_SET_PIN_WIDGET_CONTROL,
2384                                           new_ctl);
2385                 val = ucontrol->value.enumerated.item[0] >= 3 ?
2386                         HDA_AMP_MUTE : 0;
2387                 snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
2388                                          HDA_AMP_MUTE, val);
2389                 return 1;
2390         }
2391         return 0;
2392 }
2393
2394 static int alc_test_pin_src_info(struct snd_kcontrol *kcontrol,
2395                                  struct snd_ctl_elem_info *uinfo)
2396 {
2397         static char *texts[] = {
2398                 "Front", "Surround", "CLFE", "Side"
2399         };
2400         uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2401         uinfo->count = 1;
2402         uinfo->value.enumerated.items = 4;
2403         if (uinfo->value.enumerated.item >= 4)
2404                 uinfo->value.enumerated.item = 3;
2405         strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);
2406         return 0;
2407 }
2408
2409 static int alc_test_pin_src_get(struct snd_kcontrol *kcontrol,
2410                                 struct snd_ctl_elem_value *ucontrol)
2411 {
2412         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2413         hda_nid_t nid = (hda_nid_t)kcontrol->private_value;
2414         unsigned int sel;
2415
2416         sel = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_CONNECT_SEL, 0);
2417         ucontrol->value.enumerated.item[0] = sel & 3;
2418         return 0;
2419 }
2420
2421 static int alc_test_pin_src_put(struct snd_kcontrol *kcontrol,
2422                                 struct snd_ctl_elem_value *ucontrol)
2423 {
2424         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2425         hda_nid_t nid = (hda_nid_t)kcontrol->private_value;
2426         unsigned int sel;
2427
2428         sel = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_CONNECT_SEL, 0) & 3;
2429         if (ucontrol->value.enumerated.item[0] != sel) {
2430                 sel = ucontrol->value.enumerated.item[0] & 3;
2431                 snd_hda_codec_write_cache(codec, nid, 0,
2432                                           AC_VERB_SET_CONNECT_SEL, sel);
2433                 return 1;
2434         }
2435         return 0;
2436 }
2437
2438 #define PIN_CTL_TEST(xname,nid) {                       \
2439                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,    \
2440                         .name = xname,                 \
2441                         .info = alc_test_pin_ctl_info, \
2442                         .get = alc_test_pin_ctl_get,   \
2443                         .put = alc_test_pin_ctl_put,   \
2444                         .private_value = nid           \
2445                         }
2446
2447 #define PIN_SRC_TEST(xname,nid) {                       \
2448                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,    \
2449                         .name = xname,                 \
2450                         .info = alc_test_pin_src_info, \
2451                         .get = alc_test_pin_src_get,   \
2452                         .put = alc_test_pin_src_put,   \
2453                         .private_value = nid           \
2454                         }
2455
2456 static struct snd_kcontrol_new alc880_test_mixer[] = {
2457         HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
2458         HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
2459         HDA_CODEC_VOLUME("CLFE Playback Volume", 0x0e, 0x0, HDA_OUTPUT),
2460         HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
2461         HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
2462         HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
2463         HDA_BIND_MUTE("CLFE Playback Switch", 0x0e, 2, HDA_INPUT),
2464         HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT),
2465         PIN_CTL_TEST("Front Pin Mode", 0x14),
2466         PIN_CTL_TEST("Surround Pin Mode", 0x15),
2467         PIN_CTL_TEST("CLFE Pin Mode", 0x16),
2468         PIN_CTL_TEST("Side Pin Mode", 0x17),
2469         PIN_CTL_TEST("In-1 Pin Mode", 0x18),
2470         PIN_CTL_TEST("In-2 Pin Mode", 0x19),
2471         PIN_CTL_TEST("In-3 Pin Mode", 0x1a),
2472         PIN_CTL_TEST("In-4 Pin Mode", 0x1b),
2473         PIN_SRC_TEST("In-1 Pin Source", 0x18),
2474         PIN_SRC_TEST("In-2 Pin Source", 0x19),
2475         PIN_SRC_TEST("In-3 Pin Source", 0x1a),
2476         PIN_SRC_TEST("In-4 Pin Source", 0x1b),
2477         HDA_CODEC_VOLUME("In-1 Playback Volume", 0x0b, 0x0, HDA_INPUT),
2478         HDA_CODEC_MUTE("In-1 Playback Switch", 0x0b, 0x0, HDA_INPUT),
2479         HDA_CODEC_VOLUME("In-2 Playback Volume", 0x0b, 0x1, HDA_INPUT),
2480         HDA_CODEC_MUTE("In-2 Playback Switch", 0x0b, 0x1, HDA_INPUT),
2481         HDA_CODEC_VOLUME("In-3 Playback Volume", 0x0b, 0x2, HDA_INPUT),
2482         HDA_CODEC_MUTE("In-3 Playback Switch", 0x0b, 0x2, HDA_INPUT),
2483         HDA_CODEC_VOLUME("In-4 Playback Volume", 0x0b, 0x3, HDA_INPUT),
2484         HDA_CODEC_MUTE("In-4 Playback Switch", 0x0b, 0x3, HDA_INPUT),
2485         HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x4, HDA_INPUT),
2486         HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x4, HDA_INPUT),
2487         {
2488                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2489                 .name = "Channel Mode",
2490                 .info = alc_ch_mode_info,
2491                 .get = alc_ch_mode_get,
2492                 .put = alc_ch_mode_put,
2493         },
2494         { } /* end */
2495 };
2496
2497 static struct hda_verb alc880_test_init_verbs[] = {
2498         /* Unmute inputs of 0x0c - 0x0f */
2499         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2500         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
2501         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2502         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
2503         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2504         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
2505         {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2506         {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
2507         /* Vol output for 0x0c-0x0f */
2508         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2509         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2510         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2511         {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2512         /* Set output pins 0x14-0x17 */
2513         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2514         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2515         {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2516         {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2517         /* Unmute output pins 0x14-0x17 */
2518         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2519         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2520         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2521         {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2522         /* Set input pins 0x18-0x1c */
2523         {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
2524         {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
2525         {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
2526         {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
2527         {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
2528         /* Mute input pins 0x18-0x1b */
2529         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2530         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2531         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2532         {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2533         /* ADC set up */
2534         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2535         {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
2536         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2537         {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
2538         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2539         {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
2540         /* Analog input/passthru */
2541         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2542         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2543         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
2544         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2545         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
2546         { }
2547 };
2548 #endif
2549
2550 /*
2551  */
2552
2553 static const char *alc880_models[ALC880_MODEL_LAST] = {
2554         [ALC880_3ST]            = "3stack",
2555         [ALC880_TCL_S700]       = "tcl",
2556         [ALC880_3ST_DIG]        = "3stack-digout",
2557         [ALC880_CLEVO]          = "clevo",
2558         [ALC880_5ST]            = "5stack",
2559         [ALC880_5ST_DIG]        = "5stack-digout",
2560         [ALC880_W810]           = "w810",
2561         [ALC880_Z71V]           = "z71v",
2562         [ALC880_6ST]            = "6stack",
2563         [ALC880_6ST_DIG]        = "6stack-digout",
2564         [ALC880_ASUS]           = "asus",
2565         [ALC880_ASUS_W1V]       = "asus-w1v",
2566         [ALC880_ASUS_DIG]       = "asus-dig",
2567         [ALC880_ASUS_DIG2]      = "asus-dig2",
2568         [ALC880_UNIWILL_DIG]    = "uniwill",
2569         [ALC880_UNIWILL_P53]    = "uniwill-p53",
2570         [ALC880_FUJITSU]        = "fujitsu",
2571         [ALC880_F1734]          = "F1734",
2572         [ALC880_LG]             = "lg",
2573         [ALC880_LG_LW]          = "lg-lw",
2574 #ifdef CONFIG_SND_DEBUG
2575         [ALC880_TEST]           = "test",
2576 #endif
2577         [ALC880_AUTO]           = "auto",
2578 };
2579
2580 static struct snd_pci_quirk alc880_cfg_tbl[] = {
2581         /* Broken BIOS configuration */
2582         SND_PCI_QUIRK(0x2668, 0x8086, NULL, ALC880_6ST_DIG),
2583         SND_PCI_QUIRK(0x8086, 0x2668, NULL, ALC880_6ST_DIG),
2584
2585         SND_PCI_QUIRK(0x1019, 0xa880, "ECS", ALC880_5ST_DIG),
2586         SND_PCI_QUIRK(0x1019, 0xa884, "Acer APFV", ALC880_6ST),
2587         SND_PCI_QUIRK(0x1019, 0x0f69, "Coeus G610P", ALC880_W810),
2588         SND_PCI_QUIRK(0x1025, 0x0070, "ULI", ALC880_3ST_DIG),
2589         SND_PCI_QUIRK(0x1025, 0x0077, "ULI", ALC880_6ST_DIG),
2590         SND_PCI_QUIRK(0x1025, 0x0078, "ULI", ALC880_6ST_DIG),
2591         SND_PCI_QUIRK(0x1025, 0x0087, "ULI", ALC880_6ST_DIG),
2592         SND_PCI_QUIRK(0x1025, 0xe309, "ULI", ALC880_3ST_DIG),
2593         SND_PCI_QUIRK(0x1025, 0xe310, "ULI", ALC880_3ST),
2594
2595         SND_PCI_QUIRK(0x1039, 0x1234, NULL, ALC880_6ST_DIG),
2596         SND_PCI_QUIRK(0x103c, 0x2a09, "HP", ALC880_5ST),
2597
2598         SND_PCI_QUIRK(0x1043, 0x10b3, "ASUS W1V", ALC880_ASUS_W1V),
2599         SND_PCI_QUIRK(0x1043, 0x10c2, "ASUS W6A", ALC880_ASUS_DIG),
2600         SND_PCI_QUIRK(0x1043, 0x10c3, "ASUS Wxx", ALC880_ASUS_DIG),
2601         SND_PCI_QUIRK(0x1043, 0x1113, "ASUS", ALC880_ASUS_DIG),
2602         SND_PCI_QUIRK(0x1043, 0x1123, "ASUS", ALC880_ASUS_DIG),
2603         SND_PCI_QUIRK(0x1043, 0x1173, "ASUS", ALC880_ASUS_DIG),
2604         SND_PCI_QUIRK(0x1043, 0x1964, "ASUS Z71V", ALC880_Z71V),
2605         /* SND_PCI_QUIRK(0x1043, 0x1964, "ASUS", ALC880_ASUS_DIG), */
2606         SND_PCI_QUIRK(0x1043, 0x1973, "ASUS", ALC880_ASUS_DIG),
2607         SND_PCI_QUIRK(0x1043, 0x19b3, "ASUS", ALC880_ASUS_DIG),
2608         SND_PCI_QUIRK(0x1043, 0x814e, "ASUS", ALC880_ASUS),
2609         SND_PCI_QUIRK(0x1043, 0x8181, "ASUS P4GPL", ALC880_ASUS_DIG),
2610         SND_PCI_QUIRK(0x1043, 0x8196, "ASUS P5GD1", ALC880_6ST),
2611         SND_PCI_QUIRK(0x1043, 0x81b4, "ASUS", ALC880_6ST),
2612         SND_PCI_QUIRK(0x1043, 0, "ASUS", ALC880_ASUS),
2613
2614         SND_PCI_QUIRK(0x104d, 0x81d6, "Sony", ALC880_3ST),
2615         SND_PCI_QUIRK(0x104d, 0x81a0, "Sony", ALC880_3ST),
2616         SND_PCI_QUIRK(0x107b, 0x3033, "Gateway", ALC880_5ST),
2617         SND_PCI_QUIRK(0x107b, 0x4039, "Gateway", ALC880_5ST),
2618         SND_PCI_QUIRK(0x107b, 0x3032, "Gateway", ALC880_5ST),
2619         SND_PCI_QUIRK(0x1558, 0x0520, "Clevo m520G", ALC880_CLEVO),
2620         SND_PCI_QUIRK(0x1558, 0x0660, "Clevo m655n", ALC880_CLEVO),
2621         SND_PCI_QUIRK(0x1565, 0x8202, "Biostar", ALC880_5ST_DIG),
2622         SND_PCI_QUIRK(0x161f, 0x203d, "W810", ALC880_W810),
2623         SND_PCI_QUIRK(0x1695, 0x400d, "EPoX", ALC880_5ST_DIG),
2624         SND_PCI_QUIRK(0x19db, 0x4188, "TCL S700", ALC880_TCL_S700),
2625         SND_PCI_QUIRK(0xa0a0, 0x0560, "AOpen i915GMm-HFS", ALC880_5ST_DIG),
2626         SND_PCI_QUIRK(0xe803, 0x1019, NULL, ALC880_6ST_DIG),
2627         SND_PCI_QUIRK(0x1297, 0xc790, "Shuttle ST20G5", ALC880_6ST_DIG),
2628         SND_PCI_QUIRK(0x1458, 0xa102, "Gigabyte K8", ALC880_6ST_DIG),
2629         SND_PCI_QUIRK(0x1462, 0x1150, "MSI", ALC880_6ST_DIG),
2630         SND_PCI_QUIRK(0x1509, 0x925d, "FIC P4M", ALC880_6ST_DIG),
2631         SND_PCI_QUIRK(0x1558, 0x5401, "ASUS", ALC880_ASUS_DIG2),
2632
2633         SND_PCI_QUIRK(0x1584, 0x9050, "Uniwill", ALC880_UNIWILL_DIG),
2634         SND_PCI_QUIRK(0x1584, 0x9070, "Uniwill", ALC880_UNIWILL),
2635         SND_PCI_QUIRK(0x1584, 0x9077, "Uniwill P53", ALC880_UNIWILL_P53),
2636         SND_PCI_QUIRK(0x1584, 0x9054, "Uniwlll", ALC880_F1734),
2637
2638         SND_PCI_QUIRK(0x1695, 0x4012, "EPox EP-5LDA", ALC880_5ST_DIG),
2639         SND_PCI_QUIRK(0x1734, 0x10ac, "FSC", ALC880_UNIWILL),
2640         SND_PCI_QUIRK(0x1734, 0x107c, "FSC F1734", ALC880_F1734),
2641         SND_PCI_QUIRK(0x1734, 0x10b0, "Fujitsu", ALC880_FUJITSU),
2642
2643         SND_PCI_QUIRK(0x1854, 0x003b, "LG", ALC880_LG),
2644         SND_PCI_QUIRK(0x1854, 0x0068, "LG w1", ALC880_LG),
2645         SND_PCI_QUIRK(0x1854, 0x0018, "LG LW20", ALC880_LG_LW),
2646         SND_PCI_QUIRK(0x1854, 0x0077, "LG LW25", ALC880_LG_LW),
2647
2648         SND_PCI_QUIRK(0x8086, 0xe308, "Intel mobo", ALC880_3ST_DIG),
2649         SND_PCI_QUIRK(0x8086, 0xe305, "Intel mobo", ALC880_3ST_DIG),
2650         SND_PCI_QUIRK(0x8086, 0xd402, "Intel mobo", ALC880_3ST_DIG),
2651         SND_PCI_QUIRK(0x8086, 0xd400, "Intel mobo", ALC880_5ST_DIG),
2652         SND_PCI_QUIRK(0x8086, 0xd401, "Intel mobo", ALC880_5ST_DIG),
2653         SND_PCI_QUIRK(0x8086, 0xe224, "Intel mobo", ALC880_5ST_DIG),
2654         SND_PCI_QUIRK(0x8086, 0xe400, "Intel mobo", ALC880_5ST_DIG),
2655         SND_PCI_QUIRK(0x8086, 0xe401, "Intel mobo", ALC880_5ST_DIG),
2656         SND_PCI_QUIRK(0x8086, 0xe402, "Intel mobo", ALC880_5ST_DIG),
2657         SND_PCI_QUIRK(0x8086, 0xa100, "Intel mobo", ALC880_5ST_DIG),
2658         SND_PCI_QUIRK(0x8086, 0, "Intel mobo", ALC880_3ST),
2659
2660         {}
2661 };
2662
2663 /*
2664  * ALC880 codec presets
2665  */
2666 static struct alc_config_preset alc880_presets[] = {
2667         [ALC880_3ST] = {
2668                 .mixers = { alc880_three_stack_mixer },
2669                 .init_verbs = { alc880_volume_init_verbs,
2670                                 alc880_pin_3stack_init_verbs },
2671                 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2672                 .dac_nids = alc880_dac_nids,
2673                 .num_channel_mode = ARRAY_SIZE(alc880_threestack_modes),
2674                 .channel_mode = alc880_threestack_modes,
2675                 .need_dac_fix = 1,
2676                 .input_mux = &alc880_capture_source,
2677         },
2678         [ALC880_3ST_DIG] = {
2679                 .mixers = { alc880_three_stack_mixer },
2680                 .init_verbs = { alc880_volume_init_verbs,
2681                                 alc880_pin_3stack_init_verbs },
2682                 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2683                 .dac_nids = alc880_dac_nids,
2684                 .dig_out_nid = ALC880_DIGOUT_NID,
2685                 .num_channel_mode = ARRAY_SIZE(alc880_threestack_modes),
2686                 .channel_mode = alc880_threestack_modes,
2687                 .need_dac_fix = 1,
2688                 .input_mux = &alc880_capture_source,
2689         },
2690         [ALC880_TCL_S700] = {
2691                 .mixers = { alc880_tcl_s700_mixer },
2692                 .init_verbs = { alc880_volume_init_verbs,
2693                                 alc880_pin_tcl_S700_init_verbs,
2694                                 alc880_gpio2_init_verbs },
2695                 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2696                 .dac_nids = alc880_dac_nids,
2697                 .hp_nid = 0x03,
2698                 .num_channel_mode = ARRAY_SIZE(alc880_2_jack_modes),
2699                 .channel_mode = alc880_2_jack_modes,
2700                 .input_mux = &alc880_capture_source,
2701         },
2702         [ALC880_5ST] = {
2703                 .mixers = { alc880_three_stack_mixer,
2704                             alc880_five_stack_mixer},
2705                 .init_verbs = { alc880_volume_init_verbs,
2706                                 alc880_pin_5stack_init_verbs },
2707                 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2708                 .dac_nids = alc880_dac_nids,
2709                 .num_channel_mode = ARRAY_SIZE(alc880_fivestack_modes),
2710                 .channel_mode = alc880_fivestack_modes,
2711                 .input_mux = &alc880_capture_source,
2712         },
2713         [ALC880_5ST_DIG] = {
2714                 .mixers = { alc880_three_stack_mixer,
2715                             alc880_five_stack_mixer },
2716                 .init_verbs = { alc880_volume_init_verbs,
2717                                 alc880_pin_5stack_init_verbs },
2718                 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2719                 .dac_nids = alc880_dac_nids,
2720                 .dig_out_nid = ALC880_DIGOUT_NID,
2721                 .num_channel_mode = ARRAY_SIZE(alc880_fivestack_modes),
2722                 .channel_mode = alc880_fivestack_modes,
2723                 .input_mux = &alc880_capture_source,
2724         },
2725         [ALC880_6ST] = {
2726                 .mixers = { alc880_six_stack_mixer },
2727                 .init_verbs = { alc880_volume_init_verbs,
2728                                 alc880_pin_6stack_init_verbs },
2729                 .num_dacs = ARRAY_SIZE(alc880_6st_dac_nids),
2730                 .dac_nids = alc880_6st_dac_nids,
2731                 .num_channel_mode = ARRAY_SIZE(alc880_sixstack_modes),
2732                 .channel_mode = alc880_sixstack_modes,
2733                 .input_mux = &alc880_6stack_capture_source,
2734         },
2735         [ALC880_6ST_DIG] = {
2736                 .mixers = { alc880_six_stack_mixer },
2737                 .init_verbs = { alc880_volume_init_verbs,
2738                                 alc880_pin_6stack_init_verbs },
2739                 .num_dacs = ARRAY_SIZE(alc880_6st_dac_nids),
2740                 .dac_nids = alc880_6st_dac_nids,
2741                 .dig_out_nid = ALC880_DIGOUT_NID,
2742                 .num_channel_mode = ARRAY_SIZE(alc880_sixstack_modes),
2743                 .channel_mode = alc880_sixstack_modes,
2744                 .input_mux = &alc880_6stack_capture_source,
2745         },
2746         [ALC880_W810] = {
2747                 .mixers = { alc880_w810_base_mixer },
2748                 .init_verbs = { alc880_volume_init_verbs,
2749                                 alc880_pin_w810_init_verbs,
2750                                 alc880_gpio2_init_verbs },
2751                 .num_dacs = ARRAY_SIZE(alc880_w810_dac_nids),
2752                 .dac_nids = alc880_w810_dac_nids,
2753                 .dig_out_nid = ALC880_DIGOUT_NID,
2754                 .num_channel_mode = ARRAY_SIZE(alc880_w810_modes),
2755                 .channel_mode = alc880_w810_modes,
2756                 .input_mux = &alc880_capture_source,
2757         },
2758         [ALC880_Z71V] = {
2759                 .mixers = { alc880_z71v_mixer },
2760                 .init_verbs = { alc880_volume_init_verbs,
2761                                 alc880_pin_z71v_init_verbs },
2762                 .num_dacs = ARRAY_SIZE(alc880_z71v_dac_nids),
2763                 .dac_nids = alc880_z71v_dac_nids,
2764                 .dig_out_nid = ALC880_DIGOUT_NID,
2765                 .hp_nid = 0x03,
2766                 .num_channel_mode = ARRAY_SIZE(alc880_2_jack_modes),
2767                 .channel_mode = alc880_2_jack_modes,
2768                 .input_mux = &alc880_capture_source,
2769         },
2770         [ALC880_F1734] = {
2771                 .mixers = { alc880_f1734_mixer },
2772                 .init_verbs = { alc880_volume_init_verbs,
2773                                 alc880_pin_f1734_init_verbs },
2774                 .num_dacs = ARRAY_SIZE(alc880_f1734_dac_nids),
2775                 .dac_nids = alc880_f1734_dac_nids,
2776                 .hp_nid = 0x02,
2777                 .num_channel_mode = ARRAY_SIZE(alc880_2_jack_modes),
2778                 .channel_mode = alc880_2_jack_modes,
2779                 .input_mux = &alc880_capture_source,
2780         },
2781         [ALC880_ASUS] = {
2782                 .mixers = { alc880_asus_mixer },
2783                 .init_verbs = { alc880_volume_init_verbs,
2784                                 alc880_pin_asus_init_verbs,
2785                                 alc880_gpio1_init_verbs },
2786                 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2787                 .dac_nids = alc880_asus_dac_nids,
2788                 .num_channel_mode = ARRAY_SIZE(alc880_asus_modes),
2789                 .channel_mode = alc880_asus_modes,
2790                 .need_dac_fix = 1,
2791                 .input_mux = &alc880_capture_source,
2792         },
2793         [ALC880_ASUS_DIG] = {
2794                 .mixers = { alc880_asus_mixer },
2795                 .init_verbs = { alc880_volume_init_verbs,
2796                                 alc880_pin_asus_init_verbs,
2797                                 alc880_gpio1_init_verbs },
2798                 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2799                 .dac_nids = alc880_asus_dac_nids,
2800                 .dig_out_nid = ALC880_DIGOUT_NID,
2801                 .num_channel_mode = ARRAY_SIZE(alc880_asus_modes),
2802                 .channel_mode = alc880_asus_modes,
2803                 .need_dac_fix = 1,
2804                 .input_mux = &alc880_capture_source,
2805         },
2806         [ALC880_ASUS_DIG2] = {
2807                 .mixers = { alc880_asus_mixer },
2808                 .init_verbs = { alc880_volume_init_verbs,
2809                                 alc880_pin_asus_init_verbs,
2810                                 alc880_gpio2_init_verbs }, /* use GPIO2 */
2811                 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2812                 .dac_nids = alc880_asus_dac_nids,
2813                 .dig_out_nid = ALC880_DIGOUT_NID,
2814                 .num_channel_mode = ARRAY_SIZE(alc880_asus_modes),
2815                 .channel_mode = alc880_asus_modes,
2816                 .need_dac_fix = 1,
2817                 .input_mux = &alc880_capture_source,
2818         },
2819         [ALC880_ASUS_W1V] = {
2820                 .mixers = { alc880_asus_mixer, alc880_asus_w1v_mixer },
2821                 .init_verbs = { alc880_volume_init_verbs,
2822                                 alc880_pin_asus_init_verbs,
2823                                 alc880_gpio1_init_verbs },
2824                 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2825                 .dac_nids = alc880_asus_dac_nids,
2826                 .dig_out_nid = ALC880_DIGOUT_NID,
2827                 .num_channel_mode = ARRAY_SIZE(alc880_asus_modes),
2828                 .channel_mode = alc880_asus_modes,
2829                 .need_dac_fix = 1,
2830                 .input_mux = &alc880_capture_source,
2831         },
2832         [ALC880_UNIWILL_DIG] = {
2833                 .mixers = { alc880_asus_mixer, alc880_pcbeep_mixer },
2834                 .init_verbs = { alc880_volume_init_verbs,
2835                                 alc880_pin_asus_init_verbs },
2836                 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2837                 .dac_nids = alc880_asus_dac_nids,
2838                 .dig_out_nid = ALC880_DIGOUT_NID,
2839                 .num_channel_mode = ARRAY_SIZE(alc880_asus_modes),
2840                 .channel_mode = alc880_asus_modes,
2841                 .need_dac_fix = 1,
2842                 .input_mux = &alc880_capture_source,
2843         },
2844         [ALC880_UNIWILL] = {
2845                 .mixers = { alc880_uniwill_mixer },
2846                 .init_verbs = { alc880_volume_init_verbs,
2847                                 alc880_uniwill_init_verbs },
2848                 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2849                 .dac_nids = alc880_asus_dac_nids,
2850                 .dig_out_nid = ALC880_DIGOUT_NID,
2851                 .num_channel_mode = ARRAY_SIZE(alc880_threestack_modes),
2852                 .channel_mode = alc880_threestack_modes,
2853                 .need_dac_fix = 1,
2854                 .input_mux = &alc880_capture_source,
2855                 .unsol_event = alc880_uniwill_unsol_event,
2856                 .init_hook = alc880_uniwill_automute,
2857         },
2858         [ALC880_UNIWILL_P53] = {
2859                 .mixers = { alc880_uniwill_p53_mixer },
2860                 .init_verbs = { alc880_volume_init_verbs,
2861                                 alc880_uniwill_p53_init_verbs },
2862                 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2863                 .dac_nids = alc880_asus_dac_nids,
2864                 .num_channel_mode = ARRAY_SIZE(alc880_w810_modes),
2865                 .channel_mode = alc880_threestack_modes,
2866                 .input_mux = &alc880_capture_source,
2867                 .unsol_event = alc880_uniwill_p53_unsol_event,
2868                 .init_hook = alc880_uniwill_p53_hp_automute,
2869         },
2870         [ALC880_FUJITSU] = {
2871                 .mixers = { alc880_fujitsu_mixer,
2872                             alc880_pcbeep_mixer, },
2873                 .init_verbs = { alc880_volume_init_verbs,
2874                                 alc880_uniwill_p53_init_verbs,
2875                                 alc880_beep_init_verbs },
2876                 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2877                 .dac_nids = alc880_dac_nids,
2878                 .dig_out_nid = ALC880_DIGOUT_NID,
2879                 .num_channel_mode = ARRAY_SIZE(alc880_2_jack_modes),
2880                 .channel_mode = alc880_2_jack_modes,
2881                 .input_mux = &alc880_capture_source,
2882                 .unsol_event = alc880_uniwill_p53_unsol_event,
2883                 .init_hook = alc880_uniwill_p53_hp_automute,
2884         },
2885         [ALC880_CLEVO] = {
2886                 .mixers = { alc880_three_stack_mixer },
2887                 .init_verbs = { alc880_volume_init_verbs,
2888                                 alc880_pin_clevo_init_verbs },
2889                 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2890                 .dac_nids = alc880_dac_nids,
2891                 .hp_nid = 0x03,
2892                 .num_channel_mode = ARRAY_SIZE(alc880_threestack_modes),
2893                 .channel_mode = alc880_threestack_modes,
2894                 .need_dac_fix = 1,
2895                 .input_mux = &alc880_capture_source,
2896         },
2897         [ALC880_LG] = {
2898                 .mixers = { alc880_lg_mixer },
2899                 .init_verbs = { alc880_volume_init_verbs,
2900                                 alc880_lg_init_verbs },
2901                 .num_dacs = ARRAY_SIZE(alc880_lg_dac_nids),
2902                 .dac_nids = alc880_lg_dac_nids,
2903                 .dig_out_nid = ALC880_DIGOUT_NID,
2904                 .num_channel_mode = ARRAY_SIZE(alc880_lg_ch_modes),
2905                 .channel_mode = alc880_lg_ch_modes,
2906                 .need_dac_fix = 1,
2907                 .input_mux = &alc880_lg_capture_source,
2908                 .unsol_event = alc880_lg_unsol_event,
2909                 .init_hook = alc880_lg_automute,
2910 #ifdef CONFIG_SND_HDA_POWER_SAVE
2911                 .loopbacks = alc880_lg_loopbacks,
2912 #endif
2913         },
2914         [ALC880_LG_LW] = {
2915                 .mixers = { alc880_lg_lw_mixer },
2916                 .init_verbs = { alc880_volume_init_verbs,
2917                                 alc880_lg_lw_init_verbs },
2918                 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2919                 .dac_nids = alc880_dac_nids,
2920                 .dig_out_nid = ALC880_DIGOUT_NID,
2921                 .num_channel_mode = ARRAY_SIZE(alc880_lg_lw_modes),
2922                 .channel_mode = alc880_lg_lw_modes,
2923                 .input_mux = &alc880_lg_lw_capture_source,
2924                 .unsol_event = alc880_lg_lw_unsol_event,
2925                 .init_hook = alc880_lg_lw_automute,
2926         },
2927 #ifdef CONFIG_SND_DEBUG
2928         [ALC880_TEST] = {
2929                 .mixers = { alc880_test_mixer },
2930                 .init_verbs = { alc880_test_init_verbs },
2931                 .num_dacs = ARRAY_SIZE(alc880_test_dac_nids),
2932                 .dac_nids = alc880_test_dac_nids,
2933                 .dig_out_nid = ALC880_DIGOUT_NID,
2934                 .num_channel_mode = ARRAY_SIZE(alc880_test_modes),
2935                 .channel_mode = alc880_test_modes,
2936                 .input_mux = &alc880_test_capture_source,
2937         },
2938 #endif
2939 };
2940
2941 /*
2942  * Automatic parse of I/O pins from the BIOS configuration
2943  */
2944
2945 #define NUM_CONTROL_ALLOC       32
2946 #define NUM_VERB_ALLOC          32
2947
2948 enum {
2949         ALC_CTL_WIDGET_VOL,
2950         ALC_CTL_WIDGET_MUTE,
2951         ALC_CTL_BIND_MUTE,
2952 };
2953 static struct snd_kcontrol_new alc880_control_templates[] = {
2954         HDA_CODEC_VOLUME(NULL, 0, 0, 0),
2955         HDA_CODEC_MUTE(NULL, 0, 0, 0),
2956         HDA_BIND_MUTE(NULL, 0, 0, 0),
2957 };
2958
2959 /* add dynamic controls */
2960 static int add_control(struct alc_spec *spec, int type, const char *name,
2961                        unsigned long val)
2962 {
2963         struct snd_kcontrol_new *knew;
2964
2965         if (spec->num_kctl_used >= spec->num_kctl_alloc) {
2966                 int num = spec->num_kctl_alloc + NUM_CONTROL_ALLOC;
2967
2968                 /* array + terminator */
2969                 knew = kcalloc(num + 1, sizeof(*knew), GFP_KERNEL);
2970                 if (!knew)
2971                         return -ENOMEM;
2972                 if (spec->kctl_alloc) {
2973                         memcpy(knew, spec->kctl_alloc,
2974                                sizeof(*knew) * spec->num_kctl_alloc);
2975                         kfree(spec->kctl_alloc);
2976                 }
2977                 spec->kctl_alloc = knew;
2978                 spec->num_kctl_alloc = num;
2979         }
2980
2981         knew = &spec->kctl_alloc[spec->num_kctl_used];
2982         *knew = alc880_control_templates[type];
2983         knew->name = kstrdup(name, GFP_KERNEL);
2984         if (!knew->name)
2985                 return -ENOMEM;
2986         knew->private_value = val;
2987         spec->num_kctl_used++;
2988         return 0;
2989 }
2990
2991 #define alc880_is_fixed_pin(nid)        ((nid) >= 0x14 && (nid) <= 0x17)
2992 #define alc880_fixed_pin_idx(nid)       ((nid) - 0x14)
2993 #define alc880_is_multi_pin(nid)        ((nid) >= 0x18)
2994 #define alc880_multi_pin_idx(nid)       ((nid) - 0x18)
2995 #define alc880_is_input_pin(nid)        ((nid) >= 0x18)
2996 #define alc880_input_pin_idx(nid)       ((nid) - 0x18)
2997 #define alc880_idx_to_dac(nid)          ((nid) + 0x02)
2998 #define alc880_dac_to_idx(nid)          ((nid) - 0x02)
2999 #define alc880_idx_to_mixer(nid)        ((nid) + 0x0c)
3000 #define alc880_idx_to_selector(nid)     ((nid) + 0x10)
3001 #define ALC880_PIN_CD_NID               0x1c
3002
3003 /* fill in the dac_nids table from the parsed pin configuration */
3004 static int alc880_auto_fill_dac_nids(struct alc_spec *spec,
3005                                      const struct auto_pin_cfg *cfg)
3006 {
3007         hda_nid_t nid;
3008         int assigned[4];
3009         int i, j;
3010
3011         memset(assigned, 0, sizeof(assigned));
3012         spec->multiout.dac_nids = spec->private_dac_nids;
3013
3014         /* check the pins hardwired to audio widget */
3015         for (i = 0; i < cfg->line_outs; i++) {
3016                 nid = cfg->line_out_pins[i];
3017                 if (alc880_is_fixed_pin(nid)) {
3018                         int idx = alc880_fixed_pin_idx(nid);
3019                         spec->multiout.dac_nids[i] = alc880_idx_to_dac(idx);
3020                         assigned[idx] = 1;
3021                 }
3022         }
3023         /* left pins can be connect to any audio widget */
3024         for (i = 0; i < cfg->line_outs; i++) {
3025                 nid = cfg->line_out_pins[i];
3026                 if (alc880_is_fixed_pin(nid))
3027                         continue;
3028                 /* search for an empty channel */
3029                 for (j = 0; j < cfg->line_outs; j++) {
3030                         if (!assigned[j]) {
3031                                 spec->multiout.dac_nids[i] =
3032                                         alc880_idx_to_dac(j);
3033                                 assigned[j] = 1;
3034                                 break;
3035                         }
3036                 }
3037         }
3038         spec->multiout.num_dacs = cfg->line_outs;
3039         return 0;
3040 }
3041
3042 /* add playback controls from the parsed DAC table */
3043 static int alc880_auto_create_multi_out_ctls(struct alc_spec *spec,
3044                                              const struct auto_pin_cfg *cfg)
3045 {
3046         char name[32];
3047         static const char *chname[4] = {
3048                 "Front", "Surround", NULL /*CLFE*/, "Side"
3049         };
3050         hda_nid_t nid;
3051         int i, err;
3052
3053         for (i = 0; i < cfg->line_outs; i++) {
3054                 if (!spec->multiout.dac_nids[i])
3055                         continue;
3056                 nid = alc880_idx_to_mixer(alc880_dac_to_idx(spec->multiout.dac_nids[i]));
3057                 if (i == 2) {
3058                         /* Center/LFE */
3059                         err = add_control(spec, ALC_CTL_WIDGET_VOL,
3060                                           "Center Playback Volume",
3061                                           HDA_COMPOSE_AMP_VAL(nid, 1, 0,
3062                                                               HDA_OUTPUT));
3063                         if (err < 0)
3064                                 return err;
3065                         err = add_control(spec, ALC_CTL_WIDGET_VOL,
3066                                           "LFE Playback Volume",
3067                                           HDA_COMPOSE_AMP_VAL(nid, 2, 0,
3068                                                               HDA_OUTPUT));
3069                         if (err < 0)
3070                                 return err;
3071                         err = add_control(spec, ALC_CTL_BIND_MUTE,
3072                                           "Center Playback Switch",
3073                                           HDA_COMPOSE_AMP_VAL(nid, 1, 2,
3074                                                               HDA_INPUT));
3075                         if (err < 0)
3076                                 return err;
3077                         err = add_control(spec, ALC_CTL_BIND_MUTE,
3078                                           "LFE Playback Switch",
3079                                           HDA_COMPOSE_AMP_VAL(nid, 2, 2,
3080                                                               HDA_INPUT));
3081                         if (err < 0)
3082                                 return err;
3083                 } else {
3084                         sprintf(name, "%s Playback Volume", chname[i]);
3085                         err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
3086                                           HDA_COMPOSE_AMP_VAL(nid, 3, 0,
3087                                                               HDA_OUTPUT));
3088                         if (err < 0)
3089                                 return err;
3090                         sprintf(name, "%s Playback Switch", chname[i]);
3091                         err = add_control(spec, ALC_CTL_BIND_MUTE, name,
3092                                           HDA_COMPOSE_AMP_VAL(nid, 3, 2,
3093                                                               HDA_INPUT));
3094                         if (err < 0)
3095                                 return err;
3096                 }
3097         }
3098         return 0;
3099 }
3100
3101 /* add playback controls for speaker and HP outputs */
3102 static int alc880_auto_create_extra_out(struct alc_spec *spec, hda_nid_t pin,
3103                                         const char *pfx)
3104 {
3105         hda_nid_t nid;
3106         int err;
3107         char name[32];
3108
3109         if (!pin)
3110                 return 0;
3111
3112         if (alc880_is_fixed_pin(pin)) {
3113                 nid = alc880_idx_to_dac(alc880_fixed_pin_idx(pin));
3114                 /* specify the DAC as the extra output */
3115                 if (!spec->multiout.hp_nid)
3116                         spec->multiout.hp_nid = nid;
3117                 else
3118                         spec->multiout.extra_out_nid[0] = nid;
3119                 /* control HP volume/switch on the output mixer amp */
3120                 nid = alc880_idx_to_mixer(alc880_fixed_pin_idx(pin));
3121                 sprintf(name, "%s Playback Volume", pfx);
3122                 err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
3123                                   HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT));
3124                 if (err < 0)
3125                         return err;
3126                 sprintf(name, "%s Playback Switch", pfx);
3127                 err = add_control(spec, ALC_CTL_BIND_MUTE, name,
3128                                   HDA_COMPOSE_AMP_VAL(nid, 3, 2, HDA_INPUT));
3129                 if (err < 0)
3130                         return err;
3131         } else if (alc880_is_multi_pin(pin)) {
3132                 /* set manual connection */
3133                 /* we have only a switch on HP-out PIN */
3134                 sprintf(name, "%s Playback Switch", pfx);
3135                 err = add_control(spec, ALC_CTL_WIDGET_MUTE, name,
3136                                   HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_OUTPUT));
3137                 if (err < 0)
3138                         return err;
3139         }
3140         return 0;
3141 }
3142
3143 /* create input playback/capture controls for the given pin */
3144 static int new_analog_input(struct alc_spec *spec, hda_nid_t pin,
3145                             const char *ctlname,
3146                             int idx, hda_nid_t mix_nid)
3147 {
3148         char name[32];
3149         int err;
3150
3151         sprintf(name, "%s Playback Volume", ctlname);
3152         err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
3153                           HDA_COMPOSE_AMP_VAL(mix_nid, 3, idx, HDA_INPUT));
3154         if (err < 0)
3155                 return err;
3156         sprintf(name, "%s Playback Switch", ctlname);
3157         err = add_control(spec, ALC_CTL_WIDGET_MUTE, name,
3158                           HDA_COMPOSE_AMP_VAL(mix_nid, 3, idx, HDA_INPUT));
3159         if (err < 0)
3160                 return err;
3161         return 0;
3162 }
3163
3164 /* create playback/capture controls for input pins */
3165 static int alc880_auto_create_analog_input_ctls(struct alc_spec *spec,
3166                                                 const struct auto_pin_cfg *cfg)
3167 {
3168         struct hda_input_mux *imux = &spec->private_imux;
3169         int i, err, idx;
3170
3171         for (i = 0; i < AUTO_PIN_LAST; i++) {
3172                 if (alc880_is_input_pin(cfg->input_pins[i])) {
3173                         idx = alc880_input_pin_idx(cfg->input_pins[i]);
3174                         err = new_analog_input(spec, cfg->input_pins[i],
3175                                                auto_pin_cfg_labels[i],
3176                                                idx, 0x0b);
3177                         if (err < 0)
3178                                 return err;
3179                         imux->items[imux->num_items].label =
3180                                 auto_pin_cfg_labels[i];
3181                         imux->items[imux->num_items].index =
3182                                 alc880_input_pin_idx(cfg->input_pins[i]);
3183                         imux->num_items++;
3184                 }
3185         }
3186         return 0;
3187 }
3188
3189 static void alc880_auto_set_output_and_unmute(struct hda_codec *codec,
3190                                               hda_nid_t nid, int pin_type,
3191                                               int dac_idx)
3192 {
3193         /* set as output */
3194         snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
3195                             pin_type);
3196         snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
3197                             AMP_OUT_UNMUTE);
3198         /* need the manual connection? */
3199         if (alc880_is_multi_pin(nid)) {
3200                 struct alc_spec *spec = codec->spec;
3201                 int idx = alc880_multi_pin_idx(nid);
3202                 snd_hda_codec_write(codec, alc880_idx_to_selector(idx), 0,
3203                                     AC_VERB_SET_CONNECT_SEL,
3204                                     alc880_dac_to_idx(spec->multiout.dac_nids[dac_idx]));
3205         }
3206 }
3207
3208 static int get_pin_type(int line_out_type)
3209 {
3210         if (line_out_type == AUTO_PIN_HP_OUT)
3211                 return PIN_HP;
3212         else
3213                 return PIN_OUT;
3214 }
3215
3216 static void alc880_auto_init_multi_out(struct hda_codec *codec)
3217 {
3218         struct alc_spec *spec = codec->spec;
3219         int i;
3220         
3221         alc_subsystem_id(codec, 0x15, 0x1b, 0x14);
3222         for (i = 0; i < spec->autocfg.line_outs; i++) {
3223                 hda_nid_t nid = spec->autocfg.line_out_pins[i];
3224                 int pin_type = get_pin_type(spec->autocfg.line_out_type);
3225                 alc880_auto_set_output_and_unmute(codec, nid, pin_type, i);
3226         }
3227 }
3228
3229 static void alc880_auto_init_extra_out(struct hda_codec *codec)
3230 {
3231         struct alc_spec *spec = codec->spec;
3232         hda_nid_t pin;
3233
3234         pin = spec->autocfg.speaker_pins[0];
3235         if (pin) /* connect to front */
3236                 alc880_auto_set_output_and_unmute(codec, pin, PIN_OUT, 0);
3237         pin = spec->autocfg.hp_pins[0];
3238         if (pin) /* connect to front */
3239                 alc880_auto_set_output_and_unmute(codec, pin, PIN_HP, 0);
3240 }
3241
3242 static void alc880_auto_init_analog_input(struct hda_codec *codec)
3243 {
3244         struct alc_spec *spec = codec->spec;
3245         int i;
3246
3247         for (i = 0; i < AUTO_PIN_LAST; i++) {
3248                 hda_nid_t nid = spec->autocfg.input_pins[i];
3249                 if (alc880_is_input_pin(nid)) {
3250                         snd_hda_codec_write(codec, nid, 0,
3251                                             AC_VERB_SET_PIN_WIDGET_CONTROL,
3252                                             i <= AUTO_PIN_FRONT_MIC ?
3253                                             PIN_VREF80 : PIN_IN);
3254                         if (nid != ALC880_PIN_CD_NID)
3255                                 snd_hda_codec_write(codec, nid, 0,
3256                                                     AC_VERB_SET_AMP_GAIN_MUTE,
3257                                                     AMP_OUT_MUTE);
3258                 }
3259         }
3260 }
3261
3262 /* parse the BIOS configuration and set up the alc_spec */
3263 /* return 1 if successful, 0 if the proper config is not found,
3264  * or a negative error code
3265  */
3266 static int alc880_parse_auto_config(struct hda_codec *codec)
3267 {
3268         struct alc_spec *spec = codec->spec;
3269         int err;
3270         static hda_nid_t alc880_ignore[] = { 0x1d, 0 };
3271
3272         err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
3273                                            alc880_ignore);
3274         if (err < 0)
3275                 return err;
3276         if (!spec->autocfg.line_outs)
3277                 return 0; /* can't find valid BIOS pin config */
3278
3279         err = alc880_auto_fill_dac_nids(spec, &spec->autocfg);
3280         if (err < 0)
3281                 return err;
3282         err = alc880_auto_create_multi_out_ctls(spec, &spec->autocfg);
3283         if (err < 0)
3284                 return err;
3285         err = alc880_auto_create_extra_out(spec,
3286                                            spec->autocfg.speaker_pins[0],
3287                                            "Speaker");
3288         if (err < 0)
3289                 return err;
3290         err = alc880_auto_create_extra_out(spec, spec->autocfg.hp_pins[0],
3291                                            "Headphone");
3292         if (err < 0)
3293                 return err;
3294         err = alc880_auto_create_analog_input_ctls(spec, &spec->autocfg);
3295         if (err < 0)
3296                 return err;
3297
3298         spec->multiout.max_channels = spec->multiout.num_dacs * 2;
3299
3300         if (spec->autocfg.dig_out_pin)
3301                 spec->multiout.dig_out_nid = ALC880_DIGOUT_NID;
3302         if (spec->autocfg.dig_in_pin)
3303                 spec->dig_in_nid = ALC880_DIGIN_NID;
3304
3305         if (spec->kctl_alloc)
3306                 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
3307
3308         spec->init_verbs[spec->num_init_verbs++] = alc880_volume_init_verbs;
3309
3310         spec->num_mux_defs = 1;
3311         spec->input_mux = &spec->private_imux;
3312
3313         return 1;
3314 }
3315
3316 /* additional initialization for auto-configuration model */
3317 static void alc880_auto_init(struct hda_codec *codec)
3318 {
3319         alc880_auto_init_multi_out(codec);
3320         alc880_auto_init_extra_out(codec);
3321         alc880_auto_init_analog_input(codec);
3322 }
3323
3324 /*
3325  * OK, here we have finally the patch for ALC880
3326  */
3327
3328 static int patch_alc880(struct hda_codec *codec)
3329 {
3330         struct alc_spec *spec;
3331         int board_config;
3332         int err;
3333
3334         spec = kzalloc(sizeof(*spec), GFP_KERNEL);
3335         if (spec == NULL)
3336                 return -ENOMEM;
3337
3338         codec->spec = spec;
3339
3340         board_config = snd_hda_check_board_config(codec, ALC880_MODEL_LAST,
3341                                                   alc880_models,
3342                                                   alc880_cfg_tbl);
3343         if (board_config < 0) {
3344                 printk(KERN_INFO "hda_codec: Unknown model for ALC880, "
3345                        "trying auto-probe from BIOS...\n");
3346                 board_config = ALC880_AUTO;
3347         }
3348
3349         if (board_config == ALC880_AUTO) {
3350                 /* automatic parse from the BIOS config */
3351                 err = alc880_parse_auto_config(codec);
3352                 if (err < 0) {
3353                         alc_free(codec);
3354                         return err;
3355                 } else if (!err) {
3356                         printk(KERN_INFO
3357                                "hda_codec: Cannot set up configuration "
3358                                "from BIOS.  Using 3-stack mode...\n");
3359                         board_config = ALC880_3ST;
3360                 }
3361         }
3362
3363         if (board_config != ALC880_AUTO)
3364                 setup_preset(spec, &alc880_presets[board_config]);
3365
3366         spec->stream_name_analog = "ALC880 Analog";
3367         spec->stream_analog_playback = &alc880_pcm_analog_playback;
3368         spec->stream_analog_capture = &alc880_pcm_analog_capture;
3369
3370         spec->stream_name_digital = "ALC880 Digital";
3371         spec->stream_digital_playback = &alc880_pcm_digital_playback;
3372         spec->stream_digital_capture = &alc880_pcm_digital_capture;
3373
3374         if (!spec->adc_nids && spec->input_mux) {
3375                 /* check whether NID 0x07 is valid */
3376                 unsigned int wcap = get_wcaps(codec, alc880_adc_nids[0]);
3377                 /* get type */
3378                 wcap = (wcap & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT;
3379                 if (wcap != AC_WID_AUD_IN) {
3380                         spec->adc_nids = alc880_adc_nids_alt;
3381                         spec->num_adc_nids = ARRAY_SIZE(alc880_adc_nids_alt);
3382                         spec->mixers[spec->num_mixers] =
3383                                 alc880_capture_alt_mixer;
3384                         spec->num_mixers++;
3385                 } else {
3386                         spec->adc_nids = alc880_adc_nids;
3387                         spec->num_adc_nids = ARRAY_SIZE(alc880_adc_nids);
3388                         spec->mixers[spec->num_mixers] = alc880_capture_mixer;
3389                         spec->num_mixers++;
3390                 }
3391         }
3392
3393         codec->patch_ops = alc_patch_ops;
3394         if (board_config == ALC880_AUTO)
3395                 spec->init_hook = alc880_auto_init;
3396 #ifdef CONFIG_SND_HDA_POWER_SAVE
3397         if (!spec->loopback.amplist)
3398                 spec->loopback.amplist = alc880_loopbacks;
3399 #endif
3400
3401         return 0;
3402 }
3403
3404
3405 /*
3406  * ALC260 support
3407  */
3408
3409 static hda_nid_t alc260_dac_nids[1] = {
3410         /* front */
3411         0x02,
3412 };
3413
3414 static hda_nid_t alc260_adc_nids[1] = {
3415         /* ADC0 */
3416         0x04,
3417 };
3418
3419 static hda_nid_t alc260_adc_nids_alt[1] = {
3420         /* ADC1 */
3421         0x05,
3422 };
3423
3424 static hda_nid_t alc260_hp_adc_nids[2] = {
3425         /* ADC1, 0 */
3426         0x05, 0x04
3427 };
3428
3429 /* NIDs used when simultaneous access to both ADCs makes sense.  Note that
3430  * alc260_capture_mixer assumes ADC0 (nid 0x04) is the first ADC.
3431  */
3432 static hda_nid_t alc260_dual_adc_nids[2] = {
3433         /* ADC0, ADC1 */
3434         0x04, 0x05
3435 };
3436
3437 #define ALC260_DIGOUT_NID       0x03
3438 #define ALC260_DIGIN_NID        0x06
3439
3440 static struct hda_input_mux alc260_capture_source = {
3441         .num_items = 4,
3442         .items = {
3443                 { "Mic", 0x0 },
3444                 { "Front Mic", 0x1 },
3445                 { "Line", 0x2 },
3446                 { "CD", 0x4 },
3447         },
3448 };
3449
3450 /* On Fujitsu S702x laptops capture only makes sense from Mic/LineIn jack,
3451  * headphone jack and the internal CD lines since these are the only pins at
3452  * which audio can appear.  For flexibility, also allow the option of
3453  * recording the mixer output on the second ADC (ADC0 doesn't have a
3454  * connection to the mixer output).
3455  */
3456 static struct hda_input_mux alc260_fujitsu_capture_sources[2] = {
3457         {
3458                 .num_items = 3,
3459                 .items = {
3460                         { "Mic/Line", 0x0 },
3461                         { "CD", 0x4 },
3462                         { "Headphone", 0x2 },
3463                 },
3464         },
3465         {
3466                 .num_items = 4,
3467                 .items = {
3468                         { "Mic/Line", 0x0 },
3469                         { "CD", 0x4 },
3470                         { "Headphone", 0x2 },
3471                         { "Mixer", 0x5 },
3472                 },
3473         },
3474
3475 };
3476
3477 /* Acer TravelMate(/Extensa/Aspire) notebooks have similar configuration to
3478  * the Fujitsu S702x, but jacks are marked differently.
3479  */
3480 static struct hda_input_mux alc260_acer_capture_sources[2] = {
3481         {
3482                 .num_items = 4,
3483                 .items = {
3484                         { "Mic", 0x0 },
3485                         { "Line", 0x2 },
3486                         { "CD", 0x4 },
3487                         { "Headphone", 0x5 },
3488                 },
3489         },
3490         {
3491                 .num_items = 5,
3492                 .items = {
3493                         { "Mic", 0x0 },
3494                         { "Line", 0x2 },
3495                         { "CD", 0x4 },
3496                         { "Headphone", 0x6 },
3497                         { "Mixer", 0x5 },
3498                 },
3499         },
3500 };
3501 /*
3502  * This is just place-holder, so there's something for alc_build_pcms to look
3503  * at when it calculates the maximum number of channels. ALC260 has no mixer
3504  * element which allows changing the channel mode, so the verb list is
3505  * never used.
3506  */
3507 static struct hda_channel_mode alc260_modes[1] = {
3508         { 2, NULL },
3509 };
3510
3511
3512 /* Mixer combinations
3513  *
3514  * basic: base_output + input + pc_beep + capture
3515  * HP: base_output + input + capture_alt
3516  * HP_3013: hp_3013 + input + capture
3517  * fujitsu: fujitsu + capture
3518  * acer: acer + capture
3519  */
3520
3521 static struct snd_kcontrol_new alc260_base_output_mixer[] = {
3522         HDA_CODEC_VOLUME("Front Playback Volume", 0x08, 0x0, HDA_OUTPUT),
3523         HDA_BIND_MUTE("Front Playback Switch", 0x08, 2, HDA_INPUT),
3524         HDA_CODEC_VOLUME("Headphone Playback Volume", 0x09, 0x0, HDA_OUTPUT),
3525         HDA_BIND_MUTE("Headphone Playback Switch", 0x09, 2, HDA_INPUT),
3526         HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x0a, 1, 0x0, HDA_OUTPUT),
3527         HDA_BIND_MUTE_MONO("Mono Playback Switch", 0x0a, 1, 2, HDA_INPUT),
3528         { } /* end */
3529 };
3530
3531 static struct snd_kcontrol_new alc260_input_mixer[] = {
3532         HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT),
3533         HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT),
3534         HDA_CODEC_VOLUME("Line Playback Volume", 0x07, 0x02, HDA_INPUT),
3535         HDA_CODEC_MUTE("Line Playback Switch", 0x07, 0x02, HDA_INPUT),
3536         HDA_CODEC_VOLUME("Mic Playback Volume", 0x07, 0x0, HDA_INPUT),
3537         HDA_CODEC_MUTE("Mic Playback Switch", 0x07, 0x0, HDA_INPUT),
3538         HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x07, 0x01, HDA_INPUT),
3539         HDA_CODEC_MUTE("Front Mic Playback Switch", 0x07, 0x01, HDA_INPUT),
3540         { } /* end */
3541 };
3542
3543 static struct snd_kcontrol_new alc260_pc_beep_mixer[] = {
3544         HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x07, 0x05, HDA_INPUT),
3545         HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x07, 0x05, HDA_INPUT),
3546         { } /* end */
3547 };
3548
3549 static struct snd_kcontrol_new alc260_hp_3013_mixer[] = {
3550         HDA_CODEC_VOLUME("Front Playback Volume", 0x09, 0x0, HDA_OUTPUT),
3551         HDA_CODEC_MUTE("Front Playback Switch", 0x10, 0x0, HDA_OUTPUT),
3552         HDA_CODEC_VOLUME("Aux-In Playback Volume", 0x07, 0x06, HDA_INPUT),
3553         HDA_CODEC_MUTE("Aux-In Playback Switch", 0x07, 0x06, HDA_INPUT),
3554         HDA_CODEC_VOLUME("Headphone Playback Volume", 0x08, 0x0, HDA_OUTPUT),
3555         HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT),
3556         HDA_CODEC_VOLUME_MONO("iSpeaker Playback Volume", 0x0a, 1, 0x0, HDA_OUTPUT),
3557         HDA_CODEC_MUTE_MONO("iSpeaker Playback Switch", 0x11, 1, 0x0, HDA_OUTPUT),
3558         { } /* end */
3559 };
3560
3561 /* Fujitsu S702x series laptops.  ALC260 pin usage: Mic/Line jack = 0x12, 
3562  * HP jack = 0x14, CD audio =  0x16, internal speaker = 0x10.
3563  */
3564 static struct snd_kcontrol_new alc260_fujitsu_mixer[] = {
3565         HDA_CODEC_VOLUME("Headphone Playback Volume", 0x08, 0x0, HDA_OUTPUT),
3566         HDA_BIND_MUTE("Headphone Playback Switch", 0x08, 2, HDA_INPUT),
3567         ALC_PIN_MODE("Headphone Jack Mode", 0x14, ALC_PIN_DIR_INOUT),
3568         HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT),
3569         HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT),
3570         HDA_CODEC_VOLUME("Mic/Line Playback Volume", 0x07, 0x0, HDA_INPUT),
3571         HDA_CODEC_MUTE("Mic/Line Playback Switch", 0x07, 0x0, HDA_INPUT),
3572         ALC_PIN_MODE("Mic/Line Jack Mode", 0x12, ALC_PIN_DIR_IN),
3573         HDA_CODEC_VOLUME("Beep Playback Volume", 0x07, 0x05, HDA_INPUT),
3574         HDA_CODEC_MUTE("Beep Playback Switch", 0x07, 0x05, HDA_INPUT),
3575         HDA_CODEC_VOLUME("Internal Speaker Playback Volume", 0x09, 0x0, HDA_OUTPUT),
3576         HDA_BIND_MUTE("Internal Speaker Playback Switch", 0x09, 2, HDA_INPUT),
3577         { } /* end */
3578 };
3579
3580 /* Mixer for Acer TravelMate(/Extensa/Aspire) notebooks.  Note that current
3581  * versions of the ALC260 don't act on requests to enable mic bias from NID
3582  * 0x0f (used to drive the headphone jack in these laptops).  The ALC260
3583  * datasheet doesn't mention this restriction.  At this stage it's not clear
3584  * whether this behaviour is intentional or is a hardware bug in chip
3585  * revisions available in early 2006.  Therefore for now allow the
3586  * "Headphone Jack Mode" control to span all choices, but if it turns out
3587  * that the lack of mic bias for this NID is intentional we could change the
3588  * mode from ALC_PIN_DIR_INOUT to ALC_PIN_DIR_INOUT_NOMICBIAS.
3589  *
3590  * In addition, Acer TravelMate(/Extensa/Aspire) notebooks in early 2006
3591  * don't appear to make the mic bias available from the "line" jack, even
3592  * though the NID used for this jack (0x14) can supply it.  The theory is
3593  * that perhaps Acer have included blocking capacitors between the ALC260
3594  * and the output jack.  If this turns out to be the case for all such
3595  * models the "Line Jack Mode" mode could be changed from ALC_PIN_DIR_INOUT
3596  * to ALC_PIN_DIR_INOUT_NOMICBIAS.
3597  *
3598  * The C20x Tablet series have a mono internal speaker which is controlled
3599  * via the chip's Mono sum widget and pin complex, so include the necessary
3600  * controls for such models.  On models without a "mono speaker" the control
3601  * won't do anything.
3602  */
3603 static struct snd_kcontrol_new alc260_acer_mixer[] = {
3604         HDA_CODEC_VOLUME("Master Playback Volume", 0x08, 0x0, HDA_OUTPUT),
3605         HDA_BIND_MUTE("Master Playback Switch", 0x08, 2, HDA_INPUT),
3606         ALC_PIN_MODE("Headphone Jack Mode", 0x0f, ALC_PIN_DIR_INOUT),
3607         HDA_CODEC_VOLUME_MONO("Mono Speaker Playback Volume", 0x0a, 1, 0x0,
3608                               HDA_OUTPUT),
3609         HDA_BIND_MUTE_MONO("Mono Speaker Playback Switch", 0x0a, 1, 2,
3610                            HDA_INPUT),
3611         HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT),
3612         HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT),
3613         HDA_CODEC_VOLUME("Mic Playback Volume", 0x07, 0x0, HDA_INPUT),
3614         HDA_CODEC_MUTE("Mic Playback Switch", 0x07, 0x0, HDA_INPUT),
3615         ALC_PIN_MODE("Mic Jack Mode", 0x12, ALC_PIN_DIR_IN),
3616         HDA_CODEC_VOLUME("Line Playback Volume", 0x07, 0x02, HDA_INPUT),
3617         HDA_CODEC_MUTE("Line Playback Switch", 0x07, 0x02, HDA_INPUT),
3618         ALC_PIN_MODE("Line Jack Mode", 0x14, ALC_PIN_DIR_INOUT),
3619         HDA_CODEC_VOLUME("Beep Playback Volume", 0x07, 0x05, HDA_INPUT),
3620         HDA_CODEC_MUTE("Beep Playback Switch", 0x07, 0x05, HDA_INPUT),
3621         { } /* end */
3622 };
3623
3624 /* Packard bell V7900  ALC260 pin usage: HP = 0x0f, Mic jack = 0x12,
3625  * Line In jack = 0x14, CD audio =  0x16, pc beep = 0x17.
3626  */
3627 static struct snd_kcontrol_new alc260_will_mixer[] = {
3628         HDA_CODEC_VOLUME("Master Playback Volume", 0x08, 0x0, HDA_OUTPUT),
3629         HDA_BIND_MUTE("Master Playback Switch", 0x08, 0x2, HDA_INPUT),
3630         HDA_CODEC_VOLUME("Mic Playback Volume", 0x07, 0x0, HDA_INPUT),
3631         HDA_CODEC_MUTE("Mic Playback Switch", 0x07, 0x0, HDA_INPUT),
3632         ALC_PIN_MODE("Mic Jack Mode", 0x12, ALC_PIN_DIR_IN),
3633         HDA_CODEC_VOLUME("Line Playback Volume", 0x07, 0x02, HDA_INPUT),
3634         HDA_CODEC_MUTE("Line Playback Switch", 0x07, 0x02, HDA_INPUT),
3635         ALC_PIN_MODE("Line Jack Mode", 0x14, ALC_PIN_DIR_INOUT),
3636         HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT),
3637         HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT),
3638         HDA_CODEC_VOLUME("Beep Playback Volume", 0x07, 0x05, HDA_INPUT),
3639         HDA_CODEC_MUTE("Beep Playback Switch", 0x07, 0x05, HDA_INPUT),
3640         { } /* end */
3641 };
3642
3643 /* Replacer 672V ALC260 pin usage: Mic jack = 0x12,
3644  * Line In jack = 0x14, ATAPI Mic = 0x13, speaker = 0x0f.
3645  */
3646 static struct snd_kcontrol_new alc260_replacer_672v_mixer[] = {
3647         HDA_CODEC_VOLUME("Master Playback Volume", 0x08, 0x0, HDA_OUTPUT),
3648         HDA_BIND_MUTE("Master Playback Switch", 0x08, 0x2, HDA_INPUT),
3649         HDA_CODEC_VOLUME("Mic Playback Volume", 0x07, 0x0, HDA_INPUT),
3650         HDA_CODEC_MUTE("Mic Playback Switch", 0x07, 0x0, HDA_INPUT),
3651         ALC_PIN_MODE("Mic Jack Mode", 0x12, ALC_PIN_DIR_IN),
3652         HDA_CODEC_VOLUME("ATAPI Mic Playback Volume", 0x07, 0x1, HDA_INPUT),
3653         HDA_CODEC_MUTE("ATATI Mic Playback Switch", 0x07, 0x1, HDA_INPUT),
3654         HDA_CODEC_VOLUME("Line Playback Volume", 0x07, 0x02, HDA_INPUT),
3655         HDA_CODEC_MUTE("Line Playback Switch", 0x07, 0x02, HDA_INPUT),
3656         ALC_PIN_MODE("Line Jack Mode", 0x14, ALC_PIN_DIR_INOUT),
3657         { } /* end */
3658 };
3659
3660 /* capture mixer elements */
3661 static struct snd_kcontrol_new alc260_capture_mixer[] = {
3662         HDA_CODEC_VOLUME("Capture Volume", 0x04, 0x0, HDA_INPUT),
3663         HDA_CODEC_MUTE("Capture Switch", 0x04, 0x0, HDA_INPUT),
3664         HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x05, 0x0, HDA_INPUT),
3665         HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x05, 0x0, HDA_INPUT),
3666         {
3667                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
3668                 /* The multiple "Capture Source" controls confuse alsamixer
3669                  * So call somewhat different..
3670                  * FIXME: the controls appear in the "playback" view!
3671                  */
3672                 /* .name = "Capture Source", */
3673                 .name = "Input Source",
3674                 .count = 2,
3675                 .info = alc_mux_enum_info,
3676                 .get = alc_mux_enum_get,
3677                 .put = alc_mux_enum_put,
3678         },
3679         { } /* end */
3680 };
3681
3682 static struct snd_kcontrol_new alc260_capture_alt_mixer[] = {
3683         HDA_CODEC_VOLUME("Capture Volume", 0x05, 0x0, HDA_INPUT),
3684         HDA_CODEC_MUTE("Capture Switch", 0x05, 0x0, HDA_INPUT),
3685         {
3686                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
3687                 /* The multiple "Capture Source" controls confuse alsamixer
3688                  * So call somewhat different..
3689                  * FIXME: the controls appear in the "playback" view!
3690                  */
3691                 /* .name = "Capture Source", */
3692                 .name = "Input Source",
3693                 .count = 1,
3694                 .info = alc_mux_enum_info,
3695                 .get = alc_mux_enum_get,
3696                 .put = alc_mux_enum_put,
3697         },
3698         { } /* end */
3699 };
3700
3701 /*
3702  * initialization verbs
3703  */
3704 static struct hda_verb alc260_init_verbs[] = {
3705         /* Line In pin widget for input */
3706         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
3707         /* CD pin widget for input */
3708         {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
3709         /* Mic1 (rear panel) pin widget for input and vref at 80% */
3710         {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
3711         /* Mic2 (front panel) pin widget for input and vref at 80% */
3712         {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
3713         /* LINE-2 is used for line-out in rear */
3714         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
3715         /* select line-out */
3716         {0x0e, AC_VERB_SET_CONNECT_SEL, 0x00},
3717         /* LINE-OUT pin */
3718         {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
3719         /* enable HP */
3720         {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
3721         /* enable Mono */
3722         {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
3723         /* mute capture amp left and right */
3724         {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3725         /* set connection select to line in (default select for this ADC) */
3726         {0x04, AC_VERB_SET_CONNECT_SEL, 0x02},
3727         /* mute capture amp left and right */
3728         {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3729         /* set connection select to line in (default select for this ADC) */
3730         {0x05, AC_VERB_SET_CONNECT_SEL, 0x02},
3731         /* set vol=0 Line-Out mixer amp left and right */
3732         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3733         /* unmute pin widget amp left and right (no gain on this amp) */
3734         {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3735         /* set vol=0 HP mixer amp left and right */
3736         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3737         /* unmute pin widget amp left and right (no gain on this amp) */
3738         {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3739         /* set vol=0 Mono mixer amp left and right */
3740         {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3741         /* unmute pin widget amp left and right (no gain on this amp) */
3742         {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3743         /* unmute LINE-2 out pin */
3744         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3745         /* Amp Indexes: CD = 0x04, Line In 1 = 0x02, Mic 1 = 0x00 &
3746          * Line In 2 = 0x03
3747          */
3748         /* mute analog inputs */
3749         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3750         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3751         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
3752         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
3753         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
3754         /* Amp Indexes: DAC = 0x01 & mixer = 0x00 */
3755         /* mute Front out path */
3756         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3757         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3758         /* mute Headphone out path */
3759         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3760         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3761         /* mute Mono out path */
3762         {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3763         {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3764         { }
3765 };
3766
3767 #if 0 /* should be identical with alc260_init_verbs? */
3768 static struct hda_verb alc260_hp_init_verbs[] = {
3769         /* Headphone and output */
3770         {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0},
3771         /* mono output */
3772         {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
3773         /* Mic1 (rear panel) pin widget for input and vref at 80% */
3774         {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
3775         /* Mic2 (front panel) pin widget for input and vref at 80% */
3776         {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
3777         /* Line In pin widget for input */
3778         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
3779         /* Line-2 pin widget for output */
3780         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
3781         /* CD pin widget for input */
3782         {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
3783         /* unmute amp left and right */
3784         {0x04, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000},
3785         /* set connection select to line in (default select for this ADC) */
3786         {0x04, AC_VERB_SET_CONNECT_SEL, 0x02},
3787         /* unmute Line-Out mixer amp left and right (volume = 0) */
3788         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
3789         /* mute pin widget amp left and right (no gain on this amp) */
3790         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
3791         /* unmute HP mixer amp left and right (volume = 0) */
3792         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
3793         /* mute pin widget amp left and right (no gain on this amp) */
3794         {0x10, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
3795         /* Amp Indexes: CD = 0x04, Line In 1 = 0x02, Mic 1 = 0x00 &
3796          * Line In 2 = 0x03
3797          */
3798         /* mute analog inputs */
3799         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3800         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3801         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
3802         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
3803         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
3804         /* Amp Indexes: DAC = 0x01 & mixer = 0x00 */
3805         /* Unmute Front out path */
3806         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
3807         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
3808         /* Unmute Headphone out path */
3809         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
3810         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
3811         /* Unmute Mono out path */
3812         {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
3813         {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
3814         { }
3815 };
3816 #endif
3817
3818 static struct hda_verb alc260_hp_3013_init_verbs[] = {
3819         /* Line out and output */
3820         {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
3821         /* mono output */
3822         {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
3823         /* Mic1 (rear panel) pin widget for input and vref at 80% */
3824         {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
3825         /* Mic2 (front panel) pin widget for input and vref at 80% */
3826         {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
3827         /* Line In pin widget for input */
3828         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
3829         /* Headphone pin widget for output */
3830         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0},
3831         /* CD pin widget for input */
3832         {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
3833         /* unmute amp left and right */
3834         {0x04, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000},
3835         /* set connection select to line in (default select for this ADC) */
3836         {0x04, AC_VERB_SET_CONNECT_SEL, 0x02},
3837         /* unmute Line-Out mixer amp left and right (volume = 0) */
3838         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
3839         /* mute pin widget amp left and right (no gain on this amp) */
3840         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
3841         /* unmute HP mixer amp left and right (volume = 0) */
3842         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
3843         /* mute pin widget amp left and right (no gain on this amp) */
3844         {0x10, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
3845         /* Amp Indexes: CD = 0x04, Line In 1 = 0x02, Mic 1 = 0x00 &
3846          * Line In 2 = 0x03
3847          */
3848         /* mute analog inputs */
3849         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3850         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3851         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
3852         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
3853         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
3854         /* Amp Indexes: DAC = 0x01 & mixer = 0x00 */
3855         /* Unmute Front out path */
3856         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
3857         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
3858         /* Unmute Headphone out path */
3859         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
3860         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
3861         /* Unmute Mono out path */
3862         {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
3863         {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
3864         { }
3865 };
3866
3867 /* Initialisation sequence for ALC260 as configured in Fujitsu S702x
3868  * laptops.  ALC260 pin usage: Mic/Line jack = 0x12, HP jack = 0x14, CD
3869  * audio = 0x16, internal speaker = 0x10.
3870  */
3871 static struct hda_verb alc260_fujitsu_init_verbs[] = {
3872         /* Disable all GPIOs */
3873         {0x01, AC_VERB_SET_GPIO_MASK, 0},
3874         /* Internal speaker is connected to headphone pin */
3875         {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
3876         /* Headphone/Line-out jack connects to Line1 pin; make it an output */
3877         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
3878         /* Mic/Line-in jack is connected to mic1 pin, so make it an input */
3879         {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
3880         /* Ensure all other unused pins are disabled and muted. */
3881         {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3882         {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3883         {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3884         {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3885         {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3886         {0x13, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3887         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3888         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3889
3890         /* Disable digital (SPDIF) pins */
3891         {0x03, AC_VERB_SET_DIGI_CONVERT_1, 0},
3892         {0x06, AC_VERB_SET_DIGI_CONVERT_1, 0},
3893
3894         /* Ensure Line1 pin widget takes its input from the OUT1 sum bus 
3895          * when acting as an output.
3896          */
3897         {0x0d, AC_VERB_SET_CONNECT_SEL, 0},
3898
3899         /* Start with output sum widgets muted and their output gains at min */
3900         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3901         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3902         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3903         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3904         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3905         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3906         {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3907         {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3908         {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3909
3910         /* Unmute HP pin widget amp left and right (no equiv mixer ctrl) */
3911         {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3912         /* Unmute Line1 pin widget output buffer since it starts as an output.
3913          * If the pin mode is changed by the user the pin mode control will
3914          * take care of enabling the pin's input/output buffers as needed.
3915          * Therefore there's no need to enable the input buffer at this
3916          * stage.
3917          */
3918         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3919         /* Unmute input buffer of pin widget used for Line-in (no equiv 
3920          * mixer ctrl)
3921          */
3922         {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3923
3924         /* Mute capture amp left and right */
3925         {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3926         /* Set ADC connection select to match default mixer setting - line 
3927          * in (on mic1 pin)
3928          */
3929         {0x04, AC_VERB_SET_CONNECT_SEL, 0x00},
3930
3931         /* Do the same for the second ADC: mute capture input amp and
3932          * set ADC connection to line in (on mic1 pin)
3933          */
3934         {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3935         {0x05, AC_VERB_SET_CONNECT_SEL, 0x00},
3936
3937         /* Mute all inputs to mixer widget (even unconnected ones) */
3938         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* mic1 pin */
3939         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, /* mic2 pin */
3940         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, /* line1 pin */
3941         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, /* line2 pin */
3942         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, /* CD pin */
3943         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)}, /* Beep-gen pin */
3944         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)}, /* Line-out pin */
3945         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)}, /* HP-pin pin */
3946
3947         { }
3948 };
3949
3950 /* Initialisation sequence for ALC260 as configured in Acer TravelMate and
3951  * similar laptops (adapted from Fujitsu init verbs).
3952  */
3953 static struct hda_verb alc260_acer_init_verbs[] = {
3954         /* On TravelMate laptops, GPIO 0 enables the internal speaker and
3955          * the headphone jack.  Turn this on and rely on the standard mute
3956          * methods whenever the user wants to turn these outputs off.
3957          */
3958         {0x01, AC_VERB_SET_GPIO_MASK, 0x01},
3959         {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
3960         {0x01, AC_VERB_SET_GPIO_DATA, 0x01},
3961         /* Internal speaker/Headphone jack is connected to Line-out pin */
3962         {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
3963         /* Internal microphone/Mic jack is connected to Mic1 pin */
3964         {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF50},
3965         /* Line In jack is connected to Line1 pin */
3966         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
3967         /* Some Acers (eg: C20x Tablets) use Mono pin for internal speaker */
3968         {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
3969         /* Ensure all other unused pins are disabled and muted. */
3970         {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3971         {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3972         {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3973         {0x13, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3974         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3975         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3976         /* Disable digital (SPDIF) pins */
3977         {0x03, AC_VERB_SET_DIGI_CONVERT_1, 0},
3978         {0x06, AC_VERB_SET_DIGI_CONVERT_1, 0},
3979
3980         /* Ensure Mic1 and Line1 pin widgets take input from the OUT1 sum 
3981          * bus when acting as outputs.
3982          */
3983         {0x0b, AC_VERB_SET_CONNECT_SEL, 0},
3984         {0x0d, AC_VERB_SET_CONNECT_SEL, 0},
3985
3986         /* Start with output sum widgets muted and their output gains at min */
3987         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3988         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3989         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3990         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3991         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3992         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3993         {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3994         {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3995         {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3996
3997         /* Unmute Line-out pin widget amp left and right
3998          * (no equiv mixer ctrl)
3999          */
4000         {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4001         /* Unmute mono pin widget amp output (no equiv mixer ctrl) */
4002         {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4003         /* Unmute Mic1 and Line1 pin widget input buffers since they start as
4004          * inputs. If the pin mode is changed by the user the pin mode control
4005          * will take care of enabling the pin's input/output buffers as needed.
4006          * Therefore there's no need to enable the input buffer at this
4007          * stage.
4008          */
4009         {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4010         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4011
4012         /* Mute capture amp left and right */
4013         {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4014         /* Set ADC connection select to match default mixer setting - mic
4015          * (on mic1 pin)
4016          */
4017         {0x04, AC_VERB_SET_CONNECT_SEL, 0x00},
4018
4019         /* Do similar with the second ADC: mute capture input amp and
4020          * set ADC connection to mic to match ALSA's default state.
4021          */
4022         {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4023         {0x05, AC_VERB_SET_CONNECT_SEL, 0x00},
4024
4025         /* Mute all inputs to mixer widget (even unconnected ones) */
4026         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* mic1 pin */
4027         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, /* mic2 pin */
4028         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, /* line1 pin */
4029         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, /* line2 pin */
4030         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, /* CD pin */
4031         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)}, /* Beep-gen pin */
4032         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)}, /* Line-out pin */
4033         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)}, /* HP-pin pin */
4034
4035         { }
4036 };
4037
4038 static struct hda_verb alc260_will_verbs[] = {
4039         {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
4040         {0x0b, AC_VERB_SET_CONNECT_SEL, 0x00},
4041         {0x0d, AC_VERB_SET_CONNECT_SEL, 0x00},
4042         {0x0f, AC_VERB_SET_EAPD_BTLENABLE, 0x02},
4043         {0x1a, AC_VERB_SET_COEF_INDEX, 0x07},
4044         {0x1a, AC_VERB_SET_PROC_COEF, 0x3040},
4045         {}
4046 };
4047
4048 static struct hda_verb alc260_replacer_672v_verbs[] = {
4049         {0x0f, AC_VERB_SET_EAPD_BTLENABLE, 0x02},
4050         {0x1a, AC_VERB_SET_COEF_INDEX, 0x07},
4051         {0x1a, AC_VERB_SET_PROC_COEF, 0x3050},
4052
4053         {0x01, AC_VERB_SET_GPIO_MASK, 0x01},
4054         {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
4055         {0x01, AC_VERB_SET_GPIO_DATA, 0x00},
4056
4057         {0x0f, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
4058         {}
4059 };
4060
4061 /* toggle speaker-output according to the hp-jack state */
4062 static void alc260_replacer_672v_automute(struct hda_codec *codec)
4063 {
4064         unsigned int present;
4065
4066         /* speaker --> GPIO Data 0, hp or spdif --> GPIO data 1 */
4067         present = snd_hda_codec_read(codec, 0x0f, 0,
4068                                      AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
4069         if (present) {
4070                 snd_hda_codec_write_cache(codec, 0x01, 0,
4071                                           AC_VERB_SET_GPIO_DATA, 1);
4072                 snd_hda_codec_write_cache(codec, 0x0f, 0,
4073                                           AC_VERB_SET_PIN_WIDGET_CONTROL,
4074                                           PIN_HP);
4075         } else {
4076                 snd_hda_codec_write_cache(codec, 0x01, 0,
4077                                           AC_VERB_SET_GPIO_DATA, 0);
4078                 snd_hda_codec_write_cache(codec, 0x0f, 0,
4079                                           AC_VERB_SET_PIN_WIDGET_CONTROL,
4080                                           PIN_OUT);
4081         }
4082 }
4083
4084 static void alc260_replacer_672v_unsol_event(struct hda_codec *codec,
4085                                        unsigned int res)
4086 {
4087         if ((res >> 26) == ALC880_HP_EVENT)
4088                 alc260_replacer_672v_automute(codec);
4089 }
4090
4091 /* Test configuration for debugging, modelled after the ALC880 test
4092  * configuration.
4093  */
4094 #ifdef CONFIG_SND_DEBUG
4095 static hda_nid_t alc260_test_dac_nids[1] = {
4096         0x02,
4097 };
4098 static hda_nid_t alc260_test_adc_nids[2] = {
4099         0x04, 0x05,
4100 };
4101 /* For testing the ALC260, each input MUX needs its own definition since
4102  * the signal assignments are different.  This assumes that the first ADC 
4103  * is NID 0x04.
4104  */
4105 static struct hda_input_mux alc260_test_capture_sources[2] = {
4106         {
4107                 .num_items = 7,
4108                 .items = {
4109                         { "MIC1 pin", 0x0 },
4110                         { "MIC2 pin", 0x1 },
4111                         { "LINE1 pin", 0x2 },
4112                         { "LINE2 pin", 0x3 },
4113                         { "CD pin", 0x4 },
4114                         { "LINE-OUT pin", 0x5 },
4115                         { "HP-OUT pin", 0x6 },
4116                 },
4117         },
4118         {
4119                 .num_items = 8,
4120                 .items = {
4121                         { "MIC1 pin", 0x0 },
4122                         { "MIC2 pin", 0x1 },
4123                         { "LINE1 pin", 0x2 },
4124                         { "LINE2 pin", 0x3 },
4125                         { "CD pin", 0x4 },
4126                         { "Mixer", 0x5 },
4127                         { "LINE-OUT pin", 0x6 },
4128                         { "HP-OUT pin", 0x7 },
4129                 },
4130         },
4131 };
4132 static struct snd_kcontrol_new alc260_test_mixer[] = {
4133         /* Output driver widgets */
4134         HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x0a, 1, 0x0, HDA_OUTPUT),
4135         HDA_BIND_MUTE_MONO("Mono Playback Switch", 0x0a, 1, 2, HDA_INPUT),
4136         HDA_CODEC_VOLUME("LOUT2 Playback Volume", 0x09, 0x0, HDA_OUTPUT),
4137         HDA_BIND_MUTE("LOUT2 Playback Switch", 0x09, 2, HDA_INPUT),
4138         HDA_CODEC_VOLUME("LOUT1 Playback Volume", 0x08, 0x0, HDA_OUTPUT),
4139         HDA_BIND_MUTE("LOUT1 Playback Switch", 0x08, 2, HDA_INPUT),
4140
4141         /* Modes for retasking pin widgets
4142          * Note: the ALC260 doesn't seem to act on requests to enable mic
4143          * bias from NIDs 0x0f and 0x10.  The ALC260 datasheet doesn't
4144          * mention this restriction.  At this stage it's not clear whether
4145          * this behaviour is intentional or is a hardware bug in chip
4146          * revisions available at least up until early 2006.  Therefore for
4147          * now allow the "HP-OUT" and "LINE-OUT" Mode controls to span all
4148          * choices, but if it turns out that the lack of mic bias for these
4149          * NIDs is intentional we could change their modes from
4150          * ALC_PIN_DIR_INOUT to ALC_PIN_DIR_INOUT_NOMICBIAS.
4151          */
4152         ALC_PIN_MODE("HP-OUT pin mode", 0x10, ALC_PIN_DIR_INOUT),
4153         ALC_PIN_MODE("LINE-OUT pin mode", 0x0f, ALC_PIN_DIR_INOUT),
4154         ALC_PIN_MODE("LINE2 pin mode", 0x15, ALC_PIN_DIR_INOUT),
4155         ALC_PIN_MODE("LINE1 pin mode", 0x14, ALC_PIN_DIR_INOUT),
4156         ALC_PIN_MODE("MIC2 pin mode", 0x13, ALC_PIN_DIR_INOUT),
4157         ALC_PIN_MODE("MIC1 pin mode", 0x12, ALC_PIN_DIR_INOUT),
4158
4159         /* Loopback mixer controls */
4160         HDA_CODEC_VOLUME("MIC1 Playback Volume", 0x07, 0x00, HDA_INPUT),
4161         HDA_CODEC_MUTE("MIC1 Playback Switch", 0x07, 0x00, HDA_INPUT),
4162         HDA_CODEC_VOLUME("MIC2 Playback Volume", 0x07, 0x01, HDA_INPUT),
4163         HDA_CODEC_MUTE("MIC2 Playback Switch", 0x07, 0x01, HDA_INPUT),
4164         HDA_CODEC_VOLUME("LINE1 Playback Volume", 0x07, 0x02, HDA_INPUT),
4165         HDA_CODEC_MUTE("LINE1 Playback Switch", 0x07, 0x02, HDA_INPUT),
4166         HDA_CODEC_VOLUME("LINE2 Playback Volume", 0x07, 0x03, HDA_INPUT),
4167         HDA_CODEC_MUTE("LINE2 Playback Switch", 0x07, 0x03, HDA_INPUT),
4168         HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT),
4169         HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT),
4170         HDA_CODEC_VOLUME("Beep Playback Volume", 0x07, 0x05, HDA_INPUT),
4171         HDA_CODEC_MUTE("Beep Playback Switch", 0x07, 0x05, HDA_INPUT),
4172         HDA_CODEC_VOLUME("LINE-OUT loopback Playback Volume", 0x07, 0x06, HDA_INPUT),
4173         HDA_CODEC_MUTE("LINE-OUT loopback Playback Switch", 0x07, 0x06, HDA_INPUT),
4174         HDA_CODEC_VOLUME("HP-OUT loopback Playback Volume", 0x07, 0x7, HDA_INPUT),
4175         HDA_CODEC_MUTE("HP-OUT loopback Playback Switch", 0x07, 0x7, HDA_INPUT),
4176
4177         /* Controls for GPIO pins, assuming they are configured as outputs */
4178         ALC_GPIO_DATA_SWITCH("GPIO pin 0", 0x01, 0x01),
4179         ALC_GPIO_DATA_SWITCH("GPIO pin 1", 0x01, 0x02),
4180         ALC_GPIO_DATA_SWITCH("GPIO pin 2", 0x01, 0x04),
4181         ALC_GPIO_DATA_SWITCH("GPIO pin 3", 0x01, 0x08),
4182
4183         /* Switches to allow the digital IO pins to be enabled.  The datasheet
4184          * is ambigious as to which NID is which; testing on laptops which
4185          * make this output available should provide clarification. 
4186          */
4187         ALC_SPDIF_CTRL_SWITCH("SPDIF Playback Switch", 0x03, 0x01),
4188         ALC_SPDIF_CTRL_SWITCH("SPDIF Capture Switch", 0x06, 0x01),
4189
4190         { } /* end */
4191 };
4192 static struct hda_verb alc260_test_init_verbs[] = {
4193         /* Enable all GPIOs as outputs with an initial value of 0 */
4194         {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x0f},
4195         {0x01, AC_VERB_SET_GPIO_DATA, 0x00},
4196         {0x01, AC_VERB_SET_GPIO_MASK, 0x0f},
4197
4198         /* Enable retasking pins as output, initially without power amp */
4199         {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4200         {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4201         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4202         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4203         {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4204         {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4205
4206         /* Disable digital (SPDIF) pins initially, but users can enable
4207          * them via a mixer switch.  In the case of SPDIF-out, this initverb
4208          * payload also sets the generation to 0, output to be in "consumer"
4209          * PCM format, copyright asserted, no pre-emphasis and no validity
4210          * control.
4211          */
4212         {0x03, AC_VERB_SET_DIGI_CONVERT_1, 0},
4213         {0x06, AC_VERB_SET_DIGI_CONVERT_1, 0},
4214
4215         /* Ensure mic1, mic2, line1 and line2 pin widgets take input from the 
4216          * OUT1 sum bus when acting as an output.
4217          */
4218         {0x0b, AC_VERB_SET_CONNECT_SEL, 0},
4219         {0x0c, AC_VERB_SET_CONNECT_SEL, 0},
4220         {0x0d, AC_VERB_SET_CONNECT_SEL, 0},
4221         {0x0e, AC_VERB_SET_CONNECT_SEL, 0},
4222
4223         /* Start with output sum widgets muted and their output gains at min */
4224         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4225         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4226         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4227         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4228         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4229         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4230         {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4231         {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4232         {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4233
4234         /* Unmute retasking pin widget output buffers since the default
4235          * state appears to be output.  As the pin mode is changed by the
4236          * user the pin mode control will take care of enabling the pin's
4237          * input/output buffers as needed.
4238          */
4239         {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4240         {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4241         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4242         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4243         {0x13, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4244         {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4245         /* Also unmute the mono-out pin widget */
4246         {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4247
4248         /* Mute capture amp left and right */
4249         {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4250         /* Set ADC connection select to match default mixer setting (mic1
4251          * pin)
4252          */
4253         {0x04, AC_VERB_SET_CONNECT_SEL, 0x00},
4254
4255         /* Do the same for the second ADC: mute capture input amp and
4256          * set ADC connection to mic1 pin
4257          */
4258         {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4259         {0x05, AC_VERB_SET_CONNECT_SEL, 0x00},
4260
4261         /* Mute all inputs to mixer widget (even unconnected ones) */
4262         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* mic1 pin */
4263         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, /* mic2 pin */
4264         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, /* line1 pin */
4265         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, /* line2 pin */
4266         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, /* CD pin */
4267         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)}, /* Beep-gen pin */
4268         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)}, /* Line-out pin */
4269         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)}, /* HP-pin pin */
4270
4271         { }
4272 };
4273 #endif
4274
4275 static struct hda_pcm_stream alc260_pcm_analog_playback = {
4276         .substreams = 1,
4277         .channels_min = 2,
4278         .channels_max = 2,
4279 };
4280
4281 static struct hda_pcm_stream alc260_pcm_analog_capture = {
4282         .substreams = 1,
4283         .channels_min = 2,
4284         .channels_max = 2,
4285 };
4286
4287 #define alc260_pcm_digital_playback     alc880_pcm_digital_playback
4288 #define alc260_pcm_digital_capture      alc880_pcm_digital_capture
4289
4290 /*
4291  * for BIOS auto-configuration
4292  */
4293
4294 static int alc260_add_playback_controls(struct alc_spec *spec, hda_nid_t nid,
4295                                         const char *pfx)
4296 {
4297         hda_nid_t nid_vol;
4298         unsigned long vol_val, sw_val;
4299         char name[32];
4300         int err;
4301
4302         if (nid >= 0x0f && nid < 0x11) {
4303                 nid_vol = nid - 0x7;
4304                 vol_val = HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0, HDA_OUTPUT);
4305                 sw_val = HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT);
4306         } else if (nid == 0x11) {
4307                 nid_vol = nid - 0x7;
4308                 vol_val = HDA_COMPOSE_AMP_VAL(nid_vol, 2, 0, HDA_OUTPUT);
4309                 sw_val = HDA_COMPOSE_AMP_VAL(nid, 2, 0, HDA_OUTPUT);
4310         } else if (nid >= 0x12 && nid <= 0x15) {
4311                 nid_vol = 0x08;
4312                 vol_val = HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0, HDA_OUTPUT);
4313                 sw_val = HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT);
4314         } else
4315                 return 0; /* N/A */
4316         
4317         snprintf(name, sizeof(name), "%s Playback Volume", pfx);
4318         err = add_control(spec, ALC_CTL_WIDGET_VOL, name, vol_val);
4319         if (err < 0)
4320                 return err;
4321         snprintf(name, sizeof(name), "%s Playback Switch", pfx);
4322         err = add_control(spec, ALC_CTL_WIDGET_MUTE, name, sw_val);
4323         if (err < 0)
4324                 return err;
4325         return 1;
4326 }
4327
4328 /* add playback controls from the parsed DAC table */
4329 static int alc260_auto_create_multi_out_ctls(struct alc_spec *spec,
4330                                              const struct auto_pin_cfg *cfg)
4331 {
4332         hda_nid_t nid;
4333         int err;
4334
4335         spec->multiout.num_dacs = 1;
4336         spec->multiout.dac_nids = spec->private_dac_nids;
4337         spec->multiout.dac_nids[0] = 0x02;
4338
4339         nid = cfg->line_out_pins[0];
4340         if (nid) {
4341                 err = alc260_add_playback_controls(spec, nid, "Front");
4342                 if (err < 0)
4343                         return err;
4344         }
4345
4346         nid = cfg->speaker_pins[0];
4347         if (nid) {
4348                 err = alc260_add_playback_controls(spec, nid, "Speaker");
4349                 if (err < 0)
4350                         return err;
4351         }
4352
4353         nid = cfg->hp_pins[0];
4354         if (nid) {
4355                 err = alc260_add_playback_controls(spec, nid, "Headphone");
4356                 if (err < 0)
4357                         return err;
4358         }
4359         return 0;
4360 }
4361
4362 /* create playback/capture controls for input pins */
4363 static int alc260_auto_create_analog_input_ctls(struct alc_spec *spec,
4364                                                 const struct auto_pin_cfg *cfg)
4365 {
4366         struct hda_input_mux *imux = &spec->private_imux;
4367         int i, err, idx;
4368
4369         for (i = 0; i < AUTO_PIN_LAST; i++) {
4370                 if (cfg->input_pins[i] >= 0x12) {
4371                         idx = cfg->input_pins[i] - 0x12;
4372                         err = new_analog_input(spec, cfg->input_pins[i],
4373                                                auto_pin_cfg_labels[i], idx,
4374                                                0x07);
4375                         if (err < 0)
4376                                 return err;
4377                         imux->items[imux->num_items].label =
4378                                 auto_pin_cfg_labels[i];
4379                         imux->items[imux->num_items].index = idx;
4380                         imux->num_items++;
4381                 }
4382                 if (cfg->input_pins[i] >= 0x0f && cfg->input_pins[i] <= 0x10){
4383                         idx = cfg->input_pins[i] - 0x09;
4384                         err = new_analog_input(spec, cfg->input_pins[i],
4385                                                auto_pin_cfg_labels[i], idx,
4386                                                0x07);
4387                         if (err < 0)
4388                                 return err;
4389                         imux->items[imux->num_items].label =
4390                                 auto_pin_cfg_labels[i];
4391                         imux->items[imux->num_items].index = idx;
4392                         imux->num_items++;
4393                 }
4394         }
4395         return 0;
4396 }
4397
4398 static void alc260_auto_set_output_and_unmute(struct hda_codec *codec,
4399                                               hda_nid_t nid, int pin_type,
4400                                               int sel_idx)
4401 {
4402         /* set as output */
4403         snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
4404                             pin_type);
4405         snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
4406                             AMP_OUT_UNMUTE);
4407         /* need the manual connection? */
4408         if (nid >= 0x12) {
4409                 int idx = nid - 0x12;
4410                 snd_hda_codec_write(codec, idx + 0x0b, 0,
4411                                     AC_VERB_SET_CONNECT_SEL, sel_idx);
4412         }
4413 }
4414
4415 static void alc260_auto_init_multi_out(struct hda_codec *codec)
4416 {
4417         struct alc_spec *spec = codec->spec;
4418         hda_nid_t nid;
4419
4420         alc_subsystem_id(codec, 0x10, 0x15, 0x0f);
4421         nid = spec->autocfg.line_out_pins[0];
4422         if (nid) {
4423                 int pin_type = get_pin_type(spec->autocfg.line_out_type);
4424                 alc260_auto_set_output_and_unmute(codec, nid, pin_type, 0);
4425         }
4426         
4427         nid = spec->autocfg.speaker_pins[0];
4428         if (nid)
4429                 alc260_auto_set_output_and_unmute(codec, nid, PIN_OUT, 0);
4430
4431         nid = spec->autocfg.hp_pins[0];
4432         if (nid)
4433                 alc260_auto_set_output_and_unmute(codec, nid, PIN_HP, 0);
4434 }
4435
4436 #define ALC260_PIN_CD_NID               0x16
4437 static void alc260_auto_init_analog_input(struct hda_codec *codec)
4438 {
4439         struct alc_spec *spec = codec->spec;
4440         int i;
4441
4442         for (i = 0; i < AUTO_PIN_LAST; i++) {
4443                 hda_nid_t nid = spec->autocfg.input_pins[i];
4444                 if (nid >= 0x12) {
4445                         snd_hda_codec_write(codec, nid, 0,
4446                                             AC_VERB_SET_PIN_WIDGET_CONTROL,
4447                                             i <= AUTO_PIN_FRONT_MIC ?
4448                                             PIN_VREF80 : PIN_IN);
4449                         if (nid != ALC260_PIN_CD_NID)
4450                                 snd_hda_codec_write(codec, nid, 0,
4451                                                     AC_VERB_SET_AMP_GAIN_MUTE,
4452                                                     AMP_OUT_MUTE);
4453                 }
4454         }
4455 }
4456
4457 /*
4458  * generic initialization of ADC, input mixers and output mixers
4459  */
4460 static struct hda_verb alc260_volume_init_verbs[] = {
4461         /*
4462          * Unmute ADC0-1 and set the default input to mic-in
4463          */
4464         {0x04, AC_VERB_SET_CONNECT_SEL, 0x00},
4465         {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4466         {0x05, AC_VERB_SET_CONNECT_SEL, 0x00},
4467         {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4468         
4469         /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
4470          * mixer widget
4471          * Note: PASD motherboards uses the Line In 2 as the input for
4472          * front panel mic (mic 2)
4473          */
4474         /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
4475         /* mute analog inputs */
4476         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4477         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4478         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
4479         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
4480         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
4481
4482         /*
4483          * Set up output mixers (0x08 - 0x0a)
4484          */
4485         /* set vol=0 to output mixers */
4486         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4487         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4488         {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4489         /* set up input amps for analog loopback */
4490         /* Amp Indices: DAC = 0, mixer = 1 */
4491         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4492         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4493         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4494         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4495         {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4496         {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4497         
4498         { }
4499 };
4500
4501 static int alc260_parse_auto_config(struct hda_codec *codec)
4502 {
4503         struct alc_spec *spec = codec->spec;
4504         unsigned int wcap;
4505         int err;
4506         static hda_nid_t alc260_ignore[] = { 0x17, 0 };
4507
4508         err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
4509                                            alc260_ignore);
4510         if (err < 0)
4511                 return err;
4512         err = alc260_auto_create_multi_out_ctls(spec, &spec->autocfg);
4513         if (err < 0)
4514                 return err;
4515         if (!spec->kctl_alloc)
4516                 return 0; /* can't find valid BIOS pin config */
4517         err = alc260_auto_create_analog_input_ctls(spec, &spec->autocfg);
4518         if (err < 0)
4519                 return err;
4520
4521         spec->multiout.max_channels = 2;
4522
4523         if (spec->autocfg.dig_out_pin)
4524                 spec->multiout.dig_out_nid = ALC260_DIGOUT_NID;
4525         if (spec->kctl_alloc)
4526                 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
4527
4528         spec->init_verbs[spec->num_init_verbs++] = alc260_volume_init_verbs;
4529
4530         spec->num_mux_defs = 1;
4531         spec->input_mux = &spec->private_imux;
4532
4533         /* check whether NID 0x04 is valid */
4534         wcap = get_wcaps(codec, 0x04);
4535         wcap = (wcap & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT; /* get type */
4536         if (wcap != AC_WID_AUD_IN) {
4537                 spec->adc_nids = alc260_adc_nids_alt;
4538                 spec->num_adc_nids = ARRAY_SIZE(alc260_adc_nids_alt);
4539                 spec->mixers[spec->num_mixers] = alc260_capture_alt_mixer;
4540         } else {
4541                 spec->adc_nids = alc260_adc_nids;
4542                 spec->num_adc_nids = ARRAY_SIZE(alc260_adc_nids);
4543                 spec->mixers[spec->num_mixers] = alc260_capture_mixer;
4544         }
4545         spec->num_mixers++;
4546
4547         return 1;
4548 }
4549
4550 /* additional initialization for auto-configuration model */
4551 static void alc260_auto_init(struct hda_codec *codec)
4552 {
4553         alc260_auto_init_multi_out(codec);
4554         alc260_auto_init_analog_input(codec);
4555 }
4556
4557 #ifdef CONFIG_SND_HDA_POWER_SAVE
4558 static struct hda_amp_list alc260_loopbacks[] = {
4559         { 0x07, HDA_INPUT, 0 },
4560         { 0x07, HDA_INPUT, 1 },
4561         { 0x07, HDA_INPUT, 2 },
4562         { 0x07, HDA_INPUT, 3 },
4563         { 0x07, HDA_INPUT, 4 },
4564         { } /* end */
4565 };
4566 #endif
4567
4568 /*
4569  * ALC260 configurations
4570  */
4571 static const char *alc260_models[ALC260_MODEL_LAST] = {
4572         [ALC260_BASIC]          = "basic",
4573         [ALC260_HP]             = "hp",
4574         [ALC260_HP_3013]        = "hp-3013",
4575         [ALC260_FUJITSU_S702X]  = "fujitsu",
4576         [ALC260_ACER]           = "acer",
4577         [ALC260_WILL]           = "will",
4578         [ALC260_REPLACER_672V]  = "replacer",
4579 #ifdef CONFIG_SND_DEBUG
4580         [ALC260_TEST]           = "test",
4581 #endif
4582         [ALC260_AUTO]           = "auto",
4583 };
4584
4585 static struct snd_pci_quirk alc260_cfg_tbl[] = {
4586         SND_PCI_QUIRK(0x1025, 0x007b, "Acer C20x", ALC260_ACER),
4587         SND_PCI_QUIRK(0x1025, 0x008f, "Acer", ALC260_ACER),
4588         SND_PCI_QUIRK(0x103c, 0x2808, "HP d5700", ALC260_HP_3013),
4589         SND_PCI_QUIRK(0x103c, 0x280a, "HP d5750", ALC260_HP_3013),
4590         SND_PCI_QUIRK(0x103c, 0x3010, "HP", ALC260_HP_3013),
4591         SND_PCI_QUIRK(0x103c, 0x3011, "HP", ALC260_HP),
4592         SND_PCI_QUIRK(0x103c, 0x3012, "HP", ALC260_HP_3013),
4593         SND_PCI_QUIRK(0x103c, 0x3013, "HP", ALC260_HP_3013),
4594         SND_PCI_QUIRK(0x103c, 0x3014, "HP", ALC260_HP),
4595         SND_PCI_QUIRK(0x103c, 0x3015, "HP", ALC260_HP),
4596         SND_PCI_QUIRK(0x103c, 0x3016, "HP", ALC260_HP),
4597         SND_PCI_QUIRK(0x104d, 0x81bb, "Sony VAIO", ALC260_BASIC),
4598         SND_PCI_QUIRK(0x104d, 0x81cc, "Sony VAIO", ALC260_BASIC),
4599         SND_PCI_QUIRK(0x104d, 0x81cd, "Sony VAIO", ALC260_BASIC),
4600         SND_PCI_QUIRK(0x10cf, 0x1326, "Fujitsu S702X", ALC260_FUJITSU_S702X),
4601         SND_PCI_QUIRK(0x152d, 0x0729, "CTL U553W", ALC260_BASIC),
4602         SND_PCI_QUIRK(0x1631, 0xc017, "PB V7900", ALC260_WILL),
4603         SND_PCI_QUIRK(0x161f, 0x2057, "Replacer 672V", ALC260_REPLACER_672V),
4604         {}
4605 };
4606
4607 static struct alc_config_preset alc260_presets[] = {
4608         [ALC260_BASIC] = {
4609                 .mixers = { alc260_base_output_mixer,
4610                             alc260_input_mixer,
4611                             alc260_pc_beep_mixer,
4612                             alc260_capture_mixer },
4613                 .init_verbs = { alc260_init_verbs },
4614                 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
4615                 .dac_nids = alc260_dac_nids,
4616                 .num_adc_nids = ARRAY_SIZE(alc260_adc_nids),
4617                 .adc_nids = alc260_adc_nids,
4618                 .num_channel_mode = ARRAY_SIZE(alc260_modes),
4619                 .channel_mode = alc260_modes,
4620                 .input_mux = &alc260_capture_source,
4621         },
4622         [ALC260_HP] = {
4623                 .mixers = { alc260_base_output_mixer,
4624                             alc260_input_mixer,
4625                             alc260_capture_alt_mixer },
4626                 .init_verbs = { alc260_init_verbs },
4627                 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
4628                 .dac_nids = alc260_dac_nids,
4629                 .num_adc_nids = ARRAY_SIZE(alc260_hp_adc_nids),
4630                 .adc_nids = alc260_hp_adc_nids,
4631                 .num_channel_mode = ARRAY_SIZE(alc260_modes),
4632                 .channel_mode = alc260_modes,
4633                 .input_mux = &alc260_capture_source,
4634         },
4635         [ALC260_HP_3013] = {
4636                 .mixers = { alc260_hp_3013_mixer,
4637                             alc260_input_mixer,
4638                             alc260_capture_alt_mixer },
4639                 .init_verbs = { alc260_hp_3013_init_verbs },
4640                 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
4641                 .dac_nids = alc260_dac_nids,
4642                 .num_adc_nids = ARRAY_SIZE(alc260_hp_adc_nids),
4643                 .adc_nids = alc260_hp_adc_nids,
4644                 .num_channel_mode = ARRAY_SIZE(alc260_modes),
4645                 .channel_mode = alc260_modes,
4646                 .input_mux = &alc260_capture_source,
4647         },
4648         [ALC260_FUJITSU_S702X] = {
4649                 .mixers = { alc260_fujitsu_mixer,
4650                             alc260_capture_mixer },
4651                 .init_verbs = { alc260_fujitsu_init_verbs },
4652                 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
4653                 .dac_nids = alc260_dac_nids,
4654                 .num_adc_nids = ARRAY_SIZE(alc260_dual_adc_nids),
4655                 .adc_nids = alc260_dual_adc_nids,
4656                 .num_channel_mode = ARRAY_SIZE(alc260_modes),
4657                 .channel_mode = alc260_modes,
4658                 .num_mux_defs = ARRAY_SIZE(alc260_fujitsu_capture_sources),
4659                 .input_mux = alc260_fujitsu_capture_sources,
4660         },
4661         [ALC260_ACER] = {
4662                 .mixers = { alc260_acer_mixer,
4663                             alc260_capture_mixer },
4664                 .init_verbs = { alc260_acer_init_verbs },
4665                 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
4666                 .dac_nids = alc260_dac_nids,
4667                 .num_adc_nids = ARRAY_SIZE(alc260_dual_adc_nids),
4668                 .adc_nids = alc260_dual_adc_nids,
4669                 .num_channel_mode = ARRAY_SIZE(alc260_modes),
4670                 .channel_mode = alc260_modes,
4671                 .num_mux_defs = ARRAY_SIZE(alc260_acer_capture_sources),
4672                 .input_mux = alc260_acer_capture_sources,
4673         },
4674         [ALC260_WILL] = {
4675                 .mixers = { alc260_will_mixer,
4676                             alc260_capture_mixer },
4677                 .init_verbs = { alc260_init_verbs, alc260_will_verbs },
4678                 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
4679                 .dac_nids = alc260_dac_nids,
4680                 .num_adc_nids = ARRAY_SIZE(alc260_adc_nids),
4681                 .adc_nids = alc260_adc_nids,
4682                 .dig_out_nid = ALC260_DIGOUT_NID,
4683                 .num_channel_mode = ARRAY_SIZE(alc260_modes),
4684                 .channel_mode = alc260_modes,
4685                 .input_mux = &alc260_capture_source,
4686         },
4687         [ALC260_REPLACER_672V] = {
4688                 .mixers = { alc260_replacer_672v_mixer,
4689                             alc260_capture_mixer },
4690                 .init_verbs = { alc260_init_verbs, alc260_replacer_672v_verbs },
4691                 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
4692                 .dac_nids = alc260_dac_nids,
4693                 .num_adc_nids = ARRAY_SIZE(alc260_adc_nids),
4694                 .adc_nids = alc260_adc_nids,
4695                 .dig_out_nid = ALC260_DIGOUT_NID,
4696                 .num_channel_mode = ARRAY_SIZE(alc260_modes),
4697                 .channel_mode = alc260_modes,
4698                 .input_mux = &alc260_capture_source,
4699                 .unsol_event = alc260_replacer_672v_unsol_event,
4700                 .init_hook = alc260_replacer_672v_automute,
4701         },
4702 #ifdef CONFIG_SND_DEBUG
4703         [ALC260_TEST] = {
4704                 .mixers = { alc260_test_mixer,
4705                             alc260_capture_mixer },
4706                 .init_verbs = { alc260_test_init_verbs },
4707                 .num_dacs = ARRAY_SIZE(alc260_test_dac_nids),
4708                 .dac_nids = alc260_test_dac_nids,
4709                 .num_adc_nids = ARRAY_SIZE(alc260_test_adc_nids),
4710                 .adc_nids = alc260_test_adc_nids,
4711                 .num_channel_mode = ARRAY_SIZE(alc260_modes),
4712                 .channel_mode = alc260_modes,
4713                 .num_mux_defs = ARRAY_SIZE(alc260_test_capture_sources),
4714                 .input_mux = alc260_test_capture_sources,
4715         },
4716 #endif
4717 };
4718
4719 static int patch_alc260(struct hda_codec *codec)
4720 {
4721         struct alc_spec *spec;
4722         int err, board_config;
4723
4724         spec = kzalloc(sizeof(*spec), GFP_KERNEL);
4725         if (spec == NULL)
4726                 return -ENOMEM;
4727
4728         codec->spec = spec;
4729
4730         board_config = snd_hda_check_board_config(codec, ALC260_MODEL_LAST,
4731                                                   alc260_models,
4732                                                   alc260_cfg_tbl);
4733         if (board_config < 0) {
4734                 snd_printd(KERN_INFO "hda_codec: Unknown model for ALC260, "
4735                            "trying auto-probe from BIOS...\n");
4736                 board_config = ALC260_AUTO;
4737         }
4738
4739         if (board_config == ALC260_AUTO) {
4740                 /* automatic parse from the BIOS config */
4741                 err = alc260_parse_auto_config(codec);
4742                 if (err < 0) {
4743                         alc_free(codec);
4744                         return err;
4745                 } else if (!err) {
4746                         printk(KERN_INFO
4747                                "hda_codec: Cannot set up configuration "
4748                                "from BIOS.  Using base mode...\n");
4749                         board_config = ALC260_BASIC;
4750                 }
4751         }
4752
4753         if (board_config != ALC260_AUTO)
4754                 setup_preset(spec, &alc260_presets[board_config]);
4755
4756         spec->stream_name_analog = "ALC260 Analog";
4757         spec->stream_analog_playback = &alc260_pcm_analog_playback;
4758         spec->stream_analog_capture = &alc260_pcm_analog_capture;
4759
4760         spec->stream_name_digital = "ALC260 Digital";
4761         spec->stream_digital_playback = &alc260_pcm_digital_playback;
4762         spec->stream_digital_capture = &alc260_pcm_digital_capture;
4763
4764         codec->patch_ops = alc_patch_ops;
4765         if (board_config == ALC260_AUTO)
4766                 spec->init_hook = alc260_auto_init;
4767 #ifdef CONFIG_SND_HDA_POWER_SAVE
4768         if (!spec->loopback.amplist)
4769                 spec->loopback.amplist = alc260_loopbacks;
4770 #endif
4771
4772         return 0;
4773 }
4774
4775
4776 /*
4777  * ALC882 support
4778  *
4779  * ALC882 is almost identical with ALC880 but has cleaner and more flexible
4780  * configuration.  Each pin widget can choose any input DACs and a mixer.
4781  * Each ADC is connected from a mixer of all inputs.  This makes possible
4782  * 6-channel independent captures.
4783  *
4784  * In addition, an independent DAC for the multi-playback (not used in this
4785  * driver yet).
4786  */
4787 #define ALC882_DIGOUT_NID       0x06
4788 #define ALC882_DIGIN_NID        0x0a
4789
4790 static struct hda_channel_mode alc882_ch_modes[1] = {
4791         { 8, NULL }
4792 };
4793
4794 static hda_nid_t alc882_dac_nids[4] = {
4795         /* front, rear, clfe, rear_surr */
4796         0x02, 0x03, 0x04, 0x05
4797 };
4798
4799 /* identical with ALC880 */
4800 #define alc882_adc_nids         alc880_adc_nids
4801 #define alc882_adc_nids_alt     alc880_adc_nids_alt
4802
4803 /* input MUX */
4804 /* FIXME: should be a matrix-type input source selection */
4805
4806 static struct hda_input_mux alc882_capture_source = {
4807         .num_items = 4,
4808         .items = {
4809                 { "Mic", 0x0 },
4810                 { "Front Mic", 0x1 },
4811                 { "Line", 0x2 },
4812                 { "CD", 0x4 },
4813         },
4814 };
4815 #define alc882_mux_enum_info alc_mux_enum_info
4816 #define alc882_mux_enum_get alc_mux_enum_get
4817
4818 static int alc882_mux_enum_put(struct snd_kcontrol *kcontrol,
4819                                struct snd_ctl_elem_value *ucontrol)
4820 {
4821         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
4822         struct alc_spec *spec = codec->spec;
4823         const struct hda_input_mux *imux = spec->input_mux;
4824         unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
4825         static hda_nid_t capture_mixers[3] = { 0x24, 0x23, 0x22 };
4826         hda_nid_t nid = capture_mixers[adc_idx];
4827         unsigned int *cur_val = &spec->cur_mux[adc_idx];
4828         unsigned int i, idx;
4829
4830         idx = ucontrol->value.enumerated.item[0];
4831         if (idx >= imux->num_items)
4832                 idx = imux->num_items - 1;
4833         if (*cur_val == idx)
4834                 return 0;
4835         for (i = 0; i < imux->num_items; i++) {
4836                 unsigned int v = (i == idx) ? 0 : HDA_AMP_MUTE;
4837                 snd_hda_codec_amp_stereo(codec, nid, HDA_INPUT,
4838                                          imux->items[i].index,
4839                                          HDA_AMP_MUTE, v);
4840         }
4841         *cur_val = idx;
4842         return 1;
4843 }
4844
4845 /*
4846  * 2ch mode
4847  */
4848 static struct hda_verb alc882_3ST_ch2_init[] = {
4849         { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
4850         { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
4851         { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
4852         { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
4853         { } /* end */
4854 };
4855
4856 /*
4857  * 6ch mode
4858  */
4859 static struct hda_verb alc882_3ST_ch6_init[] = {
4860         { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4861         { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
4862         { 0x18, AC_VERB_SET_CONNECT_SEL, 0x02 },
4863         { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4864         { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
4865         { 0x1a, AC_VERB_SET_CONNECT_SEL, 0x01 },
4866         { } /* end */
4867 };
4868
4869 static struct hda_channel_mode alc882_3ST_6ch_modes[2] = {
4870         { 2, alc882_3ST_ch2_init },
4871         { 6, alc882_3ST_ch6_init },
4872 };
4873
4874 /*
4875  * 6ch mode
4876  */
4877 static struct hda_verb alc882_sixstack_ch6_init[] = {
4878         { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
4879         { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4880         { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4881         { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4882         { } /* end */
4883 };
4884
4885 /*
4886  * 8ch mode
4887  */
4888 static struct hda_verb alc882_sixstack_ch8_init[] = {
4889         { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4890         { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4891         { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4892         { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4893         { } /* end */
4894 };
4895
4896 static struct hda_channel_mode alc882_sixstack_modes[2] = {
4897         { 6, alc882_sixstack_ch6_init },
4898         { 8, alc882_sixstack_ch8_init },
4899 };
4900
4901 /*
4902  * macbook pro ALC885 can switch LineIn to LineOut without loosing Mic
4903  */
4904
4905 /*
4906  * 2ch mode
4907  */
4908 static struct hda_verb alc885_mbp_ch2_init[] = {
4909         { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
4910         { 0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4911         { 0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4912         { } /* end */
4913 };
4914
4915 /*
4916  * 6ch mode
4917  */
4918 static struct hda_verb alc885_mbp_ch6_init[] = {
4919         { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4920         { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4921         { 0x1a, AC_VERB_SET_CONNECT_SEL, 0x01 },
4922         { 0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4923         { 0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4924         { } /* end */
4925 };
4926
4927 static struct hda_channel_mode alc885_mbp_6ch_modes[2] = {
4928         { 2, alc885_mbp_ch2_init },
4929         { 6, alc885_mbp_ch6_init },
4930 };
4931
4932
4933 /* Pin assignment: Front=0x14, Rear=0x15, CLFE=0x16, Side=0x17
4934  *                 Mic=0x18, Front Mic=0x19, Line-In=0x1a, HP=0x1b
4935  */
4936 static struct snd_kcontrol_new alc882_base_mixer[] = {
4937         HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
4938         HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
4939         HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
4940         HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
4941         HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
4942         HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
4943         HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
4944         HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
4945         HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
4946         HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT),
4947         HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
4948         HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
4949         HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
4950         HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
4951         HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
4952         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
4953         HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
4954         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
4955         HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
4956         HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
4957         HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
4958         HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
4959         HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
4960         { } /* end */
4961 };
4962
4963 static struct snd_kcontrol_new alc885_mbp3_mixer[] = {
4964         HDA_CODEC_VOLUME("Master Volume", 0x0c, 0x00, HDA_OUTPUT),
4965         HDA_BIND_MUTE   ("Master Switch", 0x0c, 0x02, HDA_INPUT),
4966         HDA_CODEC_MUTE  ("Speaker Switch", 0x14, 0x00, HDA_OUTPUT),
4967         HDA_CODEC_VOLUME("Line Out Volume", 0x0d,0x00, HDA_OUTPUT),
4968         HDA_CODEC_VOLUME("Line In Playback Volume", 0x0b, 0x02, HDA_INPUT),
4969         HDA_CODEC_MUTE  ("Line In Playback Switch", 0x0b, 0x02, HDA_INPUT),
4970         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x00, HDA_INPUT),
4971         HDA_CODEC_MUTE  ("Mic Playback Switch", 0x0b, 0x00, HDA_INPUT),
4972         HDA_CODEC_VOLUME("Line In Boost", 0x1a, 0x00, HDA_INPUT),
4973         HDA_CODEC_VOLUME("Mic Boost", 0x18, 0x00, HDA_INPUT),
4974         { } /* end */
4975 };
4976 static struct snd_kcontrol_new alc882_w2jc_mixer[] = {
4977         HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
4978         HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
4979         HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
4980         HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
4981         HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
4982         HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
4983         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
4984         HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
4985         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
4986         HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
4987         HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
4988         { } /* end */
4989 };
4990
4991 static struct snd_kcontrol_new alc882_targa_mixer[] = {
4992         HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
4993         HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
4994         HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
4995         HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
4996         HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
4997         HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
4998         HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
4999         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
5000         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
5001         HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
5002         HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
5003         { } /* end */
5004 };
5005
5006 /* Pin assignment: Front=0x14, HP = 0x15, Front = 0x16, ???
5007  *                 Front Mic=0x18, Line In = 0x1a, Line In = 0x1b, CD = 0x1c
5008  */
5009 static struct snd_kcontrol_new alc882_asus_a7j_mixer[] = {
5010         HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
5011         HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT),
5012         HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT),
5013         HDA_CODEC_MUTE("Mobile Front Playback Switch", 0x16, 0x0, HDA_OUTPUT),
5014         HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
5015         HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
5016         HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
5017         HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
5018         HDA_CODEC_VOLUME("Mobile Line Playback Volume", 0x0b, 0x03, HDA_INPUT),
5019         HDA_CODEC_MUTE("Mobile Line Playback Switch", 0x0b, 0x03, HDA_INPUT),
5020         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
5021         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
5022         { } /* end */
5023 };
5024
5025 static struct snd_kcontrol_new alc882_chmode_mixer[] = {
5026         {
5027                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
5028                 .name = "Channel Mode",
5029                 .info = alc_ch_mode_info,
5030                 .get = alc_ch_mode_get,
5031                 .put = alc_ch_mode_put,
5032         },
5033         { } /* end */
5034 };
5035
5036 static struct hda_verb alc882_init_verbs[] = {
5037         /* Front mixer: unmute input/output amp left and right (volume = 0) */
5038         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5039         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5040         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5041         /* Rear mixer */
5042         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5043         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5044         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5045         /* CLFE mixer */
5046         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5047         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5048         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5049         /* Side mixer */
5050         {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5051         {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5052         {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5053
5054         /* Front Pin: output 0 (0x0c) */
5055         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5056         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5057         {0x14, AC_VERB_SET_CONNECT_SEL, 0x00},
5058         /* Rear Pin: output 1 (0x0d) */
5059         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5060         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5061         {0x15, AC_VERB_SET_CONNECT_SEL, 0x01},
5062         /* CLFE Pin: output 2 (0x0e) */
5063         {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5064         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5065         {0x16, AC_VERB_SET_CONNECT_SEL, 0x02},
5066         /* Side Pin: output 3 (0x0f) */
5067         {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5068         {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5069         {0x17, AC_VERB_SET_CONNECT_SEL, 0x03},
5070         /* Mic (rear) pin: input vref at 80% */
5071         {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
5072         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5073         /* Front Mic pin: input vref at 80% */
5074         {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
5075         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5076         /* Line In pin: input */
5077         {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
5078         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5079         /* Line-2 In: Headphone output (output 0 - 0x0c) */
5080         {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
5081         {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5082         {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
5083         /* CD pin widget for input */
5084         {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
5085
5086         /* FIXME: use matrix-type input source selection */
5087         /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
5088         /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
5089         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5090         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
5091         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
5092         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
5093         /* Input mixer2 */
5094         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5095         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
5096         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
5097         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
5098         /* Input mixer3 */
5099         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5100         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
5101         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
5102         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
5103         /* ADC1: mute amp left and right */
5104         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5105         {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
5106         /* ADC2: mute amp left and right */
5107         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5108         {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
5109         /* ADC3: mute amp left and right */
5110         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5111         {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
5112
5113         { }
5114 };
5115
5116 static struct hda_verb alc882_eapd_verbs[] = {
5117         /* change to EAPD mode */
5118         {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
5119         {0x20, AC_VERB_SET_PROC_COEF, 0x3060},
5120         { }
5121 };
5122
5123 /* Mac Pro test */
5124 static struct snd_kcontrol_new alc882_macpro_mixer[] = {
5125         HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
5126         HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
5127         HDA_CODEC_MUTE("Headphone Playback Switch", 0x18, 0x0, HDA_OUTPUT),
5128         HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x01, HDA_INPUT),
5129         HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x01, HDA_INPUT),
5130         HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x02, HDA_INPUT),
5131         HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x02, HDA_INPUT),
5132         { } /* end */
5133 };
5134
5135 static struct hda_verb alc882_macpro_init_verbs[] = {
5136         /* Front mixer: unmute input/output amp left and right (volume = 0) */
5137         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5138         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5139         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5140         /* Front Pin: output 0 (0x0c) */
5141         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5142         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5143         {0x15, AC_VERB_SET_CONNECT_SEL, 0x00},
5144         /* Front Mic pin: input vref at 80% */
5145         {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
5146         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5147         /* Speaker:  output */
5148         {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5149         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5150         {0x1a, AC_VERB_SET_CONNECT_SEL, 0x04},
5151         /* Headphone output (output 0 - 0x0c) */
5152         {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
5153         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5154         {0x18, AC_VERB_SET_CONNECT_SEL, 0x00},
5155
5156         /* FIXME: use matrix-type input source selection */
5157         /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
5158         /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
5159         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5160         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
5161         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
5162         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
5163         /* Input mixer2 */
5164         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5165         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
5166         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
5167         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
5168         /* Input mixer3 */
5169         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5170         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
5171         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
5172         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
5173         /* ADC1: mute amp left and right */
5174         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5175         {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
5176         /* ADC2: mute amp left and right */
5177         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5178         {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
5179         /* ADC3: mute amp left and right */
5180         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5181         {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
5182
5183         { }
5184 };
5185
5186 /* Macbook Pro rev3 */
5187 static struct hda_verb alc885_mbp3_init_verbs[] = {
5188         /* Front mixer: unmute input/output amp left and right (volume = 0) */
5189         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5190         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5191         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5192         /* Rear mixer */
5193         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5194         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5195         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5196         /* Front Pin: output 0 (0x0c) */
5197         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5198         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5199         {0x14, AC_VERB_SET_CONNECT_SEL, 0x00},
5200         /* HP Pin: output 0 (0x0d) */
5201         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc4},
5202         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5203         {0x15, AC_VERB_SET_CONNECT_SEL, 0x00},
5204         {0x15, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
5205         /* Mic (rear) pin: input vref at 80% */
5206         {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
5207         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5208         /* Front Mic pin: input vref at 80% */
5209         {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
5210         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5211         /* Line In pin: use output 1 when in LineOut mode */
5212         {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
5213         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5214         {0x1a, AC_VERB_SET_CONNECT_SEL, 0x01},
5215
5216         /* FIXME: use matrix-type input source selection */
5217         /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
5218         /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
5219         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5220         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
5221         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
5222         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
5223         /* Input mixer2 */
5224         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5225         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
5226         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
5227         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
5228         /* Input mixer3 */
5229         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5230         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
5231         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
5232         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
5233         /* ADC1: mute amp left and right */
5234         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5235         {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
5236         /* ADC2: mute amp left and right */
5237         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5238         {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
5239         /* ADC3: mute amp left and right */
5240         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5241         {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
5242
5243         { }
5244 };
5245
5246 /* iMac 24 mixer. */
5247 static struct snd_kcontrol_new alc885_imac24_mixer[] = {
5248         HDA_CODEC_VOLUME("Master Playback Volume", 0x0c, 0x00, HDA_OUTPUT),
5249         HDA_CODEC_MUTE("Master Playback Switch", 0x0c, 0x00, HDA_INPUT),
5250         { } /* end */
5251 };
5252
5253 /* iMac 24 init verbs. */
5254 static struct hda_verb alc885_imac24_init_verbs[] = {
5255         /* Internal speakers: output 0 (0x0c) */
5256         {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5257         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5258         {0x18, AC_VERB_SET_CONNECT_SEL, 0x00},
5259         /* Internal speakers: output 0 (0x0c) */
5260         {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5261         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5262         {0x1a, AC_VERB_SET_CONNECT_SEL, 0x00},
5263         /* Headphone: output 0 (0x0c) */
5264         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
5265         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5266         {0x14, AC_VERB_SET_CONNECT_SEL, 0x00},
5267         {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
5268         /* Front Mic: input vref at 80% */
5269         {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
5270         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5271         { }
5272 };
5273
5274 /* Toggle speaker-output according to the hp-jack state */
5275 static void alc885_imac24_automute(struct hda_codec *codec)
5276 {
5277         unsigned int present;
5278
5279         present = snd_hda_codec_read(codec, 0x14, 0,
5280                                      AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
5281         snd_hda_codec_amp_stereo(codec, 0x18, HDA_OUTPUT, 0,
5282                                  HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0);
5283         snd_hda_codec_amp_stereo(codec, 0x1a, HDA_OUTPUT, 0,
5284                                  HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0);
5285 }
5286
5287 /* Processes unsolicited events. */
5288 static void alc885_imac24_unsol_event(struct hda_codec *codec,
5289                                       unsigned int res)
5290 {
5291         /* Headphone insertion or removal. */
5292         if ((res >> 26) == ALC880_HP_EVENT)
5293                 alc885_imac24_automute(codec);
5294 }
5295
5296 static void alc885_mbp3_automute(struct hda_codec *codec)
5297 {
5298         unsigned int present;
5299
5300         present = snd_hda_codec_read(codec, 0x15, 0,
5301                                      AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
5302         snd_hda_codec_amp_stereo(codec, 0x14,  HDA_OUTPUT, 0,
5303                                  HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0);
5304         snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0,
5305                                  HDA_AMP_MUTE, present ? 0 : HDA_AMP_MUTE);
5306
5307 }
5308 static void alc885_mbp3_unsol_event(struct hda_codec *codec,
5309                                     unsigned int res)
5310 {
5311         /* Headphone insertion or removal. */
5312         if ((res >> 26) == ALC880_HP_EVENT)
5313                 alc885_mbp3_automute(codec);
5314 }
5315
5316
5317 static struct hda_verb alc882_targa_verbs[] = {
5318         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5319         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5320
5321         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
5322         {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5323         
5324         {0x18, AC_VERB_SET_CONNECT_SEL, 0x02}, /* mic/clfe */
5325         {0x1a, AC_VERB_SET_CONNECT_SEL, 0x01}, /* line/surround */
5326         {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
5327
5328         {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
5329         {0x01, AC_VERB_SET_GPIO_MASK, 0x03},
5330         {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x03},
5331         {0x01, AC_VERB_SET_GPIO_DATA, 0x03},
5332         { } /* end */
5333 };
5334
5335 /* toggle speaker-output according to the hp-jack state */
5336 static void alc882_targa_automute(struct hda_codec *codec)
5337 {
5338         unsigned int present;
5339  
5340         present = snd_hda_codec_read(codec, 0x14, 0,
5341                                      AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
5342         snd_hda_codec_amp_stereo(codec, 0x1b, HDA_OUTPUT, 0,
5343                                  HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0);
5344         snd_hda_codec_write_cache(codec, 1, 0, AC_VERB_SET_GPIO_DATA,
5345                                   present ? 1 : 3);
5346 }
5347
5348 static void alc882_targa_unsol_event(struct hda_codec *codec, unsigned int res)
5349 {
5350         /* Looks like the unsol event is incompatible with the standard
5351          * definition.  4bit tag is placed at 26 bit!
5352          */
5353         if (((res >> 26) == ALC880_HP_EVENT)) {
5354                 alc882_targa_automute(codec);
5355         }
5356 }
5357
5358 static struct hda_verb alc882_asus_a7j_verbs[] = {
5359         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5360         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5361
5362         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
5363         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5364         {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5365         
5366         {0x14, AC_VERB_SET_CONNECT_SEL, 0x00}, /* Front */
5367         {0x15, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
5368         {0x16, AC_VERB_SET_CONNECT_SEL, 0x00}, /* Front */
5369
5370         {0x18, AC_VERB_SET_CONNECT_SEL, 0x02}, /* mic/clfe */
5371         {0x1a, AC_VERB_SET_CONNECT_SEL, 0x01}, /* line/surround */
5372         {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
5373         { } /* end */
5374 };
5375
5376 static void alc882_gpio_mute(struct hda_codec *codec, int pin, int muted)
5377 {
5378         unsigned int gpiostate, gpiomask, gpiodir;
5379
5380         gpiostate = snd_hda_codec_read(codec, codec->afg, 0,
5381                                        AC_VERB_GET_GPIO_DATA, 0);
5382
5383         if (!muted)
5384                 gpiostate |= (1 << pin);
5385         else
5386                 gpiostate &= ~(1 << pin);
5387
5388         gpiomask = snd_hda_codec_read(codec, codec->afg, 0,
5389                                       AC_VERB_GET_GPIO_MASK, 0);
5390         gpiomask |= (1 << pin);
5391
5392         gpiodir = snd_hda_codec_read(codec, codec->afg, 0,
5393                                      AC_VERB_GET_GPIO_DIRECTION, 0);
5394         gpiodir |= (1 << pin);
5395
5396
5397         snd_hda_codec_write(codec, codec->afg, 0,
5398                             AC_VERB_SET_GPIO_MASK, gpiomask);
5399         snd_hda_codec_write(codec, codec->afg, 0,
5400                             AC_VERB_SET_GPIO_DIRECTION, gpiodir);
5401
5402         msleep(1);
5403
5404         snd_hda_codec_write(codec, codec->afg, 0,
5405                             AC_VERB_SET_GPIO_DATA, gpiostate);
5406 }
5407
5408 /* set up GPIO at initialization */
5409 static void alc885_macpro_init_hook(struct hda_codec *codec)
5410 {
5411         alc882_gpio_mute(codec, 0, 0);
5412         alc882_gpio_mute(codec, 1, 0);
5413 }
5414
5415 /* set up GPIO and update auto-muting at initialization */
5416 static void alc885_imac24_init_hook(struct hda_codec *codec)
5417 {
5418         alc885_macpro_init_hook(codec);
5419         alc885_imac24_automute(codec);
5420 }
5421
5422 /*
5423  * generic initialization of ADC, input mixers and output mixers
5424  */
5425 static struct hda_verb alc882_auto_init_verbs[] = {
5426         /*
5427          * Unmute ADC0-2 and set the default input to mic-in
5428          */
5429         {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
5430         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5431         {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
5432         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5433         {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
5434         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5435
5436         /* Mute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
5437          * mixer widget
5438          * Note: PASD motherboards uses the Line In 2 as the input for
5439          * front panel mic (mic 2)
5440          */
5441         /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
5442         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5443         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5444         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
5445         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
5446         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
5447
5448         /*
5449          * Set up output mixers (0x0c - 0x0f)
5450          */
5451         /* set vol=0 to output mixers */
5452         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5453         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5454         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5455         {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5456         /* set up input amps for analog loopback */
5457         /* Amp Indices: DAC = 0, mixer = 1 */
5458         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5459         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5460         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5461         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5462         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5463         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5464         {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5465         {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5466         {0x26, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5467         {0x26, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5468
5469         /* FIXME: use matrix-type input source selection */
5470         /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
5471         /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
5472         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
5473         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
5474         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
5475         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
5476         /* Input mixer2 */
5477         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
5478         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
5479         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
5480         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
5481         /* Input mixer3 */
5482         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
5483         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
5484         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
5485         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
5486
5487         { }
5488 };
5489
5490 /* capture mixer elements */
5491 static struct snd_kcontrol_new alc882_capture_alt_mixer[] = {
5492         HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
5493         HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
5494         HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
5495         HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
5496         {
5497                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
5498                 /* The multiple "Capture Source" controls confuse alsamixer
5499                  * So call somewhat different..
5500                  * FIXME: the controls appear in the "playback" view!
5501                  */
5502                 /* .name = "Capture Source", */
5503                 .name = "Input Source",
5504                 .count = 2,
5505                 .info = alc882_mux_enum_info,
5506                 .get = alc882_mux_enum_get,
5507                 .put = alc882_mux_enum_put,
5508         },
5509         { } /* end */
5510 };
5511
5512 static struct snd_kcontrol_new alc882_capture_mixer[] = {
5513         HDA_CODEC_VOLUME("Capture Volume", 0x07, 0x0, HDA_INPUT),
5514         HDA_CODEC_MUTE("Capture Switch", 0x07, 0x0, HDA_INPUT),
5515         HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x08, 0x0, HDA_INPUT),
5516         HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x08, 0x0, HDA_INPUT),
5517         HDA_CODEC_VOLUME_IDX("Capture Volume", 2, 0x09, 0x0, HDA_INPUT),
5518         HDA_CODEC_MUTE_IDX("Capture Switch", 2, 0x09, 0x0, HDA_INPUT),
5519         {
5520                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
5521                 /* The multiple "Capture Source" controls confuse alsamixer
5522                  * So call somewhat different..
5523                  * FIXME: the controls appear in the "playback" view!
5524                  */
5525                 /* .name = "Capture Source", */
5526                 .name = "Input Source",
5527                 .count = 3,
5528                 .info = alc882_mux_enum_info,
5529                 .get = alc882_mux_enum_get,
5530                 .put = alc882_mux_enum_put,
5531         },
5532         { } /* end */
5533 };
5534
5535 #ifdef CONFIG_SND_HDA_POWER_SAVE
5536 #define alc882_loopbacks        alc880_loopbacks
5537 #endif
5538
5539 /* pcm configuration: identiacal with ALC880 */
5540 #define alc882_pcm_analog_playback      alc880_pcm_analog_playback
5541 #define alc882_pcm_analog_capture       alc880_pcm_analog_capture
5542 #define alc882_pcm_digital_playback     alc880_pcm_digital_playback
5543 #define alc882_pcm_digital_capture      alc880_pcm_digital_capture
5544
5545 /*
5546  * configuration and preset
5547  */
5548 static const char *alc882_models[ALC882_MODEL_LAST] = {
5549         [ALC882_3ST_DIG]        = "3stack-dig",
5550         [ALC882_6ST_DIG]        = "6stack-dig",
5551         [ALC882_ARIMA]          = "arima",
5552         [ALC882_W2JC]           = "w2jc",
5553         [ALC885_MACPRO]         = "macpro",
5554         [ALC885_MBP3]           = "mbp3",
5555         [ALC885_IMAC24]         = "imac24",
5556         [ALC882_AUTO]           = "auto",
5557 };
5558
5559 static struct snd_pci_quirk alc882_cfg_tbl[] = {
5560         SND_PCI_QUIRK(0x1019, 0x6668, "ECS", ALC882_6ST_DIG),
5561         SND_PCI_QUIRK(0x105b, 0x6668, "Foxconn", ALC882_6ST_DIG),
5562         SND_PCI_QUIRK(0x1462, 0x6668, "MSI", ALC882_6ST_DIG),
5563         SND_PCI_QUIRK(0x1462, 0x28fb, "Targa T8", ALC882_TARGA), /* MSI-1049 T8  */
5564         SND_PCI_QUIRK(0x161f, 0x2054, "Arima W820", ALC882_ARIMA),
5565         SND_PCI_QUIRK(0x1043, 0x060d, "Asus A7J", ALC882_ASUS_A7J),
5566         SND_PCI_QUIRK(0x1043, 0x817f, "Asus P5LD2", ALC882_6ST_DIG),
5567         SND_PCI_QUIRK(0x1043, 0x81d8, "Asus P5WD", ALC882_6ST_DIG),
5568         SND_PCI_QUIRK(0x1043, 0x1971, "Asus W2JC", ALC882_W2JC),
5569         {}
5570 };
5571
5572 static struct alc_config_preset alc882_presets[] = {
5573         [ALC882_3ST_DIG] = {
5574                 .mixers = { alc882_base_mixer },
5575                 .init_verbs = { alc882_init_verbs },
5576                 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
5577                 .dac_nids = alc882_dac_nids,
5578                 .dig_out_nid = ALC882_DIGOUT_NID,
5579                 .dig_in_nid = ALC882_DIGIN_NID,
5580                 .num_channel_mode = ARRAY_SIZE(alc882_ch_modes),
5581                 .channel_mode = alc882_ch_modes,
5582                 .need_dac_fix = 1,
5583                 .input_mux = &alc882_capture_source,
5584         },
5585         [ALC882_6ST_DIG] = {
5586                 .mixers = { alc882_base_mixer, alc882_chmode_mixer },
5587                 .init_verbs = { alc882_init_verbs },
5588                 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
5589                 .dac_nids = alc882_dac_nids,
5590                 .dig_out_nid = ALC882_DIGOUT_NID,
5591                 .dig_in_nid = ALC882_DIGIN_NID,
5592                 .num_channel_mode = ARRAY_SIZE(alc882_sixstack_modes),
5593                 .channel_mode = alc882_sixstack_modes,
5594                 .input_mux = &alc882_capture_source,
5595         },
5596         [ALC882_ARIMA] = {
5597                 .mixers = { alc882_base_mixer, alc882_chmode_mixer },
5598                 .init_verbs = { alc882_init_verbs, alc882_eapd_verbs },
5599                 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
5600                 .dac_nids = alc882_dac_nids,
5601                 .num_channel_mode = ARRAY_SIZE(alc882_sixstack_modes),
5602                 .channel_mode = alc882_sixstack_modes,
5603                 .input_mux = &alc882_capture_source,
5604         },
5605         [ALC882_W2JC] = {
5606                 .mixers = { alc882_w2jc_mixer, alc882_chmode_mixer },
5607                 .init_verbs = { alc882_init_verbs, alc882_eapd_verbs,
5608                                 alc880_gpio1_init_verbs },
5609                 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
5610                 .dac_nids = alc882_dac_nids,
5611                 .num_channel_mode = ARRAY_SIZE(alc880_threestack_modes),
5612                 .channel_mode = alc880_threestack_modes,
5613                 .need_dac_fix = 1,
5614                 .input_mux = &alc882_capture_source,
5615                 .dig_out_nid = ALC882_DIGOUT_NID,
5616         },
5617         [ALC885_MBP3] = {
5618                 .mixers = { alc885_mbp3_mixer, alc882_chmode_mixer },
5619                 .init_verbs = { alc885_mbp3_init_verbs,
5620                                 alc880_gpio1_init_verbs },
5621                 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
5622                 .dac_nids = alc882_dac_nids,
5623                 .channel_mode = alc885_mbp_6ch_modes,
5624                 .num_channel_mode = ARRAY_SIZE(alc885_mbp_6ch_modes),
5625                 .input_mux = &alc882_capture_source,
5626                 .dig_out_nid = ALC882_DIGOUT_NID,
5627                 .dig_in_nid = ALC882_DIGIN_NID,
5628                 .unsol_event = alc885_mbp3_unsol_event,
5629                 .init_hook = alc885_mbp3_automute,
5630         },
5631         [ALC885_MACPRO] = {
5632                 .mixers = { alc882_macpro_mixer },
5633                 .init_verbs = { alc882_macpro_init_verbs },
5634                 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
5635                 .dac_nids = alc882_dac_nids,
5636                 .dig_out_nid = ALC882_DIGOUT_NID,
5637                 .dig_in_nid = ALC882_DIGIN_NID,
5638                 .num_channel_mode = ARRAY_SIZE(alc882_ch_modes),
5639                 .channel_mode = alc882_ch_modes,
5640                 .input_mux = &alc882_capture_source,
5641                 .init_hook = alc885_macpro_init_hook,
5642         },
5643         [ALC885_IMAC24] = {
5644                 .mixers = { alc885_imac24_mixer },
5645                 .init_verbs = { alc885_imac24_init_verbs },
5646                 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
5647                 .dac_nids = alc882_dac_nids,
5648                 .dig_out_nid = ALC882_DIGOUT_NID,
5649                 .dig_in_nid = ALC882_DIGIN_NID,
5650                 .num_channel_mode = ARRAY_SIZE(alc882_ch_modes),
5651                 .channel_mode = alc882_ch_modes,
5652                 .input_mux = &alc882_capture_source,
5653                 .unsol_event = alc885_imac24_unsol_event,
5654                 .init_hook = alc885_imac24_init_hook,
5655         },
5656         [ALC882_TARGA] = {
5657                 .mixers = { alc882_targa_mixer, alc882_chmode_mixer,
5658                             alc882_capture_mixer },
5659                 .init_verbs = { alc882_init_verbs, alc882_targa_verbs},
5660                 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
5661                 .dac_nids = alc882_dac_nids,
5662                 .dig_out_nid = ALC882_DIGOUT_NID,
5663                 .num_adc_nids = ARRAY_SIZE(alc882_adc_nids),
5664                 .adc_nids = alc882_adc_nids,
5665                 .num_channel_mode = ARRAY_SIZE(alc882_3ST_6ch_modes),
5666                 .channel_mode = alc882_3ST_6ch_modes,
5667                 .need_dac_fix = 1,
5668                 .input_mux = &alc882_capture_source,
5669                 .unsol_event = alc882_targa_unsol_event,
5670                 .init_hook = alc882_targa_automute,
5671         },
5672         [ALC882_ASUS_A7J] = {
5673                 .mixers = { alc882_asus_a7j_mixer, alc882_chmode_mixer,
5674                             alc882_capture_mixer },
5675                 .init_verbs = { alc882_init_verbs, alc882_asus_a7j_verbs},
5676                 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
5677                 .dac_nids = alc882_dac_nids,
5678                 .dig_out_nid = ALC882_DIGOUT_NID,
5679                 .num_adc_nids = ARRAY_SIZE(alc882_adc_nids),
5680                 .adc_nids = alc882_adc_nids,
5681                 .num_channel_mode = ARRAY_SIZE(alc882_3ST_6ch_modes),
5682                 .channel_mode = alc882_3ST_6ch_modes,
5683                 .need_dac_fix = 1,
5684                 .input_mux = &alc882_capture_source,
5685         },      
5686 };
5687
5688
5689 /*
5690  * Pin config fixes
5691  */
5692 enum { 
5693         PINFIX_ABIT_AW9D_MAX
5694 };
5695
5696 static struct alc_pincfg alc882_abit_aw9d_pinfix[] = {
5697         { 0x15, 0x01080104 }, /* side */
5698         { 0x16, 0x01011012 }, /* rear */
5699         { 0x17, 0x01016011 }, /* clfe */
5700         { }
5701 };
5702
5703 static const struct alc_pincfg *alc882_pin_fixes[] = {
5704         [PINFIX_ABIT_AW9D_MAX] = alc882_abit_aw9d_pinfix,
5705 };
5706
5707 static struct snd_pci_quirk alc882_pinfix_tbl[] = {
5708         SND_PCI_QUIRK(0x147b, 0x107a, "Abit AW9D-MAX", PINFIX_ABIT_AW9D_MAX),
5709         {}
5710 };
5711
5712 /*
5713  * BIOS auto configuration
5714  */
5715 static void alc882_auto_set_output_and_unmute(struct hda_codec *codec,
5716                                               hda_nid_t nid, int pin_type,
5717                                               int dac_idx)
5718 {
5719         /* set as output */
5720         struct alc_spec *spec = codec->spec;
5721         int idx;
5722
5723         if (spec->multiout.dac_nids[dac_idx] == 0x25)
5724                 idx = 4;
5725         else
5726                 idx = spec->multiout.dac_nids[dac_idx] - 2;
5727
5728         snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
5729                             pin_type);
5730         snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
5731                             AMP_OUT_UNMUTE);
5732         snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CONNECT_SEL, idx);
5733
5734 }
5735
5736 static void alc882_auto_init_multi_out(struct hda_codec *codec)
5737 {
5738         struct alc_spec *spec = codec->spec;
5739         int i;
5740
5741         alc_subsystem_id(codec, 0x15, 0x1b, 0x14);
5742         for (i = 0; i <= HDA_SIDE; i++) {
5743                 hda_nid_t nid = spec->autocfg.line_out_pins[i];
5744                 int pin_type = get_pin_type(spec->autocfg.line_out_type);
5745                 if (nid)
5746                         alc882_auto_set_output_and_unmute(codec, nid, pin_type,
5747                                                           i);
5748         }
5749 }
5750
5751 static void alc882_auto_init_hp_out(struct hda_codec *codec)
5752 {
5753         struct alc_spec *spec = codec->spec;
5754         hda_nid_t pin;
5755
5756         pin = spec->autocfg.hp_pins[0];
5757         if (pin) /* connect to front */
5758                 /* use dac 0 */
5759                 alc882_auto_set_output_and_unmute(codec, pin, PIN_HP, 0);
5760 }
5761
5762 #define alc882_is_input_pin(nid)        alc880_is_input_pin(nid)
5763 #define ALC882_PIN_CD_NID               ALC880_PIN_CD_NID
5764
5765 static void alc882_auto_init_analog_input(struct hda_codec *codec)
5766 {
5767         struct alc_spec *spec = codec->spec;
5768         int i;
5769
5770         for (i = 0; i < AUTO_PIN_LAST; i++) {
5771                 hda_nid_t nid = spec->autocfg.input_pins[i];
5772                 if (alc882_is_input_pin(nid)) {
5773                         snd_hda_codec_write(codec, nid, 0,
5774                                             AC_VERB_SET_PIN_WIDGET_CONTROL,
5775                                             i <= AUTO_PIN_FRONT_MIC ?
5776                                             PIN_VREF80 : PIN_IN);
5777                         if (nid != ALC882_PIN_CD_NID)
5778                                 snd_hda_codec_write(codec, nid, 0,
5779                                                     AC_VERB_SET_AMP_GAIN_MUTE,
5780                                                     AMP_OUT_MUTE);
5781                 }
5782         }
5783 }
5784
5785 /* almost identical with ALC880 parser... */
5786 static int alc882_parse_auto_config(struct hda_codec *codec)
5787 {
5788         struct alc_spec *spec = codec->spec;
5789         int err = alc880_parse_auto_config(codec);
5790
5791         if (err < 0)
5792                 return err;
5793         else if (err > 0)
5794                 /* hack - override the init verbs */
5795                 spec->init_verbs[0] = alc882_auto_init_verbs;
5796         return err;
5797 }
5798
5799 /* additional initialization for auto-configuration model */
5800 static void alc882_auto_init(struct hda_codec *codec)
5801 {
5802         alc882_auto_init_multi_out(codec);
5803         alc882_auto_init_hp_out(codec);
5804         alc882_auto_init_analog_input(codec);
5805 }
5806
5807 static int patch_alc882(struct hda_codec *codec)
5808 {
5809         struct alc_spec *spec;
5810         int err, board_config;
5811
5812         spec = kzalloc(sizeof(*spec), GFP_KERNEL);
5813         if (spec == NULL)
5814                 return -ENOMEM;
5815
5816         codec->spec = spec;
5817
5818         board_config = snd_hda_check_board_config(codec, ALC882_MODEL_LAST,
5819                                                   alc882_models,
5820                                                   alc882_cfg_tbl);
5821
5822         if (board_config < 0 || board_config >= ALC882_MODEL_LAST) {
5823                 /* Pick up systems that don't supply PCI SSID */
5824                 switch (codec->subsystem_id) {
5825                 case 0x106b0c00: /* Mac Pro */
5826                         board_config = ALC885_MACPRO;
5827                         break;
5828                 case 0x106b1000: /* iMac 24 */
5829                         board_config = ALC885_IMAC24;
5830                         break;
5831                 case 0x106b2c00: /* Macbook Pro rev3 */
5832                         board_config = ALC885_MBP3;
5833                         break;
5834                 default:
5835                         printk(KERN_INFO "hda_codec: Unknown model for ALC882, "
5836                                          "trying auto-probe from BIOS...\n");
5837                         board_config = ALC882_AUTO;
5838                 }
5839         }
5840
5841         alc_fix_pincfg(codec, alc882_pinfix_tbl, alc882_pin_fixes);
5842
5843         if (board_config == ALC882_AUTO) {
5844                 /* automatic parse from the BIOS config */
5845                 err = alc882_parse_auto_config(codec);
5846                 if (err < 0) {
5847                         alc_free(codec);
5848                         return err;
5849                 } else if (!err) {
5850                         printk(KERN_INFO
5851                                "hda_codec: Cannot set up configuration "
5852                                "from BIOS.  Using base mode...\n");
5853                         board_config = ALC882_3ST_DIG;
5854                 }
5855         }
5856
5857         if (board_config != ALC882_AUTO)
5858                 setup_preset(spec, &alc882_presets[board_config]);
5859
5860         spec->stream_name_analog = "ALC882 Analog";
5861         spec->stream_analog_playback = &alc882_pcm_analog_playback;
5862         spec->stream_analog_capture = &alc882_pcm_analog_capture;
5863
5864         spec->stream_name_digital = "ALC882 Digital";
5865         spec->stream_digital_playback = &alc882_pcm_digital_playback;
5866         spec->stream_digital_capture = &alc882_pcm_digital_capture;
5867
5868         if (!spec->adc_nids && spec->input_mux) {
5869                 /* check whether NID 0x07 is valid */
5870                 unsigned int wcap = get_wcaps(codec, 0x07);
5871                 /* get type */
5872                 wcap = (wcap & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT;
5873                 if (wcap != AC_WID_AUD_IN) {
5874                         spec->adc_nids = alc882_adc_nids_alt;
5875                         spec->num_adc_nids = ARRAY_SIZE(alc882_adc_nids_alt);
5876                         spec->mixers[spec->num_mixers] =
5877                                 alc882_capture_alt_mixer;
5878                         spec->num_mixers++;
5879                 } else {
5880                         spec->adc_nids = alc882_adc_nids;
5881                         spec->num_adc_nids = ARRAY_SIZE(alc882_adc_nids);
5882                         spec->mixers[spec->num_mixers] = alc882_capture_mixer;
5883                         spec->num_mixers++;
5884                 }
5885         }
5886
5887         codec->patch_ops = alc_patch_ops;
5888         if (board_config == ALC882_AUTO)
5889                 spec->init_hook = alc882_auto_init;
5890 #ifdef CONFIG_SND_HDA_POWER_SAVE
5891         if (!spec->loopback.amplist)
5892                 spec->loopback.amplist = alc882_loopbacks;
5893 #endif
5894
5895         return 0;
5896 }
5897
5898 /*
5899  * ALC883 support
5900  *
5901  * ALC883 is almost identical with ALC880 but has cleaner and more flexible
5902  * configuration.  Each pin widget can choose any input DACs and a mixer.
5903  * Each ADC is connected from a mixer of all inputs.  This makes possible
5904  * 6-channel independent captures.
5905  *
5906  * In addition, an independent DAC for the multi-playback (not used in this
5907  * driver yet).
5908  */
5909 #define ALC883_DIGOUT_NID       0x06
5910 #define ALC883_DIGIN_NID        0x0a
5911
5912 static hda_nid_t alc883_dac_nids[4] = {
5913         /* front, rear, clfe, rear_surr */
5914         0x02, 0x04, 0x03, 0x05
5915 };
5916
5917 static hda_nid_t alc883_adc_nids[2] = {
5918         /* ADC1-2 */
5919         0x08, 0x09,
5920 };
5921
5922 /* input MUX */
5923 /* FIXME: should be a matrix-type input source selection */
5924
5925 static struct hda_input_mux alc883_capture_source = {
5926         .num_items = 4,
5927         .items = {
5928                 { "Mic", 0x0 },
5929                 { "Front Mic", 0x1 },
5930                 { "Line", 0x2 },
5931                 { "CD", 0x4 },
5932         },
5933 };
5934
5935 static struct hda_input_mux alc883_lenovo_101e_capture_source = {
5936         .num_items = 2,
5937         .items = {
5938                 { "Mic", 0x1 },
5939                 { "Line", 0x2 },
5940         },
5941 };
5942
5943 static struct hda_input_mux alc883_lenovo_nb0763_capture_source = {
5944         .num_items = 4,
5945         .items = {
5946                 { "Mic", 0x0 },
5947                 { "iMic", 0x1 },
5948                 { "Line", 0x2 },
5949                 { "CD", 0x4 },
5950         },
5951 };
5952
5953 #define alc883_mux_enum_info alc_mux_enum_info
5954 #define alc883_mux_enum_get alc_mux_enum_get
5955
5956 static int alc883_mux_enum_put(struct snd_kcontrol *kcontrol,
5957                                struct snd_ctl_elem_value *ucontrol)
5958 {
5959         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
5960         struct alc_spec *spec = codec->spec;
5961         const struct hda_input_mux *imux = spec->input_mux;
5962         unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
5963         static hda_nid_t capture_mixers[3] = { 0x24, 0x23, 0x22 };
5964         hda_nid_t nid = capture_mixers[adc_idx];
5965         unsigned int *cur_val = &spec->cur_mux[adc_idx];
5966         unsigned int i, idx;
5967
5968         idx = ucontrol->value.enumerated.item[0];
5969         if (idx >= imux->num_items)
5970                 idx = imux->num_items - 1;
5971         if (*cur_val == idx)
5972                 return 0;
5973         for (i = 0; i < imux->num_items; i++) {
5974                 unsigned int v = (i == idx) ? 0 : HDA_AMP_MUTE;
5975                 snd_hda_codec_amp_stereo(codec, nid, HDA_INPUT,
5976                                          imux->items[i].index,
5977                                          HDA_AMP_MUTE, v);
5978         }
5979         *cur_val = idx;
5980         return 1;
5981 }
5982
5983 /*
5984  * 2ch mode
5985  */
5986 static struct hda_channel_mode alc883_3ST_2ch_modes[1] = {
5987         { 2, NULL }
5988 };
5989
5990 /*
5991  * 2ch mode
5992  */
5993 static struct hda_verb alc883_3ST_ch2_init[] = {
5994         { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
5995         { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
5996         { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
5997         { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
5998         { } /* end */
5999 };
6000
6001 /*
6002  * 6ch mode
6003  */
6004 static struct hda_verb alc883_3ST_ch6_init[] = {
6005         { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
6006         { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
6007         { 0x18, AC_VERB_SET_CONNECT_SEL, 0x02 },
6008         { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
6009         { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
6010         { 0x1a, AC_VERB_SET_CONNECT_SEL, 0x01 },
6011         { } /* end */
6012 };
6013
6014 static struct hda_channel_mode alc883_3ST_6ch_modes[2] = {
6015         { 2, alc883_3ST_ch2_init },
6016         { 6, alc883_3ST_ch6_init },
6017 };
6018
6019 /*
6020  * 6ch mode
6021  */
6022 static struct hda_verb alc883_sixstack_ch6_init[] = {
6023         { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
6024         { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
6025         { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
6026         { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
6027         { } /* end */
6028 };
6029
6030 /*
6031  * 8ch mode
6032  */
6033 static struct hda_verb alc883_sixstack_ch8_init[] = {
6034         { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
6035         { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
6036         { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
6037         { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
6038         { } /* end */
6039 };
6040
6041 static struct hda_channel_mode alc883_sixstack_modes[2] = {
6042         { 6, alc883_sixstack_ch6_init },
6043         { 8, alc883_sixstack_ch8_init },
6044 };
6045
6046 static struct hda_verb alc883_medion_eapd_verbs[] = {
6047         /* eanable EAPD on medion laptop */
6048         {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
6049         {0x20, AC_VERB_SET_PROC_COEF, 0x3070},
6050         { }
6051 };
6052
6053 /* Pin assignment: Front=0x14, Rear=0x15, CLFE=0x16, Side=0x17
6054  *                 Mic=0x18, Front Mic=0x19, Line-In=0x1a, HP=0x1b
6055  */
6056
6057 static struct snd_kcontrol_new alc883_base_mixer[] = {
6058         HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
6059         HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
6060         HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
6061         HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
6062         HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
6063         HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
6064         HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
6065         HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
6066         HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
6067         HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT),
6068         HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
6069         HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
6070         HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
6071         HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
6072         HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
6073         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
6074         HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
6075         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
6076         HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
6077         HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
6078         HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
6079         HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
6080         HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
6081         HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
6082         HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
6083         HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
6084         HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
6085         {
6086                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
6087                 /* .name = "Capture Source", */
6088                 .name = "Input Source",
6089                 .count = 2,
6090                 .info = alc883_mux_enum_info,
6091                 .get = alc883_mux_enum_get,
6092                 .put = alc883_mux_enum_put,
6093         },
6094         { } /* end */
6095 };
6096
6097 static struct snd_kcontrol_new alc883_3ST_2ch_mixer[] = {
6098         HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
6099         HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
6100         HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
6101         HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
6102         HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
6103         HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
6104         HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
6105         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
6106         HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
6107         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
6108         HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
6109         HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
6110         HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
6111         HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
6112         HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
6113         HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
6114         HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
6115         HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
6116         HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
6117         {
6118                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
6119                 /* .name = "Capture Source", */
6120                 .name = "Input Source",
6121                 .count = 2,
6122                 .info = alc883_mux_enum_info,
6123                 .get = alc883_mux_enum_get,
6124                 .put = alc883_mux_enum_put,
6125         },
6126         { } /* end */
6127 };
6128
6129 static struct snd_kcontrol_new alc883_3ST_6ch_mixer[] = {
6130         HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
6131         HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
6132         HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
6133         HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
6134         HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
6135         HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
6136         HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
6137         HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
6138         HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
6139         HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
6140         HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
6141         HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
6142         HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
6143         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
6144         HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
6145         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
6146         HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
6147         HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
6148         HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
6149         HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
6150         HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
6151         HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
6152         HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
6153         HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
6154         HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
6155         {
6156                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
6157                 /* .name = "Capture Source", */
6158                 .name = "Input Source",
6159                 .count = 2,
6160                 .info = alc883_mux_enum_info,
6161                 .get = alc883_mux_enum_get,
6162                 .put = alc883_mux_enum_put,
6163         },
6164         { } /* end */
6165 };
6166
6167 static struct snd_kcontrol_new alc883_fivestack_mixer[] = {
6168         HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
6169         HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT),
6170         HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
6171         HDA_CODEC_MUTE("Surround Playback Switch", 0x15, 0x0, HDA_OUTPUT),
6172         HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
6173         HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
6174         HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x16, 1, 0x0, HDA_OUTPUT),
6175         HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x16, 2, 0x0, HDA_OUTPUT),
6176         HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
6177         HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
6178         HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
6179         HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
6180         HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
6181         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
6182         HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
6183         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
6184         HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
6185         HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
6186         HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
6187         HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
6188         HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
6189         HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
6190         HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
6191
6192         {
6193                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
6194                 /* .name = "Capture Source", */
6195                 .name = "Input Source",
6196                 .count = 1,
6197                 .info = alc883_mux_enum_info,
6198                 .get = alc883_mux_enum_get,
6199                 .put = alc883_mux_enum_put,
6200         },
6201         { } /* end */
6202 };
6203
6204 static struct snd_kcontrol_new alc883_tagra_mixer[] = {
6205         HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
6206         HDA_CODEC_MUTE("Headphone Playback Switch", 0x14, 0x0, HDA_OUTPUT),
6207         HDA_CODEC_MUTE("Front Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
6208         HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
6209         HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
6210         HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
6211         HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
6212         HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
6213         HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
6214         HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
6215         HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
6216         HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
6217         HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
6218         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
6219         HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
6220         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
6221         HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
6222         HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
6223         HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
6224         HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
6225         {
6226                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
6227                 /* .name = "Capture Source", */
6228                 .name = "Input Source",
6229                 .count = 2,
6230                 .info = alc883_mux_enum_info,
6231                 .get = alc883_mux_enum_get,
6232                 .put = alc883_mux_enum_put,
6233         },
6234         { } /* end */
6235 };
6236
6237 static struct snd_kcontrol_new alc883_tagra_2ch_mixer[] = {
6238         HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
6239         HDA_CODEC_MUTE("Headphone Playback Switch", 0x14, 0x0, HDA_OUTPUT),
6240         HDA_CODEC_MUTE("Front Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
6241         HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
6242         HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
6243         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
6244         HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
6245         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
6246         HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
6247         HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
6248         HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
6249         HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
6250         {
6251                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
6252                 /* .name = "Capture Source", */
6253                 .name = "Input Source",
6254                 .count = 2,
6255                 .info = alc883_mux_enum_info,
6256                 .get = alc883_mux_enum_get,
6257                 .put = alc883_mux_enum_put,
6258         },
6259         { } /* end */
6260 };
6261
6262 static struct snd_kcontrol_new alc883_lenovo_101e_2ch_mixer[] = {
6263         HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
6264         HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
6265         HDA_CODEC_VOLUME("iSpeaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
6266         HDA_BIND_MUTE("iSpeaker Playback Switch", 0x0d, 2, HDA_INPUT),
6267         HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
6268         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
6269         HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
6270         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
6271         HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
6272         HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
6273         {
6274                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
6275                 /* .name = "Capture Source", */
6276                 .name = "Input Source",
6277                 .count = 1,
6278                 .info = alc883_mux_enum_info,
6279                 .get = alc883_mux_enum_get,
6280                 .put = alc883_mux_enum_put,
6281         },
6282         { } /* end */
6283 };
6284
6285 static struct snd_kcontrol_new alc883_lenovo_nb0763_mixer[] = {
6286         HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
6287         HDA_BIND_MUTE("Speaker Playback Switch", 0x0c, 2, HDA_INPUT),
6288         HDA_CODEC_MUTE("Headphone Playback Switch", 0x14, 0x0, HDA_OUTPUT),
6289         HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
6290         HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
6291         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
6292         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
6293         HDA_CODEC_VOLUME("iMic Playback Volume", 0x0b, 0x1, HDA_INPUT),
6294         HDA_CODEC_MUTE("iMic Playback Switch", 0x0b, 0x1, HDA_INPUT),
6295         HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
6296         HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
6297         HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
6298         HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
6299         {
6300                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
6301                 /* .name = "Capture Source", */
6302                 .name = "Input Source",
6303                 .count = 2,
6304                 .info = alc883_mux_enum_info,
6305                 .get = alc883_mux_enum_get,
6306                 .put = alc883_mux_enum_put,
6307         },
6308         { } /* end */
6309 };
6310
6311 static struct snd_kcontrol_new alc883_medion_md2_mixer[] = {
6312         HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
6313         HDA_CODEC_MUTE("Headphone Playback Switch", 0x14, 0x0, HDA_OUTPUT),
6314         HDA_CODEC_MUTE("Front Playback Switch", 0x15, 0x0, HDA_OUTPUT),
6315         HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
6316         HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
6317         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
6318         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
6319         HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
6320         HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
6321         HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
6322         HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
6323         HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
6324         HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
6325         {
6326                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
6327                 /* .name = "Capture Source", */
6328                 .name = "Input Source",
6329                 .count = 2,
6330                 .info = alc883_mux_enum_info,
6331                 .get = alc883_mux_enum_get,
6332                 .put = alc883_mux_enum_put,
6333         },
6334         { } /* end */
6335 };      
6336
6337 static struct snd_kcontrol_new alc888_6st_hp_mixer[] = {
6338         HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
6339         HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
6340         HDA_CODEC_VOLUME("Surround Playback Volume", 0x0e, 0x0, HDA_OUTPUT),
6341         HDA_BIND_MUTE("Surround Playback Switch", 0x0e, 2, HDA_INPUT),
6342         HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0d, 1, 0x0, HDA_OUTPUT),
6343         HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0d, 2, 0x0, HDA_OUTPUT),
6344         HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0d, 1, 2, HDA_INPUT),
6345         HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0d, 2, 2, HDA_INPUT),
6346         HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
6347         HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT),
6348         HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
6349         HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
6350         HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
6351         HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
6352         HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
6353         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
6354         HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
6355         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
6356         HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
6357         HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
6358         HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
6359         HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
6360         HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
6361         HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
6362         HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
6363         HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
6364         HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
6365         {
6366                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
6367                 /* .name = "Capture Source", */
6368                 .name = "Input Source",
6369                 .count = 2,
6370                 .info = alc883_mux_enum_info,
6371                 .get = alc883_mux_enum_get,
6372                 .put = alc883_mux_enum_put,
6373         },
6374         { } /* end */
6375 };
6376
6377 static struct snd_kcontrol_new alc888_3st_hp_mixer[] = {
6378         HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
6379         HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
6380         HDA_CODEC_VOLUME("Surround Playback Volume", 0x0e, 0x0, HDA_OUTPUT),
6381         HDA_BIND_MUTE("Surround Playback Switch", 0x0e, 2, HDA_INPUT),
6382         HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0d, 1, 0x0, HDA_OUTPUT),
6383         HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0d, 2, 0x0, HDA_OUTPUT),
6384         HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0d, 1, 2, HDA_INPUT),
6385         HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0d, 2, 2, HDA_INPUT),
6386         HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
6387         HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
6388         HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
6389         HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
6390         HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
6391         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
6392         HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
6393         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
6394         HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
6395         HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
6396         HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
6397         HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
6398         HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
6399         HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
6400         HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
6401         HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
6402         HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
6403         {
6404                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
6405                 /* .name = "Capture Source", */
6406                 .name = "Input Source",
6407                 .count = 2,
6408                 .info = alc883_mux_enum_info,
6409                 .get = alc883_mux_enum_get,
6410                 .put = alc883_mux_enum_put,
6411         },
6412         { } /* end */
6413 };
6414
6415 static struct snd_kcontrol_new alc883_acer_aspire_mixer[] = {
6416         HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
6417         HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
6418         HDA_CODEC_MUTE("Headphone Playback Switch", 0x14, 0x0, HDA_OUTPUT),
6419         HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
6420         HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
6421         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
6422         HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
6423         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
6424         HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
6425         HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
6426         HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
6427         HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
6428         {
6429                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
6430                 /* .name = "Capture Source", */
6431                 .name = "Input Source",
6432                 .count = 2,
6433                 .info = alc883_mux_enum_info,
6434                 .get = alc883_mux_enum_get,
6435                 .put = alc883_mux_enum_put,
6436         },
6437         { } /* end */
6438 };
6439
6440 static struct snd_kcontrol_new alc883_chmode_mixer[] = {
6441         {
6442                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
6443                 .name = "Channel Mode",
6444                 .info = alc_ch_mode_info,
6445                 .get = alc_ch_mode_get,
6446                 .put = alc_ch_mode_put,
6447         },
6448         { } /* end */
6449 };
6450
6451 static struct hda_verb alc883_init_verbs[] = {
6452         /* ADC1: mute amp left and right */
6453         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
6454         {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
6455         /* ADC2: mute amp left and right */
6456         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
6457         {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
6458         /* Front mixer: unmute input/output amp left and right (volume = 0) */
6459         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6460         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
6461         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
6462         /* Rear mixer */
6463         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6464         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
6465         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
6466         /* CLFE mixer */
6467         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6468         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
6469         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
6470         /* Side mixer */
6471         {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6472         {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
6473         {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
6474
6475         /* mute analog input loopbacks */
6476         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
6477         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
6478         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
6479         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
6480         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
6481
6482         /* Front Pin: output 0 (0x0c) */
6483         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
6484         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
6485         {0x14, AC_VERB_SET_CONNECT_SEL, 0x00},
6486         /* Rear Pin: output 1 (0x0d) */
6487         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
6488         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
6489         {0x15, AC_VERB_SET_CONNECT_SEL, 0x01},
6490         /* CLFE Pin: output 2 (0x0e) */
6491         {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
6492         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
6493         {0x16, AC_VERB_SET_CONNECT_SEL, 0x02},
6494         /* Side Pin: output 3 (0x0f) */
6495         {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
6496         {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
6497         {0x17, AC_VERB_SET_CONNECT_SEL, 0x03},
6498         /* Mic (rear) pin: input vref at 80% */
6499         {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
6500         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
6501         /* Front Mic pin: input vref at 80% */
6502         {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
6503         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
6504         /* Line In pin: input */
6505         {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
6506         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
6507         /* Line-2 In: Headphone output (output 0 - 0x0c) */
6508         {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
6509         {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
6510         {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
6511         /* CD pin widget for input */
6512         {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
6513
6514         /* FIXME: use matrix-type input source selection */
6515         /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
6516         /* Input mixer2 */
6517         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6518         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6519         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
6520         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
6521         /* Input mixer3 */
6522         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6523         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6524         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
6525         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
6526         { }
6527 };
6528
6529 static struct hda_verb alc883_tagra_verbs[] = {
6530         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6531         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6532
6533         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
6534         {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
6535         
6536         {0x18, AC_VERB_SET_CONNECT_SEL, 0x02}, /* mic/clfe */
6537         {0x1a, AC_VERB_SET_CONNECT_SEL, 0x01}, /* line/surround */
6538         {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
6539
6540         {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
6541         {0x01, AC_VERB_SET_GPIO_MASK, 0x03},
6542         {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x03},
6543         {0x01, AC_VERB_SET_GPIO_DATA, 0x03},
6544
6545         { } /* end */
6546 };
6547
6548 static struct hda_verb alc883_lenovo_101e_verbs[] = {
6549         {0x15, AC_VERB_SET_CONNECT_SEL, 0x00},
6550         {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_FRONT_EVENT|AC_USRSP_EN},
6551         {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT|AC_USRSP_EN},
6552         { } /* end */
6553 };
6554
6555 static struct hda_verb alc883_lenovo_nb0763_verbs[] = {
6556         {0x15, AC_VERB_SET_CONNECT_SEL, 0x00},
6557         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
6558         {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
6559         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
6560         { } /* end */
6561 };
6562
6563 static struct hda_verb alc888_lenovo_ms7195_verbs[] = {
6564         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6565         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6566         {0x15, AC_VERB_SET_CONNECT_SEL, 0x00},
6567         {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_FRONT_EVENT | AC_USRSP_EN},
6568         {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT    | AC_USRSP_EN},
6569         { } /* end */
6570 };
6571
6572 static struct hda_verb alc883_haier_w66_verbs[] = {
6573         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6574         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6575
6576         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
6577
6578         {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
6579         {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
6580         {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
6581         {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
6582         { } /* end */
6583 };
6584
6585 static struct hda_verb alc888_6st_hp_verbs[] = {
6586         {0x14, AC_VERB_SET_CONNECT_SEL, 0x00},  /* Front: output 0 (0x0c) */
6587         {0x15, AC_VERB_SET_CONNECT_SEL, 0x02},  /* Rear : output 2 (0x0e) */
6588         {0x16, AC_VERB_SET_CONNECT_SEL, 0x01},  /* CLFE : output 1 (0x0d) */
6589         {0x17, AC_VERB_SET_CONNECT_SEL, 0x03},  /* Side : output 3 (0x0f) */
6590         { }
6591 };
6592
6593 static struct hda_verb alc888_3st_hp_verbs[] = {
6594         {0x14, AC_VERB_SET_CONNECT_SEL, 0x00},  /* Front: output 0 (0x0c) */
6595         {0x18, AC_VERB_SET_CONNECT_SEL, 0x01},  /* Rear : output 1 (0x0d) */
6596         {0x16, AC_VERB_SET_CONNECT_SEL, 0x02},  /* CLFE : output 2 (0x0e) */
6597         { }
6598 };
6599
6600 static struct hda_verb alc888_3st_hp_2ch_init[] = {
6601         { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
6602         { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
6603         { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
6604         { 0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
6605         { }
6606 };
6607
6608 static struct hda_verb alc888_3st_hp_6ch_init[] = {
6609         { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
6610         { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
6611         { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
6612         { 0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
6613         { }
6614 };
6615
6616 static struct hda_channel_mode alc888_3st_hp_modes[2] = {
6617         { 2, alc888_3st_hp_2ch_init },
6618         { 6, alc888_3st_hp_6ch_init },
6619 };
6620
6621 /* toggle front-jack and RCA according to the hp-jack state */
6622 static void alc888_lenovo_ms7195_front_automute(struct hda_codec *codec)
6623 {
6624         unsigned int present;
6625  
6626         present = snd_hda_codec_read(codec, 0x1b, 0,
6627                                      AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
6628         snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0,
6629                                  HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0);
6630         snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0,
6631                                  HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0);
6632 }
6633
6634 /* toggle RCA according to the front-jack state */
6635 static void alc888_lenovo_ms7195_rca_automute(struct hda_codec *codec)
6636 {
6637         unsigned int present;
6638  
6639         present = snd_hda_codec_read(codec, 0x14, 0,
6640                                      AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
6641         snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0,
6642                                  HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0);
6643 }
6644
6645 static void alc883_lenovo_ms7195_unsol_event(struct hda_codec *codec,
6646                                              unsigned int res)
6647 {
6648         if ((res >> 26) == ALC880_HP_EVENT)
6649                 alc888_lenovo_ms7195_front_automute(codec);
6650         if ((res >> 26) == ALC880_FRONT_EVENT)
6651                 alc888_lenovo_ms7195_rca_automute(codec);
6652 }
6653
6654 static struct hda_verb alc883_medion_md2_verbs[] = {
6655         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6656         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6657
6658         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
6659
6660         {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
6661         { } /* end */
6662 };
6663
6664 /* toggle speaker-output according to the hp-jack state */
6665 static void alc883_medion_md2_automute(struct hda_codec *codec)
6666 {
6667         unsigned int present;
6668  
6669         present = snd_hda_codec_read(codec, 0x14, 0,
6670                                      AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
6671         snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0,
6672                                  HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0);
6673 }
6674
6675 static void alc883_medion_md2_unsol_event(struct hda_codec *codec,
6676                                           unsigned int res)
6677 {
6678         if ((res >> 26) == ALC880_HP_EVENT)
6679                 alc883_medion_md2_automute(codec);
6680 }
6681
6682 /* toggle speaker-output according to the hp-jack state */
6683 static void alc883_tagra_automute(struct hda_codec *codec)
6684 {
6685         unsigned int present;
6686         unsigned char bits;
6687
6688         present = snd_hda_codec_read(codec, 0x14, 0,
6689                                      AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
6690         bits = present ? HDA_AMP_MUTE : 0;
6691         snd_hda_codec_amp_stereo(codec, 0x1b, HDA_OUTPUT, 0,
6692                                  HDA_AMP_MUTE, bits);
6693         snd_hda_codec_write_cache(codec, 1, 0, AC_VERB_SET_GPIO_DATA,
6694                                   present ? 1 : 3);
6695 }
6696
6697 static void alc883_tagra_unsol_event(struct hda_codec *codec, unsigned int res)
6698 {
6699         if ((res >> 26) == ALC880_HP_EVENT)
6700                 alc883_tagra_automute(codec);
6701 }
6702
6703 static void alc883_haier_w66_automute(struct hda_codec *codec)
6704 {
6705         unsigned int present;
6706         unsigned char bits;
6707
6708         present = snd_hda_codec_read(codec, 0x1b, 0,
6709                                      AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
6710         bits = present ? 0x80 : 0;
6711         snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0,
6712                                  0x80, bits);
6713 }
6714
6715 static void alc883_haier_w66_unsol_event(struct hda_codec *codec,
6716                                          unsigned int res)
6717 {
6718         if ((res >> 26) == ALC880_HP_EVENT)
6719                 alc883_haier_w66_automute(codec);
6720 }
6721
6722 static void alc883_lenovo_101e_ispeaker_automute(struct hda_codec *codec)
6723 {
6724         unsigned int present;
6725         unsigned char bits;
6726
6727         present = snd_hda_codec_read(codec, 0x14, 0,
6728                                      AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
6729         bits = present ? HDA_AMP_MUTE : 0;
6730         snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0,
6731                                  HDA_AMP_MUTE, bits);
6732 }
6733
6734 static void alc883_lenovo_101e_all_automute(struct hda_codec *codec)
6735 {
6736         unsigned int present;
6737         unsigned char bits;
6738
6739         present = snd_hda_codec_read(codec, 0x1b, 0,
6740                                      AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
6741         bits = present ? HDA_AMP_MUTE : 0;
6742         snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0,
6743                                  HDA_AMP_MUTE, bits);
6744         snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0,
6745                                  HDA_AMP_MUTE, bits);
6746 }
6747
6748 static void alc883_lenovo_101e_unsol_event(struct hda_codec *codec,
6749                                            unsigned int res)
6750 {
6751         if ((res >> 26) == ALC880_HP_EVENT)
6752                 alc883_lenovo_101e_all_automute(codec);
6753         if ((res >> 26) == ALC880_FRONT_EVENT)
6754                 alc883_lenovo_101e_ispeaker_automute(codec);
6755 }
6756
6757 /* toggle speaker-output according to the hp-jack state */
6758 static void alc883_acer_aspire_automute(struct hda_codec *codec)
6759 {
6760         unsigned int present;
6761  
6762         present = snd_hda_codec_read(codec, 0x14, 0,
6763                                      AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
6764         snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0,
6765                                  HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0);
6766         snd_hda_codec_amp_stereo(codec, 0x16, HDA_OUTPUT, 0,
6767                                  HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0);
6768 }
6769
6770 static void alc883_acer_aspire_unsol_event(struct hda_codec *codec,
6771                                            unsigned int res)
6772 {
6773         if ((res >> 26) == ALC880_HP_EVENT)
6774                 alc883_acer_aspire_automute(codec);
6775 }
6776
6777 static struct hda_verb alc883_acer_eapd_verbs[] = {
6778         /* HP Pin: output 0 (0x0c) */
6779         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
6780         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
6781         {0x14, AC_VERB_SET_CONNECT_SEL, 0x00},
6782         /* Front Pin: output 0 (0x0c) */
6783         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
6784         {0x15, AC_VERB_SET_CONNECT_SEL, 0x00},
6785         {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
6786         {0x16, AC_VERB_SET_CONNECT_SEL, 0x00},
6787         /* eanable EAPD on medion laptop */
6788         {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
6789         {0x20, AC_VERB_SET_PROC_COEF, 0x3050},
6790         /* enable unsolicited event */
6791         {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
6792         { }
6793 };
6794
6795 /*
6796  * generic initialization of ADC, input mixers and output mixers
6797  */
6798 static struct hda_verb alc883_auto_init_verbs[] = {
6799         /*
6800          * Unmute ADC0-2 and set the default input to mic-in
6801          */
6802         {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
6803         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6804         {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
6805         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6806
6807         /* Mute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
6808          * mixer widget
6809          * Note: PASD motherboards uses the Line In 2 as the input for
6810          * front panel mic (mic 2)
6811          */
6812         /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
6813         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
6814         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
6815         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
6816         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
6817         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
6818
6819         /*
6820          * Set up output mixers (0x0c - 0x0f)
6821          */
6822         /* set vol=0 to output mixers */
6823         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6824         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6825         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6826         {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6827         /* set up input amps for analog loopback */
6828         /* Amp Indices: DAC = 0, mixer = 1 */
6829         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6830         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6831         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6832         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6833         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6834         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6835         {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6836         {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6837         {0x26, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6838         {0x26, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6839
6840         /* FIXME: use matrix-type input source selection */
6841         /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
6842         /* Input mixer1 */
6843         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6844         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6845         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
6846         /* {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)}, */
6847         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
6848         /* Input mixer2 */
6849         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6850         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6851         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
6852         /* {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)}, */
6853         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
6854
6855         { }
6856 };
6857
6858 /* capture mixer elements */
6859 static struct snd_kcontrol_new alc883_capture_mixer[] = {
6860         HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
6861         HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
6862         HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
6863         HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
6864         {
6865                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
6866                 /* The multiple "Capture Source" controls confuse alsamixer
6867                  * So call somewhat different..
6868                  * FIXME: the controls appear in the "playback" view!
6869                  */
6870                 /* .name = "Capture Source", */
6871                 .name = "Input Source",
6872                 .count = 2,
6873                 .info = alc882_mux_enum_info,
6874                 .get = alc882_mux_enum_get,
6875                 .put = alc882_mux_enum_put,
6876         },
6877         { } /* end */
6878 };
6879
6880 #ifdef CONFIG_SND_HDA_POWER_SAVE
6881 #define alc883_loopbacks        alc880_loopbacks
6882 #endif
6883
6884 /* pcm configuration: identiacal with ALC880 */
6885 #define alc883_pcm_analog_playback      alc880_pcm_analog_playback
6886 #define alc883_pcm_analog_capture       alc880_pcm_analog_capture
6887 #define alc883_pcm_digital_playback     alc880_pcm_digital_playback
6888 #define alc883_pcm_digital_capture      alc880_pcm_digital_capture
6889
6890 /*
6891  * configuration and preset
6892  */
6893 static const char *alc883_models[ALC883_MODEL_LAST] = {
6894         [ALC883_3ST_2ch_DIG]    = "3stack-dig",
6895         [ALC883_3ST_6ch_DIG]    = "3stack-6ch-dig",
6896         [ALC883_3ST_6ch]        = "3stack-6ch",
6897         [ALC883_6ST_DIG]        = "6stack-dig",
6898         [ALC883_TARGA_DIG]      = "targa-dig",
6899         [ALC883_TARGA_2ch_DIG]  = "targa-2ch-dig",
6900         [ALC883_ACER]           = "acer",
6901         [ALC883_ACER_ASPIRE]    = "acer-aspire",
6902         [ALC883_MEDION]         = "medion",
6903         [ALC883_MEDION_MD2]     = "medion-md2",
6904         [ALC883_LAPTOP_EAPD]    = "laptop-eapd",
6905         [ALC883_LENOVO_101E_2ch] = "lenovo-101e",
6906         [ALC883_LENOVO_NB0763]  = "lenovo-nb0763",
6907         [ALC888_LENOVO_MS7195_DIG] = "lenovo-ms7195-dig",
6908         [ALC883_HAIER_W66]      = "haier-w66",
6909         [ALC888_6ST_HP]         = "6stack-hp",
6910         [ALC888_3ST_HP]         = "3stack-hp",
6911         [ALC883_AUTO]           = "auto",
6912 };
6913
6914 static struct snd_pci_quirk alc883_cfg_tbl[] = {
6915         SND_PCI_QUIRK(0x1019, 0x6668, "ECS", ALC883_3ST_6ch_DIG),
6916         SND_PCI_QUIRK(0x103c, 0x2a3d, "HP Pavillion", ALC883_6ST_DIG),
6917         SND_PCI_QUIRK(0x108e, 0x534d, NULL, ALC883_3ST_6ch),
6918         SND_PCI_QUIRK(0x1558, 0, "Clevo laptop", ALC883_LAPTOP_EAPD),
6919         SND_PCI_QUIRK(0x105b, 0x6668, "Foxconn", ALC883_6ST_DIG),
6920         SND_PCI_QUIRK(0x1458, 0xa002, "MSI", ALC883_6ST_DIG),
6921         SND_PCI_QUIRK(0x1462, 0x6668, "MSI", ALC883_6ST_DIG),
6922         SND_PCI_QUIRK(0x1462, 0x7187, "MSI", ALC883_6ST_DIG),
6923         SND_PCI_QUIRK(0x1462, 0x7250, "MSI", ALC883_6ST_DIG),
6924         SND_PCI_QUIRK(0x1462, 0x7280, "MSI", ALC883_6ST_DIG),
6925         SND_PCI_QUIRK(0x1462, 0x7327, "MSI", ALC883_6ST_DIG),
6926         SND_PCI_QUIRK(0x1462, 0x0349, "MSI", ALC883_TARGA_2ch_DIG),
6927         SND_PCI_QUIRK(0x1462, 0x0579, "MSI", ALC883_TARGA_2ch_DIG),
6928         SND_PCI_QUIRK(0x1462, 0x3729, "MSI S420", ALC883_TARGA_DIG),
6929         SND_PCI_QUIRK(0x1462, 0x3ef9, "MSI", ALC883_TARGA_DIG),
6930         SND_PCI_QUIRK(0x1462, 0x3b7f, "MSI", ALC883_TARGA_2ch_DIG),
6931         SND_PCI_QUIRK(0x1462, 0x3fcc, "MSI", ALC883_TARGA_DIG),
6932         SND_PCI_QUIRK(0x1462, 0x3fc1, "MSI", ALC883_TARGA_DIG),
6933         SND_PCI_QUIRK(0x1462, 0x3fc3, "MSI", ALC883_TARGA_DIG),
6934         SND_PCI_QUIRK(0x1462, 0x3fdf, "MSI", ALC883_TARGA_DIG),
6935         SND_PCI_QUIRK(0x1462, 0x4314, "MSI", ALC883_TARGA_DIG),
6936         SND_PCI_QUIRK(0x1462, 0x4319, "MSI", ALC883_TARGA_DIG),
6937         SND_PCI_QUIRK(0x1462, 0x4324, "MSI", ALC883_TARGA_DIG),
6938         SND_PCI_QUIRK(0x1462, 0xa422, "MSI", ALC883_TARGA_2ch_DIG),
6939         SND_PCI_QUIRK(0x1025, 0x006c, "Acer Aspire 9810", ALC883_ACER_ASPIRE),
6940         SND_PCI_QUIRK(0x1025, 0x0110, "Acer Aspire", ALC883_ACER_ASPIRE),
6941         SND_PCI_QUIRK(0x1025, 0, "Acer laptop", ALC883_ACER),
6942         SND_PCI_QUIRK(0x15d9, 0x8780, "Supermicro PDSBA", ALC883_3ST_6ch),
6943         SND_PCI_QUIRK(0x161f, 0x2054, "Medion laptop", ALC883_MEDION),
6944         SND_PCI_QUIRK(0x1071, 0x8258, "Evesham Voyaeger", ALC883_LAPTOP_EAPD),
6945         SND_PCI_QUIRK(0x8086, 0xd601, "D102GGC", ALC883_3ST_6ch),
6946         SND_PCI_QUIRK(0x17aa, 0x101e, "Lenovo 101e", ALC883_LENOVO_101E_2ch),
6947         SND_PCI_QUIRK(0x17aa, 0x3bfd, "Lenovo NB0763", ALC883_LENOVO_NB0763),
6948         SND_PCI_QUIRK(0x17aa, 0x2085, "Lenovo NB0763", ALC883_LENOVO_NB0763),
6949         SND_PCI_QUIRK(0x103c, 0x2a61, "HP Nettle", ALC888_6ST_HP),
6950         SND_PCI_QUIRK(0x103c, 0x2a60, "HP Lucknow", ALC888_3ST_HP),
6951         SND_PCI_QUIRK(0x103c, 0x2a4f, "HP Samba", ALC888_3ST_HP),
6952         SND_PCI_QUIRK(0x17c0, 0x4071, "MEDION MD2", ALC883_MEDION_MD2),
6953         SND_PCI_QUIRK(0x1991, 0x5625, "Haier W66", ALC883_HAIER_W66),
6954         SND_PCI_QUIRK(0x17aa, 0x3bfc, "Lenovo NB0763", ALC883_LENOVO_NB0763),
6955         {}
6956 };
6957
6958 static struct alc_config_preset alc883_presets[] = {
6959         [ALC883_3ST_2ch_DIG] = {
6960                 .mixers = { alc883_3ST_2ch_mixer },
6961                 .init_verbs = { alc883_init_verbs },
6962                 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
6963                 .dac_nids = alc883_dac_nids,
6964                 .dig_out_nid = ALC883_DIGOUT_NID,
6965                 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
6966                 .adc_nids = alc883_adc_nids,
6967                 .dig_in_nid = ALC883_DIGIN_NID,
6968                 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
6969                 .channel_mode = alc883_3ST_2ch_modes,
6970                 .input_mux = &alc883_capture_source,
6971         },
6972         [ALC883_3ST_6ch_DIG] = {
6973                 .mixers = { alc883_3ST_6ch_mixer, alc883_chmode_mixer },
6974                 .init_verbs = { alc883_init_verbs },
6975                 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
6976                 .dac_nids = alc883_dac_nids,
6977                 .dig_out_nid = ALC883_DIGOUT_NID,
6978                 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
6979                 .adc_nids = alc883_adc_nids,
6980                 .dig_in_nid = ALC883_DIGIN_NID,
6981                 .num_channel_mode = ARRAY_SIZE(alc883_3ST_6ch_modes),
6982                 .channel_mode = alc883_3ST_6ch_modes,
6983                 .need_dac_fix = 1,
6984                 .input_mux = &alc883_capture_source,
6985         },
6986         [ALC883_3ST_6ch] = {
6987                 .mixers = { alc883_3ST_6ch_mixer, alc883_chmode_mixer },
6988                 .init_verbs = { alc883_init_verbs },
6989                 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
6990                 .dac_nids = alc883_dac_nids,
6991                 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
6992                 .adc_nids = alc883_adc_nids,
6993                 .num_channel_mode = ARRAY_SIZE(alc883_3ST_6ch_modes),
6994                 .channel_mode = alc883_3ST_6ch_modes,
6995                 .need_dac_fix = 1,
6996                 .input_mux = &alc883_capture_source,
6997         },
6998         [ALC883_6ST_DIG] = {
6999                 .mixers = { alc883_base_mixer, alc883_chmode_mixer },
7000                 .init_verbs = { alc883_init_verbs },
7001                 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
7002                 .dac_nids = alc883_dac_nids,
7003                 .dig_out_nid = ALC883_DIGOUT_NID,
7004                 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
7005                 .adc_nids = alc883_adc_nids,
7006                 .dig_in_nid = ALC883_DIGIN_NID,
7007                 .num_channel_mode = ARRAY_SIZE(alc883_sixstack_modes),
7008                 .channel_mode = alc883_sixstack_modes,
7009                 .input_mux = &alc883_capture_source,
7010         },
7011         [ALC883_TARGA_DIG] = {
7012                 .mixers = { alc883_tagra_mixer, alc883_chmode_mixer },
7013                 .init_verbs = { alc883_init_verbs, alc883_tagra_verbs},
7014                 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
7015                 .dac_nids = alc883_dac_nids,
7016                 .dig_out_nid = ALC883_DIGOUT_NID,
7017                 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
7018                 .adc_nids = alc883_adc_nids,
7019                 .num_channel_mode = ARRAY_SIZE(alc883_3ST_6ch_modes),
7020                 .channel_mode = alc883_3ST_6ch_modes,
7021                 .need_dac_fix = 1,
7022                 .input_mux = &alc883_capture_source,
7023                 .unsol_event = alc883_tagra_unsol_event,
7024                 .init_hook = alc883_tagra_automute,
7025         },
7026         [ALC883_TARGA_2ch_DIG] = {
7027                 .mixers = { alc883_tagra_2ch_mixer},
7028                 .init_verbs = { alc883_init_verbs, alc883_tagra_verbs},
7029                 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
7030                 .dac_nids = alc883_dac_nids,
7031                 .dig_out_nid = ALC883_DIGOUT_NID,
7032                 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
7033                 .adc_nids = alc883_adc_nids,
7034                 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
7035                 .channel_mode = alc883_3ST_2ch_modes,
7036                 .input_mux = &alc883_capture_source,
7037                 .unsol_event = alc883_tagra_unsol_event,
7038                 .init_hook = alc883_tagra_automute,
7039         },
7040         [ALC883_ACER] = {
7041                 .mixers = { alc883_base_mixer },
7042                 /* On TravelMate laptops, GPIO 0 enables the internal speaker
7043                  * and the headphone jack.  Turn this on and rely on the
7044                  * standard mute methods whenever the user wants to turn
7045                  * these outputs off.
7046                  */
7047                 .init_verbs = { alc883_init_verbs, alc880_gpio1_init_verbs },
7048                 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
7049                 .dac_nids = alc883_dac_nids,
7050                 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
7051                 .adc_nids = alc883_adc_nids,
7052                 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
7053                 .channel_mode = alc883_3ST_2ch_modes,
7054                 .input_mux = &alc883_capture_source,
7055         },
7056         [ALC883_ACER_ASPIRE] = {
7057                 .mixers = { alc883_acer_aspire_mixer },
7058                 .init_verbs = { alc883_init_verbs, alc883_acer_eapd_verbs },
7059                 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
7060                 .dac_nids = alc883_dac_nids,
7061                 .dig_out_nid = ALC883_DIGOUT_NID,
7062                 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
7063                 .adc_nids = alc883_adc_nids,
7064                 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
7065                 .channel_mode = alc883_3ST_2ch_modes,
7066                 .input_mux = &alc883_capture_source,
7067                 .unsol_event = alc883_acer_aspire_unsol_event,
7068                 .init_hook = alc883_acer_aspire_automute,
7069         },
7070         [ALC883_MEDION] = {
7071                 .mixers = { alc883_fivestack_mixer,
7072                             alc883_chmode_mixer },
7073                 .init_verbs = { alc883_init_verbs,
7074                                 alc883_medion_eapd_verbs },
7075                 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
7076                 .dac_nids = alc883_dac_nids,
7077                 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
7078                 .adc_nids = alc883_adc_nids,
7079                 .num_channel_mode = ARRAY_SIZE(alc883_sixstack_modes),
7080                 .channel_mode = alc883_sixstack_modes,
7081                 .input_mux = &alc883_capture_source,
7082         },
7083         [ALC883_MEDION_MD2] = {
7084                 .mixers = { alc883_medion_md2_mixer},
7085                 .init_verbs = { alc883_init_verbs, alc883_medion_md2_verbs},
7086                 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
7087                 .dac_nids = alc883_dac_nids,
7088                 .dig_out_nid = ALC883_DIGOUT_NID,
7089                 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
7090                 .adc_nids = alc883_adc_nids,
7091                 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
7092                 .channel_mode = alc883_3ST_2ch_modes,
7093                 .input_mux = &alc883_capture_source,
7094                 .unsol_event = alc883_medion_md2_unsol_event,
7095                 .init_hook = alc883_medion_md2_automute,
7096         },      
7097         [ALC883_LAPTOP_EAPD] = {
7098                 .mixers = { alc883_base_mixer },
7099                 .init_verbs = { alc883_init_verbs, alc882_eapd_verbs },
7100                 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
7101                 .dac_nids = alc883_dac_nids,
7102                 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
7103                 .adc_nids = alc883_adc_nids,
7104                 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
7105                 .channel_mode = alc883_3ST_2ch_modes,
7106                 .input_mux = &alc883_capture_source,
7107         },
7108         [ALC883_LENOVO_101E_2ch] = {
7109                 .mixers = { alc883_lenovo_101e_2ch_mixer},
7110                 .init_verbs = { alc883_init_verbs, alc883_lenovo_101e_verbs},
7111                 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
7112                 .dac_nids = alc883_dac_nids,
7113                 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
7114                 .adc_nids = alc883_adc_nids,
7115                 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
7116                 .channel_mode = alc883_3ST_2ch_modes,
7117                 .input_mux = &alc883_lenovo_101e_capture_source,
7118                 .unsol_event = alc883_lenovo_101e_unsol_event,
7119                 .init_hook = alc883_lenovo_101e_all_automute,
7120         },
7121         [ALC883_LENOVO_NB0763] = {
7122                 .mixers = { alc883_lenovo_nb0763_mixer },
7123                 .init_verbs = { alc883_init_verbs, alc883_lenovo_nb0763_verbs},
7124                 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
7125                 .dac_nids = alc883_dac_nids,
7126                 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
7127                 .adc_nids = alc883_adc_nids,
7128                 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
7129                 .channel_mode = alc883_3ST_2ch_modes,
7130                 .need_dac_fix = 1,
7131                 .input_mux = &alc883_lenovo_nb0763_capture_source,
7132                 .unsol_event = alc883_medion_md2_unsol_event,
7133                 .init_hook = alc883_medion_md2_automute,
7134         },
7135         [ALC888_LENOVO_MS7195_DIG] = {
7136                 .mixers = { alc883_3ST_6ch_mixer, alc883_chmode_mixer },
7137                 .init_verbs = { alc883_init_verbs, alc888_lenovo_ms7195_verbs},
7138                 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
7139                 .dac_nids = alc883_dac_nids,
7140                 .dig_out_nid = ALC883_DIGOUT_NID,
7141                 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
7142                 .adc_nids = alc883_adc_nids,
7143                 .num_channel_mode = ARRAY_SIZE(alc883_3ST_6ch_modes),
7144                 .channel_mode = alc883_3ST_6ch_modes,
7145                 .need_dac_fix = 1,
7146                 .input_mux = &alc883_capture_source,
7147                 .unsol_event = alc883_lenovo_ms7195_unsol_event,
7148                 .init_hook = alc888_lenovo_ms7195_front_automute,
7149         },
7150         [ALC883_HAIER_W66] = {
7151                 .mixers = { alc883_tagra_2ch_mixer},
7152                 .init_verbs = { alc883_init_verbs, alc883_haier_w66_verbs},
7153                 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
7154                 .dac_nids = alc883_dac_nids,
7155                 .dig_out_nid = ALC883_DIGOUT_NID,
7156                 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
7157                 .adc_nids = alc883_adc_nids,
7158                 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
7159                 .channel_mode = alc883_3ST_2ch_modes,
7160                 .input_mux = &alc883_capture_source,
7161                 .unsol_event = alc883_haier_w66_unsol_event,
7162                 .init_hook = alc883_haier_w66_automute,
7163         },      
7164         [ALC888_6ST_HP] = {
7165                 .mixers = { alc888_6st_hp_mixer, alc883_chmode_mixer },
7166                 .init_verbs = { alc883_init_verbs, alc888_6st_hp_verbs },
7167                 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
7168                 .dac_nids = alc883_dac_nids,
7169                 .dig_out_nid = ALC883_DIGOUT_NID,
7170                 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
7171                 .adc_nids = alc883_adc_nids,
7172                 .dig_in_nid = ALC883_DIGIN_NID,
7173                 .num_channel_mode = ARRAY_SIZE(alc883_sixstack_modes),
7174                 .channel_mode = alc883_sixstack_modes,
7175                 .input_mux = &alc883_capture_source,
7176         },
7177         [ALC888_3ST_HP] = {
7178                 .mixers = { alc888_3st_hp_mixer, alc883_chmode_mixer },
7179                 .init_verbs = { alc883_init_verbs, alc888_3st_hp_verbs },
7180                 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
7181                 .dac_nids = alc883_dac_nids,
7182                 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
7183                 .adc_nids = alc883_adc_nids,
7184                 .num_channel_mode = ARRAY_SIZE(alc888_3st_hp_modes),
7185                 .channel_mode = alc888_3st_hp_modes,
7186                 .need_dac_fix = 1,
7187                 .input_mux = &alc883_capture_source,
7188         },
7189 };
7190
7191
7192 /*
7193  * BIOS auto configuration
7194  */
7195 static void alc883_auto_set_output_and_unmute(struct hda_codec *codec,
7196                                               hda_nid_t nid, int pin_type,
7197                                               int dac_idx)
7198 {
7199         /* set as output */
7200         struct alc_spec *spec = codec->spec;
7201         int idx;
7202
7203         if (spec->multiout.dac_nids[dac_idx] == 0x25)
7204                 idx = 4;
7205         else
7206                 idx = spec->multiout.dac_nids[dac_idx] - 2;
7207
7208         snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
7209                             pin_type);
7210         snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
7211                             AMP_OUT_UNMUTE);
7212         snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CONNECT_SEL, idx);
7213
7214 }
7215
7216 static void alc883_auto_init_multi_out(struct hda_codec *codec)
7217 {
7218         struct alc_spec *spec = codec->spec;
7219         int i;
7220
7221         alc_subsystem_id(codec, 0x15, 0x1b, 0x14);
7222         for (i = 0; i <= HDA_SIDE; i++) {
7223                 hda_nid_t nid = spec->autocfg.line_out_pins[i];
7224                 int pin_type = get_pin_type(spec->autocfg.line_out_type);
7225                 if (nid)
7226                         alc883_auto_set_output_and_unmute(codec, nid, pin_type,
7227                                                           i);
7228         }
7229 }
7230
7231 static void alc883_auto_init_hp_out(struct hda_codec *codec)
7232 {
7233         struct alc_spec *spec = codec->spec;
7234         hda_nid_t pin;
7235
7236         pin = spec->autocfg.hp_pins[0];
7237         if (pin) /* connect to front */
7238                 /* use dac 0 */
7239                 alc883_auto_set_output_and_unmute(codec, pin, PIN_HP, 0);
7240 }
7241
7242 #define alc883_is_input_pin(nid)        alc880_is_input_pin(nid)
7243 #define ALC883_PIN_CD_NID               ALC880_PIN_CD_NID
7244
7245 static void alc883_auto_init_analog_input(struct hda_codec *codec)
7246 {
7247         struct alc_spec *spec = codec->spec;
7248         int i;
7249
7250         for (i = 0; i < AUTO_PIN_LAST; i++) {
7251                 hda_nid_t nid = spec->autocfg.input_pins[i];
7252                 if (alc883_is_input_pin(nid)) {
7253                         snd_hda_codec_write(codec, nid, 0,
7254                                             AC_VERB_SET_PIN_WIDGET_CONTROL,
7255                                             (i <= AUTO_PIN_FRONT_MIC ?
7256                                              PIN_VREF80 : PIN_IN));
7257                         if (nid != ALC883_PIN_CD_NID)
7258                                 snd_hda_codec_write(codec, nid, 0,
7259                                                     AC_VERB_SET_AMP_GAIN_MUTE,
7260                                                     AMP_OUT_MUTE);
7261                 }
7262         }
7263 }
7264
7265 /* almost identical with ALC880 parser... */
7266 static int alc883_parse_auto_config(struct hda_codec *codec)
7267 {
7268         struct alc_spec *spec = codec->spec;
7269         int err = alc880_parse_auto_config(codec);
7270
7271         if (err < 0)
7272                 return err;
7273         else if (err > 0)
7274                 /* hack - override the init verbs */
7275                 spec->init_verbs[0] = alc883_auto_init_verbs;
7276         spec->mixers[spec->num_mixers] = alc883_capture_mixer;
7277         spec->num_mixers++;
7278         return err;
7279 }
7280
7281 /* additional initialization for auto-configuration model */
7282 static void alc883_auto_init(struct hda_codec *codec)
7283 {
7284         alc883_auto_init_multi_out(codec);
7285         alc883_auto_init_hp_out(codec);
7286         alc883_auto_init_analog_input(codec);
7287 }
7288
7289 static int patch_alc883(struct hda_codec *codec)
7290 {
7291         struct alc_spec *spec;
7292         int err, board_config;
7293
7294         spec = kzalloc(sizeof(*spec), GFP_KERNEL);
7295         if (spec == NULL)
7296                 return -ENOMEM;
7297
7298         codec->spec = spec;
7299
7300         board_config = snd_hda_check_board_config(codec, ALC883_MODEL_LAST,
7301                                                   alc883_models,
7302                                                   alc883_cfg_tbl);
7303         if (board_config < 0) {
7304                 printk(KERN_INFO "hda_codec: Unknown model for ALC883, "
7305                        "trying auto-probe from BIOS...\n");
7306                 board_config = ALC883_AUTO;
7307         }
7308
7309         if (board_config == ALC883_AUTO) {
7310                 /* automatic parse from the BIOS config */
7311                 err = alc883_parse_auto_config(codec);
7312                 if (err < 0) {
7313                         alc_free(codec);
7314                         return err;
7315                 } else if (!err) {
7316                         printk(KERN_INFO
7317                                "hda_codec: Cannot set up configuration "
7318                                "from BIOS.  Using base mode...\n");
7319                         board_config = ALC883_3ST_2ch_DIG;
7320                 }
7321         }
7322
7323         if (board_config != ALC883_AUTO)
7324                 setup_preset(spec, &alc883_presets[board_config]);
7325
7326         spec->stream_name_analog = "ALC883 Analog";
7327         spec->stream_analog_playback = &alc883_pcm_analog_playback;
7328         spec->stream_analog_capture = &alc883_pcm_analog_capture;
7329
7330         spec->stream_name_digital = "ALC883 Digital";
7331         spec->stream_digital_playback = &alc883_pcm_digital_playback;
7332         spec->stream_digital_capture = &alc883_pcm_digital_capture;
7333
7334         if (!spec->adc_nids && spec->input_mux) {
7335                 spec->adc_nids = alc883_adc_nids;
7336                 spec->num_adc_nids = ARRAY_SIZE(alc883_adc_nids);
7337         }
7338
7339         codec->patch_ops = alc_patch_ops;
7340         if (board_config == ALC883_AUTO)
7341                 spec->init_hook = alc883_auto_init;
7342 #ifdef CONFIG_SND_HDA_POWER_SAVE
7343         if (!spec->loopback.amplist)
7344                 spec->loopback.amplist = alc883_loopbacks;
7345 #endif
7346
7347         return 0;
7348 }
7349
7350 /*
7351  * ALC262 support
7352  */
7353
7354 #define ALC262_DIGOUT_NID       ALC880_DIGOUT_NID
7355 #define ALC262_DIGIN_NID        ALC880_DIGIN_NID
7356
7357 #define alc262_dac_nids         alc260_dac_nids
7358 #define alc262_adc_nids         alc882_adc_nids
7359 #define alc262_adc_nids_alt     alc882_adc_nids_alt
7360
7361 #define alc262_modes            alc260_modes
7362 #define alc262_capture_source   alc882_capture_source
7363
7364 static struct snd_kcontrol_new alc262_base_mixer[] = {
7365         HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
7366         HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT),
7367         HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
7368         HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
7369         HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
7370         HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
7371         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
7372         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
7373         HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
7374         HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x01, HDA_INPUT),
7375         HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x01, HDA_INPUT),
7376         HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
7377         /* HDA_CODEC_VOLUME("PC Beep Playback Volume", 0x0b, 0x05, HDA_INPUT),
7378            HDA_CODEC_MUTE("PC Beelp Playback Switch", 0x0b, 0x05, HDA_INPUT), */
7379         HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0D, 0x0, HDA_OUTPUT),
7380         HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT),
7381         HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
7382         HDA_CODEC_MUTE_MONO("Mono Playback Switch", 0x16, 2, 0x0, HDA_OUTPUT),
7383         { } /* end */
7384 };
7385
7386 static struct snd_kcontrol_new alc262_hippo1_mixer[] = {
7387         HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
7388         HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT),
7389         HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
7390         HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
7391         HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
7392         HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
7393         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
7394         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
7395         HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
7396         HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x01, HDA_INPUT),
7397         HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x01, HDA_INPUT),
7398         HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
7399         /* HDA_CODEC_VOLUME("PC Beep Playback Volume", 0x0b, 0x05, HDA_INPUT),
7400            HDA_CODEC_MUTE("PC Beelp Playback Switch", 0x0b, 0x05, HDA_INPUT), */
7401         /*HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0D, 0x0, HDA_OUTPUT),*/
7402         HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
7403         { } /* end */
7404 };
7405
7406 static struct snd_kcontrol_new alc262_HP_BPC_mixer[] = {
7407         HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
7408         HDA_CODEC_MUTE("Front Playback Switch", 0x15, 0x0, HDA_OUTPUT),
7409         HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
7410         HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
7411         HDA_CODEC_MUTE_MONO("Mono Playback Switch", 0x16, 2, 0x0, HDA_OUTPUT),
7412
7413         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
7414         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
7415         HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
7416         HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x01, HDA_INPUT),
7417         HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x01, HDA_INPUT),
7418         HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
7419         HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
7420         HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
7421         HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
7422         HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
7423         HDA_CODEC_VOLUME("PC Beep Playback Volume", 0x0b, 0x05, HDA_INPUT),
7424         HDA_CODEC_MUTE("PC Beep Playback Switch", 0x0b, 0x05, HDA_INPUT),
7425         HDA_CODEC_VOLUME("AUX IN Playback Volume", 0x0b, 0x06, HDA_INPUT),
7426         HDA_CODEC_MUTE("AUX IN Playback Switch", 0x0b, 0x06, HDA_INPUT),
7427         { } /* end */
7428 };
7429
7430 static struct snd_kcontrol_new alc262_HP_BPC_WildWest_mixer[] = {
7431         HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
7432         HDA_CODEC_MUTE("Front Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
7433         HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
7434         HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT),
7435         HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
7436         HDA_CODEC_MUTE_MONO("Mono Playback Switch", 0x16, 2, 0x0, HDA_OUTPUT),
7437         HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x02, HDA_INPUT),
7438         HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x02, HDA_INPUT),
7439         HDA_CODEC_VOLUME("Front Mic Boost", 0x1a, 0, HDA_INPUT),
7440         HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x01, HDA_INPUT),
7441         HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x01, HDA_INPUT),
7442         HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
7443         HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
7444         HDA_CODEC_VOLUME("PC Beep Playback Volume", 0x0b, 0x05, HDA_INPUT),
7445         HDA_CODEC_MUTE("PC Beep Playback Switch", 0x0b, 0x05, HDA_INPUT),
7446         { } /* end */
7447 };
7448
7449 static struct snd_kcontrol_new alc262_HP_BPC_WildWest_option_mixer[] = {
7450         HDA_CODEC_VOLUME("Rear Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
7451         HDA_CODEC_MUTE("Rear Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
7452         HDA_CODEC_VOLUME("Rear Mic Boost", 0x18, 0, HDA_INPUT),
7453         { } /* end */
7454 };
7455
7456 static struct hda_bind_ctls alc262_sony_bind_sw = {
7457         .ops = &snd_hda_bind_sw,
7458         .values = {
7459                 HDA_COMPOSE_AMP_VAL(0x15, 3, 0, HDA_OUTPUT),
7460                 HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT),
7461                 0,
7462         },
7463 };
7464
7465 static struct snd_kcontrol_new alc262_sony_mixer[] = {
7466         HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
7467         HDA_BIND_SW("Front Playback Switch", &alc262_sony_bind_sw),
7468         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
7469         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
7470         HDA_CODEC_VOLUME("ATAPI Mic Playback Volume", 0x0b, 0x01, HDA_INPUT),
7471         HDA_CODEC_MUTE("ATAPI Mic Playback Switch", 0x0b, 0x01, HDA_INPUT),
7472         { } /* end */
7473 };
7474
7475 static struct snd_kcontrol_new alc262_benq_t31_mixer[] = {
7476         HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
7477         HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT),
7478         HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT),
7479         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
7480         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
7481         HDA_CODEC_VOLUME("ATAPI Mic Playback Volume", 0x0b, 0x01, HDA_INPUT),
7482         HDA_CODEC_MUTE("ATAPI Mic Playback Switch", 0x0b, 0x01, HDA_INPUT),
7483         { } /* end */
7484 };
7485
7486 #define alc262_capture_mixer            alc882_capture_mixer
7487 #define alc262_capture_alt_mixer        alc882_capture_alt_mixer
7488
7489 /*
7490  * generic initialization of ADC, input mixers and output mixers
7491  */
7492 static struct hda_verb alc262_init_verbs[] = {
7493         /*
7494          * Unmute ADC0-2 and set the default input to mic-in
7495          */
7496         {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
7497         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7498         {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
7499         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7500         {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
7501         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7502
7503         /* Mute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
7504          * mixer widget
7505          * Note: PASD motherboards uses the Line In 2 as the input for
7506          * front panel mic (mic 2)
7507          */
7508         /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
7509         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
7510         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
7511         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
7512         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
7513         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
7514
7515         /*
7516          * Set up output mixers (0x0c - 0x0e)
7517          */
7518         /* set vol=0 to output mixers */
7519         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
7520         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
7521         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
7522         /* set up input amps for analog loopback */
7523         /* Amp Indices: DAC = 0, mixer = 1 */
7524         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7525         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7526         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7527         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7528         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7529         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7530
7531         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
7532         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0},
7533         {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
7534         {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
7535         {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
7536         {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
7537
7538         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
7539         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
7540         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
7541         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
7542         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
7543         
7544         {0x14, AC_VERB_SET_CONNECT_SEL, 0x00},
7545         {0x15, AC_VERB_SET_CONNECT_SEL, 0x01},
7546         
7547         /* FIXME: use matrix-type input source selection */
7548         /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
7549         /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
7550         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
7551         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
7552         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
7553         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
7554         /* Input mixer2 */
7555         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
7556         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
7557         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
7558         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
7559         /* Input mixer3 */
7560         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
7561         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
7562         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
7563         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
7564
7565         { }
7566 };
7567
7568 static struct hda_verb alc262_hippo_unsol_verbs[] = {
7569         {0x15, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
7570         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
7571         {}
7572 };
7573
7574 static struct hda_verb alc262_hippo1_unsol_verbs[] = {
7575         {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0},
7576         {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
7577         {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
7578
7579         {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
7580         {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
7581         {}
7582 };
7583
7584 static struct hda_verb alc262_sony_unsol_verbs[] = {
7585         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0},
7586         {0x15, AC_VERB_SET_CONNECT_SEL, 0x00},
7587         {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},   // Front Mic
7588
7589         {0x15, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
7590         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
7591 };
7592
7593 /* mute/unmute internal speaker according to the hp jack and mute state */
7594 static void alc262_hippo_automute(struct hda_codec *codec)
7595 {
7596         struct alc_spec *spec = codec->spec;
7597         unsigned int mute;
7598         unsigned int present;
7599
7600         /* need to execute and sync at first */
7601         snd_hda_codec_read(codec, 0x15, 0, AC_VERB_SET_PIN_SENSE, 0);
7602         present = snd_hda_codec_read(codec, 0x15, 0,
7603                                      AC_VERB_GET_PIN_SENSE, 0);
7604         spec->jack_present = (present & 0x80000000) != 0;
7605         if (spec->jack_present) {
7606                 /* mute internal speaker */
7607                 snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0,
7608                                          HDA_AMP_MUTE, HDA_AMP_MUTE);
7609         } else {
7610                 /* unmute internal speaker if necessary */
7611                 mute = snd_hda_codec_amp_read(codec, 0x15, 0, HDA_OUTPUT, 0);
7612                 snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0,
7613                                          HDA_AMP_MUTE, mute);
7614         }
7615 }
7616
7617 /* unsolicited event for HP jack sensing */
7618 static void alc262_hippo_unsol_event(struct hda_codec *codec,
7619                                        unsigned int res)
7620 {
7621         if ((res >> 26) != ALC880_HP_EVENT)
7622                 return;
7623         alc262_hippo_automute(codec);
7624 }
7625
7626 static void alc262_hippo1_automute(struct hda_codec *codec)
7627 {
7628         unsigned int mute;
7629         unsigned int present;
7630
7631         snd_hda_codec_read(codec, 0x1b, 0, AC_VERB_SET_PIN_SENSE, 0);
7632         present = snd_hda_codec_read(codec, 0x1b, 0,
7633                                      AC_VERB_GET_PIN_SENSE, 0);
7634         present = (present & 0x80000000) != 0;
7635         if (present) {
7636                 /* mute internal speaker */
7637                 snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0,
7638                                          HDA_AMP_MUTE, HDA_AMP_MUTE);
7639         } else {
7640                 /* unmute internal speaker if necessary */
7641                 mute = snd_hda_codec_amp_read(codec, 0x1b, 0, HDA_OUTPUT, 0);
7642                 snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0,
7643                                          HDA_AMP_MUTE, mute);
7644         }
7645 }
7646
7647 /* unsolicited event for HP jack sensing */
7648 static void alc262_hippo1_unsol_event(struct hda_codec *codec,
7649                                        unsigned int res)
7650 {
7651         if ((res >> 26) != ALC880_HP_EVENT)
7652                 return;
7653         alc262_hippo1_automute(codec);
7654 }
7655
7656 /*
7657  * fujitsu model
7658  *  0x14 = headphone/spdif-out, 0x15 = internal speaker
7659  */
7660
7661 #define ALC_HP_EVENT    0x37
7662
7663 static struct hda_verb alc262_fujitsu_unsol_verbs[] = {
7664         {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC_HP_EVENT},
7665         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
7666         {}
7667 };
7668
7669 static struct hda_input_mux alc262_fujitsu_capture_source = {
7670         .num_items = 2,
7671         .items = {
7672                 { "Mic", 0x0 },
7673                 { "CD", 0x4 },
7674         },
7675 };
7676
7677 static struct hda_input_mux alc262_HP_capture_source = {
7678         .num_items = 5,
7679         .items = {
7680                 { "Mic", 0x0 },
7681                 { "Front Mic", 0x3 },
7682                 { "Line", 0x2 },
7683                 { "CD", 0x4 },
7684                 { "AUX IN", 0x6 },
7685         },
7686 };
7687
7688 /* mute/unmute internal speaker according to the hp jack and mute state */
7689 static void alc262_fujitsu_automute(struct hda_codec *codec, int force)
7690 {
7691         struct alc_spec *spec = codec->spec;
7692         unsigned int mute;
7693
7694         if (force || !spec->sense_updated) {
7695                 unsigned int present;
7696                 /* need to execute and sync at first */
7697                 snd_hda_codec_read(codec, 0x14, 0, AC_VERB_SET_PIN_SENSE, 0);
7698                 present = snd_hda_codec_read(codec, 0x14, 0,
7699                                          AC_VERB_GET_PIN_SENSE, 0);
7700                 spec->jack_present = (present & 0x80000000) != 0;
7701                 spec->sense_updated = 1;
7702         }
7703         if (spec->jack_present) {
7704                 /* mute internal speaker */
7705                 snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0,
7706                                          HDA_AMP_MUTE, HDA_AMP_MUTE);
7707         } else {
7708                 /* unmute internal speaker if necessary */
7709                 mute = snd_hda_codec_amp_read(codec, 0x14, 0, HDA_OUTPUT, 0);
7710                 snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0,
7711                                          HDA_AMP_MUTE, mute);
7712         }
7713 }
7714
7715 /* unsolicited event for HP jack sensing */
7716 static void alc262_fujitsu_unsol_event(struct hda_codec *codec,
7717                                        unsigned int res)
7718 {
7719         if ((res >> 26) != ALC_HP_EVENT)
7720                 return;
7721         alc262_fujitsu_automute(codec, 1);
7722 }
7723
7724 /* bind volumes of both NID 0x0c and 0x0d */
7725 static struct hda_bind_ctls alc262_fujitsu_bind_master_vol = {
7726         .ops = &snd_hda_bind_vol,
7727         .values = {
7728                 HDA_COMPOSE_AMP_VAL(0x0c, 3, 0, HDA_OUTPUT),
7729                 HDA_COMPOSE_AMP_VAL(0x0d, 3, 0, HDA_OUTPUT),
7730                 0
7731         },
7732 };
7733
7734 /* bind hp and internal speaker mute (with plug check) */
7735 static int alc262_fujitsu_master_sw_put(struct snd_kcontrol *kcontrol,
7736                                          struct snd_ctl_elem_value *ucontrol)
7737 {
7738         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
7739         long *valp = ucontrol->value.integer.value;
7740         int change;
7741
7742         change = snd_hda_codec_amp_update(codec, 0x14, 0, HDA_OUTPUT, 0,
7743                                           HDA_AMP_MUTE,
7744                                           valp[0] ? 0 : HDA_AMP_MUTE);
7745         change |= snd_hda_codec_amp_update(codec, 0x14, 1, HDA_OUTPUT, 0,
7746                                            HDA_AMP_MUTE,
7747                                            valp[1] ? 0 : HDA_AMP_MUTE);
7748         if (change)
7749                 alc262_fujitsu_automute(codec, 0);
7750         return change;
7751 }
7752
7753 static struct snd_kcontrol_new alc262_fujitsu_mixer[] = {
7754         HDA_BIND_VOL("Master Playback Volume", &alc262_fujitsu_bind_master_vol),
7755         {
7756                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
7757                 .name = "Master Playback Switch",
7758                 .info = snd_hda_mixer_amp_switch_info,
7759                 .get = snd_hda_mixer_amp_switch_get,
7760                 .put = alc262_fujitsu_master_sw_put,
7761                 .private_value = HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT),
7762         },
7763         HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
7764         HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
7765         HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
7766         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
7767         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
7768         { } /* end */
7769 };
7770
7771 /* additional init verbs for Benq laptops */
7772 static struct hda_verb alc262_EAPD_verbs[] = {
7773         {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
7774         {0x20, AC_VERB_SET_PROC_COEF,  0x3070},
7775         {}
7776 };
7777
7778 static struct hda_verb alc262_benq_t31_EAPD_verbs[] = {
7779         {0x15, AC_VERB_SET_CONNECT_SEL, 0x00},
7780         {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
7781
7782         {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
7783         {0x20, AC_VERB_SET_PROC_COEF,  0x3050},
7784         {}
7785 };
7786
7787 /* add playback controls from the parsed DAC table */
7788 static int alc262_auto_create_multi_out_ctls(struct alc_spec *spec,
7789                                              const struct auto_pin_cfg *cfg)
7790 {
7791         hda_nid_t nid;
7792         int err;
7793
7794         spec->multiout.num_dacs = 1;    /* only use one dac */
7795         spec->multiout.dac_nids = spec->private_dac_nids;
7796         spec->multiout.dac_nids[0] = 2;
7797
7798         nid = cfg->line_out_pins[0];
7799         if (nid) {
7800                 err = add_control(spec, ALC_CTL_WIDGET_VOL,
7801                                   "Front Playback Volume",
7802                                   HDA_COMPOSE_AMP_VAL(0x0c, 3, 0, HDA_OUTPUT));
7803                 if (err < 0)
7804                         return err;
7805                 err = add_control(spec, ALC_CTL_WIDGET_MUTE,
7806                                   "Front Playback Switch",
7807                                   HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT));
7808                 if (err < 0)
7809                         return err;
7810         }
7811
7812         nid = cfg->speaker_pins[0];
7813         if (nid) {
7814                 if (nid == 0x16) {
7815                         err = add_control(spec, ALC_CTL_WIDGET_VOL,
7816                                           "Speaker Playback Volume",
7817                                           HDA_COMPOSE_AMP_VAL(0x0e, 2, 0,
7818                                                               HDA_OUTPUT));
7819                         if (err < 0)
7820                                 return err;
7821                         err = add_control(spec, ALC_CTL_WIDGET_MUTE,
7822                                           "Speaker Playback Switch",
7823                                           HDA_COMPOSE_AMP_VAL(nid, 2, 0,
7824                                                               HDA_OUTPUT));
7825                         if (err < 0)
7826                                 return err;
7827                 } else {
7828                         err = add_control(spec, ALC_CTL_WIDGET_MUTE,
7829                                           "Speaker Playback Switch",
7830                                           HDA_COMPOSE_AMP_VAL(nid, 3, 0,
7831                                                               HDA_OUTPUT));
7832                         if (err < 0)
7833                                 return err;
7834                 }
7835         }
7836         nid = cfg->hp_pins[0];
7837         if (nid) {
7838                 /* spec->multiout.hp_nid = 2; */
7839                 if (nid == 0x16) {
7840                         err = add_control(spec, ALC_CTL_WIDGET_VOL,
7841                                           "Headphone Playback Volume",
7842                                           HDA_COMPOSE_AMP_VAL(0x0e, 2, 0,
7843                                                               HDA_OUTPUT));
7844                         if (err < 0)
7845                                 return err;
7846                         err = add_control(spec, ALC_CTL_WIDGET_MUTE,
7847                                           "Headphone Playback Switch",
7848                                           HDA_COMPOSE_AMP_VAL(nid, 2, 0,
7849                                                               HDA_OUTPUT));
7850                         if (err < 0)
7851                                 return err;
7852                 } else {
7853                         err = add_control(spec, ALC_CTL_WIDGET_MUTE,
7854                                           "Headphone Playback Switch",
7855                                           HDA_COMPOSE_AMP_VAL(nid, 3, 0,
7856                                                               HDA_OUTPUT));
7857                         if (err < 0)
7858                                 return err;
7859                 }
7860         }
7861         return 0;
7862 }
7863
7864 /* identical with ALC880 */
7865 #define alc262_auto_create_analog_input_ctls \
7866         alc880_auto_create_analog_input_ctls
7867
7868 /*
7869  * generic initialization of ADC, input mixers and output mixers
7870  */
7871 static struct hda_verb alc262_volume_init_verbs[] = {
7872         /*
7873          * Unmute ADC0-2 and set the default input to mic-in
7874          */
7875         {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
7876         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7877         {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
7878         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7879         {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
7880         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7881
7882         /* Mute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
7883          * mixer widget
7884          * Note: PASD motherboards uses the Line In 2 as the input for
7885          * front panel mic (mic 2)
7886          */
7887         /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
7888         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
7889         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
7890         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
7891         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
7892         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
7893
7894         /*
7895          * Set up output mixers (0x0c - 0x0f)
7896          */
7897         /* set vol=0 to output mixers */
7898         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
7899         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
7900         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
7901         
7902         /* set up input amps for analog loopback */
7903         /* Amp Indices: DAC = 0, mixer = 1 */
7904         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7905         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7906         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7907         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7908         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7909         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7910
7911         /* FIXME: use matrix-type input source selection */
7912         /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
7913         /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
7914         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
7915         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
7916         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
7917         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
7918         /* Input mixer2 */
7919         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
7920         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
7921         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
7922         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
7923         /* Input mixer3 */
7924         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
7925         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
7926         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
7927         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
7928
7929         { }
7930 };
7931
7932 static struct hda_verb alc262_HP_BPC_init_verbs[] = {
7933         /*
7934          * Unmute ADC0-2 and set the default input to mic-in
7935          */
7936         {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
7937         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7938         {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
7939         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7940         {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
7941         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7942
7943         /* Mute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
7944          * mixer widget
7945          * Note: PASD motherboards uses the Line In 2 as the input for
7946          * front panel mic (mic 2)
7947          */
7948         /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
7949         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
7950         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
7951         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
7952         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
7953         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
7954         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)},
7955         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)},
7956         
7957         /*
7958          * Set up output mixers (0x0c - 0x0e)
7959          */
7960         /* set vol=0 to output mixers */
7961         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
7962         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
7963         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
7964
7965         /* set up input amps for analog loopback */
7966         /* Amp Indices: DAC = 0, mixer = 1 */
7967         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7968         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7969         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7970         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7971         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7972         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7973
7974         {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0},
7975         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
7976         {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
7977
7978         {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
7979         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
7980
7981         {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
7982         {0x15, AC_VERB_SET_CONNECT_SEL, 0x00},
7983
7984         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
7985         {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
7986         {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
7987         {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
7988         {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
7989
7990         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, 0x7023 },
7991         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000 },
7992         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000 },
7993         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, 0x7023 },
7994         {0x1c, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000 },
7995         {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000 },
7996
7997
7998         /* FIXME: use matrix-type input source selection */
7999         /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
8000         /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
8001         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
8002         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x03 << 8))},
8003         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))},
8004         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x04 << 8))},
8005         /* Input mixer2 */
8006         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
8007         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x03 << 8))},
8008         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))},
8009         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x04 << 8))},
8010         /* Input mixer3 */
8011         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
8012         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x03 << 8))},
8013         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))},
8014         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x04 << 8))},
8015
8016         { }
8017 };
8018
8019 static struct hda_verb alc262_HP_BPC_WildWest_init_verbs[] = {
8020         /*
8021          * Unmute ADC0-2 and set the default input to mic-in
8022          */
8023         {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
8024         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8025         {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
8026         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8027         {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
8028         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8029
8030         /* Mute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
8031          * mixer widget
8032          * Note: PASD motherboards uses the Line In 2 as the input for front
8033          * panel mic (mic 2)
8034          */
8035         /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
8036         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
8037         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
8038         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
8039         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
8040         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
8041         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)},
8042         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)},
8043         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)},
8044         /*
8045          * Set up output mixers (0x0c - 0x0e)
8046          */
8047         /* set vol=0 to output mixers */
8048         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
8049         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
8050         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
8051
8052         /* set up input amps for analog loopback */
8053         /* Amp Indices: DAC = 0, mixer = 1 */
8054         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8055         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8056         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8057         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8058         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8059         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8060
8061
8062         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },        /* HP */
8063         {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },       /* Mono */
8064         {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },    /* rear MIC */
8065         {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },        /* Line in */
8066         {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },    /* Front MIC */
8067         {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },       /* Line out */
8068         {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },        /* CD in */
8069
8070         {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
8071         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
8072
8073         {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
8074         {0x15, AC_VERB_SET_CONNECT_SEL, 0x01},
8075
8076         /* {0x14, AC_VERB_SET_AMP_GAIN_MUTE, 0x7023 }, */
8077         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000 },
8078         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000 },
8079         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, 0x7023 },
8080         {0x1c, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000 },
8081         {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000 },
8082
8083         /* FIXME: use matrix-type input source selection */
8084         /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
8085         /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
8086         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))}, /*rear MIC*/
8087         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))}, /*Line in*/
8088         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))}, /*F MIC*/
8089         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x03 << 8))}, /*Front*/
8090         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x04 << 8))}, /*CD*/
8091         /* {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x06 << 8))},  */
8092         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x07 << 8))}, /*HP*/
8093         /* Input mixer2 */
8094         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
8095         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
8096         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))},
8097         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x03 << 8))},
8098         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x04 << 8))},
8099         /* {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x06 << 8))}, */
8100         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x07 << 8))},
8101         /* Input mixer3 */
8102         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
8103         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
8104         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))},
8105         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x03 << 8))},
8106         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x04 << 8))},
8107         /* {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x06 << 8))}, */
8108         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x07 << 8))},
8109
8110         { }
8111 };
8112
8113 #ifdef CONFIG_SND_HDA_POWER_SAVE
8114 #define alc262_loopbacks        alc880_loopbacks
8115 #endif
8116
8117 /* pcm configuration: identiacal with ALC880 */
8118 #define alc262_pcm_analog_playback      alc880_pcm_analog_playback
8119 #define alc262_pcm_analog_capture       alc880_pcm_analog_capture
8120 #define alc262_pcm_digital_playback     alc880_pcm_digital_playback
8121 #define alc262_pcm_digital_capture      alc880_pcm_digital_capture
8122
8123 /*
8124  * BIOS auto configuration
8125  */
8126 static int alc262_parse_auto_config(struct hda_codec *codec)
8127 {
8128         struct alc_spec *spec = codec->spec;
8129         int err;
8130         static hda_nid_t alc262_ignore[] = { 0x1d, 0 };
8131
8132         err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
8133                                            alc262_ignore);
8134         if (err < 0)
8135                 return err;
8136         if (!spec->autocfg.line_outs)
8137                 return 0; /* can't find valid BIOS pin config */
8138         err = alc262_auto_create_multi_out_ctls(spec, &spec->autocfg);
8139         if (err < 0)
8140                 return err;
8141         err = alc262_auto_create_analog_input_ctls(spec, &spec->autocfg);
8142         if (err < 0)
8143                 return err;
8144
8145         spec->multiout.max_channels = spec->multiout.num_dacs * 2;
8146
8147         if (spec->autocfg.dig_out_pin)
8148                 spec->multiout.dig_out_nid = ALC262_DIGOUT_NID;
8149         if (spec->autocfg.dig_in_pin)
8150                 spec->dig_in_nid = ALC262_DIGIN_NID;
8151
8152         if (spec->kctl_alloc)
8153                 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
8154
8155         spec->init_verbs[spec->num_init_verbs++] = alc262_volume_init_verbs;
8156         spec->num_mux_defs = 1;
8157         spec->input_mux = &spec->private_imux;
8158
8159         return 1;
8160 }
8161
8162 #define alc262_auto_init_multi_out      alc882_auto_init_multi_out
8163 #define alc262_auto_init_hp_out         alc882_auto_init_hp_out
8164 #define alc262_auto_init_analog_input   alc882_auto_init_analog_input
8165
8166
8167 /* init callback for auto-configuration model -- overriding the default init */
8168 static void alc262_auto_init(struct hda_codec *codec)
8169 {
8170         alc262_auto_init_multi_out(codec);
8171         alc262_auto_init_hp_out(codec);
8172         alc262_auto_init_analog_input(codec);
8173 }
8174
8175 /*
8176  * configuration and preset
8177  */
8178 static const char *alc262_models[ALC262_MODEL_LAST] = {
8179         [ALC262_BASIC]          = "basic",
8180         [ALC262_HIPPO]          = "hippo",
8181         [ALC262_HIPPO_1]        = "hippo_1",
8182         [ALC262_FUJITSU]        = "fujitsu",
8183         [ALC262_HP_BPC]         = "hp-bpc",
8184         [ALC262_HP_BPC_D7000_WL]= "hp-bpc-d7000",
8185         [ALC262_BENQ_ED8]       = "benq",
8186         [ALC262_BENQ_T31]       = "benq-t31",
8187         [ALC262_SONY_ASSAMD]    = "sony-assamd",
8188         [ALC262_AUTO]           = "auto",
8189 };
8190
8191 static struct snd_pci_quirk alc262_cfg_tbl[] = {
8192         SND_PCI_QUIRK(0x1002, 0x437b, "Hippo", ALC262_HIPPO),
8193         SND_PCI_QUIRK(0x103c, 0x12fe, "HP xw9400", ALC262_HP_BPC),
8194         SND_PCI_QUIRK(0x103c, 0x280c, "HP xw4400", ALC262_HP_BPC),
8195         SND_PCI_QUIRK(0x103c, 0x12ff, "HP xw4550", ALC262_HP_BPC),
8196         SND_PCI_QUIRK(0x103c, 0x1308, "HP xw4600", ALC262_HP_BPC),
8197         SND_PCI_QUIRK(0x103c, 0x3014, "HP xw6400", ALC262_HP_BPC),
8198         SND_PCI_QUIRK(0x103c, 0x1307, "HP xw6600", ALC262_HP_BPC),
8199         SND_PCI_QUIRK(0x103c, 0x3015, "HP xw8400", ALC262_HP_BPC),
8200         SND_PCI_QUIRK(0x103c, 0x1306, "HP xw8600", ALC262_HP_BPC),
8201         SND_PCI_QUIRK(0x103c, 0x2800, "HP D7000", ALC262_HP_BPC_D7000_WL),
8202         SND_PCI_QUIRK(0x103c, 0x2802, "HP D7000", ALC262_HP_BPC_D7000_WL),
8203         SND_PCI_QUIRK(0x103c, 0x2804, "HP D7000", ALC262_HP_BPC_D7000_WL),
8204         SND_PCI_QUIRK(0x103c, 0x2806, "HP D7000", ALC262_HP_BPC_D7000_WL),
8205         SND_PCI_QUIRK(0x103c, 0x2801, "HP D7000", ALC262_HP_BPC_D7000_WF),
8206         SND_PCI_QUIRK(0x103c, 0x2803, "HP D7000", ALC262_HP_BPC_D7000_WF),
8207         SND_PCI_QUIRK(0x103c, 0x2805, "HP D7000", ALC262_HP_BPC_D7000_WF),
8208         SND_PCI_QUIRK(0x103c, 0x2807, "HP D7000", ALC262_HP_BPC_D7000_WF),
8209         SND_PCI_QUIRK(0x104d, 0x8203, "Sony UX-90", ALC262_HIPPO),
8210         SND_PCI_QUIRK(0x10cf, 0x1397, "Fujitsu", ALC262_FUJITSU),
8211         SND_PCI_QUIRK(0x17ff, 0x058f, "Benq Hippo", ALC262_HIPPO_1),
8212         SND_PCI_QUIRK(0x17ff, 0x0560, "Benq ED8", ALC262_BENQ_ED8),
8213         SND_PCI_QUIRK(0x17ff, 0x058d, "Benq T31-16", ALC262_BENQ_T31),
8214         SND_PCI_QUIRK(0x104d, 0x820f, "Sony ASSAMD", ALC262_SONY_ASSAMD),
8215         SND_PCI_QUIRK(0x104d, 0x9015, "Sony 0x9015", ALC262_SONY_ASSAMD),
8216         SND_PCI_QUIRK(0x104d, 0x900e, "Sony ASSAMD", ALC262_SONY_ASSAMD),
8217         SND_PCI_QUIRK(0x104d, 0x1f00, "Sony ASSAMD", ALC262_SONY_ASSAMD),
8218         {}
8219 };
8220
8221 static struct alc_config_preset alc262_presets[] = {
8222         [ALC262_BASIC] = {
8223                 .mixers = { alc262_base_mixer },
8224                 .init_verbs = { alc262_init_verbs },
8225                 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
8226                 .dac_nids = alc262_dac_nids,
8227                 .hp_nid = 0x03,
8228                 .num_channel_mode = ARRAY_SIZE(alc262_modes),
8229                 .channel_mode = alc262_modes,
8230                 .input_mux = &alc262_capture_source,
8231         },
8232         [ALC262_HIPPO] = {
8233                 .mixers = { alc262_base_mixer },
8234                 .init_verbs = { alc262_init_verbs, alc262_hippo_unsol_verbs},
8235                 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
8236                 .dac_nids = alc262_dac_nids,
8237                 .hp_nid = 0x03,
8238                 .dig_out_nid = ALC262_DIGOUT_NID,
8239                 .num_channel_mode = ARRAY_SIZE(alc262_modes),
8240                 .channel_mode = alc262_modes,
8241                 .input_mux = &alc262_capture_source,
8242                 .unsol_event = alc262_hippo_unsol_event,
8243                 .init_hook = alc262_hippo_automute,
8244         },
8245         [ALC262_HIPPO_1] = {
8246                 .mixers = { alc262_hippo1_mixer },
8247                 .init_verbs = { alc262_init_verbs, alc262_hippo1_unsol_verbs},
8248                 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
8249                 .dac_nids = alc262_dac_nids,
8250                 .hp_nid = 0x02,
8251                 .dig_out_nid = ALC262_DIGOUT_NID,
8252                 .num_channel_mode = ARRAY_SIZE(alc262_modes),
8253                 .channel_mode = alc262_modes,
8254                 .input_mux = &alc262_capture_source,
8255                 .unsol_event = alc262_hippo1_unsol_event,
8256                 .init_hook = alc262_hippo1_automute,
8257         },
8258         [ALC262_FUJITSU] = {
8259                 .mixers = { alc262_fujitsu_mixer },
8260                 .init_verbs = { alc262_init_verbs, alc262_fujitsu_unsol_verbs },
8261                 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
8262                 .dac_nids = alc262_dac_nids,
8263                 .hp_nid = 0x03,
8264                 .dig_out_nid = ALC262_DIGOUT_NID,
8265                 .num_channel_mode = ARRAY_SIZE(alc262_modes),
8266                 .channel_mode = alc262_modes,
8267                 .input_mux = &alc262_fujitsu_capture_source,
8268                 .unsol_event = alc262_fujitsu_unsol_event,
8269         },
8270         [ALC262_HP_BPC] = {
8271                 .mixers = { alc262_HP_BPC_mixer },
8272                 .init_verbs = { alc262_HP_BPC_init_verbs },
8273                 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
8274                 .dac_nids = alc262_dac_nids,
8275                 .hp_nid = 0x03,
8276                 .num_channel_mode = ARRAY_SIZE(alc262_modes),
8277                 .channel_mode = alc262_modes,
8278                 .input_mux = &alc262_HP_capture_source,
8279         },
8280         [ALC262_HP_BPC_D7000_WF] = {
8281                 .mixers = { alc262_HP_BPC_WildWest_mixer },
8282                 .init_verbs = { alc262_HP_BPC_WildWest_init_verbs },
8283                 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
8284                 .dac_nids = alc262_dac_nids,
8285                 .hp_nid = 0x03,
8286                 .num_channel_mode = ARRAY_SIZE(alc262_modes),
8287                 .channel_mode = alc262_modes,
8288                 .input_mux = &alc262_HP_capture_source,
8289         },
8290         [ALC262_HP_BPC_D7000_WL] = {
8291                 .mixers = { alc262_HP_BPC_WildWest_mixer,
8292                             alc262_HP_BPC_WildWest_option_mixer },
8293                 .init_verbs = { alc262_HP_BPC_WildWest_init_verbs },
8294                 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
8295                 .dac_nids = alc262_dac_nids,
8296                 .hp_nid = 0x03,
8297                 .num_channel_mode = ARRAY_SIZE(alc262_modes),
8298                 .channel_mode = alc262_modes,
8299                 .input_mux = &alc262_HP_capture_source,
8300         },
8301         [ALC262_BENQ_ED8] = {
8302                 .mixers = { alc262_base_mixer },
8303                 .init_verbs = { alc262_init_verbs, alc262_EAPD_verbs },
8304                 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
8305                 .dac_nids = alc262_dac_nids,
8306                 .hp_nid = 0x03,
8307                 .num_channel_mode = ARRAY_SIZE(alc262_modes),
8308                 .channel_mode = alc262_modes,
8309                 .input_mux = &alc262_capture_source,
8310         },
8311         [ALC262_SONY_ASSAMD] = {
8312                 .mixers = { alc262_sony_mixer },
8313                 .init_verbs = { alc262_init_verbs, alc262_sony_unsol_verbs},
8314                 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
8315                 .dac_nids = alc262_dac_nids,
8316                 .hp_nid = 0x02,
8317                 .num_channel_mode = ARRAY_SIZE(alc262_modes),
8318                 .channel_mode = alc262_modes,
8319                 .input_mux = &alc262_capture_source,
8320                 .unsol_event = alc262_hippo_unsol_event,
8321                 .init_hook = alc262_hippo_automute,
8322         },
8323         [ALC262_BENQ_T31] = {
8324                 .mixers = { alc262_benq_t31_mixer },
8325                 .init_verbs = { alc262_init_verbs, alc262_benq_t31_EAPD_verbs, alc262_hippo_unsol_verbs },
8326                 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
8327                 .dac_nids = alc262_dac_nids,
8328                 .hp_nid = 0x03,
8329                 .num_channel_mode = ARRAY_SIZE(alc262_modes),
8330                 .channel_mode = alc262_modes,
8331                 .input_mux = &alc262_capture_source,
8332                 .unsol_event = alc262_hippo_unsol_event,
8333                 .init_hook = alc262_hippo_automute,
8334         },      
8335 };
8336
8337 static int patch_alc262(struct hda_codec *codec)
8338 {
8339         struct alc_spec *spec;
8340         int board_config;
8341         int err;
8342
8343         spec = kzalloc(sizeof(*spec), GFP_KERNEL);
8344         if (spec == NULL)
8345                 return -ENOMEM;
8346
8347         codec->spec = spec;
8348 #if 0
8349         /* pshou 07/11/05  set a zero PCM sample to DAC when FIFO is
8350          * under-run
8351          */
8352         {
8353         int tmp;
8354         snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_COEF_INDEX, 7);
8355         tmp = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_PROC_COEF, 0);
8356         snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_COEF_INDEX, 7);
8357         snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_PROC_COEF, tmp | 0x80);
8358         }
8359 #endif
8360
8361         board_config = snd_hda_check_board_config(codec, ALC262_MODEL_LAST,
8362                                                   alc262_models,
8363                                                   alc262_cfg_tbl);
8364
8365         if (board_config < 0) {
8366                 printk(KERN_INFO "hda_codec: Unknown model for ALC262, "
8367                        "trying auto-probe from BIOS...\n");
8368                 board_config = ALC262_AUTO;
8369         }
8370
8371         if (board_config == ALC262_AUTO) {
8372                 /* automatic parse from the BIOS config */
8373                 err = alc262_parse_auto_config(codec);
8374                 if (err < 0) {
8375                         alc_free(codec);
8376                         return err;
8377                 } else if (!err) {
8378                         printk(KERN_INFO
8379                                "hda_codec: Cannot set up configuration "
8380                                "from BIOS.  Using base mode...\n");
8381                         board_config = ALC262_BASIC;
8382                 }
8383         }
8384
8385         if (board_config != ALC262_AUTO)
8386                 setup_preset(spec, &alc262_presets[board_config]);
8387
8388         spec->stream_name_analog = "ALC262 Analog";
8389         spec->stream_analog_playback = &alc262_pcm_analog_playback;
8390         spec->stream_analog_capture = &alc262_pcm_analog_capture;
8391                 
8392         spec->stream_name_digital = "ALC262 Digital";
8393         spec->stream_digital_playback = &alc262_pcm_digital_playback;
8394         spec->stream_digital_capture = &alc262_pcm_digital_capture;
8395
8396         if (!spec->adc_nids && spec->input_mux) {
8397                 /* check whether NID 0x07 is valid */
8398                 unsigned int wcap = get_wcaps(codec, 0x07);
8399
8400                 /* get type */
8401                 wcap = (wcap & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT;
8402                 if (wcap != AC_WID_AUD_IN) {
8403                         spec->adc_nids = alc262_adc_nids_alt;
8404                         spec->num_adc_nids = ARRAY_SIZE(alc262_adc_nids_alt);
8405                         spec->mixers[spec->num_mixers] =
8406                                 alc262_capture_alt_mixer;
8407                         spec->num_mixers++;
8408                 } else {
8409                         spec->adc_nids = alc262_adc_nids;
8410                         spec->num_adc_nids = ARRAY_SIZE(alc262_adc_nids);
8411                         spec->mixers[spec->num_mixers] = alc262_capture_mixer;
8412                         spec->num_mixers++;
8413                 }
8414         }
8415
8416         codec->patch_ops = alc_patch_ops;
8417         if (board_config == ALC262_AUTO)
8418                 spec->init_hook = alc262_auto_init;
8419 #ifdef CONFIG_SND_HDA_POWER_SAVE
8420         if (!spec->loopback.amplist)
8421                 spec->loopback.amplist = alc262_loopbacks;
8422 #endif
8423                 
8424         return 0;
8425 }
8426
8427 /*
8428  *  ALC268 channel source setting (2 channel)
8429  */
8430 #define ALC268_DIGOUT_NID       ALC880_DIGOUT_NID
8431 #define alc268_modes            alc260_modes
8432         
8433 static hda_nid_t alc268_dac_nids[2] = {
8434         /* front, hp */
8435         0x02, 0x03
8436 };
8437
8438 static hda_nid_t alc268_adc_nids[2] = {
8439         /* ADC0-1 */
8440         0x08, 0x07
8441 };
8442
8443 static hda_nid_t alc268_adc_nids_alt[1] = {
8444         /* ADC0 */
8445         0x08
8446 };
8447
8448 static struct snd_kcontrol_new alc268_base_mixer[] = {
8449         /* output mixer control */
8450         HDA_CODEC_VOLUME("Front Playback Volume", 0x2, 0x0, HDA_OUTPUT),
8451         HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT),
8452         HDA_CODEC_VOLUME("Headphone Playback Volume", 0x3, 0x0, HDA_OUTPUT),
8453         HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT),
8454         { }
8455 };
8456
8457 static struct hda_verb alc268_eapd_verbs[] = {
8458         {0x14, AC_VERB_SET_EAPD_BTLENABLE, 2},
8459         {0x15, AC_VERB_SET_EAPD_BTLENABLE, 2},
8460         { }
8461 };
8462
8463 /* Toshiba specific */
8464 #define alc268_toshiba_automute alc262_hippo_automute
8465
8466 static struct hda_verb alc268_toshiba_verbs[] = {
8467         {0x15, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
8468         { } /* end */
8469 };
8470
8471 /* Acer specific */
8472 /* bind volumes of both NID 0x0c and 0x0d */
8473 static struct hda_bind_ctls alc268_acer_bind_master_vol = {
8474         .ops = &snd_hda_bind_vol,
8475         .values = {
8476                 HDA_COMPOSE_AMP_VAL(0x02, 3, 0, HDA_OUTPUT),
8477                 HDA_COMPOSE_AMP_VAL(0x03, 3, 0, HDA_OUTPUT),
8478                 0
8479         },
8480 };
8481
8482 #define alc268_acer_master_sw_put       alc262_fujitsu_master_sw_put
8483 #define alc268_acer_automute    alc262_fujitsu_automute
8484
8485 static struct snd_kcontrol_new alc268_acer_mixer[] = {
8486         /* output mixer control */
8487         HDA_BIND_VOL("Master Playback Volume", &alc268_acer_bind_master_vol),
8488         {
8489                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
8490                 .name = "Master Playback Switch",
8491                 .info = snd_hda_mixer_amp_switch_info,
8492                 .get = snd_hda_mixer_amp_switch_get,
8493                 .put = alc268_acer_master_sw_put,
8494                 .private_value = HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT),
8495         },
8496         { }
8497 };
8498
8499 static struct hda_verb alc268_acer_verbs[] = {
8500         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
8501         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
8502
8503         {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
8504         { }
8505 };
8506
8507 /* unsolicited event for HP jack sensing */
8508 static void alc268_toshiba_unsol_event(struct hda_codec *codec,
8509                                        unsigned int res)
8510 {
8511         if ((res >> 28) != ALC880_HP_EVENT)
8512                 return;
8513         alc268_toshiba_automute(codec);
8514 }
8515
8516 static void alc268_acer_unsol_event(struct hda_codec *codec,
8517                                        unsigned int res)
8518 {
8519         if ((res >> 28) != ALC880_HP_EVENT)
8520                 return;
8521         alc268_acer_automute(codec, 1);
8522 }
8523
8524 /*
8525  * generic initialization of ADC, input mixers and output mixers
8526  */
8527 static struct hda_verb alc268_base_init_verbs[] = {
8528         /* Unmute DAC0-1 and set vol = 0 */
8529         {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
8530         {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8531         {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8532         {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
8533         {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8534         {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8535
8536         /*
8537          * Set up output mixers (0x0c - 0x0e)
8538          */
8539         /* set vol=0 to output mixers */
8540         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8541         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8542         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
8543         {0x0e, AC_VERB_SET_CONNECT_SEL, 0x00},
8544
8545         {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8546         {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8547
8548         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
8549         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0},
8550         {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
8551         {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
8552         {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
8553         {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
8554         {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
8555         {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
8556
8557         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
8558         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
8559         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
8560         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
8561         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
8562         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
8563         {0x1c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
8564         {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
8565
8566         /* FIXME: use matrix-type input source selection */
8567         /* Mixer elements: 0x18, 19, 1a, 1c, 14, 15, 0b */
8568         /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
8569         /* Input mixer2 */
8570         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
8571         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
8572         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))},
8573         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x03 << 8))},
8574
8575         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
8576         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
8577         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))},
8578         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x03 << 8))},
8579         { }
8580 };
8581
8582 /*
8583  * generic initialization of ADC, input mixers and output mixers
8584  */
8585 static struct hda_verb alc268_volume_init_verbs[] = {
8586         /* set output DAC */
8587         {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8588         {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8589         {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8590         {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8591
8592         {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
8593         {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
8594         {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
8595         {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
8596         {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
8597
8598         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
8599         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8600         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8601         {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8602         {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8603
8604         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
8605         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
8606         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
8607         {0x1c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
8608
8609         /* set PCBEEP vol = 0 */
8610         {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, (0xb000 | (0x00 << 8))},
8611
8612         { }
8613 };
8614
8615 #define alc268_mux_enum_info alc_mux_enum_info
8616 #define alc268_mux_enum_get alc_mux_enum_get
8617
8618 static int alc268_mux_enum_put(struct snd_kcontrol *kcontrol,
8619                                struct snd_ctl_elem_value *ucontrol)
8620 {
8621         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
8622         struct alc_spec *spec = codec->spec;
8623         const struct hda_input_mux *imux = spec->input_mux;
8624         unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
8625         static hda_nid_t capture_mixers[3] = { 0x23, 0x24 };
8626         hda_nid_t nid = capture_mixers[adc_idx];
8627         unsigned int *cur_val = &spec->cur_mux[adc_idx];
8628         unsigned int i, idx;
8629
8630         idx = ucontrol->value.enumerated.item[0];
8631         if (idx >= imux->num_items)
8632                 idx = imux->num_items - 1;
8633         if (*cur_val == idx)
8634                 return 0;
8635         for (i = 0; i < imux->num_items; i++) {
8636                 unsigned int v = (i == idx) ? 0 : HDA_AMP_MUTE;
8637                 snd_hda_codec_amp_stereo(codec, nid, HDA_INPUT,
8638                                          imux->items[i].index,
8639                                          HDA_AMP_MUTE, v);
8640                 snd_hda_codec_write_cache(codec, nid, 0,
8641                                           AC_VERB_SET_CONNECT_SEL,
8642                                           idx );
8643         }
8644         *cur_val = idx;
8645         return 1;
8646 }
8647
8648 static struct snd_kcontrol_new alc268_capture_alt_mixer[] = {
8649         HDA_CODEC_VOLUME("Capture Volume", 0x23, 0x0, HDA_OUTPUT),
8650         HDA_CODEC_MUTE("Capture Switch", 0x23, 0x0, HDA_OUTPUT),
8651         {
8652                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
8653                 /* The multiple "Capture Source" controls confuse alsamixer
8654                  * So call somewhat different..
8655                  * FIXME: the controls appear in the "playback" view!
8656                  */
8657                 /* .name = "Capture Source", */
8658                 .name = "Input Source",
8659                 .count = 1,
8660                 .info = alc268_mux_enum_info,
8661                 .get = alc268_mux_enum_get,
8662                 .put = alc268_mux_enum_put,
8663         },
8664         { } /* end */
8665 };
8666
8667 static struct snd_kcontrol_new alc268_capture_mixer[] = {
8668         HDA_CODEC_VOLUME("Capture Volume", 0x23, 0x0, HDA_OUTPUT),
8669         HDA_CODEC_MUTE("Capture Switch", 0x23, 0x0, HDA_OUTPUT),
8670         HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x24, 0x0, HDA_OUTPUT),
8671         HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x24, 0x0, HDA_OUTPUT),
8672         {
8673                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
8674                 /* The multiple "Capture Source" controls confuse alsamixer
8675                  * So call somewhat different..
8676                  * FIXME: the controls appear in the "playback" view!
8677                  */
8678                 /* .name = "Capture Source", */
8679                 .name = "Input Source",
8680                 .count = 2,
8681                 .info = alc268_mux_enum_info,
8682                 .get = alc268_mux_enum_get,
8683                 .put = alc268_mux_enum_put,
8684         },
8685         { } /* end */
8686 };
8687
8688 static struct hda_input_mux alc268_capture_source = {
8689         .num_items = 4,
8690         .items = {
8691                 { "Mic", 0x0 },
8692                 { "Front Mic", 0x1 },
8693                 { "Line", 0x2 },
8694                 { "CD", 0x3 },
8695         },
8696 };
8697
8698 /* create input playback/capture controls for the given pin */
8699 static int alc268_new_analog_output(struct alc_spec *spec, hda_nid_t nid,
8700                                     const char *ctlname, int idx)
8701 {
8702         char name[32];
8703         int err;
8704
8705         sprintf(name, "%s Playback Volume", ctlname);
8706         if (nid == 0x14) {
8707                 err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
8708                                   HDA_COMPOSE_AMP_VAL(0x02, 3, idx,
8709                                                       HDA_OUTPUT));
8710                 if (err < 0)
8711                         return err;
8712         } else if (nid == 0x15) {
8713                 err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
8714                                   HDA_COMPOSE_AMP_VAL(0x03, 3, idx,
8715                                                       HDA_OUTPUT));
8716                 if (err < 0)
8717                         return err;
8718         } else
8719                 return -1;
8720         sprintf(name, "%s Playback Switch", ctlname);
8721         err = add_control(spec, ALC_CTL_WIDGET_MUTE, name,
8722                           HDA_COMPOSE_AMP_VAL(nid, 3, idx, HDA_OUTPUT));
8723         if (err < 0)
8724                 return err;
8725         return 0;
8726 }
8727
8728 /* add playback controls from the parsed DAC table */
8729 static int alc268_auto_create_multi_out_ctls(struct alc_spec *spec,
8730                                              const struct auto_pin_cfg *cfg)
8731 {
8732         hda_nid_t nid;
8733         int err;
8734
8735         spec->multiout.num_dacs = 2;    /* only use one dac */
8736         spec->multiout.dac_nids = spec->private_dac_nids;
8737         spec->multiout.dac_nids[0] = 2;
8738         spec->multiout.dac_nids[1] = 3;
8739
8740         nid = cfg->line_out_pins[0];
8741         if (nid)
8742                 alc268_new_analog_output(spec, nid, "Front", 0);        
8743
8744         nid = cfg->speaker_pins[0];
8745         if (nid == 0x1d) {
8746                 err = add_control(spec, ALC_CTL_WIDGET_VOL,
8747                                   "Speaker Playback Volume",
8748                                   HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_INPUT));
8749                 if (err < 0)
8750                         return err;
8751         }
8752         nid = cfg->hp_pins[0];
8753         if (nid)
8754                 alc268_new_analog_output(spec, nid, "Headphone", 0);
8755
8756         nid = cfg->line_out_pins[1] | cfg->line_out_pins[2];
8757         if (nid == 0x16) {
8758                 err = add_control(spec, ALC_CTL_WIDGET_MUTE,
8759                                   "Mono Playback Switch",
8760                                   HDA_COMPOSE_AMP_VAL(nid, 2, 0, HDA_INPUT));
8761                 if (err < 0)
8762                         return err;
8763         }
8764         return 0;       
8765 }
8766
8767 /* create playback/capture controls for input pins */
8768 static int alc268_auto_create_analog_input_ctls(struct alc_spec *spec,
8769                                                 const struct auto_pin_cfg *cfg)
8770 {
8771         struct hda_input_mux *imux = &spec->private_imux;
8772         int i, idx1;
8773
8774         for (i = 0; i < AUTO_PIN_LAST; i++) {
8775                 switch(cfg->input_pins[i]) {
8776                 case 0x18:
8777                         idx1 = 0;       /* Mic 1 */
8778                         break;
8779                 case 0x19:
8780                         idx1 = 1;       /* Mic 2 */
8781                         break;
8782                 case 0x1a:
8783                         idx1 = 2;       /* Line In */
8784                         break;
8785                 case 0x1c:      
8786                         idx1 = 3;       /* CD */
8787                         break;
8788                 default:
8789                         continue;
8790                 }
8791                 imux->items[imux->num_items].label = auto_pin_cfg_labels[i];
8792                 imux->items[imux->num_items].index = idx1;
8793                 imux->num_items++;      
8794         }
8795         return 0;
8796 }
8797
8798 static void alc268_auto_init_mono_speaker_out(struct hda_codec *codec)
8799 {
8800         struct alc_spec *spec = codec->spec;
8801         hda_nid_t speaker_nid = spec->autocfg.speaker_pins[0];
8802         hda_nid_t hp_nid = spec->autocfg.hp_pins[0];
8803         hda_nid_t line_nid = spec->autocfg.line_out_pins[0];
8804         unsigned int    dac_vol1, dac_vol2;
8805
8806         if (speaker_nid) {
8807                 snd_hda_codec_write(codec, speaker_nid, 0,
8808                                     AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
8809                 snd_hda_codec_write(codec, 0x0f, 0,
8810                                     AC_VERB_SET_AMP_GAIN_MUTE,
8811                                     AMP_IN_UNMUTE(1));
8812                 snd_hda_codec_write(codec, 0x10, 0,
8813                                     AC_VERB_SET_AMP_GAIN_MUTE,
8814                                     AMP_IN_UNMUTE(1));
8815         } else {
8816                 snd_hda_codec_write(codec, 0x0f, 0,
8817                                     AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1));
8818                 snd_hda_codec_write(codec, 0x10, 0,
8819                                     AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1));
8820         }
8821
8822         dac_vol1 = dac_vol2 = 0xb000 | 0x40;    /* set max volume  */
8823         if (line_nid == 0x14)   
8824                 dac_vol2 = AMP_OUT_ZERO;
8825         else if (line_nid == 0x15)
8826                 dac_vol1 = AMP_OUT_ZERO;
8827         if (hp_nid == 0x14)     
8828                 dac_vol2 = AMP_OUT_ZERO;
8829         else if (hp_nid == 0x15)
8830                 dac_vol1 = AMP_OUT_ZERO;
8831         if (line_nid != 0x16 || hp_nid != 0x16 ||
8832             spec->autocfg.line_out_pins[1] != 0x16 ||
8833             spec->autocfg.line_out_pins[2] != 0x16)
8834                 dac_vol1 = dac_vol2 = AMP_OUT_ZERO;
8835
8836         snd_hda_codec_write(codec, 0x02, 0,
8837                             AC_VERB_SET_AMP_GAIN_MUTE, dac_vol1);
8838         snd_hda_codec_write(codec, 0x03, 0,
8839                             AC_VERB_SET_AMP_GAIN_MUTE, dac_vol2);
8840 }
8841
8842 /* pcm configuration: identiacal with ALC880 */
8843 #define alc268_pcm_analog_playback      alc880_pcm_analog_playback
8844 #define alc268_pcm_analog_capture       alc880_pcm_analog_capture
8845 #define alc268_pcm_digital_playback     alc880_pcm_digital_playback
8846
8847 /*
8848  * BIOS auto configuration
8849  */
8850 static int alc268_parse_auto_config(struct hda_codec *codec)
8851 {
8852         struct alc_spec *spec = codec->spec;
8853         int err;
8854         static hda_nid_t alc268_ignore[] = { 0 };
8855
8856         err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
8857                                            alc268_ignore);
8858         if (err < 0)
8859                 return err;
8860         if (!spec->autocfg.line_outs)
8861                 return 0; /* can't find valid BIOS pin config */
8862
8863         err = alc268_auto_create_multi_out_ctls(spec, &spec->autocfg);
8864         if (err < 0)
8865                 return err;
8866         err = alc268_auto_create_analog_input_ctls(spec, &spec->autocfg);
8867         if (err < 0)
8868                 return err;
8869
8870         spec->multiout.max_channels = 2;
8871
8872         /* digital only support output */
8873         if (spec->autocfg.dig_out_pin)
8874                 spec->multiout.dig_out_nid = ALC268_DIGOUT_NID;
8875
8876         if (spec->kctl_alloc)
8877                 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
8878
8879         spec->init_verbs[spec->num_init_verbs++] = alc268_volume_init_verbs;
8880         spec->num_mux_defs = 1;
8881         spec->input_mux = &spec->private_imux;
8882
8883         return 1;
8884 }
8885
8886 #define alc268_auto_init_multi_out      alc882_auto_init_multi_out
8887 #define alc268_auto_init_hp_out         alc882_auto_init_hp_out
8888 #define alc268_auto_init_analog_input   alc882_auto_init_analog_input
8889
8890 /* init callback for auto-configuration model -- overriding the default init */
8891 static void alc268_auto_init(struct hda_codec *codec)
8892 {
8893         alc268_auto_init_multi_out(codec);
8894         alc268_auto_init_hp_out(codec);
8895         alc268_auto_init_mono_speaker_out(codec);
8896         alc268_auto_init_analog_input(codec);
8897 }
8898
8899 /*
8900  * configuration and preset
8901  */
8902 static const char *alc268_models[ALC268_MODEL_LAST] = {
8903         [ALC268_3ST]            = "3stack",
8904         [ALC268_TOSHIBA]        = "toshiba",
8905         [ALC268_ACER]           = "acer",
8906         [ALC268_AUTO]           = "auto",
8907 };
8908
8909 static struct snd_pci_quirk alc268_cfg_tbl[] = {
8910         SND_PCI_QUIRK(0x1043, 0x1205, "ASUS W7J", ALC268_3ST),
8911         SND_PCI_QUIRK(0x1179, 0xff10, "TOSHIBA A205", ALC268_TOSHIBA),
8912         SND_PCI_QUIRK(0x103c, 0x30cc, "TOSHIBA", ALC268_TOSHIBA),
8913         SND_PCI_QUIRK(0x1025, 0x0126, "Acer", ALC268_ACER),
8914         {}
8915 };
8916
8917 static struct alc_config_preset alc268_presets[] = {
8918         [ALC268_3ST] = {
8919                 .mixers = { alc268_base_mixer, alc268_capture_alt_mixer },
8920                 .init_verbs = { alc268_base_init_verbs },
8921                 .num_dacs = ARRAY_SIZE(alc268_dac_nids),
8922                 .dac_nids = alc268_dac_nids,
8923                 .num_adc_nids = ARRAY_SIZE(alc268_adc_nids_alt),
8924                 .adc_nids = alc268_adc_nids_alt,
8925                 .hp_nid = 0x03,
8926                 .dig_out_nid = ALC268_DIGOUT_NID,
8927                 .num_channel_mode = ARRAY_SIZE(alc268_modes),
8928                 .channel_mode = alc268_modes,
8929                 .input_mux = &alc268_capture_source,
8930         },
8931         [ALC268_TOSHIBA] = {
8932                 .mixers = { alc268_base_mixer, alc268_capture_alt_mixer },
8933                 .init_verbs = { alc268_base_init_verbs, alc268_eapd_verbs,
8934                                 alc268_toshiba_verbs },
8935                 .num_dacs = ARRAY_SIZE(alc268_dac_nids),
8936                 .dac_nids = alc268_dac_nids,
8937                 .num_adc_nids = ARRAY_SIZE(alc268_adc_nids_alt),
8938                 .adc_nids = alc268_adc_nids_alt,
8939                 .hp_nid = 0x03,
8940                 .num_channel_mode = ARRAY_SIZE(alc268_modes),
8941                 .channel_mode = alc268_modes,
8942                 .input_mux = &alc268_capture_source,
8943                 .input_mux = &alc268_capture_source,
8944                 .unsol_event = alc268_toshiba_unsol_event,
8945                 .init_hook = alc268_toshiba_automute,
8946         },
8947         [ALC268_ACER] = {
8948                 .mixers = { alc268_acer_mixer, alc268_capture_alt_mixer },
8949                 .init_verbs = { alc268_base_init_verbs, alc268_eapd_verbs,
8950                                 alc268_acer_verbs },
8951                 .num_dacs = ARRAY_SIZE(alc268_dac_nids),
8952                 .dac_nids = alc268_dac_nids,
8953                 .num_adc_nids = ARRAY_SIZE(alc268_adc_nids_alt),
8954                 .adc_nids = alc268_adc_nids_alt,
8955                 .hp_nid = 0x02,
8956                 .num_channel_mode = ARRAY_SIZE(alc268_modes),
8957                 .channel_mode = alc268_modes,
8958                 .input_mux = &alc268_capture_source,
8959                 .unsol_event = alc268_acer_unsol_event,
8960         },
8961 };
8962
8963 static int patch_alc268(struct hda_codec *codec)
8964 {
8965         struct alc_spec *spec;
8966         int board_config;
8967         int err;
8968
8969         spec = kcalloc(1, sizeof(*spec), GFP_KERNEL);
8970         if (spec == NULL)
8971                 return -ENOMEM;
8972
8973         codec->spec = spec;
8974
8975         board_config = snd_hda_check_board_config(codec, ALC268_MODEL_LAST,
8976                                                   alc268_models,
8977                                                   alc268_cfg_tbl);
8978
8979         if (board_config < 0 || board_config >= ALC268_MODEL_LAST) {
8980                 printk(KERN_INFO "hda_codec: Unknown model for ALC268, "
8981                        "trying auto-probe from BIOS...\n");
8982                 board_config = ALC268_AUTO;
8983         }
8984
8985         if (board_config == ALC268_AUTO) {
8986                 /* automatic parse from the BIOS config */
8987                 err = alc268_parse_auto_config(codec);
8988                 if (err < 0) {
8989                         alc_free(codec);
8990                         return err;
8991                 } else if (!err) {
8992                         printk(KERN_INFO
8993                                "hda_codec: Cannot set up configuration "
8994                                "from BIOS.  Using base mode...\n");
8995                         board_config = ALC268_3ST;
8996                 }
8997         }
8998
8999         if (board_config != ALC268_AUTO)
9000                 setup_preset(spec, &alc268_presets[board_config]);
9001
9002         spec->stream_name_analog = "ALC268 Analog";
9003         spec->stream_analog_playback = &alc268_pcm_analog_playback;
9004         spec->stream_analog_capture = &alc268_pcm_analog_capture;
9005
9006         spec->stream_name_digital = "ALC268 Digital";
9007         spec->stream_digital_playback = &alc268_pcm_digital_playback;
9008
9009         if (board_config == ALC268_AUTO) {
9010                 if (!spec->adc_nids && spec->input_mux) {
9011                         /* check whether NID 0x07 is valid */
9012                         unsigned int wcap = get_wcaps(codec, 0x07);
9013
9014                         /* get type */
9015                         wcap = (wcap & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT;
9016                         if (wcap != AC_WID_AUD_IN) {
9017                                 spec->adc_nids = alc268_adc_nids_alt;
9018                                 spec->num_adc_nids =
9019                                         ARRAY_SIZE(alc268_adc_nids_alt);
9020                                 spec->mixers[spec->num_mixers] =
9021                                         alc268_capture_alt_mixer;
9022                                 spec->num_mixers++;
9023                         } else {
9024                                 spec->adc_nids = alc268_adc_nids;
9025                                 spec->num_adc_nids =
9026                                         ARRAY_SIZE(alc268_adc_nids);
9027                                 spec->mixers[spec->num_mixers] =
9028                                         alc268_capture_mixer;
9029                                 spec->num_mixers++;
9030                         }
9031                 }
9032         }
9033         codec->patch_ops = alc_patch_ops;
9034         if (board_config == ALC268_AUTO)
9035                 spec->init_hook = alc268_auto_init;
9036                 
9037         return 0;
9038 }
9039
9040 /*
9041  *  ALC861 channel source setting (2/6 channel selection for 3-stack)
9042  */
9043
9044 /*
9045  * set the path ways for 2 channel output
9046  * need to set the codec line out and mic 1 pin widgets to inputs
9047  */
9048 static struct hda_verb alc861_threestack_ch2_init[] = {
9049         /* set pin widget 1Ah (line in) for input */
9050         { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
9051         /* set pin widget 18h (mic1/2) for input, for mic also enable
9052          * the vref
9053          */
9054         { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
9055
9056         { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c },
9057 #if 0
9058         { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8)) }, /*mic*/
9059         { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8)) }, /*line-in*/
9060 #endif
9061         { } /* end */
9062 };
9063 /*
9064  * 6ch mode
9065  * need to set the codec line out and mic 1 pin widgets to outputs
9066  */
9067 static struct hda_verb alc861_threestack_ch6_init[] = {
9068         /* set pin widget 1Ah (line in) for output (Back Surround)*/
9069         { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
9070         /* set pin widget 18h (mic1) for output (CLFE)*/
9071         { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
9072
9073         { 0x0c, AC_VERB_SET_CONNECT_SEL, 0x00 },
9074         { 0x0d, AC_VERB_SET_CONNECT_SEL, 0x00 },
9075
9076         { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080 },
9077 #if 0
9078         { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x01 << 8)) }, /*mic*/
9079         { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8)) }, /*line in*/
9080 #endif
9081         { } /* end */
9082 };
9083
9084 static struct hda_channel_mode alc861_threestack_modes[2] = {
9085         { 2, alc861_threestack_ch2_init },
9086         { 6, alc861_threestack_ch6_init },
9087 };
9088 /* Set mic1 as input and unmute the mixer */
9089 static struct hda_verb alc861_uniwill_m31_ch2_init[] = {
9090         { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
9091         { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x01 << 8)) }, /*mic*/
9092         { } /* end */
9093 };
9094 /* Set mic1 as output and mute mixer */
9095 static struct hda_verb alc861_uniwill_m31_ch4_init[] = {
9096         { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
9097         { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8)) }, /*mic*/
9098         { } /* end */
9099 };
9100
9101 static struct hda_channel_mode alc861_uniwill_m31_modes[2] = {
9102         { 2, alc861_uniwill_m31_ch2_init },
9103         { 4, alc861_uniwill_m31_ch4_init },
9104 };
9105
9106 /* Set mic1 and line-in as input and unmute the mixer */
9107 static struct hda_verb alc861_asus_ch2_init[] = {
9108         /* set pin widget 1Ah (line in) for input */
9109         { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
9110         /* set pin widget 18h (mic1/2) for input, for mic also enable
9111          * the vref
9112          */
9113         { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
9114
9115         { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c },
9116 #if 0
9117         { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8)) }, /*mic*/
9118         { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8)) }, /*line-in*/
9119 #endif
9120         { } /* end */
9121 };
9122 /* Set mic1 nad line-in as output and mute mixer */
9123 static struct hda_verb alc861_asus_ch6_init[] = {
9124         /* set pin widget 1Ah (line in) for output (Back Surround)*/
9125         { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
9126         /* { 0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE }, */
9127         /* set pin widget 18h (mic1) for output (CLFE)*/
9128         { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
9129         /* { 0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE }, */
9130         { 0x0c, AC_VERB_SET_CONNECT_SEL, 0x00 },
9131         { 0x0d, AC_VERB_SET_CONNECT_SEL, 0x00 },
9132
9133         { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080 },
9134 #if 0
9135         { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x01 << 8)) }, /*mic*/
9136         { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8)) }, /*line in*/
9137 #endif
9138         { } /* end */
9139 };
9140
9141 static struct hda_channel_mode alc861_asus_modes[2] = {
9142         { 2, alc861_asus_ch2_init },
9143         { 6, alc861_asus_ch6_init },
9144 };
9145
9146 /* patch-ALC861 */
9147
9148 static struct snd_kcontrol_new alc861_base_mixer[] = {
9149         /* output mixer control */
9150         HDA_CODEC_MUTE("Front Playback Switch", 0x03, 0x0, HDA_OUTPUT),
9151         HDA_CODEC_MUTE("Surround Playback Switch", 0x06, 0x0, HDA_OUTPUT),
9152         HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x05, 1, 0x0, HDA_OUTPUT),
9153         HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x05, 2, 0x0, HDA_OUTPUT),
9154         HDA_CODEC_MUTE("Side Playback Switch", 0x04, 0x0, HDA_OUTPUT),
9155
9156         /*Input mixer control */
9157         /* HDA_CODEC_VOLUME("Input Playback Volume", 0x15, 0x0, HDA_OUTPUT),
9158            HDA_CODEC_MUTE("Input Playback Switch", 0x15, 0x0, HDA_OUTPUT), */
9159         HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT),
9160         HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT),
9161         HDA_CODEC_VOLUME("Line Playback Volume", 0x15, 0x02, HDA_INPUT),
9162         HDA_CODEC_MUTE("Line Playback Switch", 0x15, 0x02, HDA_INPUT),
9163         HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT),
9164         HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT),
9165         HDA_CODEC_MUTE("Front Mic Playback Switch", 0x10, 0x01, HDA_OUTPUT),
9166         HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x03, HDA_INPUT),
9167
9168         /* Capture mixer control */
9169         HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
9170         HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
9171         {
9172                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
9173                 .name = "Capture Source",
9174                 .count = 1,
9175                 .info = alc_mux_enum_info,
9176                 .get = alc_mux_enum_get,
9177                 .put = alc_mux_enum_put,
9178         },
9179         { } /* end */
9180 };
9181
9182 static struct snd_kcontrol_new alc861_3ST_mixer[] = {
9183         /* output mixer control */
9184         HDA_CODEC_MUTE("Front Playback Switch", 0x03, 0x0, HDA_OUTPUT),
9185         HDA_CODEC_MUTE("Surround Playback Switch", 0x06, 0x0, HDA_OUTPUT),
9186         HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x05, 1, 0x0, HDA_OUTPUT),
9187         HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x05, 2, 0x0, HDA_OUTPUT),
9188         /*HDA_CODEC_MUTE("Side Playback Switch", 0x04, 0x0, HDA_OUTPUT), */
9189
9190         /* Input mixer control */
9191         /* HDA_CODEC_VOLUME("Input Playback Volume", 0x15, 0x0, HDA_OUTPUT),
9192            HDA_CODEC_MUTE("Input Playback Switch", 0x15, 0x0, HDA_OUTPUT), */
9193         HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT),
9194         HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT),
9195         HDA_CODEC_VOLUME("Line Playback Volume", 0x15, 0x02, HDA_INPUT),
9196         HDA_CODEC_MUTE("Line Playback Switch", 0x15, 0x02, HDA_INPUT),
9197         HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT),
9198         HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT),
9199         HDA_CODEC_MUTE("Front Mic Playback Switch", 0x10, 0x01, HDA_OUTPUT),
9200         HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x03, HDA_INPUT),
9201
9202         /* Capture mixer control */
9203         HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
9204         HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
9205         {
9206                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
9207                 .name = "Capture Source",
9208                 .count = 1,
9209                 .info = alc_mux_enum_info,
9210                 .get = alc_mux_enum_get,
9211                 .put = alc_mux_enum_put,
9212         },
9213         {
9214                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
9215                 .name = "Channel Mode",
9216                 .info = alc_ch_mode_info,
9217                 .get = alc_ch_mode_get,
9218                 .put = alc_ch_mode_put,
9219                 .private_value = ARRAY_SIZE(alc861_threestack_modes),
9220         },
9221         { } /* end */
9222 };
9223
9224 static struct snd_kcontrol_new alc861_toshiba_mixer[] = {
9225         /* output mixer control */
9226         HDA_CODEC_MUTE("Master Playback Switch", 0x03, 0x0, HDA_OUTPUT),
9227         HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT),
9228         HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT),
9229         
9230         /*Capture mixer control */
9231         HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
9232         HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
9233         {
9234                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
9235                 .name = "Capture Source",
9236                 .count = 1,
9237                 .info = alc_mux_enum_info,
9238                 .get = alc_mux_enum_get,
9239                 .put = alc_mux_enum_put,
9240         },
9241
9242         { } /* end */
9243 };
9244
9245 static struct snd_kcontrol_new alc861_uniwill_m31_mixer[] = {
9246         /* output mixer control */
9247         HDA_CODEC_MUTE("Front Playback Switch", 0x03, 0x0, HDA_OUTPUT),
9248         HDA_CODEC_MUTE("Surround Playback Switch", 0x06, 0x0, HDA_OUTPUT),
9249         HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x05, 1, 0x0, HDA_OUTPUT),
9250         HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x05, 2, 0x0, HDA_OUTPUT),
9251         /*HDA_CODEC_MUTE("Side Playback Switch", 0x04, 0x0, HDA_OUTPUT), */
9252
9253         /* Input mixer control */
9254         /* HDA_CODEC_VOLUME("Input Playback Volume", 0x15, 0x0, HDA_OUTPUT),
9255            HDA_CODEC_MUTE("Input Playback Switch", 0x15, 0x0, HDA_OUTPUT), */
9256         HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT),
9257         HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT),
9258         HDA_CODEC_VOLUME("Line Playback Volume", 0x15, 0x02, HDA_INPUT),
9259         HDA_CODEC_MUTE("Line Playback Switch", 0x15, 0x02, HDA_INPUT),
9260         HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT),
9261         HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT),
9262         HDA_CODEC_MUTE("Front Mic Playback Switch", 0x10, 0x01, HDA_OUTPUT),
9263         HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x03, HDA_INPUT),
9264
9265         /* Capture mixer control */
9266         HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
9267         HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
9268         {
9269                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
9270                 .name = "Capture Source",
9271                 .count = 1,
9272                 .info = alc_mux_enum_info,
9273                 .get = alc_mux_enum_get,
9274                 .put = alc_mux_enum_put,
9275         },
9276         {
9277                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
9278                 .name = "Channel Mode",
9279                 .info = alc_ch_mode_info,
9280                 .get = alc_ch_mode_get,
9281                 .put = alc_ch_mode_put,
9282                 .private_value = ARRAY_SIZE(alc861_uniwill_m31_modes),
9283         },
9284         { } /* end */
9285 };
9286
9287 static struct snd_kcontrol_new alc861_asus_mixer[] = {
9288         /* output mixer control */
9289         HDA_CODEC_MUTE("Front Playback Switch", 0x03, 0x0, HDA_OUTPUT),
9290         HDA_CODEC_MUTE("Surround Playback Switch", 0x06, 0x0, HDA_OUTPUT),
9291         HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x05, 1, 0x0, HDA_OUTPUT),
9292         HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x05, 2, 0x0, HDA_OUTPUT),
9293         HDA_CODEC_MUTE("Side Playback Switch", 0x04, 0x0, HDA_OUTPUT),
9294
9295         /* Input mixer control */
9296         HDA_CODEC_VOLUME("Input Playback Volume", 0x15, 0x0, HDA_OUTPUT),
9297         HDA_CODEC_MUTE("Input Playback Switch", 0x15, 0x0, HDA_OUTPUT),
9298         HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT),
9299         HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT),
9300         HDA_CODEC_VOLUME("Line Playback Volume", 0x15, 0x02, HDA_INPUT),
9301         HDA_CODEC_MUTE("Line Playback Switch", 0x15, 0x02, HDA_INPUT),
9302         HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT),
9303         HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT),
9304         HDA_CODEC_MUTE("Front Mic Playback Switch", 0x10, 0x01, HDA_OUTPUT),
9305         HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x03, HDA_OUTPUT),
9306
9307         /* Capture mixer control */
9308         HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
9309         HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
9310         {
9311                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
9312                 .name = "Capture Source",
9313                 .count = 1,
9314                 .info = alc_mux_enum_info,
9315                 .get = alc_mux_enum_get,
9316                 .put = alc_mux_enum_put,
9317         },
9318         {
9319                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
9320                 .name = "Channel Mode",
9321                 .info = alc_ch_mode_info,
9322                 .get = alc_ch_mode_get,
9323                 .put = alc_ch_mode_put,
9324                 .private_value = ARRAY_SIZE(alc861_asus_modes),
9325         },
9326         { }
9327 };
9328
9329 /* additional mixer */
9330 static struct snd_kcontrol_new alc861_asus_laptop_mixer[] = {
9331         HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT),
9332         HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT),
9333         HDA_CODEC_VOLUME("PC Beep Playback Volume", 0x23, 0x0, HDA_OUTPUT),
9334         HDA_CODEC_MUTE("PC Beep Playback Switch", 0x23, 0x0, HDA_OUTPUT),
9335         { }
9336 };
9337
9338 /*
9339  * generic initialization of ADC, input mixers and output mixers
9340  */
9341 static struct hda_verb alc861_base_init_verbs[] = {
9342         /*
9343          * Unmute ADC0 and set the default input to mic-in
9344          */
9345         /* port-A for surround (rear panel) */
9346         { 0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
9347         { 0x0e, AC_VERB_SET_CONNECT_SEL, 0x00 },
9348         /* port-B for mic-in (rear panel) with vref */
9349         { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
9350         /* port-C for line-in (rear panel) */
9351         { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
9352         /* port-D for Front */
9353         { 0x0b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
9354         { 0x0b, AC_VERB_SET_CONNECT_SEL, 0x00 },
9355         /* port-E for HP out (front panel) */
9356         { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0 },
9357         /* route front PCM to HP */
9358         { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x00 },
9359         /* port-F for mic-in (front panel) with vref */
9360         { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
9361         /* port-G for CLFE (rear panel) */
9362         { 0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
9363         { 0x1f, AC_VERB_SET_CONNECT_SEL, 0x00 },
9364         /* port-H for side (rear panel) */
9365         { 0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
9366         { 0x20, AC_VERB_SET_CONNECT_SEL, 0x00 },
9367         /* CD-in */
9368         { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
9369         /* route front mic to ADC1*/
9370         {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
9371         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9372         
9373         /* Unmute DAC0~3 & spdif out*/
9374         {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9375         {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9376         {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9377         {0x06, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9378         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9379         
9380         /* Unmute Mixer 14 (mic) 1c (Line in)*/
9381         {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9382         {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9383         {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9384         {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9385         
9386         /* Unmute Stereo Mixer 15 */
9387         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9388         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9389         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
9390         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c}, /* Output 0~12 step */
9391
9392         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9393         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9394         {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9395         {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9396         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9397         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9398         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9399         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9400         /* hp used DAC 3 (Front) */
9401         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
9402         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
9403
9404         { }
9405 };
9406
9407 static struct hda_verb alc861_threestack_init_verbs[] = {
9408         /*
9409          * Unmute ADC0 and set the default input to mic-in
9410          */
9411         /* port-A for surround (rear panel) */
9412         { 0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
9413         /* port-B for mic-in (rear panel) with vref */
9414         { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
9415         /* port-C for line-in (rear panel) */
9416         { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
9417         /* port-D for Front */
9418         { 0x0b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
9419         { 0x0b, AC_VERB_SET_CONNECT_SEL, 0x00 },
9420         /* port-E for HP out (front panel) */
9421         { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0 },
9422         /* route front PCM to HP */
9423         { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x00 },
9424         /* port-F for mic-in (front panel) with vref */
9425         { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
9426         /* port-G for CLFE (rear panel) */
9427         { 0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
9428         /* port-H for side (rear panel) */
9429         { 0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
9430         /* CD-in */
9431         { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
9432         /* route front mic to ADC1*/
9433         {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
9434         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9435         /* Unmute DAC0~3 & spdif out*/
9436         {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9437         {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9438         {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9439         {0x06, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9440         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9441         
9442         /* Unmute Mixer 14 (mic) 1c (Line in)*/
9443         {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9444         {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9445         {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9446         {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9447         
9448         /* Unmute Stereo Mixer 15 */
9449         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9450         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9451         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
9452         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c}, /* Output 0~12 step */
9453
9454         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9455         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9456         {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9457         {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9458         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9459         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9460         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9461         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9462         /* hp used DAC 3 (Front) */
9463         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
9464         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
9465         { }
9466 };
9467
9468 static struct hda_verb alc861_uniwill_m31_init_verbs[] = {
9469         /*
9470          * Unmute ADC0 and set the default input to mic-in
9471          */
9472         /* port-A for surround (rear panel) */
9473         { 0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
9474         /* port-B for mic-in (rear panel) with vref */
9475         { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
9476         /* port-C for line-in (rear panel) */
9477         { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
9478         /* port-D for Front */
9479         { 0x0b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
9480         { 0x0b, AC_VERB_SET_CONNECT_SEL, 0x00 },
9481         /* port-E for HP out (front panel) */
9482         /* this has to be set to VREF80 */
9483         { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
9484         /* route front PCM to HP */
9485         { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x00 },
9486         /* port-F for mic-in (front panel) with vref */
9487         { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
9488         /* port-G for CLFE (rear panel) */
9489         { 0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
9490         /* port-H for side (rear panel) */
9491         { 0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
9492         /* CD-in */
9493         { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
9494         /* route front mic to ADC1*/
9495         {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
9496         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9497         /* Unmute DAC0~3 & spdif out*/
9498         {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9499         {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9500         {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9501         {0x06, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9502         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9503         
9504         /* Unmute Mixer 14 (mic) 1c (Line in)*/
9505         {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9506         {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9507         {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9508         {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9509         
9510         /* Unmute Stereo Mixer 15 */
9511         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9512         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9513         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
9514         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c}, /* Output 0~12 step */
9515
9516         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9517         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9518         {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9519         {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9520         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9521         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9522         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9523         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9524         /* hp used DAC 3 (Front) */
9525         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
9526         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
9527         { }
9528 };
9529
9530 static struct hda_verb alc861_asus_init_verbs[] = {
9531         /*
9532          * Unmute ADC0 and set the default input to mic-in
9533          */
9534         /* port-A for surround (rear panel)
9535          * according to codec#0 this is the HP jack
9536          */
9537         { 0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0 }, /* was 0x00 */
9538         /* route front PCM to HP */
9539         { 0x0e, AC_VERB_SET_CONNECT_SEL, 0x01 },
9540         /* port-B for mic-in (rear panel) with vref */
9541         { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
9542         /* port-C for line-in (rear panel) */
9543         { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
9544         /* port-D for Front */
9545         { 0x0b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
9546         { 0x0b, AC_VERB_SET_CONNECT_SEL, 0x00 },
9547         /* port-E for HP out (front panel) */
9548         /* this has to be set to VREF80 */
9549         { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
9550         /* route front PCM to HP */
9551         { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x00 },
9552         /* port-F for mic-in (front panel) with vref */
9553         { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
9554         /* port-G for CLFE (rear panel) */
9555         { 0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
9556         /* port-H for side (rear panel) */
9557         { 0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
9558         /* CD-in */
9559         { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
9560         /* route front mic to ADC1*/
9561         {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
9562         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9563         /* Unmute DAC0~3 & spdif out*/
9564         {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9565         {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9566         {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9567         {0x06, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9568         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9569         /* Unmute Mixer 14 (mic) 1c (Line in)*/
9570         {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9571         {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9572         {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9573         {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9574         
9575         /* Unmute Stereo Mixer 15 */
9576         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9577         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9578         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
9579         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c}, /* Output 0~12 step */
9580
9581         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9582         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9583         {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9584         {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9585         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9586         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9587         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9588         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9589         /* hp used DAC 3 (Front) */
9590         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
9591         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
9592         { }
9593 };
9594
9595 /* additional init verbs for ASUS laptops */
9596 static struct hda_verb alc861_asus_laptop_init_verbs[] = {
9597         { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x45 }, /* HP-out */
9598         { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2) }, /* mute line-in */
9599         { }
9600 };
9601
9602 /*
9603  * generic initialization of ADC, input mixers and output mixers
9604  */
9605 static struct hda_verb alc861_auto_init_verbs[] = {
9606         /*
9607          * Unmute ADC0 and set the default input to mic-in
9608          */
9609         /* {0x08, AC_VERB_SET_CONNECT_SEL, 0x00}, */
9610         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9611         
9612         /* Unmute DAC0~3 & spdif out*/
9613         {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
9614         {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
9615         {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
9616         {0x06, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
9617         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9618         
9619         /* Unmute Mixer 14 (mic) 1c (Line in)*/
9620         {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9621         {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9622         {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9623         {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9624         
9625         /* Unmute Stereo Mixer 15 */
9626         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9627         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9628         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
9629         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c},
9630
9631         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9632         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9633         {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9634         {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9635         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9636         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9637         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9638         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9639
9640         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
9641         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
9642         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
9643         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
9644         {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
9645         {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
9646         {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
9647         {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
9648
9649         {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},  /* set Mic 1 */
9650
9651         { }
9652 };
9653
9654 static struct hda_verb alc861_toshiba_init_verbs[] = {
9655         {0x0f, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
9656
9657         { }
9658 };
9659
9660 /* toggle speaker-output according to the hp-jack state */
9661 static void alc861_toshiba_automute(struct hda_codec *codec)
9662 {
9663         unsigned int present;
9664
9665         present = snd_hda_codec_read(codec, 0x0f, 0,
9666                                      AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
9667         snd_hda_codec_amp_stereo(codec, 0x16, HDA_INPUT, 0,
9668                                  HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0);
9669         snd_hda_codec_amp_stereo(codec, 0x1a, HDA_INPUT, 3,
9670                                  HDA_AMP_MUTE, present ? 0 : HDA_AMP_MUTE);
9671 }
9672
9673 static void alc861_toshiba_unsol_event(struct hda_codec *codec,
9674                                        unsigned int res)
9675 {
9676         if ((res >> 26) == ALC880_HP_EVENT)
9677                 alc861_toshiba_automute(codec);
9678 }
9679
9680 /* pcm configuration: identiacal with ALC880 */
9681 #define alc861_pcm_analog_playback      alc880_pcm_analog_playback
9682 #define alc861_pcm_analog_capture       alc880_pcm_analog_capture
9683 #define alc861_pcm_digital_playback     alc880_pcm_digital_playback
9684 #define alc861_pcm_digital_capture      alc880_pcm_digital_capture
9685
9686
9687 #define ALC861_DIGOUT_NID       0x07
9688
9689 static struct hda_channel_mode alc861_8ch_modes[1] = {
9690         { 8, NULL }
9691 };
9692
9693 static hda_nid_t alc861_dac_nids[4] = {
9694         /* front, surround, clfe, side */
9695         0x03, 0x06, 0x05, 0x04
9696 };
9697
9698 static hda_nid_t alc660_dac_nids[3] = {
9699         /* front, clfe, surround */
9700         0x03, 0x05, 0x06
9701 };
9702
9703 static hda_nid_t alc861_adc_nids[1] = {
9704         /* ADC0-2 */
9705         0x08,
9706 };
9707
9708 static struct hda_input_mux alc861_capture_source = {
9709         .num_items = 5,
9710         .items = {
9711                 { "Mic", 0x0 },
9712                 { "Front Mic", 0x3 },
9713                 { "Line", 0x1 },
9714                 { "CD", 0x4 },
9715                 { "Mixer", 0x5 },
9716         },
9717 };
9718
9719 /* fill in the dac_nids table from the parsed pin configuration */
9720 static int alc861_auto_fill_dac_nids(struct alc_spec *spec,
9721                                      const struct auto_pin_cfg *cfg)
9722 {
9723         int i;
9724         hda_nid_t nid;
9725
9726         spec->multiout.dac_nids = spec->private_dac_nids;
9727         for (i = 0; i < cfg->line_outs; i++) {
9728                 nid = cfg->line_out_pins[i];
9729                 if (nid) {
9730                         if (i >= ARRAY_SIZE(alc861_dac_nids))
9731                                 continue;
9732                         spec->multiout.dac_nids[i] = alc861_dac_nids[i];
9733                 }
9734         }
9735         spec->multiout.num_dacs = cfg->line_outs;
9736         return 0;
9737 }
9738
9739 /* add playback controls from the parsed DAC table */
9740 static int alc861_auto_create_multi_out_ctls(struct alc_spec *spec,
9741                                              const struct auto_pin_cfg *cfg)
9742 {
9743         char name[32];
9744         static const char *chname[4] = {
9745                 "Front", "Surround", NULL /*CLFE*/, "Side"
9746         };
9747         hda_nid_t nid;
9748         int i, idx, err;
9749
9750         for (i = 0; i < cfg->line_outs; i++) {
9751                 nid = spec->multiout.dac_nids[i];
9752                 if (!nid)
9753                         continue;
9754                 if (nid == 0x05) {
9755                         /* Center/LFE */
9756                         err = add_control(spec, ALC_CTL_BIND_MUTE,
9757                                           "Center Playback Switch",
9758                                           HDA_COMPOSE_AMP_VAL(nid, 1, 0,
9759                                                               HDA_OUTPUT));
9760                         if (err < 0)
9761                                 return err;
9762                         err = add_control(spec, ALC_CTL_BIND_MUTE,
9763                                           "LFE Playback Switch",
9764                                           HDA_COMPOSE_AMP_VAL(nid, 2, 0,
9765                                                               HDA_OUTPUT));
9766                         if (err < 0)
9767                                 return err;
9768                 } else {
9769                         for (idx = 0; idx < ARRAY_SIZE(alc861_dac_nids) - 1;
9770                              idx++)
9771                                 if (nid == alc861_dac_nids[idx])
9772                                         break;
9773                         sprintf(name, "%s Playback Switch", chname[idx]);
9774                         err = add_control(spec, ALC_CTL_BIND_MUTE, name,
9775                                           HDA_COMPOSE_AMP_VAL(nid, 3, 0,
9776                                                               HDA_OUTPUT));
9777                         if (err < 0)
9778                                 return err;
9779                 }
9780         }
9781         return 0;
9782 }
9783
9784 static int alc861_auto_create_hp_ctls(struct alc_spec *spec, hda_nid_t pin)
9785 {
9786         int err;
9787         hda_nid_t nid;
9788
9789         if (!pin)
9790                 return 0;
9791
9792         if ((pin >= 0x0b && pin <= 0x10) || pin == 0x1f || pin == 0x20) {
9793                 nid = 0x03;
9794                 err = add_control(spec, ALC_CTL_WIDGET_MUTE,
9795                                   "Headphone Playback Switch",
9796                                   HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT));
9797                 if (err < 0)
9798                         return err;
9799                 spec->multiout.hp_nid = nid;
9800         }
9801         return 0;
9802 }
9803
9804 /* create playback/capture controls for input pins */
9805 static int alc861_auto_create_analog_input_ctls(struct alc_spec *spec,
9806                                                 const struct auto_pin_cfg *cfg)
9807 {
9808         struct hda_input_mux *imux = &spec->private_imux;
9809         int i, err, idx, idx1;
9810
9811         for (i = 0; i < AUTO_PIN_LAST; i++) {
9812                 switch (cfg->input_pins[i]) {
9813                 case 0x0c:
9814                         idx1 = 1;
9815                         idx = 2;        /* Line In */
9816                         break;
9817                 case 0x0f:
9818                         idx1 = 2;
9819                         idx = 2;        /* Line In */
9820                         break;
9821                 case 0x0d:
9822                         idx1 = 0;
9823                         idx = 1;        /* Mic In */
9824                         break;
9825                 case 0x10:
9826                         idx1 = 3;
9827                         idx = 1;        /* Mic In */
9828                         break;
9829                 case 0x11:
9830                         idx1 = 4;
9831                         idx = 0;        /* CD */
9832                         break;
9833                 default:
9834                         continue;
9835                 }
9836
9837                 err = new_analog_input(spec, cfg->input_pins[i],
9838                                        auto_pin_cfg_labels[i], idx, 0x15);
9839                 if (err < 0)
9840                         return err;
9841
9842                 imux->items[imux->num_items].label = auto_pin_cfg_labels[i];
9843                 imux->items[imux->num_items].index = idx1;
9844                 imux->num_items++;
9845         }
9846         return 0;
9847 }
9848
9849 static struct snd_kcontrol_new alc861_capture_mixer[] = {
9850         HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
9851         HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
9852
9853         {
9854                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
9855                 /* The multiple "Capture Source" controls confuse alsamixer
9856                  * So call somewhat different..
9857                  *FIXME: the controls appear in the "playback" view!
9858                  */
9859                 /* .name = "Capture Source", */
9860                 .name = "Input Source",
9861                 .count = 1,
9862                 .info = alc_mux_enum_info,
9863                 .get = alc_mux_enum_get,
9864                 .put = alc_mux_enum_put,
9865         },
9866         { } /* end */
9867 };
9868
9869 static void alc861_auto_set_output_and_unmute(struct hda_codec *codec,
9870                                               hda_nid_t nid,
9871                                               int pin_type, int dac_idx)
9872 {
9873         /* set as output */
9874
9875         snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
9876                             pin_type);
9877         snd_hda_codec_write(codec, dac_idx, 0, AC_VERB_SET_AMP_GAIN_MUTE,
9878                             AMP_OUT_UNMUTE);
9879
9880 }
9881
9882 static void alc861_auto_init_multi_out(struct hda_codec *codec)
9883 {
9884         struct alc_spec *spec = codec->spec;
9885         int i;
9886
9887         alc_subsystem_id(codec, 0x0e, 0x0f, 0x0b);
9888         for (i = 0; i < spec->autocfg.line_outs; i++) {
9889                 hda_nid_t nid = spec->autocfg.line_out_pins[i];
9890                 int pin_type = get_pin_type(spec->autocfg.line_out_type);
9891                 if (nid)
9892                         alc861_auto_set_output_and_unmute(codec, nid, pin_type,
9893                                                           spec->multiout.dac_nids[i]);
9894         }
9895 }
9896
9897 static void alc861_auto_init_hp_out(struct hda_codec *codec)
9898 {
9899         struct alc_spec *spec = codec->spec;
9900         hda_nid_t pin;
9901
9902         pin = spec->autocfg.hp_pins[0];
9903         if (pin) /* connect to front */
9904                 alc861_auto_set_output_and_unmute(codec, pin, PIN_HP,
9905                                                   spec->multiout.dac_nids[0]);
9906 }
9907
9908 static void alc861_auto_init_analog_input(struct hda_codec *codec)
9909 {
9910         struct alc_spec *spec = codec->spec;
9911         int i;
9912
9913         for (i = 0; i < AUTO_PIN_LAST; i++) {
9914                 hda_nid_t nid = spec->autocfg.input_pins[i];
9915                 if (nid >= 0x0c && nid <= 0x11) {
9916                         snd_hda_codec_write(codec, nid, 0,
9917                                             AC_VERB_SET_PIN_WIDGET_CONTROL,
9918                                             i <= AUTO_PIN_FRONT_MIC ?
9919                                             PIN_VREF80 : PIN_IN);
9920                 }
9921         }
9922 }
9923
9924 /* parse the BIOS configuration and set up the alc_spec */
9925 /* return 1 if successful, 0 if the proper config is not found,
9926  * or a negative error code
9927  */
9928 static int alc861_parse_auto_config(struct hda_codec *codec)
9929 {
9930         struct alc_spec *spec = codec->spec;
9931         int err;
9932         static hda_nid_t alc861_ignore[] = { 0x1d, 0 };
9933
9934         err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
9935                                            alc861_ignore);
9936         if (err < 0)
9937                 return err;
9938         if (!spec->autocfg.line_outs)
9939                 return 0; /* can't find valid BIOS pin config */
9940
9941         err = alc861_auto_fill_dac_nids(spec, &spec->autocfg);
9942         if (err < 0)
9943                 return err;
9944         err = alc861_auto_create_multi_out_ctls(spec, &spec->autocfg);
9945         if (err < 0)
9946                 return err;
9947         err = alc861_auto_create_hp_ctls(spec, spec->autocfg.hp_pins[0]);
9948         if (err < 0)
9949                 return err;
9950         err = alc861_auto_create_analog_input_ctls(spec, &spec->autocfg);
9951         if (err < 0)
9952                 return err;
9953
9954         spec->multiout.max_channels = spec->multiout.num_dacs * 2;
9955
9956         if (spec->autocfg.dig_out_pin)
9957                 spec->multiout.dig_out_nid = ALC861_DIGOUT_NID;
9958
9959         if (spec->kctl_alloc)
9960                 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
9961
9962         spec->init_verbs[spec->num_init_verbs++] = alc861_auto_init_verbs;
9963
9964         spec->num_mux_defs = 1;
9965         spec->input_mux = &spec->private_imux;
9966
9967         spec->adc_nids = alc861_adc_nids;
9968         spec->num_adc_nids = ARRAY_SIZE(alc861_adc_nids);
9969         spec->mixers[spec->num_mixers] = alc861_capture_mixer;
9970         spec->num_mixers++;
9971
9972         return 1;
9973 }
9974
9975 /* additional initialization for auto-configuration model */
9976 static void alc861_auto_init(struct hda_codec *codec)
9977 {
9978         alc861_auto_init_multi_out(codec);
9979         alc861_auto_init_hp_out(codec);
9980         alc861_auto_init_analog_input(codec);
9981 }
9982
9983 #ifdef CONFIG_SND_HDA_POWER_SAVE
9984 static struct hda_amp_list alc861_loopbacks[] = {
9985         { 0x15, HDA_INPUT, 0 },
9986         { 0x15, HDA_INPUT, 1 },
9987         { 0x15, HDA_INPUT, 2 },
9988         { 0x15, HDA_INPUT, 3 },
9989         { } /* end */
9990 };
9991 #endif
9992
9993
9994 /*
9995  * configuration and preset
9996  */
9997 static const char *alc861_models[ALC861_MODEL_LAST] = {
9998         [ALC861_3ST]            = "3stack",
9999         [ALC660_3ST]            = "3stack-660",
10000         [ALC861_3ST_DIG]        = "3stack-dig",
10001         [ALC861_6ST_DIG]        = "6stack-dig",
10002         [ALC861_UNIWILL_M31]    = "uniwill-m31",
10003         [ALC861_TOSHIBA]        = "toshiba",
10004         [ALC861_ASUS]           = "asus",
10005         [ALC861_ASUS_LAPTOP]    = "asus-laptop",
10006         [ALC861_AUTO]           = "auto",
10007 };
10008
10009 static struct snd_pci_quirk alc861_cfg_tbl[] = {
10010         SND_PCI_QUIRK(0x1043, 0x1205, "ASUS W7J", ALC861_3ST),
10011         SND_PCI_QUIRK(0x1043, 0x1335, "ASUS F2/3", ALC861_ASUS_LAPTOP),
10012         SND_PCI_QUIRK(0x1043, 0x1338, "ASUS F2/3", ALC861_ASUS_LAPTOP),
10013         SND_PCI_QUIRK(0x1043, 0x13d7, "ASUS A9rp", ALC861_ASUS_LAPTOP),
10014         SND_PCI_QUIRK(0x1584, 0x9075, "Airis Praxis N1212", ALC861_ASUS_LAPTOP),
10015         SND_PCI_QUIRK(0x1043, 0x1393, "ASUS", ALC861_ASUS),
10016         SND_PCI_QUIRK(0x1043, 0x81cb, "ASUS P1-AH2", ALC861_3ST_DIG),
10017         SND_PCI_QUIRK(0x1179, 0xff00, "Toshiba", ALC861_TOSHIBA),
10018         /* FIXME: the entry below breaks Toshiba A100 (model=auto works!)
10019          *        Any other models that need this preset?
10020          */
10021         /* SND_PCI_QUIRK(0x1179, 0xff10, "Toshiba", ALC861_TOSHIBA), */
10022         SND_PCI_QUIRK(0x1584, 0x9072, "Uniwill m31", ALC861_UNIWILL_M31),
10023         SND_PCI_QUIRK(0x1584, 0x9075, "Uniwill", ALC861_UNIWILL_M31),
10024         SND_PCI_QUIRK(0x1584, 0x2b01, "Uniwill X40AIx", ALC861_UNIWILL_M31),
10025         SND_PCI_QUIRK(0x1849, 0x0660, "Asrock 939SLI32", ALC660_3ST),
10026         SND_PCI_QUIRK(0x8086, 0xd600, "Intel", ALC861_3ST),
10027         SND_PCI_QUIRK(0x1462, 0x7254, "HP dx2200 (MSI MS-7254)", ALC861_3ST),
10028         SND_PCI_QUIRK(0x1462, 0x7297, "HP dx2250 (MSI MS-7297)", ALC861_3ST),
10029         {}
10030 };
10031
10032 static struct alc_config_preset alc861_presets[] = {
10033         [ALC861_3ST] = {
10034                 .mixers = { alc861_3ST_mixer },
10035                 .init_verbs = { alc861_threestack_init_verbs },
10036                 .num_dacs = ARRAY_SIZE(alc861_dac_nids),
10037                 .dac_nids = alc861_dac_nids,
10038                 .num_channel_mode = ARRAY_SIZE(alc861_threestack_modes),
10039                 .channel_mode = alc861_threestack_modes,
10040                 .need_dac_fix = 1,
10041                 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
10042                 .adc_nids = alc861_adc_nids,
10043                 .input_mux = &alc861_capture_source,
10044         },
10045         [ALC861_3ST_DIG] = {
10046                 .mixers = { alc861_base_mixer },
10047                 .init_verbs = { alc861_threestack_init_verbs },
10048                 .num_dacs = ARRAY_SIZE(alc861_dac_nids),
10049                 .dac_nids = alc861_dac_nids,
10050                 .dig_out_nid = ALC861_DIGOUT_NID,
10051                 .num_channel_mode = ARRAY_SIZE(alc861_threestack_modes),
10052                 .channel_mode = alc861_threestack_modes,
10053                 .need_dac_fix = 1,
10054                 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
10055                 .adc_nids = alc861_adc_nids,
10056                 .input_mux = &alc861_capture_source,
10057         },
10058         [ALC861_6ST_DIG] = {
10059                 .mixers = { alc861_base_mixer },
10060                 .init_verbs = { alc861_base_init_verbs },
10061                 .num_dacs = ARRAY_SIZE(alc861_dac_nids),
10062                 .dac_nids = alc861_dac_nids,
10063                 .dig_out_nid = ALC861_DIGOUT_NID,
10064                 .num_channel_mode = ARRAY_SIZE(alc861_8ch_modes),
10065                 .channel_mode = alc861_8ch_modes,
10066                 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
10067                 .adc_nids = alc861_adc_nids,
10068                 .input_mux = &alc861_capture_source,
10069         },
10070         [ALC660_3ST] = {
10071                 .mixers = { alc861_3ST_mixer },
10072                 .init_verbs = { alc861_threestack_init_verbs },
10073                 .num_dacs = ARRAY_SIZE(alc660_dac_nids),
10074                 .dac_nids = alc660_dac_nids,
10075                 .num_channel_mode = ARRAY_SIZE(alc861_threestack_modes),
10076                 .channel_mode = alc861_threestack_modes,
10077                 .need_dac_fix = 1,
10078                 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
10079                 .adc_nids = alc861_adc_nids,
10080                 .input_mux = &alc861_capture_source,
10081         },
10082         [ALC861_UNIWILL_M31] = {
10083                 .mixers = { alc861_uniwill_m31_mixer },
10084                 .init_verbs = { alc861_uniwill_m31_init_verbs },
10085                 .num_dacs = ARRAY_SIZE(alc861_dac_nids),
10086                 .dac_nids = alc861_dac_nids,
10087                 .dig_out_nid = ALC861_DIGOUT_NID,
10088                 .num_channel_mode = ARRAY_SIZE(alc861_uniwill_m31_modes),
10089                 .channel_mode = alc861_uniwill_m31_modes,
10090                 .need_dac_fix = 1,
10091                 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
10092                 .adc_nids = alc861_adc_nids,
10093                 .input_mux = &alc861_capture_source,
10094         },
10095         [ALC861_TOSHIBA] = {
10096                 .mixers = { alc861_toshiba_mixer },
10097                 .init_verbs = { alc861_base_init_verbs,
10098                                 alc861_toshiba_init_verbs },
10099                 .num_dacs = ARRAY_SIZE(alc861_dac_nids),
10100                 .dac_nids = alc861_dac_nids,
10101                 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
10102                 .channel_mode = alc883_3ST_2ch_modes,
10103                 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
10104                 .adc_nids = alc861_adc_nids,
10105                 .input_mux = &alc861_capture_source,
10106                 .unsol_event = alc861_toshiba_unsol_event,
10107                 .init_hook = alc861_toshiba_automute,
10108         },
10109         [ALC861_ASUS] = {
10110                 .mixers = { alc861_asus_mixer },
10111                 .init_verbs = { alc861_asus_init_verbs },
10112                 .num_dacs = ARRAY_SIZE(alc861_dac_nids),
10113                 .dac_nids = alc861_dac_nids,
10114                 .dig_out_nid = ALC861_DIGOUT_NID,
10115                 .num_channel_mode = ARRAY_SIZE(alc861_asus_modes),
10116                 .channel_mode = alc861_asus_modes,
10117                 .need_dac_fix = 1,
10118                 .hp_nid = 0x06,
10119                 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
10120                 .adc_nids = alc861_adc_nids,
10121                 .input_mux = &alc861_capture_source,
10122         },
10123         [ALC861_ASUS_LAPTOP] = {
10124                 .mixers = { alc861_toshiba_mixer, alc861_asus_laptop_mixer },
10125                 .init_verbs = { alc861_asus_init_verbs,
10126                                 alc861_asus_laptop_init_verbs },
10127                 .num_dacs = ARRAY_SIZE(alc861_dac_nids),
10128                 .dac_nids = alc861_dac_nids,
10129                 .dig_out_nid = ALC861_DIGOUT_NID,
10130                 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
10131                 .channel_mode = alc883_3ST_2ch_modes,
10132                 .need_dac_fix = 1,
10133                 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
10134                 .adc_nids = alc861_adc_nids,
10135                 .input_mux = &alc861_capture_source,
10136         },
10137 };
10138
10139
10140 static int patch_alc861(struct hda_codec *codec)
10141 {
10142         struct alc_spec *spec;
10143         int board_config;
10144         int err;
10145
10146         spec = kzalloc(sizeof(*spec), GFP_KERNEL);
10147         if (spec == NULL)
10148                 return -ENOMEM;
10149
10150         codec->spec = spec;
10151
10152         board_config = snd_hda_check_board_config(codec, ALC861_MODEL_LAST,
10153                                                   alc861_models,
10154                                                   alc861_cfg_tbl);
10155
10156         if (board_config < 0) {
10157                 printk(KERN_INFO "hda_codec: Unknown model for ALC861, "
10158                        "trying auto-probe from BIOS...\n");
10159                 board_config = ALC861_AUTO;
10160         }
10161
10162         if (board_config == ALC861_AUTO) {
10163                 /* automatic parse from the BIOS config */
10164                 err = alc861_parse_auto_config(codec);
10165                 if (err < 0) {
10166                         alc_free(codec);
10167                         return err;
10168                 } else if (!err) {
10169                         printk(KERN_INFO
10170                                "hda_codec: Cannot set up configuration "
10171                                "from BIOS.  Using base mode...\n");
10172                    board_config = ALC861_3ST_DIG;
10173                 }
10174         }
10175
10176         if (board_config != ALC861_AUTO)
10177                 setup_preset(spec, &alc861_presets[board_config]);
10178
10179         spec->stream_name_analog = "ALC861 Analog";
10180         spec->stream_analog_playback = &alc861_pcm_analog_playback;
10181         spec->stream_analog_capture = &alc861_pcm_analog_capture;
10182
10183         spec->stream_name_digital = "ALC861 Digital";
10184         spec->stream_digital_playback = &alc861_pcm_digital_playback;
10185         spec->stream_digital_capture = &alc861_pcm_digital_capture;
10186
10187         codec->patch_ops = alc_patch_ops;
10188         if (board_config == ALC861_AUTO)
10189                 spec->init_hook = alc861_auto_init;
10190 #ifdef CONFIG_SND_HDA_POWER_SAVE
10191         if (!spec->loopback.amplist)
10192                 spec->loopback.amplist = alc861_loopbacks;
10193 #endif
10194                 
10195         return 0;
10196 }
10197
10198 /*
10199  * ALC861-VD support
10200  *
10201  * Based on ALC882
10202  *
10203  * In addition, an independent DAC
10204  */
10205 #define ALC861VD_DIGOUT_NID     0x06
10206
10207 static hda_nid_t alc861vd_dac_nids[4] = {
10208         /* front, surr, clfe, side surr */
10209         0x02, 0x03, 0x04, 0x05
10210 };
10211
10212 /* dac_nids for ALC660vd are in a different order - according to
10213  * Realtek's driver.
10214  * This should probably tesult in a different mixer for 6stack models
10215  * of ALC660vd codecs, but for now there is only 3stack mixer
10216  * - and it is the same as in 861vd.
10217  * adc_nids in ALC660vd are (is) the same as in 861vd
10218  */
10219 static hda_nid_t alc660vd_dac_nids[3] = {
10220         /* front, rear, clfe, rear_surr */
10221         0x02, 0x04, 0x03
10222 };
10223
10224 static hda_nid_t alc861vd_adc_nids[1] = {
10225         /* ADC0 */
10226         0x09,
10227 };
10228
10229 /* input MUX */
10230 /* FIXME: should be a matrix-type input source selection */
10231 static struct hda_input_mux alc861vd_capture_source = {
10232         .num_items = 4,
10233         .items = {
10234                 { "Mic", 0x0 },
10235                 { "Front Mic", 0x1 },
10236                 { "Line", 0x2 },
10237                 { "CD", 0x4 },
10238         },
10239 };
10240
10241 static struct hda_input_mux alc861vd_dallas_capture_source = {
10242         .num_items = 3,
10243         .items = {
10244                 { "Front Mic", 0x0 },
10245                 { "ATAPI Mic", 0x1 },
10246                 { "Line In", 0x5 },
10247         },
10248 };
10249
10250 static struct hda_input_mux alc861vd_hp_capture_source = {
10251         .num_items = 2,
10252         .items = {
10253                 { "Front Mic", 0x0 },
10254                 { "ATAPI Mic", 0x1 },
10255         },
10256 };
10257
10258 #define alc861vd_mux_enum_info alc_mux_enum_info
10259 #define alc861vd_mux_enum_get alc_mux_enum_get
10260
10261 static int alc861vd_mux_enum_put(struct snd_kcontrol *kcontrol,
10262                                 struct snd_ctl_elem_value *ucontrol)
10263 {
10264         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
10265         struct alc_spec *spec = codec->spec;
10266         const struct hda_input_mux *imux = spec->input_mux;
10267         unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
10268         static hda_nid_t capture_mixers[1] = { 0x22 };
10269         hda_nid_t nid = capture_mixers[adc_idx];
10270         unsigned int *cur_val = &spec->cur_mux[adc_idx];
10271         unsigned int i, idx;
10272
10273         idx = ucontrol->value.enumerated.item[0];
10274         if (idx >= imux->num_items)
10275                 idx = imux->num_items - 1;
10276         if (*cur_val == idx)
10277                 return 0;
10278         for (i = 0; i < imux->num_items; i++) {
10279                 unsigned int v = (i == idx) ? 0 : HDA_AMP_MUTE;
10280                 snd_hda_codec_amp_stereo(codec, nid, HDA_INPUT,
10281                                          imux->items[i].index,
10282                                          HDA_AMP_MUTE, v);
10283         }
10284         *cur_val = idx;
10285         return 1;
10286 }
10287
10288 /*
10289  * 2ch mode
10290  */
10291 static struct hda_channel_mode alc861vd_3stack_2ch_modes[1] = {
10292         { 2, NULL }
10293 };
10294
10295 /*
10296  * 6ch mode
10297  */
10298 static struct hda_verb alc861vd_6stack_ch6_init[] = {
10299         { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
10300         { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
10301         { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
10302         { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
10303         { } /* end */
10304 };
10305
10306 /*
10307  * 8ch mode
10308  */
10309 static struct hda_verb alc861vd_6stack_ch8_init[] = {
10310         { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
10311         { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
10312         { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
10313         { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
10314         { } /* end */
10315 };
10316
10317 static struct hda_channel_mode alc861vd_6stack_modes[2] = {
10318         { 6, alc861vd_6stack_ch6_init },
10319         { 8, alc861vd_6stack_ch8_init },
10320 };
10321
10322 static struct snd_kcontrol_new alc861vd_chmode_mixer[] = {
10323         {
10324                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
10325                 .name = "Channel Mode",
10326                 .info = alc_ch_mode_info,
10327                 .get = alc_ch_mode_get,
10328                 .put = alc_ch_mode_put,
10329         },
10330         { } /* end */
10331 };
10332
10333 static struct snd_kcontrol_new alc861vd_capture_mixer[] = {
10334         HDA_CODEC_VOLUME("Capture Volume", 0x09, 0x0, HDA_INPUT),
10335         HDA_CODEC_MUTE("Capture Switch", 0x09, 0x0, HDA_INPUT),
10336
10337         {
10338                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
10339                 /* The multiple "Capture Source" controls confuse alsamixer
10340                  * So call somewhat different..
10341                  *FIXME: the controls appear in the "playback" view!
10342                  */
10343                 /* .name = "Capture Source", */
10344                 .name = "Input Source",
10345                 .count = 1,
10346                 .info = alc861vd_mux_enum_info,
10347                 .get = alc861vd_mux_enum_get,
10348                 .put = alc861vd_mux_enum_put,
10349         },
10350         { } /* end */
10351 };
10352
10353 /* Pin assignment: Front=0x14, Rear=0x15, CLFE=0x16, Side=0x17
10354  *                 Mic=0x18, Front Mic=0x19, Line-In=0x1a, HP=0x1b
10355  */
10356 static struct snd_kcontrol_new alc861vd_6st_mixer[] = {
10357         HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT),
10358         HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
10359
10360         HDA_CODEC_VOLUME("Surround Playback Volume", 0x03, 0x0, HDA_OUTPUT),
10361         HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
10362
10363         HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x04, 1, 0x0,
10364                                 HDA_OUTPUT),
10365         HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x04, 2, 0x0,
10366                                 HDA_OUTPUT),
10367         HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
10368         HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
10369
10370         HDA_CODEC_VOLUME("Side Playback Volume", 0x05, 0x0, HDA_OUTPUT),
10371         HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT),
10372
10373         HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
10374
10375         HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
10376         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
10377         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
10378
10379         HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
10380         HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
10381         HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
10382
10383         HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
10384         HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
10385
10386         HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
10387         HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
10388
10389         HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
10390         HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
10391
10392         { } /* end */
10393 };
10394
10395 static struct snd_kcontrol_new alc861vd_3st_mixer[] = {
10396         HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT),
10397         HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
10398
10399         HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
10400
10401         HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
10402         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
10403         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
10404
10405         HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
10406         HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
10407         HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
10408
10409         HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
10410         HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
10411
10412         HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
10413         HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
10414
10415         HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
10416         HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
10417
10418         { } /* end */
10419 };
10420
10421 static struct snd_kcontrol_new alc861vd_lenovo_mixer[] = {
10422         HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT),
10423         /*HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),*/
10424         HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT),
10425
10426         HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
10427
10428         HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
10429         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
10430         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
10431
10432         HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
10433         HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
10434         HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
10435
10436         HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
10437         HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
10438
10439         { } /* end */
10440 };
10441
10442 /* Pin assignment: Front=0x14, HP = 0x15,
10443  *                 Front Mic=0x18, ATAPI Mic = 0x19, Line In = 0x1d
10444  */
10445 static struct snd_kcontrol_new alc861vd_dallas_mixer[] = {
10446         HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT),
10447         HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
10448         HDA_CODEC_VOLUME("Headphone Playback Volume", 0x03, 0x0, HDA_OUTPUT),
10449         HDA_BIND_MUTE("Headphone Playback Switch", 0x0d, 2, HDA_INPUT),
10450         HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
10451         HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
10452         HDA_CODEC_VOLUME("ATAPI Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
10453         HDA_CODEC_MUTE("ATAPI Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
10454         HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x05, HDA_INPUT),
10455         HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x05, HDA_INPUT),
10456         { } /* end */
10457 };
10458
10459 /* Pin assignment: Speaker=0x14, Line-out = 0x15,
10460  *                 Front Mic=0x18, ATAPI Mic = 0x19,
10461  */
10462 static struct snd_kcontrol_new alc861vd_hp_mixer[] = {
10463         HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT),
10464         HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
10465         HDA_CODEC_VOLUME("Headphone Playback Volume", 0x03, 0x0, HDA_OUTPUT),
10466         HDA_BIND_MUTE("Headphone Playback Switch", 0x0d, 2, HDA_INPUT),
10467         HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
10468         HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
10469         HDA_CODEC_VOLUME("ATAPI Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
10470         HDA_CODEC_MUTE("ATAPI Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
10471         
10472         { } /* end */
10473 };
10474
10475 /*
10476  * generic initialization of ADC, input mixers and output mixers
10477  */
10478 static struct hda_verb alc861vd_volume_init_verbs[] = {
10479         /*
10480          * Unmute ADC0 and set the default input to mic-in
10481          */
10482         {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
10483         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
10484
10485         /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of
10486          * the analog-loopback mixer widget
10487          */
10488         /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
10489         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
10490         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
10491         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
10492         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
10493         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
10494
10495         /* Capture mixer: unmute Mic, F-Mic, Line, CD inputs */
10496         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
10497         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
10498         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
10499         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
10500
10501         /*
10502          * Set up output mixers (0x02 - 0x05)
10503          */
10504         /* set vol=0 to output mixers */
10505         {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
10506         {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
10507         {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
10508         {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
10509
10510         /* set up input amps for analog loopback */
10511         /* Amp Indices: DAC = 0, mixer = 1 */
10512         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
10513         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
10514         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
10515         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
10516         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
10517         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
10518         {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
10519         {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
10520
10521         { }
10522 };
10523
10524 /*
10525  * 3-stack pin configuration:
10526  * front = 0x14, mic/clfe = 0x18, HP = 0x19, line/surr = 0x1a, f-mic = 0x1b
10527  */
10528 static struct hda_verb alc861vd_3stack_init_verbs[] = {
10529         /*
10530          * Set pin mode and muting
10531          */
10532         /* set front pin widgets 0x14 for output */
10533         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
10534         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
10535         {0x14, AC_VERB_SET_CONNECT_SEL, 0x00},
10536
10537         /* Mic (rear) pin: input vref at 80% */
10538         {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
10539         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
10540         /* Front Mic pin: input vref at 80% */
10541         {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
10542         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
10543         /* Line In pin: input */
10544         {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
10545         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
10546         /* Line-2 In: Headphone output (output 0 - 0x0c) */
10547         {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
10548         {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
10549         {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
10550         /* CD pin widget for input */
10551         {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
10552
10553         { }
10554 };
10555
10556 /*
10557  * 6-stack pin configuration:
10558  */
10559 static struct hda_verb alc861vd_6stack_init_verbs[] = {
10560         /*
10561          * Set pin mode and muting
10562          */
10563         /* set front pin widgets 0x14 for output */
10564         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
10565         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
10566         {0x14, AC_VERB_SET_CONNECT_SEL, 0x00},
10567
10568         /* Rear Pin: output 1 (0x0d) */
10569         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
10570         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
10571         {0x15, AC_VERB_SET_CONNECT_SEL, 0x01},
10572         /* CLFE Pin: output 2 (0x0e) */
10573         {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
10574         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
10575         {0x16, AC_VERB_SET_CONNECT_SEL, 0x02},
10576         /* Side Pin: output 3 (0x0f) */
10577         {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
10578         {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
10579         {0x17, AC_VERB_SET_CONNECT_SEL, 0x03},
10580
10581         /* Mic (rear) pin: input vref at 80% */
10582         {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
10583         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
10584         /* Front Mic pin: input vref at 80% */
10585         {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
10586         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
10587         /* Line In pin: input */
10588         {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
10589         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
10590         /* Line-2 In: Headphone output (output 0 - 0x0c) */
10591         {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
10592         {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
10593         {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
10594         /* CD pin widget for input */
10595         {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
10596
10597         { }
10598 };
10599
10600 static struct hda_verb alc861vd_eapd_verbs[] = {
10601         {0x14, AC_VERB_SET_EAPD_BTLENABLE, 2},
10602         { }
10603 };
10604
10605 static struct hda_verb alc861vd_lenovo_unsol_verbs[] = {
10606         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
10607         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
10608         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)},
10609         {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
10610         {0x18, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_MIC_EVENT}, 
10611         {}
10612 };
10613
10614 /* toggle speaker-output according to the hp-jack state */
10615 static void alc861vd_lenovo_hp_automute(struct hda_codec *codec)
10616 {
10617         unsigned int present;
10618         unsigned char bits;
10619
10620         present = snd_hda_codec_read(codec, 0x1b, 0,
10621                                      AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
10622         bits = present ? HDA_AMP_MUTE : 0;
10623         snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0,
10624                                  HDA_AMP_MUTE, bits);
10625 }
10626
10627 static void alc861vd_lenovo_mic_automute(struct hda_codec *codec)
10628 {
10629         unsigned int present;
10630         unsigned char bits;
10631
10632         present = snd_hda_codec_read(codec, 0x18, 0,
10633                                      AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
10634         bits = present ? HDA_AMP_MUTE : 0;
10635         snd_hda_codec_amp_stereo(codec, 0x0b, HDA_INPUT, 1,
10636                                  HDA_AMP_MUTE, bits);
10637 }
10638
10639 static void alc861vd_lenovo_automute(struct hda_codec *codec)
10640 {
10641         alc861vd_lenovo_hp_automute(codec);
10642         alc861vd_lenovo_mic_automute(codec);
10643 }
10644
10645 static void alc861vd_lenovo_unsol_event(struct hda_codec *codec,
10646                                         unsigned int res)
10647 {
10648         switch (res >> 26) {
10649         case ALC880_HP_EVENT:
10650                 alc861vd_lenovo_hp_automute(codec);
10651                 break;
10652         case ALC880_MIC_EVENT:
10653                 alc861vd_lenovo_mic_automute(codec);
10654                 break;
10655         }
10656 }
10657
10658 static struct hda_verb alc861vd_dallas_verbs[] = {
10659         {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
10660         {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
10661         {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
10662         {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
10663
10664         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
10665         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
10666         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
10667         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
10668         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
10669         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
10670         {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
10671         {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
10672         
10673         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
10674         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
10675         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
10676         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
10677         {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
10678         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
10679         {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
10680         {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
10681
10682         {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF50},
10683         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
10684         {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF50},
10685         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
10686         {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
10687         {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
10688         {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
10689         {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
10690
10691         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
10692         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
10693         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
10694         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
10695
10696         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
10697         {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},  
10698         {0x15, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
10699
10700         { } /* end */
10701 };
10702
10703 /* toggle speaker-output according to the hp-jack state */
10704 static void alc861vd_dallas_automute(struct hda_codec *codec)
10705 {
10706         unsigned int present;
10707
10708         present = snd_hda_codec_read(codec, 0x15, 0,
10709                                      AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
10710         snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0,
10711                                  HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0);
10712 }
10713
10714 static void alc861vd_dallas_unsol_event(struct hda_codec *codec, unsigned int res)
10715 {
10716         if ((res >> 26) == ALC880_HP_EVENT)
10717                 alc861vd_dallas_automute(codec);
10718 }
10719
10720 #ifdef CONFIG_SND_HDA_POWER_SAVE
10721 #define alc861vd_loopbacks      alc880_loopbacks
10722 #endif
10723
10724 /* pcm configuration: identiacal with ALC880 */
10725 #define alc861vd_pcm_analog_playback    alc880_pcm_analog_playback
10726 #define alc861vd_pcm_analog_capture     alc880_pcm_analog_capture
10727 #define alc861vd_pcm_digital_playback   alc880_pcm_digital_playback
10728 #define alc861vd_pcm_digital_capture    alc880_pcm_digital_capture
10729
10730 /*
10731  * configuration and preset
10732  */
10733 static const char *alc861vd_models[ALC861VD_MODEL_LAST] = {
10734         [ALC660VD_3ST]          = "3stack-660",
10735         [ALC660VD_3ST_DIG]      = "3stack-660-digout",
10736         [ALC861VD_3ST]          = "3stack",
10737         [ALC861VD_3ST_DIG]      = "3stack-digout",
10738         [ALC861VD_6ST_DIG]      = "6stack-digout",
10739         [ALC861VD_LENOVO]       = "lenovo",
10740         [ALC861VD_DALLAS]       = "dallas",
10741         [ALC861VD_HP]           = "hp",
10742         [ALC861VD_AUTO]         = "auto",
10743 };
10744
10745 static struct snd_pci_quirk alc861vd_cfg_tbl[] = {
10746         SND_PCI_QUIRK(0x1043, 0x12e2, "Asus z35m", ALC660VD_3ST),
10747         SND_PCI_QUIRK(0x1043, 0x1339, "Asus G1", ALC660VD_3ST),
10748         SND_PCI_QUIRK(0x1043, 0x81e7, "ASUS", ALC660VD_3ST_DIG),
10749         SND_PCI_QUIRK(0x10de, 0x03f0, "Realtek ALC660 demo", ALC660VD_3ST),
10750         SND_PCI_QUIRK(0x1019, 0xa88d, "Realtek ALC660 demo", ALC660VD_3ST),
10751
10752         /*SND_PCI_QUIRK(0x1179, 0xff00, "DALLAS", ALC861VD_DALLAS),*/ /*lenovo*/
10753         SND_PCI_QUIRK(0x1179, 0xff01, "DALLAS", ALC861VD_DALLAS),
10754         SND_PCI_QUIRK(0x17aa, 0x3802, "Lenovo 3000 C200", ALC861VD_LENOVO),
10755         SND_PCI_QUIRK(0x17aa, 0x2066, "Lenovo", ALC861VD_LENOVO),
10756         SND_PCI_QUIRK(0x1179, 0xff00, "Toshiba A135", ALC861VD_LENOVO),
10757         SND_PCI_QUIRK(0x1179, 0xff03, "Toshiba P205", ALC861VD_LENOVO),
10758         SND_PCI_QUIRK(0x1565, 0x820d, "Biostar NF61S SE", ALC861VD_6ST_DIG),
10759         SND_PCI_QUIRK(0x1849, 0x0862, "ASRock K8NF6G-VSTA", ALC861VD_6ST_DIG),
10760         SND_PCI_QUIRK(0x103c, 0x30bf, "HP TX1000", ALC861VD_HP),
10761         {}
10762 };
10763
10764 static struct alc_config_preset alc861vd_presets[] = {
10765         [ALC660VD_3ST] = {
10766                 .mixers = { alc861vd_3st_mixer },
10767                 .init_verbs = { alc861vd_volume_init_verbs,
10768                                  alc861vd_3stack_init_verbs },
10769                 .num_dacs = ARRAY_SIZE(alc660vd_dac_nids),
10770                 .dac_nids = alc660vd_dac_nids,
10771                 .num_adc_nids = ARRAY_SIZE(alc861vd_adc_nids),
10772                 .adc_nids = alc861vd_adc_nids,
10773                 .num_channel_mode = ARRAY_SIZE(alc861vd_3stack_2ch_modes),
10774                 .channel_mode = alc861vd_3stack_2ch_modes,
10775                 .input_mux = &alc861vd_capture_source,
10776         },
10777         [ALC660VD_3ST_DIG] = {
10778                 .mixers = { alc861vd_3st_mixer },
10779                 .init_verbs = { alc861vd_volume_init_verbs,
10780                                  alc861vd_3stack_init_verbs },
10781                 .num_dacs = ARRAY_SIZE(alc660vd_dac_nids),
10782                 .dac_nids = alc660vd_dac_nids,
10783                 .dig_out_nid = ALC861VD_DIGOUT_NID,
10784                 .num_adc_nids = ARRAY_SIZE(alc861vd_adc_nids),
10785                 .adc_nids = alc861vd_adc_nids,
10786                 .num_channel_mode = ARRAY_SIZE(alc861vd_3stack_2ch_modes),
10787                 .channel_mode = alc861vd_3stack_2ch_modes,
10788                 .input_mux = &alc861vd_capture_source,
10789         },
10790         [ALC861VD_3ST] = {
10791                 .mixers = { alc861vd_3st_mixer },
10792                 .init_verbs = { alc861vd_volume_init_verbs,
10793                                  alc861vd_3stack_init_verbs },
10794                 .num_dacs = ARRAY_SIZE(alc861vd_dac_nids),
10795                 .dac_nids = alc861vd_dac_nids,
10796                 .num_channel_mode = ARRAY_SIZE(alc861vd_3stack_2ch_modes),
10797                 .channel_mode = alc861vd_3stack_2ch_modes,
10798                 .input_mux = &alc861vd_capture_source,
10799         },
10800         [ALC861VD_3ST_DIG] = {
10801                 .mixers = { alc861vd_3st_mixer },
10802                 .init_verbs = { alc861vd_volume_init_verbs,
10803                                  alc861vd_3stack_init_verbs },
10804                 .num_dacs = ARRAY_SIZE(alc861vd_dac_nids),
10805                 .dac_nids = alc861vd_dac_nids,
10806                 .dig_out_nid = ALC861VD_DIGOUT_NID,
10807                 .num_channel_mode = ARRAY_SIZE(alc861vd_3stack_2ch_modes),
10808                 .channel_mode = alc861vd_3stack_2ch_modes,
10809                 .input_mux = &alc861vd_capture_source,
10810         },
10811         [ALC861VD_6ST_DIG] = {
10812                 .mixers = { alc861vd_6st_mixer, alc861vd_chmode_mixer },
10813                 .init_verbs = { alc861vd_volume_init_verbs,
10814                                 alc861vd_6stack_init_verbs },
10815                 .num_dacs = ARRAY_SIZE(alc861vd_dac_nids),
10816                 .dac_nids = alc861vd_dac_nids,
10817                 .dig_out_nid = ALC861VD_DIGOUT_NID,
10818                 .num_channel_mode = ARRAY_SIZE(alc861vd_6stack_modes),
10819                 .channel_mode = alc861vd_6stack_modes,
10820                 .input_mux = &alc861vd_capture_source,
10821         },
10822         [ALC861VD_LENOVO] = {
10823                 .mixers = { alc861vd_lenovo_mixer },
10824                 .init_verbs = { alc861vd_volume_init_verbs,
10825                                 alc861vd_3stack_init_verbs,
10826                                 alc861vd_eapd_verbs,
10827                                 alc861vd_lenovo_unsol_verbs },
10828                 .num_dacs = ARRAY_SIZE(alc660vd_dac_nids),
10829                 .dac_nids = alc660vd_dac_nids,
10830                 .num_adc_nids = ARRAY_SIZE(alc861vd_adc_nids),
10831                 .adc_nids = alc861vd_adc_nids,
10832                 .num_channel_mode = ARRAY_SIZE(alc861vd_3stack_2ch_modes),
10833                 .channel_mode = alc861vd_3stack_2ch_modes,
10834                 .input_mux = &alc861vd_capture_source,
10835                 .unsol_event = alc861vd_lenovo_unsol_event,
10836                 .init_hook = alc861vd_lenovo_automute,
10837         },
10838         [ALC861VD_DALLAS] = {
10839                 .mixers = { alc861vd_dallas_mixer },
10840                 .init_verbs = { alc861vd_dallas_verbs },
10841                 .num_dacs = ARRAY_SIZE(alc861vd_dac_nids),
10842                 .dac_nids = alc861vd_dac_nids,
10843                 .num_adc_nids = ARRAY_SIZE(alc861vd_adc_nids),
10844                 .adc_nids = alc861vd_adc_nids,
10845                 .num_channel_mode = ARRAY_SIZE(alc861vd_3stack_2ch_modes),
10846                 .channel_mode = alc861vd_3stack_2ch_modes,
10847                 .input_mux = &alc861vd_dallas_capture_source,
10848                 .unsol_event = alc861vd_dallas_unsol_event,
10849                 .init_hook = alc861vd_dallas_automute,
10850         },
10851         [ALC861VD_HP] = {
10852                 .mixers = { alc861vd_hp_mixer },
10853                 .init_verbs = { alc861vd_dallas_verbs, alc861vd_eapd_verbs },
10854                 .num_dacs = ARRAY_SIZE(alc861vd_dac_nids),
10855                 .dac_nids = alc861vd_dac_nids,
10856                 .num_adc_nids = ARRAY_SIZE(alc861vd_adc_nids),
10857                 .dig_out_nid = ALC861VD_DIGOUT_NID,
10858                 .adc_nids = alc861vd_adc_nids,
10859                 .num_channel_mode = ARRAY_SIZE(alc861vd_3stack_2ch_modes),
10860                 .channel_mode = alc861vd_3stack_2ch_modes,
10861                 .input_mux = &alc861vd_hp_capture_source,
10862                 .unsol_event = alc861vd_dallas_unsol_event,
10863                 .init_hook = alc861vd_dallas_automute,
10864         },              
10865 };
10866
10867 /*
10868  * BIOS auto configuration
10869  */
10870 static void alc861vd_auto_set_output_and_unmute(struct hda_codec *codec,
10871                                 hda_nid_t nid, int pin_type, int dac_idx)
10872 {
10873         /* set as output */
10874         snd_hda_codec_write(codec, nid, 0,
10875                                 AC_VERB_SET_PIN_WIDGET_CONTROL, pin_type);
10876         snd_hda_codec_write(codec, nid, 0,
10877                                 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
10878 }
10879
10880 static void alc861vd_auto_init_multi_out(struct hda_codec *codec)
10881 {
10882         struct alc_spec *spec = codec->spec;
10883         int i;
10884
10885         alc_subsystem_id(codec, 0x15, 0x1b, 0x14);
10886         for (i = 0; i <= HDA_SIDE; i++) {
10887                 hda_nid_t nid = spec->autocfg.line_out_pins[i];
10888                 int pin_type = get_pin_type(spec->autocfg.line_out_type);
10889                 if (nid)
10890                         alc861vd_auto_set_output_and_unmute(codec, nid,
10891                                                             pin_type, i);
10892         }
10893 }
10894
10895
10896 static void alc861vd_auto_init_hp_out(struct hda_codec *codec)
10897 {
10898         struct alc_spec *spec = codec->spec;
10899         hda_nid_t pin;
10900
10901         pin = spec->autocfg.hp_pins[0];
10902         if (pin) /* connect to front and  use dac 0 */
10903                 alc861vd_auto_set_output_and_unmute(codec, pin, PIN_HP, 0);
10904 }
10905
10906 #define alc861vd_is_input_pin(nid)      alc880_is_input_pin(nid)
10907 #define ALC861VD_PIN_CD_NID             ALC880_PIN_CD_NID
10908
10909 static void alc861vd_auto_init_analog_input(struct hda_codec *codec)
10910 {
10911         struct alc_spec *spec = codec->spec;
10912         int i;
10913
10914         for (i = 0; i < AUTO_PIN_LAST; i++) {
10915                 hda_nid_t nid = spec->autocfg.input_pins[i];
10916                 if (alc861vd_is_input_pin(nid)) {
10917                         snd_hda_codec_write(codec, nid, 0,
10918                                         AC_VERB_SET_PIN_WIDGET_CONTROL,
10919                                         i <= AUTO_PIN_FRONT_MIC ?
10920                                                         PIN_VREF80 : PIN_IN);
10921                         if (nid != ALC861VD_PIN_CD_NID)
10922                                 snd_hda_codec_write(codec, nid, 0,
10923                                                 AC_VERB_SET_AMP_GAIN_MUTE,
10924                                                 AMP_OUT_MUTE);
10925                 }
10926         }
10927 }
10928
10929 #define alc861vd_idx_to_mixer_vol(nid)          ((nid) + 0x02)
10930 #define alc861vd_idx_to_mixer_switch(nid)       ((nid) + 0x0c)
10931
10932 /* add playback controls from the parsed DAC table */
10933 /* Based on ALC880 version. But ALC861VD has separate,
10934  * different NIDs for mute/unmute switch and volume control */
10935 static int alc861vd_auto_create_multi_out_ctls(struct alc_spec *spec,
10936                                              const struct auto_pin_cfg *cfg)
10937 {
10938         char name[32];
10939         static const char *chname[4] = {"Front", "Surround", "CLFE", "Side"};
10940         hda_nid_t nid_v, nid_s;
10941         int i, err;
10942
10943         for (i = 0; i < cfg->line_outs; i++) {
10944                 if (!spec->multiout.dac_nids[i])
10945                         continue;
10946                 nid_v = alc861vd_idx_to_mixer_vol(
10947                                 alc880_dac_to_idx(
10948                                         spec->multiout.dac_nids[i]));
10949                 nid_s = alc861vd_idx_to_mixer_switch(
10950                                 alc880_dac_to_idx(
10951                                         spec->multiout.dac_nids[i]));
10952
10953                 if (i == 2) {
10954                         /* Center/LFE */
10955                         err = add_control(spec, ALC_CTL_WIDGET_VOL,
10956                                           "Center Playback Volume",
10957                                           HDA_COMPOSE_AMP_VAL(nid_v, 1, 0,
10958                                                               HDA_OUTPUT));
10959                         if (err < 0)
10960                                 return err;
10961                         err = add_control(spec, ALC_CTL_WIDGET_VOL,
10962                                           "LFE Playback Volume",
10963                                           HDA_COMPOSE_AMP_VAL(nid_v, 2, 0,
10964                                                               HDA_OUTPUT));
10965                         if (err < 0)
10966                                 return err;
10967                         err = add_control(spec, ALC_CTL_BIND_MUTE,
10968                                           "Center Playback Switch",
10969                                           HDA_COMPOSE_AMP_VAL(nid_s, 1, 2,
10970                                                               HDA_INPUT));
10971                         if (err < 0)
10972                                 return err;
10973                         err = add_control(spec, ALC_CTL_BIND_MUTE,
10974                                           "LFE Playback Switch",
10975                                           HDA_COMPOSE_AMP_VAL(nid_s, 2, 2,
10976                                                               HDA_INPUT));
10977                         if (err < 0)
10978                                 return err;
10979                 } else {
10980                         sprintf(name, "%s Playback Volume", chname[i]);
10981                         err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
10982                                           HDA_COMPOSE_AMP_VAL(nid_v, 3, 0,
10983                                                               HDA_OUTPUT));
10984                         if (err < 0)
10985                                 return err;
10986                         sprintf(name, "%s Playback Switch", chname[i]);
10987                         err = add_control(spec, ALC_CTL_BIND_MUTE, name,
10988                                           HDA_COMPOSE_AMP_VAL(nid_s, 3, 2,
10989                                                               HDA_INPUT));
10990                         if (err < 0)
10991                                 return err;
10992                 }
10993         }
10994         return 0;
10995 }
10996
10997 /* add playback controls for speaker and HP outputs */
10998 /* Based on ALC880 version. But ALC861VD has separate,
10999  * different NIDs for mute/unmute switch and volume control */
11000 static int alc861vd_auto_create_extra_out(struct alc_spec *spec,
11001                                         hda_nid_t pin, const char *pfx)
11002 {
11003         hda_nid_t nid_v, nid_s;
11004         int err;
11005         char name[32];
11006
11007         if (!pin)
11008                 return 0;
11009
11010         if (alc880_is_fixed_pin(pin)) {
11011                 nid_v = alc880_idx_to_dac(alc880_fixed_pin_idx(pin));
11012                 /* specify the DAC as the extra output */
11013                 if (!spec->multiout.hp_nid)
11014                         spec->multiout.hp_nid = nid_v;
11015                 else
11016                         spec->multiout.extra_out_nid[0] = nid_v;
11017                 /* control HP volume/switch on the output mixer amp */
11018                 nid_v = alc861vd_idx_to_mixer_vol(
11019                                 alc880_fixed_pin_idx(pin));
11020                 nid_s = alc861vd_idx_to_mixer_switch(
11021                                 alc880_fixed_pin_idx(pin));
11022
11023                 sprintf(name, "%s Playback Volume", pfx);
11024                 err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
11025                                   HDA_COMPOSE_AMP_VAL(nid_v, 3, 0, HDA_OUTPUT));
11026                 if (err < 0)
11027                         return err;
11028                 sprintf(name, "%s Playback Switch", pfx);
11029                 err = add_control(spec, ALC_CTL_BIND_MUTE, name,
11030                                   HDA_COMPOSE_AMP_VAL(nid_s, 3, 2, HDA_INPUT));
11031                 if (err < 0)
11032                         return err;
11033         } else if (alc880_is_multi_pin(pin)) {
11034                 /* set manual connection */
11035                 /* we have only a switch on HP-out PIN */
11036                 sprintf(name, "%s Playback Switch", pfx);
11037                 err = add_control(spec, ALC_CTL_WIDGET_MUTE, name,
11038                                   HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_OUTPUT));
11039                 if (err < 0)
11040                         return err;
11041         }
11042         return 0;
11043 }
11044
11045 /* parse the BIOS configuration and set up the alc_spec
11046  * return 1 if successful, 0 if the proper config is not found,
11047  * or a negative error code
11048  * Based on ALC880 version - had to change it to override
11049  * alc880_auto_create_extra_out and alc880_auto_create_multi_out_ctls */
11050 static int alc861vd_parse_auto_config(struct hda_codec *codec)
11051 {
11052         struct alc_spec *spec = codec->spec;
11053         int err;
11054         static hda_nid_t alc861vd_ignore[] = { 0x1d, 0 };
11055
11056         err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
11057                                            alc861vd_ignore);
11058         if (err < 0)
11059                 return err;
11060         if (!spec->autocfg.line_outs)
11061                 return 0; /* can't find valid BIOS pin config */
11062
11063         err = alc880_auto_fill_dac_nids(spec, &spec->autocfg);
11064         if (err < 0)
11065                 return err;
11066         err = alc861vd_auto_create_multi_out_ctls(spec, &spec->autocfg);
11067         if (err < 0)
11068                 return err;
11069         err = alc861vd_auto_create_extra_out(spec,
11070                                              spec->autocfg.speaker_pins[0],
11071                                              "Speaker");
11072         if (err < 0)
11073                 return err;
11074         err = alc861vd_auto_create_extra_out(spec,
11075                                              spec->autocfg.hp_pins[0],
11076                                              "Headphone");
11077         if (err < 0)
11078                 return err;
11079         err = alc880_auto_create_analog_input_ctls(spec, &spec->autocfg);
11080         if (err < 0)
11081                 return err;
11082
11083         spec->multiout.max_channels = spec->multiout.num_dacs * 2;
11084
11085         if (spec->autocfg.dig_out_pin)
11086                 spec->multiout.dig_out_nid = ALC861VD_DIGOUT_NID;
11087
11088         if (spec->kctl_alloc)
11089                 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
11090
11091         spec->init_verbs[spec->num_init_verbs++]
11092                 = alc861vd_volume_init_verbs;
11093
11094         spec->num_mux_defs = 1;
11095         spec->input_mux = &spec->private_imux;
11096
11097         return 1;
11098 }
11099
11100 /* additional initialization for auto-configuration model */
11101 static void alc861vd_auto_init(struct hda_codec *codec)
11102 {
11103         alc861vd_auto_init_multi_out(codec);
11104         alc861vd_auto_init_hp_out(codec);
11105         alc861vd_auto_init_analog_input(codec);
11106 }
11107
11108 static int patch_alc861vd(struct hda_codec *codec)
11109 {
11110         struct alc_spec *spec;
11111         int err, board_config;
11112
11113         spec = kzalloc(sizeof(*spec), GFP_KERNEL);
11114         if (spec == NULL)
11115                 return -ENOMEM;
11116
11117         codec->spec = spec;
11118
11119         board_config = snd_hda_check_board_config(codec, ALC861VD_MODEL_LAST,
11120                                                   alc861vd_models,
11121                                                   alc861vd_cfg_tbl);
11122
11123         if (board_config < 0 || board_config >= ALC861VD_MODEL_LAST) {
11124                 printk(KERN_INFO "hda_codec: Unknown model for ALC660VD/"
11125                         "ALC861VD, trying auto-probe from BIOS...\n");
11126                 board_config = ALC861VD_AUTO;
11127         }
11128
11129         if (board_config == ALC861VD_AUTO) {
11130                 /* automatic parse from the BIOS config */
11131                 err = alc861vd_parse_auto_config(codec);
11132                 if (err < 0) {
11133                         alc_free(codec);
11134                         return err;
11135                 } else if (!err) {
11136                         printk(KERN_INFO
11137                                "hda_codec: Cannot set up configuration "
11138                                "from BIOS.  Using base mode...\n");
11139                         board_config = ALC861VD_3ST;
11140                 }
11141         }
11142
11143         if (board_config != ALC861VD_AUTO)
11144                 setup_preset(spec, &alc861vd_presets[board_config]);
11145
11146         spec->stream_name_analog = "ALC861VD Analog";
11147         spec->stream_analog_playback = &alc861vd_pcm_analog_playback;
11148         spec->stream_analog_capture = &alc861vd_pcm_analog_capture;
11149
11150         spec->stream_name_digital = "ALC861VD Digital";
11151         spec->stream_digital_playback = &alc861vd_pcm_digital_playback;
11152         spec->stream_digital_capture = &alc861vd_pcm_digital_capture;
11153
11154         spec->adc_nids = alc861vd_adc_nids;
11155         spec->num_adc_nids = ARRAY_SIZE(alc861vd_adc_nids);
11156
11157         spec->mixers[spec->num_mixers] = alc861vd_capture_mixer;
11158         spec->num_mixers++;
11159
11160         codec->patch_ops = alc_patch_ops;
11161
11162         if (board_config == ALC861VD_AUTO)
11163                 spec->init_hook = alc861vd_auto_init;
11164 #ifdef CONFIG_SND_HDA_POWER_SAVE
11165         if (!spec->loopback.amplist)
11166                 spec->loopback.amplist = alc861vd_loopbacks;
11167 #endif
11168
11169         return 0;
11170 }
11171
11172 /*
11173  * ALC662 support
11174  *
11175  * ALC662 is almost identical with ALC880 but has cleaner and more flexible
11176  * configuration.  Each pin widget can choose any input DACs and a mixer.
11177  * Each ADC is connected from a mixer of all inputs.  This makes possible
11178  * 6-channel independent captures.
11179  *
11180  * In addition, an independent DAC for the multi-playback (not used in this
11181  * driver yet).
11182  */
11183 #define ALC662_DIGOUT_NID       0x06
11184 #define ALC662_DIGIN_NID        0x0a
11185
11186 static hda_nid_t alc662_dac_nids[4] = {
11187         /* front, rear, clfe, rear_surr */
11188         0x02, 0x03, 0x04
11189 };
11190
11191 static hda_nid_t alc662_adc_nids[1] = {
11192         /* ADC1-2 */
11193         0x09,
11194 };
11195 /* input MUX */
11196 /* FIXME: should be a matrix-type input source selection */
11197
11198 static struct hda_input_mux alc662_capture_source = {
11199         .num_items = 4,
11200         .items = {
11201                 { "Mic", 0x0 },
11202                 { "Front Mic", 0x1 },
11203                 { "Line", 0x2 },
11204                 { "CD", 0x4 },
11205         },
11206 };
11207
11208 static struct hda_input_mux alc662_lenovo_101e_capture_source = {
11209         .num_items = 2,
11210         .items = {
11211                 { "Mic", 0x1 },
11212                 { "Line", 0x2 },
11213         },
11214 };
11215 #define alc662_mux_enum_info alc_mux_enum_info
11216 #define alc662_mux_enum_get alc_mux_enum_get
11217
11218 static int alc662_mux_enum_put(struct snd_kcontrol *kcontrol,
11219                                struct snd_ctl_elem_value *ucontrol)
11220 {
11221         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
11222         struct alc_spec *spec = codec->spec;
11223         const struct hda_input_mux *imux = spec->input_mux;
11224         unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
11225         static hda_nid_t capture_mixers[2] = { 0x23, 0x22 };
11226         hda_nid_t nid = capture_mixers[adc_idx];
11227         unsigned int *cur_val = &spec->cur_mux[adc_idx];
11228         unsigned int i, idx;
11229
11230         idx = ucontrol->value.enumerated.item[0];
11231         if (idx >= imux->num_items)
11232                 idx = imux->num_items - 1;
11233         if (*cur_val == idx)
11234                 return 0;
11235         for (i = 0; i < imux->num_items; i++) {
11236                 unsigned int v = (i == idx) ? 0 : HDA_AMP_MUTE;
11237                 snd_hda_codec_amp_stereo(codec, nid, HDA_INPUT,
11238                                          imux->items[i].index,
11239                                          HDA_AMP_MUTE, v);
11240         }
11241         *cur_val = idx;
11242         return 1;
11243 }
11244 /*
11245  * 2ch mode
11246  */
11247 static struct hda_channel_mode alc662_3ST_2ch_modes[1] = {
11248         { 2, NULL }
11249 };
11250
11251 /*
11252  * 2ch mode
11253  */
11254 static struct hda_verb alc662_3ST_ch2_init[] = {
11255         { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
11256         { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
11257         { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
11258         { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
11259         { } /* end */
11260 };
11261
11262 /*
11263  * 6ch mode
11264  */
11265 static struct hda_verb alc662_3ST_ch6_init[] = {
11266         { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
11267         { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
11268         { 0x18, AC_VERB_SET_CONNECT_SEL, 0x02 },
11269         { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
11270         { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
11271         { 0x1a, AC_VERB_SET_CONNECT_SEL, 0x01 },
11272         { } /* end */
11273 };
11274
11275 static struct hda_channel_mode alc662_3ST_6ch_modes[2] = {
11276         { 2, alc662_3ST_ch2_init },
11277         { 6, alc662_3ST_ch6_init },
11278 };
11279
11280 /*
11281  * 2ch mode
11282  */
11283 static struct hda_verb alc662_sixstack_ch6_init[] = {
11284         { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
11285         { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
11286         { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
11287         { } /* end */
11288 };
11289
11290 /*
11291  * 6ch mode
11292  */
11293 static struct hda_verb alc662_sixstack_ch8_init[] = {
11294         { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
11295         { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
11296         { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
11297         { } /* end */
11298 };
11299
11300 static struct hda_channel_mode alc662_5stack_modes[2] = {
11301         { 2, alc662_sixstack_ch6_init },
11302         { 6, alc662_sixstack_ch8_init },
11303 };
11304
11305 /* Pin assignment: Front=0x14, Rear=0x15, CLFE=0x16, Side=0x17
11306  *                 Mic=0x18, Front Mic=0x19, Line-In=0x1a, HP=0x1b
11307  */
11308
11309 static struct snd_kcontrol_new alc662_base_mixer[] = {
11310         /* output mixer control */
11311         HDA_CODEC_VOLUME("Front Playback Volume", 0x2, 0x0, HDA_OUTPUT),
11312         HDA_CODEC_MUTE("Front Playback Switch", 0x02, 0x0, HDA_OUTPUT),
11313         HDA_CODEC_VOLUME("Surround Playback Volume", 0x3, 0x0, HDA_OUTPUT),
11314         HDA_CODEC_MUTE("Surround Playback Switch", 0x03, 0x0, HDA_OUTPUT),
11315         HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x04, 1, 0x0, HDA_OUTPUT),
11316         HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x04, 2, 0x0, HDA_OUTPUT),
11317         HDA_BIND_MUTE_MONO("Center Playback Switch", 0x04, 1, 2, HDA_INPUT),
11318         HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x04, 2, 2, HDA_INPUT),
11319         HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
11320
11321         /*Input mixer control */
11322         HDA_CODEC_VOLUME("CD Playback Volume", 0xb, 0x4, HDA_INPUT),
11323         HDA_CODEC_MUTE("CD Playback Switch", 0xb, 0x4, HDA_INPUT),
11324         HDA_CODEC_VOLUME("Line Playback Volume", 0xb, 0x02, HDA_INPUT),
11325         HDA_CODEC_MUTE("Line Playback Switch", 0xb, 0x02, HDA_INPUT),
11326         HDA_CODEC_VOLUME("Mic Playback Volume", 0xb, 0x0, HDA_INPUT),
11327         HDA_CODEC_MUTE("Mic Playback Switch", 0xb, 0x0, HDA_INPUT),
11328         HDA_CODEC_VOLUME("Front Mic Playback Volume", 0xb, 0x01, HDA_INPUT),
11329         HDA_CODEC_MUTE("Front Mic Playback Switch", 0xb, 0x01, HDA_INPUT),
11330
11331         /* Capture mixer control */
11332         HDA_CODEC_VOLUME("Capture Volume", 0x09, 0x0, HDA_INPUT),
11333         HDA_CODEC_MUTE("Capture Switch", 0x09, 0x0, HDA_INPUT),
11334         {
11335                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
11336                 .name = "Capture Source",
11337                 .count = 1,
11338                 .info = alc_mux_enum_info,
11339                 .get = alc_mux_enum_get,
11340                 .put = alc_mux_enum_put,
11341         },
11342         { } /* end */
11343 };
11344
11345 static struct snd_kcontrol_new alc662_3ST_2ch_mixer[] = {
11346         HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT),
11347         HDA_BIND_MUTE("Front Playback Switch", 0x02, 2, HDA_INPUT),
11348         HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
11349         HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
11350         HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
11351         HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
11352         HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
11353         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
11354         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
11355         HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
11356         HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
11357         HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
11358         HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
11359         HDA_CODEC_VOLUME("Capture Volume", 0x09, 0x0, HDA_INPUT),
11360         HDA_CODEC_MUTE("Capture Switch", 0x09, 0x0, HDA_INPUT),
11361         {
11362                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
11363                 /* .name = "Capture Source", */
11364                 .name = "Input Source",
11365                 .count = 1,
11366                 .info = alc662_mux_enum_info,
11367                 .get = alc662_mux_enum_get,
11368                 .put = alc662_mux_enum_put,
11369         },
11370         { } /* end */
11371 };
11372
11373 static struct snd_kcontrol_new alc662_3ST_6ch_mixer[] = {
11374         HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT),
11375         HDA_BIND_MUTE("Front Playback Switch", 0x02, 2, HDA_INPUT),
11376         HDA_CODEC_VOLUME("Surround Playback Volume", 0x03, 0x0, HDA_OUTPUT),
11377         HDA_BIND_MUTE("Surround Playback Switch", 0x03, 2, HDA_INPUT),
11378         HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x04, 1, 0x0, HDA_OUTPUT),
11379         HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x04, 2, 0x0, HDA_OUTPUT),
11380         HDA_BIND_MUTE_MONO("Center Playback Switch", 0x04, 1, 2, HDA_INPUT),
11381         HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x04, 2, 2, HDA_INPUT),
11382         HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
11383         HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
11384         HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
11385         HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
11386         HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
11387         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
11388         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
11389         HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
11390         HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
11391         HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
11392         HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
11393         HDA_CODEC_VOLUME("Capture Volume", 0x09, 0x0, HDA_INPUT),
11394         HDA_CODEC_MUTE("Capture Switch", 0x09, 0x0, HDA_INPUT),
11395         {
11396                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
11397                 /* .name = "Capture Source", */
11398                 .name = "Input Source",
11399                 .count = 1,
11400                 .info = alc662_mux_enum_info,
11401                 .get = alc662_mux_enum_get,
11402                 .put = alc662_mux_enum_put,
11403         },
11404         { } /* end */
11405 };
11406
11407 static struct snd_kcontrol_new alc662_lenovo_101e_mixer[] = {
11408         HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT),
11409         HDA_BIND_MUTE("Front Playback Switch", 0x02, 2, HDA_INPUT),
11410         HDA_CODEC_VOLUME("iSpeaker Playback Volume", 0x03, 0x0, HDA_OUTPUT),
11411         HDA_BIND_MUTE("iSpeaker Playback Switch", 0x03, 2, HDA_INPUT),
11412         HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
11413         HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
11414         HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
11415         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
11416         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
11417         HDA_CODEC_VOLUME("Capture Volume", 0x09, 0x0, HDA_INPUT),
11418         HDA_CODEC_MUTE("Capture Switch", 0x09, 0x0, HDA_INPUT),
11419         {
11420                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
11421                 /* .name = "Capture Source", */
11422                 .name = "Input Source",
11423                 .count = 1,
11424                 .info = alc662_mux_enum_info,
11425                 .get = alc662_mux_enum_get,
11426                 .put = alc662_mux_enum_put,
11427         },
11428         { } /* end */
11429 };
11430
11431 static struct snd_kcontrol_new alc662_chmode_mixer[] = {
11432         {
11433                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
11434                 .name = "Channel Mode",
11435                 .info = alc_ch_mode_info,
11436                 .get = alc_ch_mode_get,
11437                 .put = alc_ch_mode_put,
11438         },
11439         { } /* end */
11440 };
11441
11442 static struct hda_verb alc662_init_verbs[] = {
11443         /* ADC: mute amp left and right */
11444         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
11445         {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
11446         /* Front mixer: unmute input/output amp left and right (volume = 0) */
11447
11448         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
11449         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
11450         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
11451         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
11452         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
11453
11454         {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
11455         {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
11456         {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
11457         {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
11458         {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
11459         {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
11460
11461         /* Front Pin: output 0 (0x0c) */
11462         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
11463         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
11464
11465         /* Rear Pin: output 1 (0x0d) */
11466         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
11467         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
11468
11469         /* CLFE Pin: output 2 (0x0e) */
11470         {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
11471         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
11472
11473         /* Mic (rear) pin: input vref at 80% */
11474         {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
11475         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
11476         /* Front Mic pin: input vref at 80% */
11477         {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
11478         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
11479         /* Line In pin: input */
11480         {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
11481         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
11482         /* Line-2 In: Headphone output (output 0 - 0x0c) */
11483         {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
11484         {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
11485         {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
11486         /* CD pin widget for input */
11487         {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
11488
11489         /* FIXME: use matrix-type input source selection */
11490         /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
11491         /* Input mixer */
11492         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
11493         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
11494         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
11495         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
11496         { }
11497 };
11498
11499 static struct hda_verb alc662_sue_init_verbs[] = {
11500         {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|ALC880_FRONT_EVENT},
11501         {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|ALC880_HP_EVENT},
11502         {}
11503 };
11504
11505 /*
11506  * generic initialization of ADC, input mixers and output mixers
11507  */
11508 static struct hda_verb alc662_auto_init_verbs[] = {
11509         /*
11510          * Unmute ADC and set the default input to mic-in
11511          */
11512         {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
11513         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
11514
11515         /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
11516          * mixer widget
11517          * Note: PASD motherboards uses the Line In 2 as the input for front
11518          * panel mic (mic 2)
11519          */
11520         /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
11521         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
11522         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
11523         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
11524         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
11525         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
11526
11527         /*
11528          * Set up output mixers (0x0c - 0x0f)
11529          */
11530         /* set vol=0 to output mixers */
11531         {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
11532         {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
11533         {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
11534
11535         /* set up input amps for analog loopback */
11536         /* Amp Indices: DAC = 0, mixer = 1 */
11537         {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
11538         {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
11539         {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
11540         {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
11541         {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
11542         {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
11543
11544
11545         /* FIXME: use matrix-type input source selection */
11546         /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
11547         /* Input mixer */
11548         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
11549         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
11550         { }
11551 };
11552
11553 /* capture mixer elements */
11554 static struct snd_kcontrol_new alc662_capture_mixer[] = {
11555         HDA_CODEC_VOLUME("Capture Volume", 0x09, 0x0, HDA_INPUT),
11556         HDA_CODEC_MUTE("Capture Switch", 0x09, 0x0, HDA_INPUT),
11557         {
11558                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
11559                 /* The multiple "Capture Source" controls confuse alsamixer
11560                  * So call somewhat different..
11561                  * FIXME: the controls appear in the "playback" view!
11562                  */
11563                 /* .name = "Capture Source", */
11564                 .name = "Input Source",
11565                 .count = 1,
11566                 .info = alc882_mux_enum_info,
11567                 .get = alc882_mux_enum_get,
11568                 .put = alc882_mux_enum_put,
11569         },
11570         { } /* end */
11571 };
11572
11573 static void alc662_lenovo_101e_ispeaker_automute(struct hda_codec *codec)
11574 {
11575         unsigned int present;
11576         unsigned char bits;
11577
11578         present = snd_hda_codec_read(codec, 0x14, 0,
11579                                      AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
11580         bits = present ? HDA_AMP_MUTE : 0;
11581         snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0,
11582                                  HDA_AMP_MUTE, bits);
11583 }
11584
11585 static void alc662_lenovo_101e_all_automute(struct hda_codec *codec)
11586 {
11587         unsigned int present;
11588         unsigned char bits;
11589
11590         present = snd_hda_codec_read(codec, 0x1b, 0,
11591                                      AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
11592         bits = present ? HDA_AMP_MUTE : 0;
11593         snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0,
11594                                  HDA_AMP_MUTE, bits);
11595         snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0,
11596                                  HDA_AMP_MUTE, bits);
11597 }
11598
11599 static void alc662_lenovo_101e_unsol_event(struct hda_codec *codec,
11600                                            unsigned int res)
11601 {
11602         if ((res >> 26) == ALC880_HP_EVENT)
11603                 alc662_lenovo_101e_all_automute(codec);
11604         if ((res >> 26) == ALC880_FRONT_EVENT)
11605                 alc662_lenovo_101e_ispeaker_automute(codec);
11606 }
11607
11608 #ifdef CONFIG_SND_HDA_POWER_SAVE
11609 #define alc662_loopbacks        alc880_loopbacks
11610 #endif
11611
11612
11613 /* pcm configuration: identiacal with ALC880 */
11614 #define alc662_pcm_analog_playback      alc880_pcm_analog_playback
11615 #define alc662_pcm_analog_capture       alc880_pcm_analog_capture
11616 #define alc662_pcm_digital_playback     alc880_pcm_digital_playback
11617 #define alc662_pcm_digital_capture      alc880_pcm_digital_capture
11618
11619 /*
11620  * configuration and preset
11621  */
11622 static const char *alc662_models[ALC662_MODEL_LAST] = {
11623         [ALC662_3ST_2ch_DIG]    = "3stack-dig",
11624         [ALC662_3ST_6ch_DIG]    = "3stack-6ch-dig",
11625         [ALC662_3ST_6ch]        = "3stack-6ch",
11626         [ALC662_5ST_DIG]        = "6stack-dig",
11627         [ALC662_LENOVO_101E]    = "lenovo-101e",
11628         [ALC662_AUTO]           = "auto",
11629 };
11630
11631 static struct snd_pci_quirk alc662_cfg_tbl[] = {
11632         SND_PCI_QUIRK(0x17aa, 0x101e, "Lenovo", ALC662_LENOVO_101E),
11633         {}
11634 };
11635
11636 static struct alc_config_preset alc662_presets[] = {
11637         [ALC662_3ST_2ch_DIG] = {
11638                 .mixers = { alc662_3ST_2ch_mixer },
11639                 .init_verbs = { alc662_init_verbs },
11640                 .num_dacs = ARRAY_SIZE(alc662_dac_nids),
11641                 .dac_nids = alc662_dac_nids,
11642                 .dig_out_nid = ALC662_DIGOUT_NID,
11643                 .num_adc_nids = ARRAY_SIZE(alc662_adc_nids),
11644                 .adc_nids = alc662_adc_nids,
11645                 .dig_in_nid = ALC662_DIGIN_NID,
11646                 .num_channel_mode = ARRAY_SIZE(alc662_3ST_2ch_modes),
11647                 .channel_mode = alc662_3ST_2ch_modes,
11648                 .input_mux = &alc662_capture_source,
11649         },
11650         [ALC662_3ST_6ch_DIG] = {
11651                 .mixers = { alc662_3ST_6ch_mixer, alc662_chmode_mixer },
11652                 .init_verbs = { alc662_init_verbs },
11653                 .num_dacs = ARRAY_SIZE(alc662_dac_nids),
11654                 .dac_nids = alc662_dac_nids,
11655                 .dig_out_nid = ALC662_DIGOUT_NID,
11656                 .num_adc_nids = ARRAY_SIZE(alc662_adc_nids),
11657                 .adc_nids = alc662_adc_nids,
11658                 .dig_in_nid = ALC662_DIGIN_NID,
11659                 .num_channel_mode = ARRAY_SIZE(alc662_3ST_6ch_modes),
11660                 .channel_mode = alc662_3ST_6ch_modes,
11661                 .need_dac_fix = 1,
11662                 .input_mux = &alc662_capture_source,
11663         },
11664         [ALC662_3ST_6ch] = {
11665                 .mixers = { alc662_3ST_6ch_mixer, alc662_chmode_mixer },
11666                 .init_verbs = { alc662_init_verbs },
11667                 .num_dacs = ARRAY_SIZE(alc662_dac_nids),
11668                 .dac_nids = alc662_dac_nids,
11669                 .num_adc_nids = ARRAY_SIZE(alc662_adc_nids),
11670                 .adc_nids = alc662_adc_nids,
11671                 .num_channel_mode = ARRAY_SIZE(alc662_3ST_6ch_modes),
11672                 .channel_mode = alc662_3ST_6ch_modes,
11673                 .need_dac_fix = 1,
11674                 .input_mux = &alc662_capture_source,
11675         },
11676         [ALC662_5ST_DIG] = {
11677                 .mixers = { alc662_base_mixer, alc662_chmode_mixer },
11678                 .init_verbs = { alc662_init_verbs },
11679                 .num_dacs = ARRAY_SIZE(alc662_dac_nids),
11680                 .dac_nids = alc662_dac_nids,
11681                 .dig_out_nid = ALC662_DIGOUT_NID,
11682                 .num_adc_nids = ARRAY_SIZE(alc662_adc_nids),
11683                 .adc_nids = alc662_adc_nids,
11684                 .dig_in_nid = ALC662_DIGIN_NID,
11685                 .num_channel_mode = ARRAY_SIZE(alc662_5stack_modes),
11686                 .channel_mode = alc662_5stack_modes,
11687                 .input_mux = &alc662_capture_source,
11688         },
11689         [ALC662_LENOVO_101E] = {
11690                 .mixers = { alc662_lenovo_101e_mixer },
11691                 .init_verbs = { alc662_init_verbs, alc662_sue_init_verbs },
11692                 .num_dacs = ARRAY_SIZE(alc662_dac_nids),
11693                 .dac_nids = alc662_dac_nids,
11694                 .num_adc_nids = ARRAY_SIZE(alc662_adc_nids),
11695                 .adc_nids = alc662_adc_nids,
11696                 .num_channel_mode = ARRAY_SIZE(alc662_3ST_2ch_modes),
11697                 .channel_mode = alc662_3ST_2ch_modes,
11698                 .input_mux = &alc662_lenovo_101e_capture_source,
11699                 .unsol_event = alc662_lenovo_101e_unsol_event,
11700                 .init_hook = alc662_lenovo_101e_all_automute,
11701         },
11702
11703 };
11704
11705
11706 /*
11707  * BIOS auto configuration
11708  */
11709
11710 /* add playback controls from the parsed DAC table */
11711 static int alc662_auto_create_multi_out_ctls(struct alc_spec *spec,
11712                                              const struct auto_pin_cfg *cfg)
11713 {
11714         char name[32];
11715         static const char *chname[4] = {
11716                 "Front", "Surround", NULL /*CLFE*/, "Side"
11717         };
11718         hda_nid_t nid;
11719         int i, err;
11720
11721         for (i = 0; i < cfg->line_outs; i++) {
11722                 if (!spec->multiout.dac_nids[i])
11723                         continue;
11724                 nid = alc880_idx_to_mixer(i);
11725                 if (i == 2) {
11726                         /* Center/LFE */
11727                         err = add_control(spec, ALC_CTL_WIDGET_VOL,
11728                                           "Center Playback Volume",
11729                                           HDA_COMPOSE_AMP_VAL(nid, 1, 0,
11730                                                               HDA_OUTPUT));
11731                         if (err < 0)
11732                                 return err;
11733                         err = add_control(spec, ALC_CTL_WIDGET_VOL,
11734                                           "LFE Playback Volume",
11735                                           HDA_COMPOSE_AMP_VAL(nid, 2, 0,
11736                                                               HDA_OUTPUT));
11737                         if (err < 0)
11738                                 return err;
11739                         err = add_control(spec, ALC_CTL_BIND_MUTE,
11740                                           "Center Playback Switch",
11741                                           HDA_COMPOSE_AMP_VAL(nid, 1, 2,
11742                                                               HDA_INPUT));
11743                         if (err < 0)
11744                                 return err;
11745                         err = add_control(spec, ALC_CTL_BIND_MUTE,
11746                                           "LFE Playback Switch",
11747                                           HDA_COMPOSE_AMP_VAL(nid, 2, 2,
11748                                                               HDA_INPUT));
11749                         if (err < 0)
11750                                 return err;
11751                 } else {
11752                         sprintf(name, "%s Playback Volume", chname[i]);
11753                         err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
11754                                           HDA_COMPOSE_AMP_VAL(nid, 3, 0,
11755                                                               HDA_OUTPUT));
11756                         if (err < 0)
11757                                 return err;
11758                         sprintf(name, "%s Playback Switch", chname[i]);
11759                         err = add_control(spec, ALC_CTL_BIND_MUTE, name,
11760                                           HDA_COMPOSE_AMP_VAL(nid, 3, 2,
11761                                                               HDA_INPUT));
11762                         if (err < 0)
11763                                 return err;
11764                 }
11765         }
11766         return 0;
11767 }
11768
11769 /* add playback controls for speaker and HP outputs */
11770 static int alc662_auto_create_extra_out(struct alc_spec *spec, hda_nid_t pin,
11771                                         const char *pfx)
11772 {
11773         hda_nid_t nid;
11774         int err;
11775         char name[32];
11776
11777         if (!pin)
11778                 return 0;
11779
11780         if (alc880_is_fixed_pin(pin)) {
11781                 nid = alc880_idx_to_dac(alc880_fixed_pin_idx(pin));
11782                 /* printk("DAC nid=%x\n",nid); */
11783                 /* specify the DAC as the extra output */
11784                 if (!spec->multiout.hp_nid)
11785                         spec->multiout.hp_nid = nid;
11786                 else
11787                         spec->multiout.extra_out_nid[0] = nid;
11788                 /* control HP volume/switch on the output mixer amp */
11789                 nid = alc880_idx_to_dac(alc880_fixed_pin_idx(pin));
11790                 sprintf(name, "%s Playback Volume", pfx);
11791                 err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
11792                                   HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT));
11793                 if (err < 0)
11794                         return err;
11795                 sprintf(name, "%s Playback Switch", pfx);
11796                 err = add_control(spec, ALC_CTL_BIND_MUTE, name,
11797                                   HDA_COMPOSE_AMP_VAL(nid, 3, 2, HDA_INPUT));
11798                 if (err < 0)
11799                         return err;
11800         } else if (alc880_is_multi_pin(pin)) {
11801                 /* set manual connection */
11802                 /* we have only a switch on HP-out PIN */
11803                 sprintf(name, "%s Playback Switch", pfx);
11804                 err = add_control(spec, ALC_CTL_WIDGET_MUTE, name,
11805                                   HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_OUTPUT));
11806                 if (err < 0)
11807                         return err;
11808         }
11809         return 0;
11810 }
11811
11812 /* create playback/capture controls for input pins */
11813 static int alc662_auto_create_analog_input_ctls(struct alc_spec *spec,
11814                                                 const struct auto_pin_cfg *cfg)
11815 {
11816         struct hda_input_mux *imux = &spec->private_imux;
11817         int i, err, idx;
11818
11819         for (i = 0; i < AUTO_PIN_LAST; i++) {
11820                 if (alc880_is_input_pin(cfg->input_pins[i])) {
11821                         idx = alc880_input_pin_idx(cfg->input_pins[i]);
11822                         err = new_analog_input(spec, cfg->input_pins[i],
11823                                                auto_pin_cfg_labels[i],
11824                                                idx, 0x0b);
11825                         if (err < 0)
11826                                 return err;
11827                         imux->items[imux->num_items].label =
11828                                 auto_pin_cfg_labels[i];
11829                         imux->items[imux->num_items].index =
11830                                 alc880_input_pin_idx(cfg->input_pins[i]);
11831                         imux->num_items++;
11832                 }
11833         }
11834         return 0;
11835 }
11836
11837 static void alc662_auto_set_output_and_unmute(struct hda_codec *codec,
11838                                               hda_nid_t nid, int pin_type,
11839                                               int dac_idx)
11840 {
11841         /* set as output */
11842         snd_hda_codec_write(codec, nid, 0,
11843                             AC_VERB_SET_PIN_WIDGET_CONTROL, pin_type);
11844         snd_hda_codec_write(codec, nid, 0,
11845                             AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
11846         /* need the manual connection? */
11847         if (alc880_is_multi_pin(nid)) {
11848                 struct alc_spec *spec = codec->spec;
11849                 int idx = alc880_multi_pin_idx(nid);
11850                 snd_hda_codec_write(codec, alc880_idx_to_selector(idx), 0,
11851                                     AC_VERB_SET_CONNECT_SEL,
11852                                     alc880_dac_to_idx(spec->multiout.dac_nids[dac_idx]));
11853         }
11854 }
11855
11856 static void alc662_auto_init_multi_out(struct hda_codec *codec)
11857 {
11858         struct alc_spec *spec = codec->spec;
11859         int i;
11860
11861         for (i = 0; i <= HDA_SIDE; i++) {
11862                 hda_nid_t nid = spec->autocfg.line_out_pins[i];
11863                 int pin_type = get_pin_type(spec->autocfg.line_out_type);
11864                 if (nid)
11865                         alc662_auto_set_output_and_unmute(codec, nid, pin_type,
11866                                                           i);
11867         }
11868 }
11869
11870 static void alc662_auto_init_hp_out(struct hda_codec *codec)
11871 {
11872         struct alc_spec *spec = codec->spec;
11873         hda_nid_t pin;
11874
11875         pin = spec->autocfg.hp_pins[0];
11876         if (pin) /* connect to front */
11877                 /* use dac 0 */
11878                 alc662_auto_set_output_and_unmute(codec, pin, PIN_HP, 0);
11879 }
11880
11881 #define alc662_is_input_pin(nid)        alc880_is_input_pin(nid)
11882 #define ALC662_PIN_CD_NID               ALC880_PIN_CD_NID
11883
11884 static void alc662_auto_init_analog_input(struct hda_codec *codec)
11885 {
11886         struct alc_spec *spec = codec->spec;
11887         int i;
11888
11889         for (i = 0; i < AUTO_PIN_LAST; i++) {
11890                 hda_nid_t nid = spec->autocfg.input_pins[i];
11891                 if (alc662_is_input_pin(nid)) {
11892                         snd_hda_codec_write(codec, nid, 0,
11893                                             AC_VERB_SET_PIN_WIDGET_CONTROL,
11894                                             (i <= AUTO_PIN_FRONT_MIC ?
11895                                              PIN_VREF80 : PIN_IN));
11896                         if (nid != ALC662_PIN_CD_NID)
11897                                 snd_hda_codec_write(codec, nid, 0,
11898                                                     AC_VERB_SET_AMP_GAIN_MUTE,
11899                                                     AMP_OUT_MUTE);
11900                 }
11901         }
11902 }
11903
11904 static int alc662_parse_auto_config(struct hda_codec *codec)
11905 {
11906         struct alc_spec *spec = codec->spec;
11907         int err;
11908         static hda_nid_t alc662_ignore[] = { 0x1d, 0 };
11909
11910         err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
11911                                            alc662_ignore);
11912         if (err < 0)
11913                 return err;
11914         if (!spec->autocfg.line_outs)
11915                 return 0; /* can't find valid BIOS pin config */
11916
11917         err = alc880_auto_fill_dac_nids(spec, &spec->autocfg);
11918         if (err < 0)
11919                 return err;
11920         err = alc662_auto_create_multi_out_ctls(spec, &spec->autocfg);
11921         if (err < 0)
11922                 return err;
11923         err = alc662_auto_create_extra_out(spec,
11924                                            spec->autocfg.speaker_pins[0],
11925                                            "Speaker");
11926         if (err < 0)
11927                 return err;
11928         err = alc662_auto_create_extra_out(spec, spec->autocfg.hp_pins[0],
11929                                            "Headphone");
11930         if (err < 0)
11931                 return err;
11932         err = alc662_auto_create_analog_input_ctls(spec, &spec->autocfg);
11933         if (err < 0)
11934                 return err;
11935
11936         spec->multiout.max_channels = spec->multiout.num_dacs * 2;
11937
11938         if (spec->autocfg.dig_out_pin)
11939                 spec->multiout.dig_out_nid = ALC880_DIGOUT_NID;
11940
11941         if (spec->kctl_alloc)
11942                 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
11943
11944         spec->num_mux_defs = 1;
11945         spec->input_mux = &spec->private_imux;
11946         
11947         spec->init_verbs[spec->num_init_verbs++] = alc662_auto_init_verbs;
11948         spec->mixers[spec->num_mixers] = alc662_capture_mixer;
11949         spec->num_mixers++;
11950         return 1;
11951 }
11952
11953 /* additional initialization for auto-configuration model */
11954 static void alc662_auto_init(struct hda_codec *codec)
11955 {
11956         alc662_auto_init_multi_out(codec);
11957         alc662_auto_init_hp_out(codec);
11958         alc662_auto_init_analog_input(codec);
11959 }
11960
11961 static int patch_alc662(struct hda_codec *codec)
11962 {
11963         struct alc_spec *spec;
11964         int err, board_config;
11965
11966         spec = kzalloc(sizeof(*spec), GFP_KERNEL);
11967         if (!spec)
11968                 return -ENOMEM;
11969
11970         codec->spec = spec;
11971
11972         board_config = snd_hda_check_board_config(codec, ALC662_MODEL_LAST,
11973                                                   alc662_models,
11974                                                   alc662_cfg_tbl);
11975         if (board_config < 0) {
11976                 printk(KERN_INFO "hda_codec: Unknown model for ALC662, "
11977                        "trying auto-probe from BIOS...\n");
11978                 board_config = ALC662_AUTO;
11979         }
11980
11981         if (board_config == ALC662_AUTO) {
11982                 /* automatic parse from the BIOS config */
11983                 err = alc662_parse_auto_config(codec);
11984                 if (err < 0) {
11985                         alc_free(codec);
11986                         return err;
11987                 } else if (!err) {
11988                         printk(KERN_INFO
11989                                "hda_codec: Cannot set up configuration "
11990                                "from BIOS.  Using base mode...\n");
11991                         board_config = ALC662_3ST_2ch_DIG;
11992                 }
11993         }
11994
11995         if (board_config != ALC662_AUTO)
11996                 setup_preset(spec, &alc662_presets[board_config]);
11997
11998         spec->stream_name_analog = "ALC662 Analog";
11999         spec->stream_analog_playback = &alc662_pcm_analog_playback;
12000         spec->stream_analog_capture = &alc662_pcm_analog_capture;
12001
12002         spec->stream_name_digital = "ALC662 Digital";
12003         spec->stream_digital_playback = &alc662_pcm_digital_playback;
12004         spec->stream_digital_capture = &alc662_pcm_digital_capture;
12005
12006         if (!spec->adc_nids && spec->input_mux) {
12007                 spec->adc_nids = alc662_adc_nids;
12008                 spec->num_adc_nids = ARRAY_SIZE(alc662_adc_nids);
12009         }
12010
12011         codec->patch_ops = alc_patch_ops;
12012         if (board_config == ALC662_AUTO)
12013                 spec->init_hook = alc662_auto_init;
12014 #ifdef CONFIG_SND_HDA_POWER_SAVE
12015         if (!spec->loopback.amplist)
12016                 spec->loopback.amplist = alc662_loopbacks;
12017 #endif
12018
12019         return 0;
12020 }
12021
12022 /*
12023  * patch entries
12024  */
12025 struct hda_codec_preset snd_hda_preset_realtek[] = {
12026         { .id = 0x10ec0260, .name = "ALC260", .patch = patch_alc260 },
12027         { .id = 0x10ec0262, .name = "ALC262", .patch = patch_alc262 },
12028         { .id = 0x10ec0268, .name = "ALC268", .patch = patch_alc268 },
12029         { .id = 0x10ec0861, .rev = 0x100340, .name = "ALC660",
12030           .patch = patch_alc861 },
12031         { .id = 0x10ec0660, .name = "ALC660-VD", .patch = patch_alc861vd },
12032         { .id = 0x10ec0861, .name = "ALC861", .patch = patch_alc861 },
12033         { .id = 0x10ec0862, .name = "ALC861-VD", .patch = patch_alc861vd },
12034         { .id = 0x10ec0662, .rev = 0x100002, .name = "ALC662 rev2",
12035           .patch = patch_alc883 },
12036         { .id = 0x10ec0662, .rev = 0x100101, .name = "ALC662 rev1",
12037           .patch = patch_alc662 },
12038         { .id = 0x10ec0880, .name = "ALC880", .patch = patch_alc880 },
12039         { .id = 0x10ec0882, .name = "ALC882", .patch = patch_alc882 },
12040         { .id = 0x10ec0883, .name = "ALC883", .patch = patch_alc883 },
12041         { .id = 0x10ec0885, .name = "ALC885", .patch = patch_alc882 },
12042         { .id = 0x10ec0888, .name = "ALC888", .patch = patch_alc883 },
12043         {} /* terminator */
12044 };