Linux kernel & device driver programming

Cross-Referenced Linux and Device Driver Code

[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ]
Version: [ 2.6.11.8 ] [ 2.6.25 ] [ 2.6.25.8 ] [ 2.6.31.13 ] Architecture: [ i386 ]
  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 <linux/init.h>
 27 #include <linux/delay.h>
 28 #include <linux/slab.h>
 29 #include <linux/pci.h>
 30 #include <sound/core.h>
 31 #include "hda_codec.h"
 32 #include "hda_local.h"
 33 
 34 #define ALC880_FRONT_EVENT              0x01
 35 #define ALC880_DCVOL_EVENT              0x02
 36 #define ALC880_HP_EVENT                 0x04
 37 #define ALC880_MIC_EVENT                0x08
 38 
 39 /* ALC880 board config type */
 40 enum {
 41         ALC880_3ST,
 42         ALC880_3ST_DIG,
 43         ALC880_5ST,
 44         ALC880_5ST_DIG,
 45         ALC880_W810,
 46         ALC880_Z71V,
 47         ALC880_6ST,
 48         ALC880_6ST_DIG,
 49         ALC880_F1734,
 50         ALC880_ASUS,
 51         ALC880_ASUS_DIG,
 52         ALC880_ASUS_W1V,
 53         ALC880_ASUS_DIG2,
 54         ALC880_FUJITSU,
 55         ALC880_UNIWILL_DIG,
 56         ALC880_UNIWILL,
 57         ALC880_UNIWILL_P53,
 58         ALC880_CLEVO,
 59         ALC880_TCL_S700,
 60         ALC880_LG,
 61         ALC880_LG_LW,
 62 #ifdef CONFIG_SND_DEBUG
 63         ALC880_TEST,
 64 #endif
 65         ALC880_AUTO,
 66         ALC880_MODEL_LAST /* last tag */
 67 };
 68 
 69 /* ALC260 models */
 70 enum {
 71         ALC260_BASIC,
 72         ALC260_HP,
 73         ALC260_HP_3013,
 74         ALC260_FUJITSU_S702X,
 75         ALC260_ACER,
 76         ALC260_WILL,
 77         ALC260_REPLACER_672V,
 78 #ifdef CONFIG_SND_DEBUG
 79         ALC260_TEST,
 80 #endif
 81         ALC260_AUTO,
 82         ALC260_MODEL_LAST /* last tag */
 83 };
 84 
 85 /* ALC262 models */
 86 enum {
 87         ALC262_BASIC,
 88         ALC262_HIPPO,
 89         ALC262_HIPPO_1,
 90         ALC262_FUJITSU,
 91         ALC262_HP_BPC,
 92         ALC262_HP_BPC_D7000_WL,
 93         ALC262_HP_BPC_D7000_WF,
 94         ALC262_HP_TC_T5735,
 95         ALC262_HP_RP5700,
 96         ALC262_BENQ_ED8,
 97         ALC262_SONY_ASSAMD,
 98         ALC262_BENQ_T31,
 99         ALC262_ULTRA,
100         ALC262_AUTO,
101         ALC262_MODEL_LAST /* last tag */
102 };
103 
104 /* ALC268 models */
105 enum {
106         ALC268_3ST,
107         ALC268_TOSHIBA,
108         ALC268_ACER,
109         ALC268_DELL,
110 #ifdef CONFIG_SND_DEBUG
111         ALC268_TEST,
112 #endif
113         ALC268_AUTO,
114         ALC268_MODEL_LAST /* last tag */
115 };
116 
117 /* ALC269 models */
118 enum {
119         ALC269_BASIC,
120         ALC269_AUTO,
121         ALC269_MODEL_LAST /* last tag */
122 };
123 
124 /* ALC861 models */
125 enum {
126         ALC861_3ST,
127         ALC660_3ST,
128         ALC861_3ST_DIG,
129         ALC861_6ST_DIG,
130         ALC861_UNIWILL_M31,
131         ALC861_TOSHIBA,
132         ALC861_ASUS,
133         ALC861_ASUS_LAPTOP,
134         ALC861_AUTO,
135         ALC861_MODEL_LAST,
136 };
137 
138 /* ALC861-VD models */
139 enum {
140         ALC660VD_3ST,
141         ALC660VD_3ST_DIG,
142         ALC861VD_3ST,
143         ALC861VD_3ST_DIG,
144         ALC861VD_6ST_DIG,
145         ALC861VD_LENOVO,
146         ALC861VD_DALLAS,
147         ALC861VD_HP,
148         ALC861VD_AUTO,
149         ALC861VD_MODEL_LAST,
150 };
151 
152 /* ALC662 models */
153 enum {
154         ALC662_3ST_2ch_DIG,
155         ALC662_3ST_6ch_DIG,
156         ALC662_3ST_6ch,
157         ALC662_5ST_DIG,
158         ALC662_LENOVO_101E,
159         ALC662_ASUS_EEEPC_P701,
160         ALC662_ASUS_EEEPC_EP20,
161         ALC662_AUTO,
162         ALC662_MODEL_LAST,
163 };
164 
165 /* ALC882 models */
166 enum {
167         ALC882_3ST_DIG,
168         ALC882_6ST_DIG,
169         ALC882_ARIMA,
170         ALC882_W2JC,
171         ALC882_TARGA,
172         ALC882_ASUS_A7J,
173         ALC882_ASUS_A7M,
174         ALC885_MACPRO,
175         ALC885_MBP3,
176         ALC885_IMAC24,
177         ALC882_AUTO,
178         ALC882_MODEL_LAST,
179 };
180 
181 /* ALC883 models */
182 enum {
183         ALC883_3ST_2ch_DIG,
184         ALC883_3ST_6ch_DIG,
185         ALC883_3ST_6ch,
186         ALC883_6ST_DIG,
187         ALC883_TARGA_DIG,
188         ALC883_TARGA_2ch_DIG,
189         ALC883_ACER,
190         ALC883_ACER_ASPIRE,
191         ALC883_MEDION,
192         ALC883_MEDION_MD2,      
193         ALC883_LAPTOP_EAPD,
194         ALC883_LENOVO_101E_2ch,
195         ALC883_LENOVO_NB0763,
196         ALC888_LENOVO_MS7195_DIG,
197         ALC883_HAIER_W66,               
198         ALC888_6ST_HP,
199         ALC888_3ST_HP,
200         ALC888_6ST_DELL,
201         ALC883_MITAC,
202         ALC883_AUTO,
203         ALC883_MODEL_LAST,
204 };
205 
206 /* for GPIO Poll */
207 #define GPIO_MASK       0x03
208 
209 struct alc_spec {
210         /* codec parameterization */
211         struct snd_kcontrol_new *mixers[5];     /* mixer arrays */
212         unsigned int num_mixers;
213 
214         const struct hda_verb *init_verbs[5];   /* initialization verbs
215                                                  * don't forget NULL
216                                                  * termination!
217                                                  */
218         unsigned int num_init_verbs;
219 
220         char *stream_name_analog;       /* analog PCM stream */
221         struct hda_pcm_stream *stream_analog_playback;
222         struct hda_pcm_stream *stream_analog_capture;
223         struct hda_pcm_stream *stream_analog_alt_playback;
224         struct hda_pcm_stream *stream_analog_alt_capture;
225 
226         char *stream_name_digital;      /* digital PCM stream */
227         struct hda_pcm_stream *stream_digital_playback;
228         struct hda_pcm_stream *stream_digital_capture;
229 
230         /* playback */
231         struct hda_multi_out multiout;  /* playback set-up
232                                          * max_channels, dacs must be set
233                                          * dig_out_nid and hp_nid are optional
234                                          */
235         hda_nid_t alt_dac_nid;
236 
237         /* capture */
238         unsigned int num_adc_nids;
239         hda_nid_t *adc_nids;
240         hda_nid_t dig_in_nid;           /* digital-in NID; optional */
241 
242         /* capture source */
243         unsigned int num_mux_defs;
244         const struct hda_input_mux *input_mux;
245         unsigned int cur_mux[3];
246 
247         /* channel model */
248         const struct hda_channel_mode *channel_mode;
249         int num_channel_mode;
250         int need_dac_fix;
251 
252         /* PCM information */
253         struct hda_pcm pcm_rec[3];      /* used in alc_build_pcms() */
254 
255         /* dynamic controls, init_verbs and input_mux */
256         struct auto_pin_cfg autocfg;
257         unsigned int num_kctl_alloc, num_kctl_used;
258         struct snd_kcontrol_new *kctl_alloc;
259         struct hda_input_mux private_imux;
260         hda_nid_t private_dac_nids[AUTO_CFG_MAX_OUTS];
261 
262         /* hooks */
263         void (*init_hook)(struct hda_codec *codec);
264         void (*unsol_event)(struct hda_codec *codec, unsigned int res);
265 
266         /* for pin sensing */
267         unsigned int sense_updated: 1;
268         unsigned int jack_present: 1;
269         unsigned int master_sw: 1;
270 
271         /* for virtual master */
272         hda_nid_t vmaster_nid;
273         u32 vmaster_tlv[4];
274 #ifdef CONFIG_SND_HDA_POWER_SAVE
275         struct hda_loopback_check loopback;
276 #endif
277 };
278 
279 /*
280  * configuration template - to be copied to the spec instance
281  */
282 struct alc_config_preset {
283         struct snd_kcontrol_new *mixers[5]; /* should be identical size
284                                              * with spec
285                                              */
286         const struct hda_verb *init_verbs[5];
287         unsigned int num_dacs;
288         hda_nid_t *dac_nids;
289         hda_nid_t dig_out_nid;          /* optional */
290         hda_nid_t hp_nid;               /* optional */
291         unsigned int num_adc_nids;
292         hda_nid_t *adc_nids;
293         hda_nid_t dig_in_nid;
294         unsigned int num_channel_mode;
295         const struct hda_channel_mode *channel_mode;
296         int need_dac_fix;
297         unsigned int num_mux_defs;
298         const struct hda_input_mux *input_mux;
299         void (*unsol_event)(struct hda_codec *, unsigned int);
300         void (*init_hook)(struct hda_codec *);
301 #ifdef CONFIG_SND_HDA_POWER_SAVE
302         struct hda_amp_list *loopbacks;
303 #endif
304 };
305 
306 
307 /*
308  * input MUX handling
309  */
310 static int alc_mux_enum_info(struct snd_kcontrol *kcontrol,
311                              struct snd_ctl_elem_info *uinfo)
312 {
313         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
314         struct alc_spec *spec = codec->spec;
315         unsigned int mux_idx = snd_ctl_get_ioffidx(kcontrol, &uinfo->id);
316         if (mux_idx >= spec->num_mux_defs)
317                 mux_idx = 0;
318         return snd_hda_input_mux_info(&spec->input_mux[mux_idx], uinfo);
319 }
320 
321 static int alc_mux_enum_get(struct snd_kcontrol *kcontrol,
322                             struct snd_ctl_elem_value *ucontrol)
323 {
324         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
325         struct alc_spec *spec = codec->spec;
326         unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
327 
328         ucontrol->value.enumerated.item[0] = spec->cur_mux[adc_idx];
329         return 0;
330 }
331 
332 static int alc_mux_enum_put(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         unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
338         unsigned int mux_idx = adc_idx >= spec->num_mux_defs ? 0 : adc_idx;
339         return snd_hda_input_mux_put(codec, &spec->input_mux[mux_idx], ucontrol,
340                                      spec->adc_nids[adc_idx],
341                                      &spec->cur_mux[adc_idx]);
342 }
343 
344 
345 /*
346  * channel mode setting
347  */
348 static int alc_ch_mode_info(struct snd_kcontrol *kcontrol,
349                             struct snd_ctl_elem_info *uinfo)
350 {
351         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
352         struct alc_spec *spec = codec->spec;
353         return snd_hda_ch_mode_info(codec, uinfo, spec->channel_mode,
354                                     spec->num_channel_mode);
355 }
356 
357 static int alc_ch_mode_get(struct snd_kcontrol *kcontrol,
358                            struct snd_ctl_elem_value *ucontrol)
359 {
360         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
361         struct alc_spec *spec = codec->spec;
362         return snd_hda_ch_mode_get(codec, ucontrol, spec->channel_mode,
363                                    spec->num_channel_mode,
364                                    spec->multiout.max_channels);
365 }
366 
367 static int alc_ch_mode_put(struct snd_kcontrol *kcontrol,
368                            struct snd_ctl_elem_value *ucontrol)
369 {
370         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
371         struct alc_spec *spec = codec->spec;
372         int err = snd_hda_ch_mode_put(codec, ucontrol, spec->channel_mode,
373                                       spec->num_channel_mode,
374                                       &spec->multiout.max_channels);
375         if (err >= 0 && spec->need_dac_fix)
376                 spec->multiout.num_dacs = spec->multiout.max_channels / 2;
377         return err;
378 }
379 
380 /*
381  * Control the mode of pin widget settings via the mixer.  "pc" is used
382  * instead of "%" to avoid consequences of accidently treating the % as 
383  * being part of a format specifier.  Maximum allowed length of a value is
384  * 63 characters plus NULL terminator.
385  *
386  * Note: some retasking pin complexes seem to ignore requests for input
387  * states other than HiZ (eg: PIN_VREFxx) and revert to HiZ if any of these
388  * are requested.  Therefore order this list so that this behaviour will not
389  * cause problems when mixer clients move through the enum sequentially.
390  * NIDs 0x0f and 0x10 have been observed to have this behaviour as of
391  * March 2006.
392  */
393 static char *alc_pin_mode_names[] = {
394         "Mic 50pc bias", "Mic 80pc bias",
395         "Line in", "Line out", "Headphone out",
396 };
397 static unsigned char alc_pin_mode_values[] = {
398         PIN_VREF50, PIN_VREF80, PIN_IN, PIN_OUT, PIN_HP,
399 };
400 /* The control can present all 5 options, or it can limit the options based
401  * in the pin being assumed to be exclusively an input or an output pin.  In
402  * addition, "input" pins may or may not process the mic bias option
403  * depending on actual widget capability (NIDs 0x0f and 0x10 don't seem to
404  * accept requests for bias as of chip versions up to March 2006) and/or
405  * wiring in the computer.
406  */
407 #define ALC_PIN_DIR_IN              0x00
408 #define ALC_PIN_DIR_OUT             0x01
409 #define ALC_PIN_DIR_INOUT           0x02
410 #define ALC_PIN_DIR_IN_NOMICBIAS    0x03
411 #define ALC_PIN_DIR_INOUT_NOMICBIAS 0x04
412 
413 /* Info about the pin modes supported by the different pin direction modes. 
414  * For each direction the minimum and maximum values are given.
415  */
416 static signed char alc_pin_mode_dir_info[5][2] = {
417         { 0, 2 },    /* ALC_PIN_DIR_IN */
418         { 3, 4 },    /* ALC_PIN_DIR_OUT */
419         { 0, 4 },    /* ALC_PIN_DIR_INOUT */
420         { 2, 2 },    /* ALC_PIN_DIR_IN_NOMICBIAS */
421         { 2, 4 },    /* ALC_PIN_DIR_INOUT_NOMICBIAS */
422 };
423 #define alc_pin_mode_min(_dir) (alc_pin_mode_dir_info[_dir][0])
424 #define alc_pin_mode_max(_dir) (alc_pin_mode_dir_info[_dir][1])
425 #define alc_pin_mode_n_items(_dir) \
426         (alc_pin_mode_max(_dir)-alc_pin_mode_min(_dir)+1)
427 
428 static int alc_pin_mode_info(struct snd_kcontrol *kcontrol,
429                              struct snd_ctl_elem_info *uinfo)
430 {
431         unsigned int item_num = uinfo->value.enumerated.item;
432         unsigned char dir = (kcontrol->private_value >> 16) & 0xff;
433 
434         uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
435         uinfo->count = 1;
436         uinfo->value.enumerated.items = alc_pin_mode_n_items(dir);
437 
438         if (item_num<alc_pin_mode_min(dir) || item_num>alc_pin_mode_max(dir))
439                 item_num = alc_pin_mode_min(dir);
440         strcpy(uinfo->value.enumerated.name, alc_pin_mode_names[item_num]);
441         return 0;
442 }
443 
444 static int alc_pin_mode_get(struct snd_kcontrol *kcontrol,
445                             struct snd_ctl_elem_value *ucontrol)
446 {
447         unsigned int i;
448         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
449         hda_nid_t nid = kcontrol->private_value & 0xffff;
450         unsigned char dir = (kcontrol->private_value >> 16) & 0xff;
451         long *valp = ucontrol->value.integer.value;
452         unsigned int pinctl = snd_hda_codec_read(codec, nid, 0,
453                                                  AC_VERB_GET_PIN_WIDGET_CONTROL,
454                                                  0x00);
455 
456         /* Find enumerated value for current pinctl setting */
457         i = alc_pin_mode_min(dir);
458         while (alc_pin_mode_values[i] != pinctl && i <= alc_pin_mode_max(dir))
459                 i++;
460         *valp = i <= alc_pin_mode_max(dir) ? i: alc_pin_mode_min(dir);
461         return 0;
462 }
463 
464 static int alc_pin_mode_put(struct snd_kcontrol *kcontrol,
465                             struct snd_ctl_elem_value *ucontrol)
466 {
467         signed int change;
468         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
469         hda_nid_t nid = kcontrol->private_value & 0xffff;
470         unsigned char dir = (kcontrol->private_value >> 16) & 0xff;
471         long val = *ucontrol->value.integer.value;
472         unsigned int pinctl = snd_hda_codec_read(codec, nid, 0,
473                                                  AC_VERB_GET_PIN_WIDGET_CONTROL,
474                                                  0x00);
475 
476         if (val < alc_pin_mode_min(dir) || val > alc_pin_mode_max(dir))
477                 val = alc_pin_mode_min(dir);
478 
479         change = pinctl != alc_pin_mode_values[val];
480         if (change) {
481                 /* Set pin mode to that requested */
482                 snd_hda_codec_write_cache(codec, nid, 0,
483                                           AC_VERB_SET_PIN_WIDGET_CONTROL,
484                                           alc_pin_mode_values[val]);
485 
486                 /* Also enable the retasking pin's input/output as required 
487                  * for the requested pin mode.  Enum values of 2 or less are
488                  * input modes.
489                  *
490                  * Dynamically switching the input/output buffers probably
491                  * reduces noise slightly (particularly on input) so we'll
492                  * do it.  However, having both input and output buffers
493                  * enabled simultaneously doesn't seem to be problematic if
494                  * this turns out to be necessary in the future.
495                  */
496                 if (val <= 2) {
497                         snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
498                                                  HDA_AMP_MUTE, HDA_AMP_MUTE);
499                         snd_hda_codec_amp_stereo(codec, nid, HDA_INPUT, 0,
500                                                  HDA_AMP_MUTE, 0);
501                 } else {
502                         snd_hda_codec_amp_stereo(codec, nid, HDA_INPUT, 0,
503                                                  HDA_AMP_MUTE, HDA_AMP_MUTE);
504                         snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
505                                                  HDA_AMP_MUTE, 0);
506                 }
507         }
508         return change;
509 }
510 
511 #define ALC_PIN_MODE(xname, nid, dir) \
512         { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0,  \
513           .info = alc_pin_mode_info, \
514           .get = alc_pin_mode_get, \
515           .put = alc_pin_mode_put, \
516           .private_value = nid | (dir<<16) }
517 
518 /* A switch control for ALC260 GPIO pins.  Multiple GPIOs can be ganged
519  * together using a mask with more than one bit set.  This control is
520  * currently used only by the ALC260 test model.  At this stage they are not
521  * needed for any "production" models.
522  */
523 #ifdef CONFIG_SND_DEBUG
524 #define alc_gpio_data_info      snd_ctl_boolean_mono_info
525 
526 static int alc_gpio_data_get(struct snd_kcontrol *kcontrol,
527                              struct snd_ctl_elem_value *ucontrol)
528 {
529         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
530         hda_nid_t nid = kcontrol->private_value & 0xffff;
531         unsigned char mask = (kcontrol->private_value >> 16) & 0xff;
532         long *valp = ucontrol->value.integer.value;
533         unsigned int val = snd_hda_codec_read(codec, nid, 0,
534                                               AC_VERB_GET_GPIO_DATA, 0x00);
535 
536         *valp = (val & mask) != 0;
537         return 0;
538 }
539 static int alc_gpio_data_put(struct snd_kcontrol *kcontrol,
540                              struct snd_ctl_elem_value *ucontrol)
541 {
542         signed int change;
543         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
544         hda_nid_t nid = kcontrol->private_value & 0xffff;
545         unsigned char mask = (kcontrol->private_value >> 16) & 0xff;
546         long val = *ucontrol->value.integer.value;
547         unsigned int gpio_data = snd_hda_codec_read(codec, nid, 0,
548                                                     AC_VERB_GET_GPIO_DATA,
549                                                     0x00);
550 
551         /* Set/unset the masked GPIO bit(s) as needed */
552         change = (val == 0 ? 0 : mask) != (gpio_data & mask);
553         if (val == 0)
554                 gpio_data &= ~mask;
555         else
556                 gpio_data |= mask;
557         snd_hda_codec_write_cache(codec, nid, 0,
558                                   AC_VERB_SET_GPIO_DATA, gpio_data);
559 
560         return change;
561 }
562 #define ALC_GPIO_DATA_SWITCH(xname, nid, mask) \
563         { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0,  \
564           .info = alc_gpio_data_info, \
565           .get = alc_gpio_data_get, \
566           .put = alc_gpio_data_put, \
567           .private_value = nid | (mask<<16) }
568 #endif   /* CONFIG_SND_DEBUG */
569 
570 /* A switch control to allow the enabling of the digital IO pins on the
571  * ALC260.  This is incredibly simplistic; the intention of this control is
572  * to provide something in the test model allowing digital outputs to be
573  * identified if present.  If models are found which can utilise these
574  * outputs a more complete mixer control can be devised for those models if
575  * necessary.
576  */
577 #ifdef CONFIG_SND_DEBUG
578 #define alc_spdif_ctrl_info     snd_ctl_boolean_mono_info
579 
580 static int alc_spdif_ctrl_get(struct snd_kcontrol *kcontrol,
581                               struct snd_ctl_elem_value *ucontrol)
582 {
583         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
584         hda_nid_t nid = kcontrol->private_value & 0xffff;
585         unsigned char mask = (kcontrol->private_value >> 16) & 0xff;
586         long *valp = ucontrol->value.integer.value;
587         unsigned int val = snd_hda_codec_read(codec, nid, 0,
588                                               AC_VERB_GET_DIGI_CONVERT_1, 0x00);
589 
590         *valp = (val & mask) != 0;
591         return 0;
592 }
593 static int alc_spdif_ctrl_put(struct snd_kcontrol *kcontrol,
594                               struct snd_ctl_elem_value *ucontrol)
595 {
596         signed int change;
597         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
598         hda_nid_t nid = kcontrol->private_value & 0xffff;
599         unsigned char mask = (kcontrol->private_value >> 16) & 0xff;
600         long val = *ucontrol->value.integer.value;
601         unsigned int ctrl_data = snd_hda_codec_read(codec, nid, 0,
602                                                     AC_VERB_GET_DIGI_CONVERT_1,
603                                                     0x00);
604 
605         /* Set/unset the masked control bit(s) as needed */
606         change = (val == 0 ? 0 : mask) != (ctrl_data & mask);
607         if (val==0)
608                 ctrl_data &= ~mask;
609         else
610                 ctrl_data |= mask;
611         snd_hda_codec_write_cache(codec, nid, 0, AC_VERB_SET_DIGI_CONVERT_1,
612                                   ctrl_data);
613 
614         return change;
615 }
616 #define ALC_SPDIF_CTRL_SWITCH(xname, nid, mask) \
617         { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0,  \
618           .info = alc_spdif_ctrl_info, \
619           .get = alc_spdif_ctrl_get, \
620           .put = alc_spdif_ctrl_put, \
621           .private_value = nid | (mask<<16) }
622 #endif   /* CONFIG_SND_DEBUG */
623 
624 /* A switch control to allow the enabling EAPD digital outputs on the ALC26x.
625  * Again, this is only used in the ALC26x test models to help identify when
626  * the EAPD line must be asserted for features to work.
627  */
628 #ifdef CONFIG_SND_DEBUG
629 #define alc_eapd_ctrl_info      snd_ctl_boolean_mono_info
630 
631 static int alc_eapd_ctrl_get(struct snd_kcontrol *kcontrol,
632                               struct snd_ctl_elem_value *ucontrol)
633 {
634         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
635         hda_nid_t nid = kcontrol->private_value & 0xffff;
636         unsigned char mask = (kcontrol->private_value >> 16) & 0xff;
637         long *valp = ucontrol->value.integer.value;
638         unsigned int val = snd_hda_codec_read(codec, nid, 0,
639                                               AC_VERB_GET_EAPD_BTLENABLE, 0x00);
640 
641         *valp = (val & mask) != 0;
642         return 0;
643 }
644 
645 static int alc_eapd_ctrl_put(struct snd_kcontrol *kcontrol,
646                               struct snd_ctl_elem_value *ucontrol)
647 {
648         int change;
649         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
650         hda_nid_t nid = kcontrol->private_value & 0xffff;
651         unsigned char mask = (kcontrol->private_value >> 16) & 0xff;
652         long val = *ucontrol->value.integer.value;
653         unsigned int ctrl_data = snd_hda_codec_read(codec, nid, 0,
654                                                     AC_VERB_GET_EAPD_BTLENABLE,
655                                                     0x00);
656 
657         /* Set/unset the masked control bit(s) as needed */
658         change = (!val ? 0 : mask) != (ctrl_data & mask);
659         if (!val)
660                 ctrl_data &= ~mask;
661         else
662                 ctrl_data |= mask;
663         snd_hda_codec_write_cache(codec, nid, 0, AC_VERB_SET_EAPD_BTLENABLE,
664                                   ctrl_data);
665 
666         return change;
667 }
668 
669 #define ALC_EAPD_CTRL_SWITCH(xname, nid, mask) \
670         { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0,  \
671           .info = alc_eapd_ctrl_info, \
672           .get = alc_eapd_ctrl_get, \
673           .put = alc_eapd_ctrl_put, \
674           .private_value = nid | (mask<<16) }
675 #endif   /* CONFIG_SND_DEBUG */
676 
677 /*
678  * set up from the preset table
679  */
680 static void setup_preset(struct alc_spec *spec,
681                          const struct alc_config_preset *preset)
682 {
683         int i;
684 
685         for (i = 0; i < ARRAY_SIZE(preset->mixers) && preset->mixers[i]; i++)
686                 spec->mixers[spec->num_mixers++] = preset->mixers[i];
687         for (i = 0; i < ARRAY_SIZE(preset->init_verbs) && preset->init_verbs[i];
688              i++)
689                 spec->init_verbs[spec->num_init_verbs++] =
690                         preset->init_verbs[i];
691         
692         spec->channel_mode = preset->channel_mode;
693         spec->num_channel_mode = preset->num_channel_mode;
694         spec->need_dac_fix = preset->need_dac_fix;
695 
696         spec->multiout.max_channels = spec->channel_mode[0].channels;
697 
698         spec->multiout.num_dacs = preset->num_dacs;
699         spec->multiout.dac_nids = preset->dac_nids;
700         spec->multiout.dig_out_nid = preset->dig_out_nid;
701         spec->multiout.hp_nid = preset->hp_nid;
702         
703         spec->num_mux_defs = preset->num_mux_defs;
704         if (!spec->num_mux_defs)
705                 spec->num_mux_defs = 1;
706         spec->input_mux = preset->input_mux;
707 
708         spec->num_adc_nids = preset->num_adc_nids;
709         spec->adc_nids = preset->adc_nids;
710         spec->dig_in_nid = preset->dig_in_nid;
711 
712         spec->unsol_event = preset->unsol_event;
713         spec->init_hook = preset->init_hook;
714 #ifdef CONFIG_SND_HDA_POWER_SAVE
715         spec->loopback.amplist = preset->loopbacks;
716 #endif
717 }
718 
719 /* Enable GPIO mask and set output */
720 static struct hda_verb alc_gpio1_init_verbs[] = {
721         {0x01, AC_VERB_SET_GPIO_MASK, 0x01},
722         {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
723         {0x01, AC_VERB_SET_GPIO_DATA, 0x01},
724         { }
725 };
726 
727 static struct hda_verb alc_gpio2_init_verbs[] = {
728         {0x01, AC_VERB_SET_GPIO_MASK, 0x02},
729         {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x02},
730         {0x01, AC_VERB_SET_GPIO_DATA, 0x02},
731         { }
732 };
733 
734 static struct hda_verb alc_gpio3_init_verbs[] = {
735         {0x01, AC_VERB_SET_GPIO_MASK, 0x03},
736         {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x03},
737         {0x01, AC_VERB_SET_GPIO_DATA, 0x03},
738         { }
739 };
740 
741 static void alc_sku_automute(struct hda_codec *codec)
742 {
743         struct alc_spec *spec = codec->spec;
744         unsigned int mute;
745         unsigned int present;
746         unsigned int hp_nid = spec->autocfg.hp_pins[0];
747         unsigned int sp_nid = spec->autocfg.speaker_pins[0];
748 
749         /* need to execute and sync at first */
750         snd_hda_codec_read(codec, hp_nid, 0, AC_VERB_SET_PIN_SENSE, 0);
751         present = snd_hda_codec_read(codec, hp_nid, 0,
752                                      AC_VERB_GET_PIN_SENSE, 0);
753         spec->jack_present = (present & 0x80000000) != 0;
754         if (spec->jack_present) {
755                 /* mute internal speaker */
756                 snd_hda_codec_amp_stereo(codec, sp_nid, HDA_OUTPUT, 0,
757                                          HDA_AMP_MUTE, HDA_AMP_MUTE);
758         } else {
759                 /* unmute internal speaker if necessary */
760                 mute = snd_hda_codec_amp_read(codec, hp_nid, 0, HDA_OUTPUT, 0);
761                 snd_hda_codec_amp_stereo(codec, sp_nid, HDA_OUTPUT, 0,
762                                          HDA_AMP_MUTE, mute);
763         }
764 }
765 
766 /* unsolicited event for HP jack sensing */
767 static void alc_sku_unsol_event(struct hda_codec *codec, unsigned int res)
768 {
769         if (codec->vendor_id == 0x10ec0880)
770                 res >>= 28;
771         else
772                 res >>= 26;
773         if (res != ALC880_HP_EVENT)
774                 return;
775 
776         alc_sku_automute(codec);
777 }
778 
779 /* 32-bit subsystem ID for BIOS loading in HD Audio codec.
780  *      31 ~ 16 :       Manufacture ID
781  *      15 ~ 8  :       SKU ID
782  *      7  ~ 0  :       Assembly ID
783  *      port-A --> pin 39/41, port-E --> pin 14/15, port-D --> pin 35/36
784  */
785 static void alc_subsystem_id(struct hda_codec *codec,
786                              unsigned int porta, unsigned int porte,
787                              unsigned int portd)
788 {
789         unsigned int ass, tmp, i;
790         unsigned nid;
791         struct alc_spec *spec = codec->spec;
792 
793         ass = codec->subsystem_id & 0xffff;
794         if ((ass != codec->bus->pci->subsystem_device) && (ass & 1))
795                 goto do_sku;
796 
797         /*      
798          * 31~30        : port conetcivity
799          * 29~21        : reserve
800          * 20           : PCBEEP input
801          * 19~16        : Check sum (15:1)
802          * 15~1         : Custom
803          * 0            : override
804         */
805         nid = 0x1d;
806         if (codec->vendor_id == 0x10ec0260)
807                 nid = 0x17;
808         ass = snd_hda_codec_read(codec, nid, 0,
809                                  AC_VERB_GET_CONFIG_DEFAULT, 0);
810         if (!(ass & 1) && !(ass & 0x100000))
811                 return;
812         if ((ass >> 30) != 1)   /* no physical connection */
813                 return;
814 
815         /* check sum */
816         tmp = 0;
817         for (i = 1; i < 16; i++) {
818                 if ((ass >> i) & 1)
819                         tmp++;
820         }
821         if (((ass >> 16) & 0xf) != tmp)
822                 return;
823 do_sku:
824         /*
825          * 0 : override
826          * 1 :  Swap Jack
827          * 2 : 0 --> Desktop, 1 --> Laptop
828          * 3~5 : External Amplifier control
829          * 7~6 : Reserved
830         */
831         tmp = (ass & 0x38) >> 3;        /* external Amp control */
832         switch (tmp) {
833         case 1:
834                 snd_hda_sequence_write(codec, alc_gpio1_init_verbs);
835                 break;
836         case 3:
837                 snd_hda_sequence_write(codec, alc_gpio2_init_verbs);
838                 break;
839         case 7:
840                 snd_hda_sequence_write(codec, alc_gpio3_init_verbs);
841                 break;
842         case 5: /* set EAPD output high */
843                 switch (codec->vendor_id) {
844                 case 0x10ec0260:
845                         snd_hda_codec_write(codec, 0x0f, 0,
846                                             AC_VERB_SET_EAPD_BTLENABLE, 2);
847                         snd_hda_codec_write(codec, 0x10, 0,
848                                             AC_VERB_SET_EAPD_BTLENABLE, 2);
849                         break;
850                 case 0x10ec0262:
851                 case 0x10ec0267:
852                 case 0x10ec0268:
853                 case 0x10ec0269:
854                 case 0x10ec0862:
855                 case 0x10ec0662:        
856                         snd_hda_codec_write(codec, 0x14, 0,
857                                             AC_VERB_SET_EAPD_BTLENABLE, 2);
858                         snd_hda_codec_write(codec, 0x15, 0,
859                                             AC_VERB_SET_EAPD_BTLENABLE, 2);
860                         break;
861                 }
862                 switch (codec->vendor_id) {
863                 case 0x10ec0260:
864                         snd_hda_codec_write(codec, 0x1a, 0,
865                                             AC_VERB_SET_COEF_INDEX, 7);
866                         tmp = snd_hda_codec_read(codec, 0x1a, 0,
867                                                  AC_VERB_GET_PROC_COEF, 0);
868                         snd_hda_codec_write(codec, 0x1a, 0,
869                                             AC_VERB_SET_COEF_INDEX, 7);
870                         snd_hda_codec_write(codec, 0x1a, 0,
871                                             AC_VERB_SET_PROC_COEF,
872                                             tmp | 0x2010);
873                         break;
874                 case 0x10ec0262:
875                 case 0x10ec0880:
876                 case 0x10ec0882:
877                 case 0x10ec0883:
878                 case 0x10ec0885:
879                 case 0x10ec0888:
880                         snd_hda_codec_write(codec, 0x20, 0,
881                                             AC_VERB_SET_COEF_INDEX, 7);
882                         tmp = snd_hda_codec_read(codec, 0x20, 0,
883                                                  AC_VERB_GET_PROC_COEF, 0);
884                         snd_hda_codec_write(codec, 0x20, 0,
885                                             AC_VERB_SET_COEF_INDEX, 7); 
886                         snd_hda_codec_write(codec, 0x20, 0,
887                                             AC_VERB_SET_PROC_COEF,
888                                             tmp | 0x2010);
889                         break;
890                 case 0x10ec0267:
891                 case 0x10ec0268:
892                         snd_hda_codec_write(codec, 0x20, 0,
893                                             AC_VERB_SET_COEF_INDEX, 7);
894                         tmp = snd_hda_codec_read(codec, 0x20, 0,
895                                                  AC_VERB_GET_PROC_COEF, 0);
896                         snd_hda_codec_write(codec, 0x20, 0,
897                                             AC_VERB_SET_COEF_INDEX, 7); 
898                         snd_hda_codec_write(codec, 0x20, 0,
899                                             AC_VERB_SET_PROC_COEF,
900                                             tmp | 0x3000);
901                         break;
902                 }
903         default:
904                 break;
905         }
906         
907         /* is laptop or Desktop and enable the function "Mute internal speaker
908          * when the external headphone out jack is plugged"
909          */
910         if (!(ass & 0x8000))
911                 return;
912         /*
913          * 10~8 : Jack location
914          * 12~11: Headphone out -> 00: PortA, 01: PortE, 02: PortD, 03: Resvered
915          * 14~13: Resvered
916          * 15   : 1 --> enable the function "Mute internal speaker
917          *              when the external headphone out jack is plugged"
918          */
919         if (!spec->autocfg.speaker_pins[0]) {
920                 if (spec->autocfg.line_out_pins[0])
921                         spec->autocfg.speaker_pins[0] =
922                                 spec->autocfg.line_out_pins[0];
923                 else
924                         return;
925         }
926 
927         if (!spec->autocfg.hp_pins[0]) {
928                 tmp = (ass >> 11) & 0x3;        /* HP to chassis */
929                 if (tmp == 0)
930                         spec->autocfg.hp_pins[0] = porta;
931                 else if (tmp == 1)
932                         spec->autocfg.hp_pins[0] = porte;
933                 else if (tmp == 2)
934                         spec->autocfg.hp_pins[0] = portd;
935                 else
936                         return;
937         }
938 
939         snd_hda_codec_write(codec, spec->autocfg.hp_pins[0], 0,
940                             AC_VERB_SET_UNSOLICITED_ENABLE,
941                             AC_USRSP_EN | ALC880_HP_EVENT);
942         spec->unsol_event = alc_sku_unsol_event;
943         spec->init_hook = alc_sku_automute;     
944 }
945 
946 /*
947  * Fix-up pin default configurations
948  */
949 
950 struct alc_pincfg {
951         hda_nid_t nid;
952         u32 val;
953 };
954 
955 static void alc_fix_pincfg(struct hda_codec *codec,
956                            const struct snd_pci_quirk *quirk,
957                            const struct alc_pincfg **pinfix)
958 {
959         const struct alc_pincfg *cfg;
960 
961         quirk = snd_pci_quirk_lookup(codec->bus->pci, quirk);
962         if (!quirk)
963                 return;
964 
965         cfg = pinfix[quirk->value];
966         for (; cfg->nid; cfg++) {
967                 int i;
968                 u32 val = cfg->val;
969                 for (i = 0; i < 4; i++) {
970                         snd_hda_codec_write(codec, cfg->nid, 0,
971                                     AC_VERB_SET_CONFIG_DEFAULT_BYTES_0 + i,
972                                     val & 0xff);
973                         val >>= 8;
974                 }
975         }
976 }
977 
978 /*
979  * ALC880 3-stack model
980  *
981  * DAC: Front = 0x02 (0x0c), Surr = 0x05 (0x0f), CLFE = 0x04 (0x0e)
982  * Pin assignment: Front = 0x14, Line-In/Surr = 0x1a, Mic/CLFE = 0x18,
983  *                 F-Mic = 0x1b, HP = 0x19
984  */
985 
986 static hda_nid_t alc880_dac_nids[4] = {
987         /* front, rear, clfe, rear_surr */
988         0x02, 0x05, 0x04, 0x03
989 };
990 
991 static hda_nid_t alc880_adc_nids[3] = {
992         /* ADC0-2 */
993         0x07, 0x08, 0x09,
994 };
995 
996 /* The datasheet says the node 0x07 is connected from inputs,
997  * but it shows zero connection in the real implementation on some devices.
998  * Note: this is a 915GAV bug, fixed on 915GLV
999  */
1000 static hda_nid_t alc880_adc_nids_alt[2] = {
1001         /* ADC1-2 */
1002         0x08, 0x09,
1003 };
1004 
1005 #define ALC880_DIGOUT_NID       0x06
1006 #define ALC880_DIGIN_NID        0x0a
1007 
1008 static struct hda_input_mux alc880_capture_source = {
1009         .num_items = 4,
1010         .items = {
1011                 { "Mic", 0x0 },
1012                 { "Front Mic", 0x3 },
1013                 { "Line", 0x2 },
1014                 { "CD", 0x4 },
1015         },
1016 };
1017 
1018 /* channel source setting (2/6 channel selection for 3-stack) */
1019 /* 2ch mode */
1020 static struct hda_verb alc880_threestack_ch2_init[] = {
1021         /* set line-in to input, mute it */
1022         { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
1023         { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
1024         /* set mic-in to input vref 80%, mute it */
1025         { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
1026         { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
1027         { } /* end */
1028 };
1029 
1030 /* 6ch mode */
1031 static struct hda_verb alc880_threestack_ch6_init[] = {
1032         /* set line-in to output, unmute it */
1033         { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
1034         { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
1035         /* set mic-in to output, unmute it */
1036         { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
1037         { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
1038         { } /* end */
1039 };
1040 
1041 static struct hda_channel_mode alc880_threestack_modes[2] = {
1042         { 2, alc880_threestack_ch2_init },
1043         { 6, alc880_threestack_ch6_init },
1044 };
1045 
1046 static struct snd_kcontrol_new alc880_three_stack_mixer[] = {
1047         HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1048         HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
1049         HDA_CODEC_VOLUME("Surround Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
1050         HDA_BIND_MUTE("Surround Playback Switch", 0x0f, 2, HDA_INPUT),
1051         HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
1052         HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
1053         HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
1054         HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
1055         HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
1056         HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
1057         HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
1058         HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
1059         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1060         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
1061         HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x3, HDA_INPUT),
1062         HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x3, HDA_INPUT),
1063         HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
1064         HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
1065         HDA_CODEC_MUTE("Headphone Playback Switch", 0x19, 0x0, HDA_OUTPUT),
1066         {
1067                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1068                 .name = "Channel Mode",
1069                 .info = alc_ch_mode_info,
1070                 .get = alc_ch_mode_get,
1071                 .put = alc_ch_mode_put,
1072         },
1073         { } /* end */
1074 };
1075 
1076 /* capture mixer elements */
1077 static struct snd_kcontrol_new alc880_capture_mixer[] = {
1078         HDA_CODEC_VOLUME("Capture Volume", 0x07, 0x0, HDA_INPUT),
1079         HDA_CODEC_MUTE("Capture Switch", 0x07, 0x0, HDA_INPUT),
1080         HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x08, 0x0, HDA_INPUT),
1081         HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x08, 0x0, HDA_INPUT),
1082         HDA_CODEC_VOLUME_IDX("Capture Volume", 2, 0x09, 0x0, HDA_INPUT),
1083         HDA_CODEC_MUTE_IDX("Capture Switch", 2, 0x09, 0x0, HDA_INPUT),
1084         {
1085                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1086                 /* The multiple "Capture Source" controls confuse alsamixer
1087                  * So call somewhat different..
1088                  */
1089                 /* .name = "Capture Source", */
1090                 .name = "Input Source",
1091                 .count = 3,
1092                 .info = alc_mux_enum_info,
1093                 .get = alc_mux_enum_get,
1094                 .put = alc_mux_enum_put,
1095         },
1096         { } /* end */
1097 };
1098 
1099 /* capture mixer elements (in case NID 0x07 not available) */
1100 static struct snd_kcontrol_new alc880_capture_alt_mixer[] = {
1101         HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
1102         HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
1103         HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
1104         HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
1105         {
1106                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1107                 /* The multiple "Capture Source" controls confuse alsamixer
1108                  * So call somewhat different..
1109                  */
1110                 /* .name = "Capture Source", */
1111                 .name = "Input Source",
1112                 .count = 2,
1113                 .info = alc_mux_enum_info,
1114                 .get = alc_mux_enum_get,
1115                 .put = alc_mux_enum_put,
1116         },
1117         { } /* end */
1118 };
1119 
1120 
1121 
1122 /*
1123  * ALC880 5-stack model
1124  *
1125  * DAC: Front = 0x02 (0x0c), Surr = 0x05 (0x0f), CLFE = 0x04 (0x0d),
1126  *      Side = 0x02 (0xd)
1127  * Pin assignment: Front = 0x14, Surr = 0x17, CLFE = 0x16
1128  *                 Line-In/Side = 0x1a, Mic = 0x18, F-Mic = 0x1b, HP = 0x19
1129  */
1130 
1131 /* additional mixers to alc880_three_stack_mixer */
1132 static struct snd_kcontrol_new alc880_five_stack_mixer[] = {
1133         HDA_CODEC_VOLUME("Side Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
1134         HDA_BIND_MUTE("Side Playback Switch", 0x0d, 2, HDA_INPUT),
1135         { } /* end */
1136 };
1137 
1138 /* channel source setting (6/8 channel selection for 5-stack) */
1139 /* 6ch mode */
1140 static struct hda_verb alc880_fivestack_ch6_init[] = {
1141         /* set line-in to input, mute it */
1142         { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
1143         { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
1144         { } /* end */
1145 };
1146 
1147 /* 8ch mode */
1148 static struct hda_verb alc880_fivestack_ch8_init[] = {
1149         /* set line-in to output, unmute it */
1150         { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
1151         { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
1152         { } /* end */
1153 };
1154 
1155 static struct hda_channel_mode alc880_fivestack_modes[2] = {
1156         { 6, alc880_fivestack_ch6_init },
1157         { 8, alc880_fivestack_ch8_init },
1158 };
1159 
1160 
1161 /*
1162  * ALC880 6-stack model
1163  *
1164  * DAC: Front = 0x02 (0x0c), Surr = 0x03 (0x0d), CLFE = 0x04 (0x0e),
1165  *      Side = 0x05 (0x0f)
1166  * Pin assignment: Front = 0x14, Surr = 0x15, CLFE = 0x16, Side = 0x17,
1167  *   Mic = 0x18, F-Mic = 0x19, Line = 0x1a, HP = 0x1b
1168  */
1169 
1170 static hda_nid_t alc880_6st_dac_nids[4] = {
1171         /* front, rear, clfe, rear_surr */
1172         0x02, 0x03, 0x04, 0x05
1173 };
1174 
1175 static struct hda_input_mux alc880_6stack_capture_source = {
1176         .num_items = 4,
1177         .items = {
1178                 { "Mic", 0x0 },
1179                 { "Front Mic", 0x1 },
1180                 { "Line", 0x2 },
1181                 { "CD", 0x4 },
1182         },
1183 };
1184 
1185 /* fixed 8-channels */
1186 static struct hda_channel_mode alc880_sixstack_modes[1] = {
1187         { 8, NULL },
1188 };
1189 
1190 static struct snd_kcontrol_new alc880_six_stack_mixer[] = {
1191         HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1192         HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
1193         HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
1194         HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
1195         HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
1196         HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
1197         HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
1198         HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
1199         HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
1200         HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT),
1201         HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
1202         HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
1203         HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
1204         HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
1205         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1206         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
1207         HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
1208         HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
1209         HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
1210         HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
1211         {
1212                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1213                 .name = "Channel Mode",
1214                 .info = alc_ch_mode_info,
1215                 .get = alc_ch_mode_get,
1216                 .put = alc_ch_mode_put,
1217         },
1218         { } /* end */
1219 };
1220 
1221 
1222 /*
1223  * ALC880 W810 model
1224  *
1225  * W810 has rear IO for:
1226  * Front (DAC 02)
1227  * Surround (DAC 03)
1228  * Center/LFE (DAC 04)
1229  * Digital out (06)
1230  *
1231  * The system also has a pair of internal speakers, and a headphone jack.
1232  * These are both connected to Line2 on the codec, hence to DAC 02.
1233  * 
1234  * There is a variable resistor to control the speaker or headphone
1235  * volume. This is a hardware-only device without a software API.
1236  *
1237  * Plugging headphones in will disable the internal speakers. This is
1238  * implemented in hardware, not via the driver using jack sense. In
1239  * a similar fashion, plugging into the rear socket marked "front" will
1240  * disable both the speakers and headphones.
1241  *
1242  * For input, there's a microphone jack, and an "audio in" jack.
1243  * These may not do anything useful with this driver yet, because I
1244  * haven't setup any initialization verbs for these yet...
1245  */
1246 
1247 static hda_nid_t alc880_w810_dac_nids[3] = {
1248         /* front, rear/surround, clfe */
1249         0x02, 0x03, 0x04
1250 };
1251 
1252 /* fixed 6 channels */
1253 static struct hda_channel_mode alc880_w810_modes[1] = {
1254         { 6, NULL }
1255 };
1256 
1257 /* Pin assignment: Front = 0x14, Surr = 0x15, CLFE = 0x16, HP = 0x1b */
1258 static struct snd_kcontrol_new alc880_w810_base_mixer[] = {
1259         HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1260         HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
1261         HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
1262         HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
1263         HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
1264         HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
1265         HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
1266         HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
1267         HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
1268         { } /* end */
1269 };
1270 
1271 
1272 /*
1273  * Z710V model
1274  *
1275  * DAC: Front = 0x02 (0x0c), HP = 0x03 (0x0d)
1276  * Pin assignment: Front = 0x14, HP = 0x15, Mic = 0x18, Mic2 = 0x19(?),
1277  *                 Line = 0x1a
1278  */
1279 
1280 static hda_nid_t alc880_z71v_dac_nids[1] = {
1281         0x02
1282 };
1283 #define ALC880_Z71V_HP_DAC      0x03
1284 
1285 /* fixed 2 channels */
1286 static struct hda_channel_mode alc880_2_jack_modes[1] = {
1287         { 2, NULL }
1288 };
1289 
1290 static struct snd_kcontrol_new alc880_z71v_mixer[] = {
1291         HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1292         HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
1293         HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
1294         HDA_BIND_MUTE("Headphone Playback Switch", 0x0d, 2, HDA_INPUT),
1295         HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
1296         HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
1297         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1298         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
1299         { } /* end */
1300 };
1301 
1302 
1303 /*
1304  * ALC880 F1734 model
1305  *
1306  * DAC: HP = 0x02 (0x0c), Front = 0x03 (0x0d)
1307  * Pin assignment: HP = 0x14, Front = 0x15, Mic = 0x18
1308  */
1309 
1310 static hda_nid_t alc880_f1734_dac_nids[1] = {
1311         0x03
1312 };
1313 #define ALC880_F1734_HP_DAC     0x02
1314 
1315 static struct snd_kcontrol_new alc880_f1734_mixer[] = {
1316         HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1317         HDA_BIND_MUTE("Headphone Playback Switch", 0x0c, 2, HDA_INPUT),
1318         HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
1319         HDA_BIND_MUTE("Speaker Playback Switch", 0x0d, 2, HDA_INPUT),
1320         HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
1321         HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
1322         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1323         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
1324         { } /* end */
1325 };
1326 
1327 
1328 /*
1329  * ALC880 ASUS model
1330  *
1331  * DAC: HP/Front = 0x02 (0x0c), Surr = 0x03 (0x0d), CLFE = 0x04 (0x0e)
1332  * Pin assignment: HP/Front = 0x14, Surr = 0x15, CLFE = 0x16,
1333  *  Mic = 0x18, Line = 0x1a
1334  */
1335 
1336 #define alc880_asus_dac_nids    alc880_w810_dac_nids    /* identical with w810 */
1337 #define alc880_asus_modes       alc880_threestack_modes /* 2/6 channel mode */
1338 
1339 static struct snd_kcontrol_new alc880_asus_mixer[] = {
1340         HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1341         HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
1342         HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
1343         HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
1344         HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
1345         HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
1346         HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
1347         HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
1348         HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
1349         HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
1350         HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
1351         HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
1352         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1353         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
1354         {
1355                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1356                 .name = "Channel Mode",
1357                 .info = alc_ch_mode_info,
1358                 .get = alc_ch_mode_get,
1359                 .put = alc_ch_mode_put,
1360         },
1361         { } /* end */
1362 };
1363 
1364 /*
1365  * ALC880 ASUS W1V model
1366  *
1367  * DAC: HP/Front = 0x02 (0x0c), Surr = 0x03 (0x0d), CLFE = 0x04 (0x0e)
1368  * Pin assignment: HP/Front = 0x14, Surr = 0x15, CLFE = 0x16,
1369  *  Mic = 0x18, Line = 0x1a, Line2 = 0x1b
1370  */
1371 
1372 /* additional mixers to alc880_asus_mixer */
1373 static struct snd_kcontrol_new alc880_asus_w1v_mixer[] = {
1374         HDA_CODEC_VOLUME("Line2 Playback Volume", 0x0b, 0x03, HDA_INPUT),
1375         HDA_CODEC_MUTE("Line2 Playback Switch", 0x0b, 0x03, HDA_INPUT),
1376         { } /* end */
1377 };
1378 
1379 /* additional mixers to alc880_asus_mixer */
1380 static struct snd_kcontrol_new alc880_pcbeep_mixer[] = {
1381         HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
1382         HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
1383         { } /* end */
1384 };
1385 
1386 /* TCL S700 */
1387 static struct snd_kcontrol_new alc880_tcl_s700_mixer[] = {
1388         HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1389         HDA_CODEC_MUTE("Front Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
1390         HDA_CODEC_MUTE("Headphone Playback Switch", 0x14, 0x0, HDA_OUTPUT),
1391         HDA_CODEC_VOLUME("CD Playback Volume", 0x0B, 0x04, HDA_INPUT),
1392         HDA_CODEC_MUTE("CD Playback Switch", 0x0B, 0x04, HDA_INPUT),
1393         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0B, 0x0, HDA_INPUT),
1394         HDA_CODEC_MUTE("Mic Playback Switch", 0x0B, 0x0, HDA_INPUT),
1395         HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
1396         HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
1397         {
1398                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1399                 /* The multiple "Capture Source" controls confuse alsamixer
1400                  * So call somewhat different..
1401                  */
1402                 /* .name = "Capture Source", */
1403                 .name = "Input Source",
1404                 .count = 1,
1405                 .info = alc_mux_enum_info,
1406                 .get = alc_mux_enum_get,
1407                 .put = alc_mux_enum_put,
1408         },
1409         { } /* end */
1410 };
1411 
1412 /* Uniwill */
1413 static struct snd_kcontrol_new alc880_uniwill_mixer[] = {
1414         HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1415         HDA_BIND_MUTE("Headphone Playback Switch", 0x0c, 2, HDA_INPUT),
1416         HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
1417         HDA_BIND_MUTE("Speaker Playback Switch", 0x0d, 2, HDA_INPUT),
1418         HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
1419         HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
1420         HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
1421         HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
1422         HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
1423         HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
1424         HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
1425         HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
1426         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1427         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
1428         HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
1429         HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
1430         HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
1431         HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
1432         {
1433                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1434                 .name = "Channel Mode",
1435                 .info = alc_ch_mode_info,
1436                 .get = alc_ch_mode_get,
1437                 .put = alc_ch_mode_put,
1438         },
1439         { } /* end */
1440 };
1441 
1442 static struct snd_kcontrol_new alc880_fujitsu_mixer[] = {
1443         HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1444         HDA_BIND_MUTE("Headphone Playback Switch", 0x0c, 2, HDA_INPUT),
1445         HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
1446         HDA_BIND_MUTE("Speaker Playback Switch", 0x0d, 2, HDA_INPUT),
1447         HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
1448         HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
1449         HDA_CODEC_VOLUME("Ext Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1450         HDA_CODEC_MUTE("Ext Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
1451         HDA_CODEC_VOLUME("Int Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
1452         HDA_CODEC_MUTE("Int Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
1453         { } /* end */
1454 };
1455 
1456 static struct snd_kcontrol_new alc880_uniwill_p53_mixer[] = {
1457         HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1458         HDA_BIND_MUTE("Headphone Playback Switch", 0x0c, 2, HDA_INPUT),
1459         HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
1460         HDA_BIND_MUTE("Speaker Playback Switch", 0x0d, 2, HDA_INPUT),
1461         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1462         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
1463         { } /* end */
1464 };
1465 
1466 /*
1467  * virtual master controls
1468  */
1469 
1470 /*
1471  * slave controls for virtual master
1472  */
1473 static const char *alc_slave_vols[] = {
1474         "Front Playback Volume",
1475         "Surround Playback Volume",
1476         "Center Playback Volume",
1477         "LFE Playback Volume",
1478         "Side Playback Volume",
1479         "Headphone Playback Volume",
1480         "Speaker Playback Volume",
1481         "Mono Playback Volume",
1482         "Line-Out Playback Volume",
1483         NULL,
1484 };
1485 
1486 static const char *alc_slave_sws[] = {
1487         "Front Playback Switch",
1488         "Surround Playback Switch",
1489         "Center Playback Switch",
1490         "LFE Playback Switch",
1491         "Side Playback Switch",
1492         "Headphone Playback Switch",
1493         "Speaker Playback Switch",
1494         "Mono Playback Switch",
1495         "IEC958 Playback Switch",
1496         NULL,
1497 };
1498 
1499 /*
1500  * build control elements
1501  */
1502 static int alc_build_controls(struct hda_codec *codec)
1503 {
1504         struct alc_spec *spec = codec->spec;
1505         int err;
1506         int i;
1507 
1508         for (i = 0; i < spec->num_mixers; i++) {
1509                 err = snd_hda_add_new_ctls(codec, spec->mixers[i]);
1510                 if (err < 0)
1511                         return err;
1512         }
1513 
1514         if (spec->multiout.dig_out_nid) {
1515                 err = snd_hda_create_spdif_out_ctls(codec,
1516                                                     spec->multiout.dig_out_nid);
1517                 if (err < 0)
1518                         return err;
1519         }
1520         if (spec->dig_in_nid) {
1521                 err = snd_hda_create_spdif_in_ctls(codec, spec->dig_in_nid);
1522                 if (err < 0)
1523                         return err;
1524         }
1525 
1526         /* if we have no master control, let's create it */
1527         if (!snd_hda_find_mixer_ctl(codec, "Master Playback Volume")) {
1528                 snd_hda_set_vmaster_tlv(codec, spec->vmaster_nid,
1529                                         HDA_OUTPUT, spec->vmaster_tlv);
1530                 err = snd_hda_add_vmaster(codec, "Master Playback Volume",
1531                                           spec->vmaster_tlv, alc_slave_vols);
1532                 if (err < 0)
1533                         return err;
1534         }
1535         if (!snd_hda_find_mixer_ctl(codec, "Master Playback Switch")) {
1536                 err = snd_hda_add_vmaster(codec, "Master Playback Switch",
1537                                           NULL, alc_slave_sws);
1538                 if (err < 0)
1539                         return err;
1540         }
1541 
1542         return 0;
1543 }
1544 
1545 
1546 /*
1547  * initialize the codec volumes, etc
1548  */
1549 
1550 /*
1551  * generic initialization of ADC, input mixers and output mixers
1552  */
1553 static struct hda_verb alc880_volume_init_verbs[] = {
1554         /*
1555          * Unmute ADC0-2 and set the default input to mic-in
1556          */
1557         {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
1558         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1559         {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
1560         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1561         {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
1562         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1563 
1564         /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
1565          * mixer widget
1566          * Note: PASD motherboards uses the Line In 2 as the input for front
1567          * panel mic (mic 2)
1568          */
1569         /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
1570         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1571         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1572         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
1573         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
1574         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
1575         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)},
1576         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)},
1577 
1578         /*
1579          * Set up output mixers (0x0c - 0x0f)
1580          */
1581         /* set vol=0 to output mixers */
1582         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1583         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1584         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1585         {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1586         /* set up input amps for analog loopback */
1587         /* Amp Indices: DAC = 0, mixer = 1 */
1588         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1589         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1590         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1591         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1592         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1593         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1594         {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1595         {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1596 
1597         { }
1598 };
1599 
1600 /*
1601  * 3-stack pin configuration:
1602  * front = 0x14, mic/clfe = 0x18, HP = 0x19, line/surr = 0x1a, f-mic = 0x1b
1603  */
1604 static struct hda_verb alc880_pin_3stack_init_verbs[] = {
1605         /*
1606          * preset connection lists of input pins
1607          * 0 = front, 1 = rear_surr, 2 = CLFE, 3 = surround
1608          */
1609         {0x10, AC_VERB_SET_CONNECT_SEL, 0x02}, /* mic/clfe */
1610         {0x11, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
1611         {0x12, AC_VERB_SET_CONNECT_SEL, 0x03}, /* line/surround */
1612 
1613         /*
1614          * Set pin mode and muting
1615          */
1616         /* set front pin widgets 0x14 for output */
1617         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1618         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1619         /* Mic1 (rear panel) pin widget for input and vref at 80% */
1620         {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1621         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1622         /* Mic2 (as headphone out) for HP output */
1623         {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1624         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1625         /* Line In pin widget for input */
1626         {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1627         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1628         /* Line2 (as front mic) pin widget for input and vref at 80% */
1629         {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1630         {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1631         /* CD pin widget for input */
1632         {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1633 
1634         { }
1635 };
1636 
1637 /*
1638  * 5-stack pin configuration:
1639  * front = 0x14, surround = 0x17, clfe = 0x16, mic = 0x18, HP = 0x19,
1640  * line-in/side = 0x1a, f-mic = 0x1b
1641  */
1642 static struct hda_verb alc880_pin_5stack_init_verbs[] = {
1643         /*
1644          * preset connection lists of input pins
1645          * 0 = front, 1 = rear_surr, 2 = CLFE, 3 = surround
1646          */
1647         {0x11, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
1648         {0x12, AC_VERB_SET_CONNECT_SEL, 0x01}, /* line/side */
1649 
1650         /*
1651          * Set pin mode and muting
1652          */
1653         /* set pin widgets 0x14-0x17 for output */
1654         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1655         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1656         {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1657         {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1658         /* unmute pins for output (no gain on this amp) */
1659         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1660         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1661         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1662         {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1663 
1664         /* Mic1 (rear panel) pin widget for input and vref at 80% */
1665         {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1666         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1667         /* Mic2 (as headphone out) for HP output */
1668         {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1669         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1670         /* Line In pin widget for input */
1671         {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1672         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1673         /* Line2 (as front mic) pin widget for input and vref at 80% */
1674         {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1675         {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1676         /* CD pin widget for input */
1677         {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1678 
1679         { }
1680 };
1681 
1682 /*
1683  * W810 pin configuration:
1684  * front = 0x14, surround = 0x15, clfe = 0x16, HP = 0x1b
1685  */
1686 static struct hda_verb alc880_pin_w810_init_verbs[] = {
1687         /* hphone/speaker input selector: front DAC */
1688         {0x13, AC_VERB_SET_CONNECT_SEL, 0x0},
1689 
1690         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1691         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1692         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1693         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1694         {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1695         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1696 
1697         {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1698         {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1699 
1700         { }
1701 };
1702 
1703 /*
1704  * Z71V pin configuration:
1705  * Speaker-out = 0x14, HP = 0x15, Mic = 0x18, Line-in = 0x1a, Mic2 = 0x1b (?)
1706  */
1707 static struct hda_verb alc880_pin_z71v_init_verbs[] = {
1708         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1709         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1710         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1711         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1712 
1713         {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1714         {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1715         {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1716         {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1717 
1718         { }
1719 };
1720 
1721 /*
1722  * 6-stack pin configuration:
1723  * front = 0x14, surr = 0x15, clfe = 0x16, side = 0x17, mic = 0x18,
1724  * f-mic = 0x19, line = 0x1a, HP = 0x1b
1725  */
1726 static struct hda_verb alc880_pin_6stack_init_verbs[] = {
1727         {0x13, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
1728 
1729         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1730         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1731         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1732         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1733         {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1734         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1735         {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1736         {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1737 
1738         {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1739         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1740         {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1741         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1742         {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1743         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1744         {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1745         {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1746         {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1747         
1748         { }
1749 };
1750 
1751 /*
1752  * Uniwill pin configuration:
1753  * HP = 0x14, InternalSpeaker = 0x15, mic = 0x18, internal mic = 0x19,
1754  * line = 0x1a
1755  */
1756 static struct hda_verb alc880_uniwill_init_verbs[] = {
1757         {0x13, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
1758 
1759         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1760         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1761         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1762         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1763         {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1764         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1765         {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1766         {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1767         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
1768         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
1769         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
1770         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
1771         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
1772         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
1773 
1774         {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1775         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1776         {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1777         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1778         {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1779         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1780         /* {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP}, */
1781         /* {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, */
1782         {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1783 
1784         {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
1785         {0x18, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_MIC_EVENT},
1786 
1787         { }
1788 };
1789 
1790 /*
1791 * Uniwill P53
1792 * HP = 0x14, InternalSpeaker = 0x15, mic = 0x19, 
1793  */
1794 static struct hda_verb alc880_uniwill_p53_init_verbs[] = {
1795         {0x13, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
1796 
1797         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1798         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1799         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1800         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1801         {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1802         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1803         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
1804         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
1805         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
1806         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
1807         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
1808         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
1809 
1810         {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1811         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1812         {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1813         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1814         {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1815         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1816 
1817         {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
1818         {0x21, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_DCVOL_EVENT},
1819 
1820         { }
1821 };
1822 
1823 static struct hda_verb alc880_beep_init_verbs[] = {
1824         { 0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(5) },
1825         { }
1826 };
1827 
1828 /* toggle speaker-output according to the hp-jack state */
1829 static void alc880_uniwill_hp_automute(struct hda_codec *codec)
1830 {
1831         unsigned int present;
1832         unsigned char bits;
1833 
1834         present = snd_hda_codec_read(codec, 0x14, 0,
1835                                      AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
1836         bits = present ? HDA_AMP_MUTE : 0;
1837         snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0,
1838                                  HDA_AMP_MUTE, bits);
1839         snd_hda_codec_amp_stereo(codec, 0x16, HDA_OUTPUT, 0,
1840                                  HDA_AMP_MUTE, bits);
1841 }
1842 
1843 /* auto-toggle front mic */
1844 static void alc880_uniwill_mic_automute(struct hda_codec *codec)
1845 {
1846         unsigned int present;
1847         unsigned char bits;
1848 
1849         present = snd_hda_codec_read(codec, 0x18, 0,
1850                                      AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
1851         bits = present ? HDA_AMP_MUTE : 0;
1852         snd_hda_codec_amp_stereo(codec, 0x0b, HDA_INPUT, 1, HDA_AMP_MUTE, bits);
1853 }
1854 
1855 static void alc880_uniwill_automute(struct hda_codec *codec)
1856 {
1857         alc880_uniwill_hp_automute(codec);
1858         alc880_uniwill_mic_automute(codec);
1859 }
1860 
1861 static void alc880_uniwill_unsol_event(struct hda_codec *codec,
1862                                        unsigned int res)
1863 {
1864         /* Looks like the unsol event is incompatible with the standard
1865          * definition.  4bit tag is placed at 28 bit!
1866          */
1867         switch (res >> 28) {
1868         case ALC880_HP_EVENT:
1869                 alc880_uniwill_hp_automute(codec);
1870                 break;
1871         case ALC880_MIC_EVENT:
1872                 alc880_uniwill_mic_automute(codec);
1873                 break;
1874         }
1875 }
1876 
1877 static void alc880_uniwill_p53_hp_automute(struct hda_codec *codec)
1878 {
1879         unsigned int present;
1880         unsigned char bits;
1881 
1882         present = snd_hda_codec_read(codec, 0x14, 0,
1883                                      AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
1884         bits = present ? HDA_AMP_MUTE : 0;
1885         snd_hda_codec_amp_stereo(codec, 0x15, HDA_INPUT, 0, HDA_AMP_MUTE, bits);
1886 }
1887 
1888 static void alc880_uniwill_p53_dcvol_automute(struct hda_codec *codec)
1889 {
1890         unsigned int present;
1891         
1892         present = snd_hda_codec_read(codec, 0x21, 0,
1893                                      AC_VERB_GET_VOLUME_KNOB_CONTROL, 0);
1894         present &= HDA_AMP_VOLMASK;
1895         snd_hda_codec_amp_stereo(codec, 0x0c, HDA_OUTPUT, 0,
1896                                  HDA_AMP_VOLMASK, present);
1897         snd_hda_codec_amp_stereo(codec, 0x0d, HDA_OUTPUT, 0,
1898                                  HDA_AMP_VOLMASK, present);
1899 }
1900 
1901 static void alc880_uniwill_p53_unsol_event(struct hda_codec *codec,
1902                                            unsigned int res)
1903 {
1904         /* Looks like the unsol event is incompatible with the standard
1905          * definition.  4bit tag is placed at 28 bit!
1906          */
1907         if ((res >> 28) == ALC880_HP_EVENT)
1908                 alc880_uniwill_p53_hp_automute(codec);
1909         if ((res >> 28) == ALC880_DCVOL_EVENT)
1910                 alc880_uniwill_p53_dcvol_automute(codec);
1911 }
1912 
1913 /*
1914  * F1734 pin configuration:
1915  * HP = 0x14, speaker-out = 0x15, mic = 0x18
1916  */
1917 static struct hda_verb alc880_pin_f1734_init_verbs[] = {
1918         {0x10, AC_VERB_SET_CONNECT_SEL, 0x02},
1919         {0x11, AC_VERB_SET_CONNECT_SEL, 0x00},
1920         {0x12, AC_VERB_SET_CONNECT_SEL, 0x01},
1921         {0x13, AC_VERB_SET_CONNECT_SEL, 0x00},
1922 
1923         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1924         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1925         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1926         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1927 
1928         {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1929         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1930         {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1931         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1932         {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1933         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1934         {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1935         {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1936         {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1937 
1938         { }
1939 };
1940 
1941 /*
1942  * ASUS pin configuration:
1943  * HP/front = 0x14, surr = 0x15, clfe = 0x16, mic = 0x18, line = 0x1a
1944  */
1945 static struct hda_verb alc880_pin_asus_init_verbs[] = {
1946         {0x10, AC_VERB_SET_CONNECT_SEL, 0x02},
1947         {0x11, AC_VERB_SET_CONNECT_SEL, 0x00},
1948         {0x12, AC_VERB_SET_CONNECT_SEL, 0x01},
1949         {0x13, AC_VERB_SET_CONNECT_SEL, 0x00},
1950 
1951         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1952         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1953         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1954         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1955         {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1956         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1957         {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1958         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1959 
1960         {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1961         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1962         {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1963         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1964         {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1965         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1966         {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1967         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1968         {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1969         
1970         { }
1971 };
1972 
1973 /* Enable GPIO mask and set output */
1974 #define alc880_gpio1_init_verbs alc_gpio1_init_verbs
1975 #define alc880_gpio2_init_verbs alc_gpio2_init_verbs
1976 
1977 /* Clevo m520g init */
1978 static struct hda_verb alc880_pin_clevo_init_verbs[] = {
1979         /* headphone output */
1980         {0x11, AC_VERB_SET_CONNECT_SEL, 0x01},
1981         /* line-out */
1982         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1983         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1984         /* Line-in */
1985         {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1986         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1987         /* CD */
1988         {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1989         {0x1c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1990         /* Mic1 (rear panel) */
1991         {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1992         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1993         /* Mic2 (front panel) */
1994         {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1995         {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1996         /* headphone */
1997         {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1998         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1999         /* change to EAPD mode */
2000         {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
2001         {0x20, AC_VERB_SET_PROC_COEF,  0x3060},
2002 
2003         { }
2004 };
2005 
2006 static struct hda_verb alc880_pin_tcl_S700_init_verbs[] = {
2007         /* change to EAPD mode */
2008         {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
2009         {0x20, AC_VERB_SET_PROC_COEF,  0x3060},
2010 
2011         /* Headphone output */
2012         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
2013         /* Front output*/
2014         {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2015         {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
2016 
2017         /* Line In pin widget for input */
2018         {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
2019         /* CD pin widget for input */
2020         {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
2021         /* Mic1 (rear panel) pin widget for input and vref at 80% */
2022         {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
2023 
2024         /* change to EAPD mode */
2025         {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
2026         {0x20, AC_VERB_SET_PROC_COEF,  0x3070},
2027 
2028         { }
2029 };
2030 
2031 /*
2032  * LG m1 express dual
2033  *
2034  * Pin assignment:
2035  *   Rear Line-In/Out (blue): 0x14
2036  *   Build-in Mic-In: 0x15
2037  *   Speaker-out: 0x17
2038  *   HP-Out (green): 0x1b
2039  *   Mic-In/Out (red): 0x19
2040  *   SPDIF-Out: 0x1e
2041  */
2042 
2043 /* To make 5.1 output working (green=Front, blue=Surr, red=CLFE) */
2044 static hda_nid_t alc880_lg_dac_nids[3] = {
2045         0x05, 0x02, 0x03
2046 };
2047 
2048 /* seems analog CD is not working */
2049 static struct hda_input_mux alc880_lg_capture_source = {
2050         .num_items = 3,
2051         .items = {
2052                 { "Mic", 0x1 },
2053                 { "Line", 0x5 },
2054                 { "Internal Mic", 0x6 },
2055         },
2056 };
2057 
2058 /* 2,4,6 channel modes */
2059 static struct hda_verb alc880_lg_ch2_init[] = {
2060         /* set line-in and mic-in to input */
2061         { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
2062         { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
2063         { }
2064 };
2065 
2066 static struct hda_verb alc880_lg_ch4_init[] = {
2067         /* set line-in to out and mic-in to input */
2068         { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
2069         { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
2070         { }
2071 };
2072 
2073 static struct hda_verb alc880_lg_ch6_init[] = {
2074         /* set line-in and mic-in to output */
2075         { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
2076         { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
2077         { }
2078 };
2079 
2080 static struct hda_channel_mode alc880_lg_ch_modes[3] = {
2081         { 2, alc880_lg_ch2_init },
2082         { 4, alc880_lg_ch4_init },
2083         { 6, alc880_lg_ch6_init },
2084 };
2085 
2086 static struct snd_kcontrol_new alc880_lg_mixer[] = {
2087         HDA_CODEC_VOLUME("Front Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
2088         HDA_BIND_MUTE("Front Playback Switch", 0x0f, 2, HDA_INPUT),
2089         HDA_CODEC_VOLUME("Surround Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
2090         HDA_BIND_MUTE("Surround Playback Switch", 0x0c, 2, HDA_INPUT),
2091         HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0d, 1, 0x0, HDA_OUTPUT),
2092         HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0d, 2, 0x0, HDA_OUTPUT),
2093         HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0d, 1, 2, HDA_INPUT),
2094         HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0d, 2, 2, HDA_INPUT),
2095         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
2096         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
2097         HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x06, HDA_INPUT),
2098         HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x06, HDA_INPUT),
2099         HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x0b, 0x07, HDA_INPUT),
2100         HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x0b, 0x07, HDA_INPUT),
2101         {
2102                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2103                 .name = "Channel Mode",
2104                 .info = alc_ch_mode_info,
2105                 .get = alc_ch_mode_get,
2106                 .put = alc_ch_mode_put,
2107         },
2108         { } /* end */
2109 };
2110 
2111 static struct hda_verb alc880_lg_init_verbs[] = {
2112         /* set capture source to mic-in */
2113         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
2114         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
2115         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
2116         /* mute all amp mixer inputs */
2117         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(5)},
2118         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)},
2119         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)},
2120         /* line-in to input */
2121         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
2122         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2123         /* built-in mic */
2124         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
2125         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2126         /* speaker-out */
2127         {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
2128         {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2129         /* mic-in to input */
2130         {0x11, AC_VERB_SET_CONNECT_SEL, 0x01},
2131         {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
2132         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2133         /* HP-out */
2134         {0x13, AC_VERB_SET_CONNECT_SEL, 0x03},
2135         {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
2136         {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2137         /* jack sense */
2138         {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | 0x1},
2139         { }
2140 };
2141 
2142 /* toggle speaker-output according to the hp-jack state */
2143 static void alc880_lg_automute(struct hda_codec *codec)
2144 {
2145         unsigned int present;
2146         unsigned char bits;
2147 
2148         present = snd_hda_codec_read(codec, 0x1b, 0,
2149                                      AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
2150         bits = present ? HDA_AMP_MUTE : 0;
2151         snd_hda_codec_amp_stereo(codec, 0x17, HDA_OUTPUT, 0,
2152                                  HDA_AMP_MUTE, bits);
2153 }
2154 
2155 static void alc880_lg_unsol_event(struct hda_codec *codec, unsigned int res)
2156 {
2157         /* Looks like the unsol event is incompatible with the standard
2158          * definition.  4bit tag is placed at 28 bit!
2159          */
2160         if ((res >> 28) == 0x01)
2161                 alc880_lg_automute(codec);
2162 }
2163 
2164 /*
2165  * LG LW20
2166  *
2167  * Pin assignment:
2168  *   Speaker-out: 0x14
2169  *   Mic-In: 0x18
2170  *   Built-in Mic-In: 0x19
2171  *   Line-In: 0x1b
2172  *   HP-Out: 0x1a
2173  *   SPDIF-Out: 0x1e
2174  */
2175 
2176 static struct hda_input_mux alc880_lg_lw_capture_source = {
2177         .num_items = 3,
2178         .items = {
2179                 { "Mic", 0x0 },
2180                 { "Internal Mic", 0x1 },
2181                 { "Line In", 0x2 },
2182         },
2183 };
2184 
2185 #define alc880_lg_lw_modes alc880_threestack_modes
2186 
2187 static struct snd_kcontrol_new alc880_lg_lw_mixer[] = {
2188         HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
2189         HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
2190         HDA_CODEC_VOLUME("Surround Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
2191         HDA_BIND_MUTE("Surround Playback Switch", 0x0f, 2, HDA_INPUT),
2192         HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
2193         HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
2194         HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
2195         HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
2196         HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
2197         HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
2198         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
2199         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
2200         HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x0b, 0x01, HDA_INPUT),
2201         HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x0b, 0x01, HDA_INPUT),
2202         {
2203                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2204                 .name = "Channel Mode",
2205                 .info = alc_ch_mode_info,
2206                 .get = alc_ch_mode_get,
2207                 .put = alc_ch_mode_put,
2208         },
2209         { } /* end */
2210 };
2211 
2212 static struct hda_verb alc880_lg_lw_init_verbs[] = {
2213         {0x13, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
2214         {0x10, AC_VERB_SET_CONNECT_SEL, 0x02}, /* mic/clfe */
2215         {0x12, AC_VERB_SET_CONNECT_SEL, 0x03}, /* line/surround */
2216 
2217         /* set capture source to mic-in */
2218         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2219         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2220         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2221         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)},
2222         /* speaker-out */
2223         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
2224         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2225         /* HP-out */
2226         {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
2227         {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2228         /* mic-in to input */
2229         {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
2230         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2231         /* built-in mic */
2232         {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
2233         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2234         /* jack sense */
2235         {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | 0x1},
2236         { }
2237 };
2238 
2239 /* toggle speaker-output according to the hp-jack state */
2240 static void alc880_lg_lw_automute(struct hda_codec *codec)
2241 {
2242         unsigned int present;
2243         unsigned char bits;
2244 
2245         present = snd_hda_codec_read(codec, 0x1b, 0,
2246                                      AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
2247         bits = present ? HDA_AMP_MUTE : 0;
2248         snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0,
2249                                  HDA_AMP_MUTE, bits);
2250 }
2251 
2252 static void alc880_lg_lw_unsol_event(struct hda_codec *codec, unsigned int res)
2253 {
2254         /* Looks like the unsol event is incompatible with the standard
2255          * definition.  4bit tag is placed at 28 bit!
2256          */
2257         if ((res >> 28) == 0x01)
2258                 alc880_lg_lw_automute(codec);
2259 }
2260 
2261 #ifdef CONFIG_SND_HDA_POWER_SAVE
2262 static struct hda_amp_list alc880_loopbacks[] = {
2263         { 0x0b, HDA_INPUT, 0 },
2264         { 0x0b, HDA_INPUT, 1 },
2265         { 0x0b, HDA_INPUT, 2 },
2266         { 0x0b, HDA_INPUT, 3 },
2267         { 0x0b, HDA_INPUT, 4 },
2268         { } /* end */
2269 };
2270 
2271 static struct hda_amp_list alc880_lg_loopbacks[] = {
2272         { 0x0b, HDA_INPUT, 1 },
2273         { 0x0b, HDA_INPUT, 6 },
2274         { 0x0b, HDA_INPUT, 7 },
2275         { } /* end */
2276 };
2277 #endif
2278 
2279 /*
2280  * Common callbacks
2281  */
2282 
2283 static int alc_init(struct hda_codec *codec)
2284 {
2285         struct alc_spec *spec = codec->spec;
2286         unsigned int i;
2287 
2288         for (i = 0; i < spec->num_init_verbs; i++)
2289                 snd_hda_sequence_write(codec, spec->init_verbs[i]);
2290 
2291         if (spec->init_hook)
2292                 spec->init_hook(codec);
2293 
2294         return 0;
2295 }
2296 
2297 static void alc_unsol_event(struct hda_codec *codec, unsigned int res)
2298 {
2299         struct alc_spec *spec = codec->spec;
2300 
2301         if (spec->unsol_event)
2302                 spec->unsol_event(codec, res);
2303 }
2304 
2305 #ifdef CONFIG_SND_HDA_POWER_SAVE
2306 static int alc_check_power_status(struct hda_codec *codec, hda_nid_t nid)
2307 {
2308         struct alc_spec *spec = codec->spec;
2309         return snd_hda_check_amp_list_power(codec, &spec->loopback, nid);
2310 }
2311 #endif
2312 
2313 /*
2314  * Analog playback callbacks
2315  */
2316 static int alc880_playback_pcm_open(struct hda_pcm_stream *hinfo,
2317                                     struct hda_codec *codec,
2318                                     struct snd_pcm_substream *substream)
2319 {
2320         struct alc_spec *spec = codec->spec;
2321         return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream);
2322 }
2323 
2324 static int alc880_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
2325                                        struct hda_codec *codec,
2326                                        unsigned int stream_tag,
2327                                        unsigned int format,
2328                                        struct snd_pcm_substream *substream)
2329 {
2330         struct alc_spec *spec = codec->spec;
2331         return snd_hda_multi_out_analog_prepare(codec, &spec->multiout,
2332                                                 stream_tag, format, substream);
2333 }
2334 
2335 static int alc880_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
2336                                        struct hda_codec *codec,
2337                                        struct snd_pcm_substream *substream)
2338 {
2339         struct alc_spec *spec = codec->spec;
2340         return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout);
2341 }
2342 
2343 /*
2344  * Digital out
2345  */
2346 static int alc880_dig_playback_pcm_open(struct hda_pcm_stream *hinfo,
2347                                         struct hda_codec *codec,
2348                                         struct snd_pcm_substream *substream)
2349 {
2350         struct alc_spec *spec = codec->spec;
2351         return snd_hda_multi_out_dig_open(codec, &spec->multiout);
2352 }
2353 
2354 static int alc880_dig_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
2355                                            struct hda_codec *codec,
2356                                            unsigned int stream_tag,
2357                                            unsigned int format,
2358                                            struct snd_pcm_substream *substream)
2359 {
2360         struct alc_spec *spec = codec->spec;
2361         return snd_hda_multi_out_dig_prepare(codec, &spec->multiout,
2362                                              stream_tag, format, substream);
2363 }
2364 
2365 static int alc880_dig_playback_pcm_close(struct hda_pcm_stream *hinfo,
2366                                          struct hda_codec *codec,
2367                                          struct snd_pcm_substream *substream)
2368 {
2369         struct alc_spec *spec = codec->spec;
2370         return snd_hda_multi_out_dig_close(codec, &spec->multiout);
2371 }
2372 
2373 /*
2374  * Analog capture
2375  */
2376 static int alc880_alt_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
2377                                       struct hda_codec *codec,
2378                                       unsigned int stream_tag,
2379                                       unsigned int format,
2380                                       struct snd_pcm_substream *substream)
2381 {
2382         struct alc_spec *spec = codec->spec;
2383 
2384         snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number + 1],
2385                                    stream_tag, 0, format);
2386         return 0;
2387 }
2388 
2389 static int alc880_alt_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
2390                                       struct hda_codec *codec,
2391                                       struct snd_pcm_substream *substream)
2392 {
2393         struct alc_spec *spec = codec->spec;
2394 
2395         snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number + 1],
2396                                    0, 0, 0);
2397         return 0;
2398 }
2399 
2400 
2401 /*
2402  */
2403 static struct hda_pcm_stream alc880_pcm_analog_playback = {
2404         .substreams = 1,
2405         .channels_min = 2,
2406         .channels_max = 8,
2407         /* NID is set in alc_build_pcms */
2408         .ops = {
2409                 .open = alc880_playback_pcm_open,
2410                 .prepare = alc880_playback_pcm_prepare,
2411                 .cleanup = alc880_playback_pcm_cleanup
2412         },
2413 };
2414 
2415 static struct hda_pcm_stream alc880_pcm_analog_capture = {
2416         .substreams = 1,
2417         .channels_min = 2,
2418         .channels_max = 2,
2419         /* NID is set in alc_build_pcms */
2420 };
2421 
2422 static struct hda_pcm_stream alc880_pcm_analog_alt_playback = {
2423         .substreams = 1,
2424         .channels_min = 2,
2425         .channels_max = 2,
2426         /* NID is set in alc_build_pcms */
2427 };
2428 
2429 static struct hda_pcm_stream alc880_pcm_analog_alt_capture = {
2430         .substreams = 2, /* can be overridden */
2431         .channels_min = 2,
2432         .channels_max = 2,
2433         /* NID is set in alc_build_pcms */
2434         .ops = {
2435                 .prepare = alc880_alt_capture_pcm_prepare,
2436                 .cleanup = alc880_alt_capture_pcm_cleanup
2437         },
2438 };
2439 
2440 static struct hda_pcm_stream alc880_pcm_digital_playback = {
2441         .substreams = 1,
2442         .channels_min = 2,
2443         .channels_max = 2,
2444         /* NID is set in alc_build_pcms */
2445         .ops = {
2446                 .open = alc880_dig_playback_pcm_open,
2447                 .close = alc880_dig_playback_pcm_close,
2448                 .prepare = alc880_dig_playback_pcm_prepare
2449         },
2450 };
2451 
2452 static struct hda_pcm_stream alc880_pcm_digital_capture = {
2453         .substreams = 1,
2454         .channels_min = 2,
2455         .channels_max = 2,
2456         /* NID is set in alc_build_pcms */
2457 };
2458 
2459 /* Used by alc_build_pcms to flag that a PCM has no playback stream */
2460 static struct hda_pcm_stream alc_pcm_null_stream = {
2461         .substreams = 0,
2462         .channels_min = 0,
2463         .channels_max = 0,
2464 };
2465 
2466 static int alc_build_pcms(struct hda_codec *codec)
2467 {
2468         struct alc_spec *spec = codec->spec;
2469         struct hda_pcm *info = spec->pcm_rec;
2470         int i;
2471 
2472         codec->num_pcms = 1;
2473         codec->pcm_info = info;
2474 
2475         info->name = spec->stream_name_analog;
2476         if (spec->stream_analog_playback) {
2477                 snd_assert(spec->multiout.dac_nids, return -EINVAL);
2478                 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = *(spec->stream_analog_playback);
2479                 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dac_nids[0];
2480         }
2481         if (spec->stream_analog_capture) {
2482                 snd_assert(spec->adc_nids, return -EINVAL);
2483                 info->stream[SNDRV_PCM_STREAM_CAPTURE] = *(spec->stream_analog_capture);
2484                 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[0];
2485         }
2486 
2487         if (spec->channel_mode) {
2488                 info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max = 0;
2489                 for (i = 0; i < spec->num_channel_mode; i++) {
2490                         if (spec->channel_mode[i].channels > info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max) {
2491                                 info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max = spec->channel_mode[i].channels;
2492                         }
2493                 }
2494         }
2495 
2496         /* SPDIF for stream index #1 */
2497         if (spec->multiout.dig_out_nid || spec->dig_in_nid) {
2498                 codec->num_pcms = 2;
2499                 info = spec->pcm_rec + 1;
2500                 info->name = spec->stream_name_digital;
2501                 if (spec->multiout.dig_out_nid &&
2502                     spec->stream_digital_playback) {
2503                         info->stream[SNDRV_PCM_STREAM_PLAYBACK] = *(spec->stream_digital_playback);
2504                         info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dig_out_nid;
2505                 }
2506                 if (spec->dig_in_nid &&
2507                     spec->stream_digital_capture) {
2508                         info->stream[SNDRV_PCM_STREAM_CAPTURE] = *(spec->stream_digital_capture);
2509                         info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->dig_in_nid;
2510                 }
2511         }
2512 
2513         /* If the use of more than one ADC is requested for the current
2514          * model, configure a second analog capture-only PCM.
2515          */
2516         /* Additional Analaog capture for index #2 */
2517         if ((spec->alt_dac_nid && spec->stream_analog_alt_playback) ||
2518             (spec->num_adc_nids > 1 && spec->stream_analog_alt_capture)) {
2519                 codec->num_pcms = 3;
2520                 info = spec->pcm_rec + 2;
2521                 info->name = spec->stream_name_analog;
2522                 if (spec->alt_dac_nid) {
2523                         info->stream[SNDRV_PCM_STREAM_PLAYBACK] =
2524                                 *spec->stream_analog_alt_playback;
2525                         info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid =
2526                                 spec->alt_dac_nid;
2527                 } else {
2528                         info->stream[SNDRV_PCM_STREAM_PLAYBACK] =
2529                                 alc_pcm_null_stream;
2530                         info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = 0;
2531                 }
2532                 if (spec->num_adc_nids > 1) {
2533                         info->stream[SNDRV_PCM_STREAM_CAPTURE] =
2534                                 *spec->stream_analog_alt_capture;
2535                         info->stream[SNDRV_PCM_STREAM_CAPTURE].nid =
2536                                 spec->adc_nids[1];
2537                         info->stream[SNDRV_PCM_STREAM_CAPTURE].substreams =
2538                                 spec->num_adc_nids - 1;
2539                 } else {
2540                         info->stream[SNDRV_PCM_STREAM_CAPTURE] =
2541                                 alc_pcm_null_stream;
2542                         info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = 0;
2543                 }
2544         }
2545 
2546         return 0;
2547 }
2548 
2549 static void alc_free(struct hda_codec *codec)
2550 {
2551         struct alc_spec *spec = codec->spec;
2552         unsigned int i;
2553 
2554         if (!spec)
2555                 return;
2556 
2557         if (spec->kctl_alloc) {
2558                 for (i = 0; i < spec->num_kctl_used; i++)
2559                         kfree(spec->kctl_alloc[i].name);
2560                 kfree(spec->kctl_alloc);
2561         }
2562         kfree(spec);
2563 }
2564 
2565 /*
2566  */
2567 static struct hda_codec_ops alc_patch_ops = {
2568         .build_controls = alc_build_controls,
2569         .build_pcms = alc_build_pcms,
2570         .init = alc_init,
2571         .free = alc_free,
2572         .unsol_event = alc_unsol_event,
2573 #ifdef CONFIG_SND_HDA_POWER_SAVE
2574         .check_power_status = alc_check_power_status,
2575 #endif
2576 };
2577 
2578 
2579 /*
2580  * Test configuration for debugging
2581  *
2582  * Almost all inputs/outputs are enabled.  I/O pins can be configured via
2583  * enum controls.
2584  */
2585 #ifdef CONFIG_SND_DEBUG
2586 static hda_nid_t alc880_test_dac_nids[4] = {
2587         0x02, 0x03, 0x04, 0x05
2588 };
2589 
2590 static struct hda_input_mux alc880_test_capture_source = {
2591         .num_items = 7,
2592         .items = {
2593                 { "In-1", 0x0 },
2594                 { "In-2", 0x1 },
2595                 { "In-3", 0x2 },
2596                 { "In-4", 0x3 },
2597                 { "CD", 0x4 },
2598                 { "Front", 0x5 },
2599                 { "Surround", 0x6 },
2600         },
2601 };
2602 
2603 static struct hda_channel_mode alc880_test_modes[4] = {
2604         { 2, NULL },
2605         { 4, NULL },
2606         { 6, NULL },
2607         { 8, NULL },
2608 };
2609 
2610 static int alc_test_pin_ctl_info(struct snd_kcontrol *kcontrol,
2611                                  struct snd_ctl_elem_info *uinfo)
2612 {
2613         static char *texts[] = {
2614                 "N/A", "Line Out", "HP Out",
2615                 "In Hi-Z", "In 50%", "In Grd", "In 80%", "In 100%"
2616         };
2617         uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2618         uinfo->count = 1;
2619         uinfo->value.enumerated.items = 8;
2620         if (uinfo->value.enumerated.item >= 8)
2621                 uinfo->value.enumerated.item = 7;
2622         strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);
2623         return 0;
2624 }
2625 
2626 static int alc_test_pin_ctl_get(struct snd_kcontrol *kcontrol,
2627                                 struct snd_ctl_elem_value *ucontrol)
2628 {
2629         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2630         hda_nid_t nid = (hda_nid_t)kcontrol->private_value;
2631         unsigned int pin_ctl, item = 0;
2632 
2633         pin_ctl = snd_hda_codec_read(codec, nid, 0,
2634                                      AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
2635         if (pin_ctl & AC_PINCTL_OUT_EN) {
2636                 if (pin_ctl & AC_PINCTL_HP_EN)
2637                         item = 2;
2638                 else
2639                         item = 1;
2640         } else if (pin_ctl & AC_PINCTL_IN_EN) {
2641                 switch (pin_ctl & AC_PINCTL_VREFEN) {
2642                 case AC_PINCTL_VREF_HIZ: item = 3; break;
2643                 case AC_PINCTL_VREF_50:  item = 4; break;
2644                 case AC_PINCTL_VREF_GRD: item = 5; break;
2645                 case AC_PINCTL_VREF_80:  item = 6; break;
2646                 case AC_PINCTL_VREF_100: item = 7; break;
2647                 }
2648         }
2649         ucontrol->value.enumerated.item[0] = item;
2650         return 0;
2651 }
2652 
2653 static int alc_test_pin_ctl_put(struct snd_kcontrol *kcontrol,
2654                                 struct snd_ctl_elem_value *ucontrol)
2655 {
2656         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2657         hda_nid_t nid = (hda_nid_t)kcontrol->private_value;
2658         static unsigned int ctls[] = {
2659                 0, AC_PINCTL_OUT_EN, AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN,
2660                 AC_PINCTL_IN_EN | AC_PINCTL_VREF_HIZ,
2661                 AC_PINCTL_IN_EN | AC_PINCTL_VREF_50,
2662                 AC_PINCTL_IN_EN | AC_PINCTL_VREF_GRD,
2663                 AC_PINCTL_IN_EN | AC_PINCTL_VREF_80,
2664                 AC_PINCTL_IN_EN | AC_PINCTL_VREF_100,
2665         };
2666         unsigned int old_ctl, new_ctl;
2667 
2668         old_ctl = snd_hda_codec_read(codec, nid, 0,
2669                                      AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
2670         new_ctl = ctls[ucontrol->value.enumerated.item[0]];
2671         if (old_ctl != new_ctl) {
2672                 int val;
2673                 snd_hda_codec_write_cache(codec, nid, 0,
2674                                           AC_VERB_SET_PIN_WIDGET_CONTROL,
2675                                           new_ctl);
2676                 val = ucontrol->value.enumerated.item[0] >= 3 ?
2677                         HDA_AMP_MUTE : 0;
2678                 snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
2679                                          HDA_AMP_MUTE, val);
2680                 return 1;
2681         }
2682         return 0;
2683 }
2684 
2685 static int alc_test_pin_src_info(struct snd_kcontrol *kcontrol,
2686                                  struct snd_ctl_elem_info *uinfo)
2687 {
2688         static char *texts[] = {
2689                 "Front", "Surround", "CLFE", "Side"
2690         };
2691         uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2692         uinfo->count = 1;
2693         uinfo->value.enumerated.items = 4;
2694         if (uinfo->value.enumerated.item >= 4)
2695                 uinfo->value.enumerated.item = 3;
2696         strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);
2697         return 0;
2698 }
2699 
2700 static int alc_test_pin_src_get(struct snd_kcontrol *kcontrol,
2701                                 struct snd_ctl_elem_value *ucontrol)
2702 {
2703         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2704         hda_nid_t nid = (hda_nid_t)kcontrol->private_value;
2705         unsigned int sel;
2706 
2707         sel = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_CONNECT_SEL, 0);
2708         ucontrol->value.enumerated.item[0] = sel & 3;
2709         return 0;
2710 }
2711 
2712 static int alc_test_pin_src_put(struct snd_kcontrol *kcontrol,
2713                                 struct snd_ctl_elem_value *ucontrol)
2714 {
2715         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2716         hda_nid_t nid = (hda_nid_t)kcontrol->private_value;
2717         unsigned int sel;
2718 
2719         sel = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_CONNECT_SEL, 0) & 3;
2720         if (ucontrol->value.enumerated.item[0] != sel) {
2721                 sel = ucontrol->value.enumerated.item[0] & 3;
2722                 snd_hda_codec_write_cache(codec, nid, 0,
2723                                           AC_VERB_SET_CONNECT_SEL, sel);
2724                 return 1;
2725         }
2726         return 0;
2727 }
2728 
2729 #define PIN_CTL_TEST(xname,nid) {                       \
2730                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,    \
2731                         .name = xname,                 \
2732                         .info = alc_test_pin_ctl_info, \
2733                         .get = alc_test_pin_ctl_get,   \
2734                         .put = alc_test_pin_ctl_put,   \
2735                         .private_value = nid           \
2736                         }
2737 
2738 #define PIN_SRC_TEST(xname,nid) {                       \
2739                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,    \
2740                         .name = xname,                 \
2741                         .info = alc_test_pin_src_info, \
2742                         .get = alc_test_pin_src_get,   \
2743                         .put = alc_test_pin_src_put,   \
2744                         .private_value = nid           \
2745                         }
2746 
2747 static struct snd_kcontrol_new alc880_test_mixer[] = {
2748         HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
2749         HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
2750         HDA_CODEC_VOLUME("CLFE Playback Volume", 0x0e, 0x0, HDA_OUTPUT),
2751         HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
2752         HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
2753         HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
2754         HDA_BIND_MUTE("CLFE Playback Switch", 0x0e, 2, HDA_INPUT),
2755         HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT),
2756         PIN_CTL_TEST("Front Pin Mode", 0x14),
2757         PIN_CTL_TEST("Surround Pin Mode", 0x15),
2758         PIN_CTL_TEST("CLFE Pin Mode", 0x16),
2759         PIN_CTL_TEST("Side Pin Mode", 0x17),
2760         PIN_CTL_TEST("In-1 Pin Mode", 0x18),
2761         PIN_CTL_TEST("In-2 Pin Mode", 0x19),
2762         PIN_CTL_TEST("In-3 Pin Mode", 0x1a),
2763         PIN_CTL_TEST("In-4 Pin Mode", 0x1b),
2764         PIN_SRC_TEST("In-1 Pin Source", 0x18),
2765         PIN_SRC_TEST("In-2 Pin Source", 0x19),
2766         PIN_SRC_TEST("In-3 Pin Source", 0x1a),
2767         PIN_SRC_TEST("In-4 Pin Source", 0x1b),
2768         HDA_CODEC_VOLUME("In-1 Playback Volume", 0x0b, 0x0, HDA_INPUT),
2769         HDA_CODEC_MUTE("In-1 Playback Switch", 0x0b, 0x0, HDA_INPUT),
2770         HDA_CODEC_VOLUME("In-2 Playback Volume", 0x0b, 0x1, HDA_INPUT),
2771         HDA_CODEC_MUTE("In-2 Playback Switch", 0x0b, 0x1, HDA_INPUT),
2772         HDA_CODEC_VOLUME("In-3 Playback Volume", 0x0b, 0x2, HDA_INPUT),
2773         HDA_CODEC_MUTE("In-3 Playback Switch", 0x0b, 0x2, HDA_INPUT),
2774         HDA_CODEC_VOLUME("In-4 Playback Volume", 0x0b, 0x3, HDA_INPUT),
2775         HDA_CODEC_MUTE("In-4 Playback Switch", 0x0b, 0x3, HDA_INPUT),
2776         HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x4, HDA_INPUT),
2777         HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x4, HDA_INPUT),
2778         {
2779                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2780                 .name = "Channel Mode",
2781                 .info = alc_ch_mode_info,
2782                 .get = alc_ch_mode_get,
2783                 .put = alc_ch_mode_put,
2784         },
2785         { } /* end */
2786 };
2787 
2788 static struct hda_verb alc880_test_init_verbs[] = {
2789         /* Unmute inputs of 0x0c - 0x0f */
2790         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2791         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
2792         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2793         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
2794         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2795         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
2796         {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2797         {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
2798         /* Vol output for 0x0c-0x0f */
2799         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2800         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2801         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2802         {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2803         /* Set output pins 0x14-0x17 */
2804         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2805         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2806         {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2807         {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2808         /* Unmute output pins 0x14-0x17 */
2809         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2810         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2811         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2812         {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2813         /* Set input pins 0x18-0x1c */
2814         {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
2815         {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
2816         {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
2817         {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
2818         {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
2819         /* Mute input pins 0x18-0x1b */
2820         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2821         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2822         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2823         {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2824         /* ADC set up */
2825         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2826         {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
2827         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2828         {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
2829         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2830         {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
2831         /* Analog input/passthru */
2832         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2833         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2834         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
2835         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2836         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
2837         { }
2838 };
2839 #endif
2840 
2841 /*
2842  */
2843 
2844 static const char *alc880_models[ALC880_MODEL_LAST] = {
2845         [ALC880_3ST]            = "3stack",
2846         [ALC880_TCL_S700]       = "tcl",
2847         [ALC880_3ST_DIG]        = "3stack-digout",
2848         [ALC880_CLEVO]          = "clevo",
2849         [ALC880_5ST]            = "5stack",
2850         [ALC880_5ST_DIG]        = "5stack-digout",
2851         [ALC880_W810]           = "w810",
2852         [ALC880_Z71V]           = "z71v",
2853         [ALC880_6ST]            = "6stack",
2854         [ALC880_6ST_DIG]        = "6stack-digout",
2855         [ALC880_ASUS]           = "asus",
2856         [ALC880_ASUS_W1V]       = "asus-w1v",
2857         [ALC880_ASUS_DIG]       = "asus-dig",
2858         [ALC880_ASUS_DIG2]      = "asus-dig2",
2859         [ALC880_UNIWILL_DIG]    = "uniwill",
2860         [ALC880_UNIWILL_P53]    = "uniwill-p53",
2861         [ALC880_FUJITSU]        = "fujitsu",
2862         [ALC880_F1734]          = "F1734",
2863         [ALC880_LG]             = "lg",
2864         [ALC880_LG_LW]          = "lg-lw",
2865 #ifdef CONFIG_SND_DEBUG
2866         [ALC880_TEST]           = "test",
2867 #endif
2868         [ALC880_AUTO]           = "auto",
2869 };
2870 
2871 static struct snd_pci_quirk alc880_cfg_tbl[] = {
2872         SND_PCI_QUIRK(0x1019, 0x0f69, "Coeus G610P", ALC880_W810),
2873         SND_PCI_QUIRK(0x1019, 0xa880, "ECS", ALC880_5ST_DIG),
2874         SND_PCI_QUIRK(0x1019, 0xa884, "Acer APFV", ALC880_6ST),
2875         SND_PCI_QUIRK(0x1025, 0x0070, "ULI", ALC880_3ST_DIG),
2876         SND_PCI_QUIRK(0x1025, 0x0077, "ULI", ALC880_6ST_DIG),
2877         SND_PCI_QUIRK(0x1025, 0x0078, "ULI", ALC880_6ST_DIG),
2878         SND_PCI_QUIRK(0x1025, 0x0087, "ULI", ALC880_6ST_DIG),
2879         SND_PCI_QUIRK(0x1025, 0xe309, "ULI", ALC880_3ST_DIG),
2880         SND_PCI_QUIRK(0x1025, 0xe310, "ULI", ALC880_3ST),
2881         SND_PCI_QUIRK(0x1039, 0x1234, NULL, ALC880_6ST_DIG),
2882         SND_PCI_QUIRK(0x103c, 0x2a09, "HP", ALC880_5ST),
2883         SND_PCI_QUIRK(0x1043, 0x10b3, "ASUS W1V", ALC880_ASUS_W1V),
2884         SND_PCI_QUIRK(0x1043, 0x10c2, "ASUS W6A", ALC880_ASUS_DIG),
2885         SND_PCI_QUIRK(0x1043, 0x10c3, "ASUS Wxx", ALC880_ASUS_DIG),
2886         SND_PCI_QUIRK(0x1043, 0x1113, "ASUS", ALC880_ASUS_DIG),
2887         SND_PCI_QUIRK(0x1043, 0x1123, "ASUS", ALC880_ASUS_DIG),
2888         SND_PCI_QUIRK(0x1043, 0x1173, "ASUS", ALC880_ASUS_DIG),
2889         SND_PCI_QUIRK(0x1043, 0x1964, "ASUS Z71V", ALC880_Z71V),
2890         /* SND_PCI_QUIRK(0x1043, 0x1964, "ASUS", ALC880_ASUS_DIG), */
2891         SND_PCI_QUIRK(0x1043, 0x1973, "ASUS", ALC880_ASUS_DIG),
2892         SND_PCI_QUIRK(0x1043, 0x19b3, "ASUS", ALC880_ASUS_DIG),
2893         SND_PCI_QUIRK(0x1043, 0x814e, "ASUS", ALC880_ASUS),
2894         SND_PCI_QUIRK(0x1043, 0x8181, "ASUS P4GPL", ALC880_ASUS_DIG),
2895         SND_PCI_QUIRK(0x1043, 0x8196, "ASUS P5GD1", ALC880_6ST),
2896         SND_PCI_QUIRK(0x1043, 0x81b4, "ASUS", ALC880_6ST),
2897         SND_PCI_QUIRK(0x1043, 0, "ASUS", ALC880_ASUS), /* default ASUS */
2898         SND_PCI_QUIRK(0x104d, 0x81a0, "Sony", ALC880_3ST),
2899         SND_PCI_QUIRK(0x104d, 0x81d6, "Sony", ALC880_3ST),
2900         SND_PCI_QUIRK(0x107b, 0x3032, "Gateway", ALC880_5ST),
2901         SND_PCI_QUIRK(0x107b, 0x3033, "Gateway", ALC880_5ST),
2902         SND_PCI_QUIRK(0x107b, 0x4039, "Gateway", ALC880_5ST),
2903         SND_PCI_QUIRK(0x1297, 0xc790, "Shuttle ST20G5", ALC880_6ST_DIG),
2904         SND_PCI_QUIRK(0x1458, 0xa102, "Gigabyte K8", ALC880_6ST_DIG),
2905         SND_PCI_QUIRK(0x1462, 0x1150, "MSI", ALC880_6ST_DIG),
2906         SND_PCI_QUIRK(0x1509, 0x925d, "FIC P4M", ALC880_6ST_DIG),
2907         SND_PCI_QUIRK(0x1558, 0x0520, "Clevo m520G", ALC880_CLEVO),
2908         SND_PCI_QUIRK(0x1558, 0x0660, "Clevo m655n", ALC880_CLEVO),
2909         SND_PCI_QUIRK(0x1558, 0x5401, "ASUS", ALC880_ASUS_DIG2),
2910         SND_PCI_QUIRK(0x1565, 0x8202, "Biostar", ALC880_5ST_DIG),
2911         SND_PCI_QUIRK(0x1584, 0x9050, "Uniwill", ALC880_UNIWILL_DIG),
2912         SND_PCI_QUIRK(0x1584, 0x9054, "Uniwlll", ALC880_F1734),
2913         SND_PCI_QUIRK(0x1584, 0x9070, "Uniwill", ALC880_UNIWILL),
2914         SND_PCI_QUIRK(0x1584, 0x9077, "Uniwill P53", ALC880_UNIWILL_P53),
2915         SND_PCI_QUIRK(0x161f, 0x203d, "W810", ALC880_W810),
2916         SND_PCI_QUIRK(0x1695, 0x400d, "EPoX", ALC880_5ST_DIG),
2917         SND_PCI_QUIRK(0x1695, 0x4012, "EPox EP-5LDA", ALC880_5ST_DIG),
2918         SND_PCI_QUIRK(0x1734, 0x107c, "FSC F1734", ALC880_F1734),
2919         SND_PCI_QUIRK(0x1734, 0x10ac, "FSC", ALC880_UNIWILL),
2920         SND_PCI_QUIRK(0x1734, 0x10b0, "Fujitsu", ALC880_FUJITSU),
2921         SND_PCI_QUIRK(0x1854, 0x0018, "LG LW20", ALC880_LG_LW),
2922         SND_PCI_QUIRK(0x1854, 0x003b, "LG", ALC880_LG),
2923         SND_PCI_QUIRK(0x1854, 0x0068, "LG w1", ALC880_LG),
2924         SND_PCI_QUIRK(0x1854, 0x0077, "LG LW25", ALC880_LG_LW),
2925         SND_PCI_QUIRK(0x19db, 0x4188, "TCL S700", ALC880_TCL_S700),
2926         SND_PCI_QUIRK(0x2668, 0x8086, NULL, ALC880_6ST_DIG), /* broken BIOS */
2927         SND_PCI_QUIRK(0x8086, 0x2668, NULL, ALC880_6ST_DIG),
2928         SND_PCI_QUIRK(0x8086, 0xa100, "Intel mobo", ALC880_5ST_DIG),
2929         SND_PCI_QUIRK(0x8086, 0xd400, "Intel mobo", ALC880_5ST_DIG),
2930         SND_PCI_QUIRK(0x8086, 0xd401, "Intel mobo", ALC880_5ST_DIG),
2931         SND_PCI_QUIRK(0x8086, 0xd402, "Intel mobo", ALC880_3ST_DIG),
2932         SND_PCI_QUIRK(0x8086, 0xe224, "Intel mobo", ALC880_5ST_DIG),
2933         SND_PCI_QUIRK(0x8086, 0xe305, "Intel mobo", ALC880_3ST_DIG),
2934         SND_PCI_QUIRK(0x8086, 0xe308, "Intel mobo", ALC880_3ST_DIG),
2935         SND_PCI_QUIRK(0x8086, 0xe400, "Intel mobo", ALC880_5ST_DIG),
2936         SND_PCI_QUIRK(0x8086, 0xe401, "Intel mobo", ALC880_5ST_DIG),
2937         SND_PCI_QUIRK(0x8086, 0xe402, "Intel mobo", ALC880_5ST_DIG),
2938         SND_PCI_QUIRK(0x8086, 0, "Intel mobo", ALC880_3ST), /* default Intel */
2939         SND_PCI_QUIRK(0xa0a0, 0x0560, "AOpen i915GMm-HFS", ALC880_5ST_DIG),
2940         SND_PCI_QUIRK(0xe803, 0x1019, NULL, ALC880_6ST_DIG),
2941         {}
2942 };
2943 
2944 /*
2945  * ALC880 codec presets
2946  */
2947 static struct alc_config_preset alc880_presets[] = {
2948         [ALC880_3ST] = {
2949                 .mixers = { alc880_three_stack_mixer },
2950                 .init_verbs = { alc880_volume_init_verbs,
2951                                 alc880_pin_3stack_init_verbs },
2952                 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2953                 .dac_nids = alc880_dac_nids,
2954                 .num_channel_mode = ARRAY_SIZE(alc880_threestack_modes),
2955                 .channel_mode = alc880_threestack_modes,
2956                 .need_dac_fix = 1,
2957                 .input_mux = &alc880_capture_source,
2958         },
2959         [ALC880_3ST_DIG] = {
2960                 .mixers = { alc880_three_stack_mixer },
2961                 .init_verbs = { alc880_volume_init_verbs,
2962                                 alc880_pin_3stack_init_verbs },
2963                 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2964                 .dac_nids = alc880_dac_nids,
2965                 .dig_out_nid = ALC880_DIGOUT_NID,
2966                 .num_channel_mode = ARRAY_SIZE(alc880_threestack_modes),
2967                 .channel_mode = alc880_threestack_modes,
2968                 .need_dac_fix = 1,
2969                 .input_mux = &alc880_capture_source,
2970         },
2971         [ALC880_TCL_S700] = {
2972                 .mixers = { alc880_tcl_s700_mixer },
2973                 .init_verbs = { alc880_volume_init_verbs,
2974                                 alc880_pin_tcl_S700_init_verbs,
2975                                 alc880_gpio2_init_verbs },
2976                 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2977                 .dac_nids = alc880_dac_nids,
2978                 .hp_nid = 0x03,
2979                 .num_channel_mode = ARRAY_SIZE(alc880_2_jack_modes),
2980                 .channel_mode = alc880_2_jack_modes,
2981                 .input_mux = &alc880_capture_source,
2982         },
2983         [ALC880_5ST] = {
2984                 .mixers = { alc880_three_stack_mixer,
2985                             alc880_five_stack_mixer},
2986                 .init_verbs = { alc880_volume_init_verbs,
2987                                 alc880_pin_5stack_init_verbs },
2988                 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2989                 .dac_nids = alc880_dac_nids,
2990                 .num_channel_mode = ARRAY_SIZE(alc880_fivestack_modes),
2991                 .channel_mode = alc880_fivestack_modes,
2992                 .input_mux = &alc880_capture_source,
2993         },
2994         [ALC880_5ST_DIG] = {
2995                 .mixers = { alc880_three_stack_mixer,
2996                             alc880_five_stack_mixer },
2997                 .init_verbs = { alc880_volume_init_verbs,
2998                                 alc880_pin_5stack_init_verbs },
2999                 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
3000                 .dac_nids = alc880_dac_nids,
3001                 .dig_out_nid = ALC880_DIGOUT_NID,
3002                 .num_channel_mode = ARRAY_SIZE(alc880_fivestack_modes),
3003                 .channel_mode = alc880_fivestack_modes,
3004                 .input_mux = &alc880_capture_source,
3005         },
3006         [ALC880_6ST] = {
3007                 .mixers = { alc880_six_stack_mixer },
3008                 .init_verbs = { alc880_volume_init_verbs,
3009                                 alc880_pin_6stack_init_verbs },
3010                 .num_dacs = ARRAY_SIZE(alc880_6st_dac_nids),
3011                 .dac_nids = alc880_6st_dac_nids,
3012                 .num_channel_mode = ARRAY_SIZE(alc880_sixstack_modes),
3013                 .channel_mode = alc880_sixstack_modes,
3014                 .input_mux = &alc880_6stack_capture_source,
3015         },
3016         [ALC880_6ST_DIG] = {
3017                 .mixers = { alc880_six_stack_mixer },
3018                 .init_verbs = { alc880_volume_init_verbs,
3019                                 alc880_pin_6stack_init_verbs },
3020                 .num_dacs = ARRAY_SIZE(alc880_6st_dac_nids),
3021                 .dac_nids = alc880_6st_dac_nids,
3022                 .dig_out_nid = ALC880_DIGOUT_NID,
3023                 .num_channel_mode = ARRAY_SIZE(alc880_sixstack_modes),
3024                 .channel_mode = alc880_sixstack_modes,
3025                 .input_mux = &alc880_6stack_capture_source,
3026         },
3027         [ALC880_W810] = {
3028                 .mixers = { alc880_w810_base_mixer },
3029                 .init_verbs = { alc880_volume_init_verbs,
3030                                 alc880_pin_w810_init_verbs,
3031                                 alc880_gpio2_init_verbs },
3032                 .num_dacs = ARRAY_SIZE(alc880_w810_dac_nids),
3033                 .dac_nids = alc880_w810_dac_nids,
3034                 .dig_out_nid = ALC880_DIGOUT_NID,
3035                 .num_channel_mode = ARRAY_SIZE(alc880_w810_modes),
3036                 .channel_mode = alc880_w810_modes,
3037                 .input_mux = &alc880_capture_source,
3038         },
3039         [ALC880_Z71V] = {
3040                 .mixers = { alc880_z71v_mixer },
3041                 .init_verbs = { alc880_volume_init_verbs,
3042                                 alc880_pin_z71v_init_verbs },
3043                 .num_dacs = ARRAY_SIZE(alc880_z71v_dac_nids),
3044                 .dac_nids = alc880_z71v_dac_nids,
3045                 .dig_out_nid = ALC880_DIGOUT_NID,
3046                 .hp_nid = 0x03,
3047                 .num_channel_mode = ARRAY_SIZE(alc880_2_jack_modes),
3048                 .channel_mode = alc880_2_jack_modes,
3049                 .input_mux = &alc880_capture_source,
3050         },
3051         [ALC880_F1734] = {
3052                 .mixers = { alc880_f1734_mixer },
3053                 .init_verbs = { alc880_volume_init_verbs,
3054                                 alc880_pin_f1734_init_verbs },
3055                 .num_dacs = ARRAY_SIZE(alc880_f1734_dac_nids),
3056                 .dac_nids = alc880_f1734_dac_nids,
3057                 .hp_nid = 0x02,
3058                 .num_channel_mode = ARRAY_SIZE(alc880_2_jack_modes),
3059                 .channel_mode = alc880_2_jack_modes,
3060                 .input_mux = &alc880_capture_source,
3061         },
3062         [ALC880_ASUS] = {
3063                 .mixers = { alc880_asus_mixer },
3064                 .init_verbs = { alc880_volume_init_verbs,
3065                                 alc880_pin_asus_init_verbs,
3066                                 alc880_gpio1_init_verbs },
3067                 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
3068                 .dac_nids = alc880_asus_dac_nids,
3069                 .num_channel_mode = ARRAY_SIZE(alc880_asus_modes),
3070                 .channel_mode = alc880_asus_modes,
3071                 .need_dac_fix = 1,
3072                 .input_mux = &alc880_capture_source,
3073         },
3074         [ALC880_ASUS_DIG] = {
3075                 .mixers = { alc880_asus_mixer },
3076                 .init_verbs = { alc880_volume_init_verbs,
3077                                 alc880_pin_asus_init_verbs,
3078                                 alc880_gpio1_init_verbs },
3079                 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
3080                 .dac_nids = alc880_asus_dac_nids,
3081                 .dig_out_nid = ALC880_DIGOUT_NID,
3082                 .num_channel_mode = ARRAY_SIZE(alc880_asus_modes),
3083                 .channel_mode = alc880_asus_modes,
3084                 .need_dac_fix = 1,
3085                 .input_mux = &alc880_capture_source,
3086         },
3087         [ALC880_ASUS_DIG2] = {
3088                 .mixers = { alc880_asus_mixer },
3089                 .init_verbs = { alc880_volume_init_verbs,
3090                                 alc880_pin_asus_init_verbs,
3091                                 alc880_gpio2_init_verbs }, /* use GPIO2 */
3092                 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
3093                 .dac_nids = alc880_asus_dac_nids,
3094                 .dig_out_nid = ALC880_DIGOUT_NID,
3095                 .num_channel_mode = ARRAY_SIZE(alc880_asus_modes),
3096                 .channel_mode = alc880_asus_modes,
3097                 .need_dac_fix = 1,
3098                 .input_mux = &alc880_capture_source,
3099         },
3100         [ALC880_ASUS_W1V] = {
3101                 .mixers = { alc880_asus_mixer, alc880_asus_w1v_mixer },
3102                 .init_verbs = { alc880_volume_init_verbs,
3103                                 alc880_pin_asus_init_verbs,
3104                                 alc880_gpio1_init_verbs },
3105                 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
3106                 .dac_nids = alc880_asus_dac_nids,
3107                 .dig_out_nid = ALC880_DIGOUT_NID,
3108                 .num_channel_mode = ARRAY_SIZE(alc880_asus_modes),
3109                 .channel_mode = alc880_asus_modes,
3110                 .need_dac_fix = 1,
3111                 .input_mux = &alc880_capture_source,
3112         },
3113         [ALC880_UNIWILL_DIG] = {
3114                 .mixers = { alc880_asus_mixer, alc880_pcbeep_mixer },
3115                 .init_verbs = { alc880_volume_init_verbs,
3116                                 alc880_pin_asus_init_verbs },
3117                 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
3118                 .dac_nids = alc880_asus_dac_nids,
3119                 .dig_out_nid = ALC880_DIGOUT_NID,
3120                 .num_channel_mode = ARRAY_SIZE(alc880_asus_modes),
3121                 .channel_mode = alc880_asus_modes,
3122                 .need_dac_fix = 1,
3123                 .input_mux = &alc880_capture_source,
3124         },
3125         [ALC880_UNIWILL] = {
3126                 .mixers = { alc880_uniwill_mixer },
3127                 .init_verbs = { alc880_volume_init_verbs,
3128                                 alc880_uniwill_init_verbs },
3129                 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
3130                 .dac_nids = alc880_asus_dac_nids,
3131                 .dig_out_nid = ALC880_DIGOUT_NID,
3132                 .num_channel_mode = ARRAY_SIZE(alc880_threestack_modes),
3133                 .channel_mode = alc880_threestack_modes,
3134                 .need_dac_fix = 1,
3135                 .input_mux = &alc880_capture_source,
3136                 .unsol_event = alc880_uniwill_unsol_event,
3137                 .init_hook = alc880_uniwill_automute,
3138         },
3139         [ALC880_UNIWILL_P53] = {
3140                 .mixers = { alc880_uniwill_p53_mixer },
3141                 .init_verbs = { alc880_volume_init_verbs,
3142                                 alc880_uniwill_p53_init_verbs },
3143                 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
3144                 .dac_nids = alc880_asus_dac_nids,
3145                 .num_channel_mode = ARRAY_SIZE(alc880_w810_modes),
3146                 .channel_mode = alc880_threestack_modes,
3147                 .input_mux = &alc880_capture_source,
3148                 .unsol_event = alc880_uniwill_p53_unsol_event,
3149                 .init_hook = alc880_uniwill_p53_hp_automute,
3150         },
3151         [ALC880_FUJITSU] = {
3152                 .mixers = { alc880_fujitsu_mixer,
3153                             alc880_pcbeep_mixer, },
3154                 .init_verbs = { alc880_volume_init_verbs,
3155                                 alc880_uniwill_p53_init_verbs,
3156                                 alc880_beep_init_verbs },
3157                 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
3158                 .dac_nids = alc880_dac_nids,
3159                 .dig_out_nid = ALC880_DIGOUT_NID,
3160                 .num_channel_mode = ARRAY_SIZE(alc880_2_jack_modes),
3161                 .channel_mode = alc880_2_jack_modes,
3162                 .input_mux = &alc880_capture_source,
3163                 .unsol_event = alc880_uniwill_p53_unsol_event,
3164                 .init_hook = alc880_uniwill_p53_hp_automute,
3165         },
3166         [ALC880_CLEVO] = {
3167                 .mixers = { alc880_three_stack_mixer },
3168                 .init_verbs = { alc880_volume_init_verbs,
3169                                 alc880_pin_clevo_init_verbs },
3170                 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
3171                 .dac_nids = alc880_dac_nids,
3172                 .hp_nid = 0x03,
3173                 .num_channel_mode = ARRAY_SIZE(alc880_threestack_modes),
3174                 .channel_mode = alc880_threestack_modes,
3175                 .need_dac_fix = 1,
3176                 .input_mux = &alc880_capture_source,
3177         },
3178         [ALC880_LG] = {
3179                 .mixers = { alc880_lg_mixer },
3180                 .init_verbs = { alc880_volume_init_verbs,
3181                                 alc880_lg_init_verbs },
3182                 .num_dacs = ARRAY_SIZE(alc880_lg_dac_nids),
3183                 .dac_nids = alc880_lg_dac_nids,
3184                 .dig_out_nid = ALC880_DIGOUT_NID,
3185                 .num_channel_mode = ARRAY_SIZE(alc880_lg_ch_modes),
3186                 .channel_mode = alc880_lg_ch_modes,
3187                 .need_dac_fix = 1,
3188                 .input_mux = &alc880_lg_capture_source,
3189                 .unsol_event = alc880_lg_unsol_event,
3190                 .init_hook = alc880_lg_automute,
3191 #ifdef CONFIG_SND_HDA_POWER_SAVE
3192                 .loopbacks = alc880_lg_loopbacks,
3193 #endif
3194         },
3195         [ALC880_LG_LW] = {
3196                 .mixers = { alc880_lg_lw_mixer },
3197                 .init_verbs = { alc880_volume_init_verbs,
3198                                 alc880_lg_lw_init_verbs },
3199                 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
3200                 .dac_nids = alc880_dac_nids,
3201                 .dig_out_nid = ALC880_DIGOUT_NID,
3202                 .num_channel_mode = ARRAY_SIZE(alc880_lg_lw_modes),
3203                 .channel_mode = alc880_lg_lw_modes,
3204                 .input_mux = &alc880_lg_lw_capture_source,
3205                 .unsol_event = alc880_lg_lw_unsol_event,
3206                 .init_hook = alc880_lg_lw_automute,
3207         },
3208 #ifdef CONFIG_SND_DEBUG
3209         [ALC880_TEST] = {
3210                 .mixers = { alc880_test_mixer },
3211                 .init_verbs = { alc880_test_init_verbs },
3212                 .num_dacs = ARRAY_SIZE(alc880_test_dac_nids),
3213                 .dac_nids = alc880_test_dac_nids,
3214                 .dig_out_nid = ALC880_DIGOUT_NID,
3215                 .num_channel_mode = ARRAY_SIZE(alc880_test_modes),
3216                 .channel_mode = alc880_test_modes,
3217                 .input_mux = &alc880_test_capture_source,
3218         },
3219 #endif
3220 };
3221 
3222 /*
3223  * Automatic parse of I/O pins from the BIOS configuration
3224  */
3225 
3226 #define NUM_CONTROL_ALLOC       32
3227 #define NUM_VERB_ALLOC          32
3228 
3229 enum {
3230         ALC_CTL_WIDGET_VOL,
3231         ALC_CTL_WIDGET_MUTE,
3232         ALC_CTL_BIND_MUTE,
3233 };
3234 static struct snd_kcontrol_new alc880_control_templates[] = {
3235         HDA_CODEC_VOLUME(NULL, 0, 0, 0),
3236         HDA_CODEC_MUTE(NULL, 0, 0, 0),
3237         HDA_BIND_MUTE(NULL, 0, 0, 0),
3238 };
3239 
3240 /* add dynamic controls */
3241 static int add_control(struct alc_spec *spec, int type, const char *name,
3242                        unsigned long val)
3243 {
3244         struct snd_kcontrol_new *knew;
3245 
3246         if (spec->num_kctl_used >= spec->num_kctl_alloc) {
3247                 int num = spec->num_kctl_alloc + NUM_CONTROL_ALLOC;
3248 
3249                 /* array + terminator */
3250                 knew = kcalloc(num + 1, sizeof(*knew), GFP_KERNEL);
3251                 if (!knew)
3252                         return -ENOMEM;
3253                 if (spec->kctl_alloc) {
3254                         memcpy(knew, spec->kctl_alloc,
3255                                sizeof(*knew) * spec->num_kctl_alloc);
3256                         kfree(spec->kctl_alloc);
3257                 }
3258                 spec->kctl_alloc = knew;
3259                 spec->num_kctl_alloc = num;
3260         }
3261 
3262         knew = &spec->kctl_alloc[spec->num_kctl_used];
3263         *knew = alc880_control_templates[type];
3264         knew->name = kstrdup(name, GFP_KERNEL);
3265         if (!knew->name)
3266                 return -ENOMEM;
3267         knew->private_value = val;
3268         spec->num_kctl_used++;
3269         return 0;
3270 }
3271 
3272 #define alc880_is_fixed_pin(nid)        ((nid) >= 0x14 && (nid) <= 0x17)
3273 #define alc880_fixed_pin_idx(nid)       ((nid) - 0x14)
3274 #define alc880_is_multi_pin(nid)        ((nid) >= 0x18)
3275 #define alc880_multi_pin_idx(nid)       ((nid) - 0x18)
3276 #define alc880_is_input_pin(nid)        ((nid) >= 0x18)
3277 #define alc880_input_pin_idx(nid)       ((nid) - 0x18)
3278 #define alc880_idx_to_dac(nid)          ((nid) + 0x02)
3279 #define alc880_dac_to_idx(nid)          ((nid) - 0x02)
3280 #define alc880_idx_to_mixer(nid)        ((nid) + 0x0c)
3281 #define alc880_idx_to_selector(nid)     ((nid) + 0x10)
3282 #define ALC880_PIN_CD_NID               0x1c
3283 
3284 /* fill in the dac_nids table from the parsed pin configuration */
3285 static int alc880_auto_fill_dac_nids(struct alc_spec *spec,
3286                                      const struct auto_pin_cfg *cfg)
3287 {
3288         hda_nid_t nid;
3289         int assigned[4];
3290         int i, j;
3291 
3292         memset(assigned, 0, sizeof(assigned));
3293         spec->multiout.dac_nids = spec->private_dac_nids;
3294 
3295         /* check the pins hardwired to audio widget */
3296         for (i = 0; i < cfg->line_outs; i++) {
3297                 nid = cfg->line_out_pins[i];
3298                 if (alc880_is_fixed_pin(nid)) {
3299                         int idx = alc880_fixed_pin_idx(nid);
3300                         spec->multiout.dac_nids[i] = alc880_idx_to_dac(idx);
3301                         assigned[idx] = 1;
3302                 }
3303         }
3304         /* left pins can be connect to any audio widget */
3305         for (i = 0; i < cfg->line_outs; i++) {
3306                 nid = cfg->line_out_pins[i];
3307                 if (alc880_is_fixed_pin(nid))
3308                         continue;
3309                 /* search for an empty channel */
3310                 for (j = 0; j < cfg->line_outs; j++) {
3311                         if (!assigned[j]) {
3312                                 spec->multiout.dac_nids[i] =
3313                                         alc880_idx_to_dac(j);
3314                                 assigned[j] = 1;
3315                                 break;
3316                         }
3317                 }
3318         }
3319         spec->multiout.num_dacs = cfg->line_outs;
3320         return 0;
3321 }
3322 
3323 /* add playback controls from the parsed DAC table */
3324 static int alc880_auto_create_multi_out_ctls(struct alc_spec *spec,
3325                                              const struct auto_pin_cfg *cfg)
3326 {
3327         char name[32];
3328         static const char *chname[4] = {
3329                 "Front", "Surround", NULL /*CLFE*/, "Side"
3330         };
3331         hda_nid_t nid;
3332         int i, err;
3333 
3334         for (i = 0; i < cfg->line_outs; i++) {
3335                 if (!spec->multiout.dac_nids[i])
3336                         continue;
3337                 nid = alc880_idx_to_mixer(alc880_dac_to_idx(spec->multiout.dac_nids[i]));
3338                 if (i == 2) {
3339                         /* Center/LFE */
3340                         err = add_control(spec, ALC_CTL_WIDGET_VOL,
3341                                           "Center Playback Volume",
3342                                           HDA_COMPOSE_AMP_VAL(nid, 1, 0,
3343                                                               HDA_OUTPUT));
3344                         if (err < 0)
3345                                 return err;
3346                         err = add_control(spec, ALC_CTL_WIDGET_VOL,
3347                                           "LFE Playback Volume",
3348                                           HDA_COMPOSE_AMP_VAL(nid, 2, 0,
3349                                                               HDA_OUTPUT));
3350                         if (err < 0)
3351                                 return err;
3352                         err = add_control(spec, ALC_CTL_BIND_MUTE,
3353                                           "Center Playback Switch",
3354                                           HDA_COMPOSE_AMP_VAL(nid, 1, 2,
3355                                                               HDA_INPUT));
3356                         if (err < 0)
3357                                 return err;
3358                         err = add_control(spec, ALC_CTL_BIND_MUTE,
3359                                           "LFE Playback Switch",
3360                                           HDA_COMPOSE_AMP_VAL(nid, 2, 2,
3361                                                               HDA_INPUT));
3362                         if (err < 0)
3363                                 return err;
3364                 } else {
3365                         sprintf(name, "%s Playback Volume", chname[i]);
3366                         err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
3367                                           HDA_COMPOSE_AMP_VAL(nid, 3, 0,
3368                                                               HDA_OUTPUT));
3369                         if (err < 0)
3370                                 return err;
3371                         sprintf(name, "%s Playback Switch", chname[i]);
3372                         err = add_control(spec, ALC_CTL_BIND_MUTE, name,
3373                                           HDA_COMPOSE_AMP_VAL(nid, 3, 2,
3374                                                               HDA_INPUT));
3375                         if (err < 0)
3376                                 return err;
3377                 }
3378         }
3379         return 0;
3380 }
3381 
3382 /* add playback controls for speaker and HP outputs */
3383 static int alc880_auto_create_extra_out(struct alc_spec *spec, hda_nid_t pin,
3384                                         const char *pfx)
3385 {
3386         hda_nid_t nid;
3387         int err;
3388         char name[32];
3389 
3390         if (!pin)
3391                 return 0;
3392 
3393         if (alc880_is_fixed_pin(pin)) {
3394                 nid = alc880_idx_to_dac(alc880_fixed_pin_idx(pin));
3395                 /* specify the DAC as the extra output */
3396                 if (!spec->multiout.hp_nid)
3397                         spec->multiout.hp_nid = nid;
3398                 else
3399                         spec->multiout.extra_out_nid[0] = nid;
3400                 /* control HP volume/switch on the output mixer amp */
3401                 nid = alc880_idx_to_mixer(alc880_fixed_pin_idx(pin));
3402                 sprintf(name, "%s Playback Volume", pfx);
3403                 err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
3404                                   HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT));
3405                 if (err < 0)
3406                         return err;
3407                 sprintf(name, "%s Playback Switch", pfx);
3408                 err = add_control(spec, ALC_CTL_BIND_MUTE, name,
3409                                   HDA_COMPOSE_AMP_VAL(nid, 3, 2, HDA_INPUT));
3410                 if (err < 0)
3411                         return err;
3412         } else if (alc880_is_multi_pin(pin)) {
3413                 /* set manual connection */
3414                 /* we have only a switch on HP-out PIN */
3415                 sprintf(name, "%s Playback Switch", pfx);
3416                 err = add_control(spec, ALC_CTL_WIDGET_MUTE, name,
3417                                   HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_OUTPUT));
3418                 if (err < 0)
3419                         return err;
3420         }
3421         return 0;
3422 }
3423 
3424 /* create input playback/capture controls for the given pin */
3425 static int new_analog_input(struct alc_spec *spec, hda_nid_t pin,
3426                             const char *ctlname,
3427                             int idx, hda_nid_t mix_nid)
3428 {
3429         char name[32];
3430         int err;
3431 
3432         sprintf(name, "%s Playback Volume", ctlname);
3433         err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
3434                           HDA_COMPOSE_AMP_VAL(mix_nid, 3, idx, HDA_INPUT));
3435         if (err < 0)
3436                 return err;
3437         sprintf(name, "%s Playback Switch", ctlname);
3438         err = add_control(spec, ALC_CTL_WIDGET_MUTE, name,
3439                           HDA_COMPOSE_AMP_VAL(mix_nid, 3, idx, HDA_INPUT));
3440         if (err < 0)
3441                 return err;
3442         return 0;
3443 }
3444 
3445 /* create playback/capture controls for input pins */
3446 static int alc880_auto_create_analog_input_ctls(struct alc_spec *spec,
3447                                                 const struct auto_pin_cfg *cfg)
3448 {
3449         struct hda_input_mux *imux = &spec->private_imux;
3450         int i, err, idx;
3451 
3452         for (i = 0; i < AUTO_PIN_LAST; i++) {
3453                 if (alc880_is_input_pin(cfg->input_pins[i])) {
3454                         idx = alc880_input_pin_idx(cfg->input_pins[i]);
3455                         err = new_analog_input(spec, cfg->input_pins[i],
3456                                                auto_pin_cfg_labels[i],
3457                                                idx, 0x0b);
3458                         if (err < 0)
3459                                 return err;
3460                         imux->items[imux->num_items].label =
3461                                 auto_pin_cfg_labels[i];
3462                         imux->items[imux->num_items].index =
3463                                 alc880_input_pin_idx(cfg->input_pins[i]);
3464                         imux->num_items++;
3465                 }
3466         }
3467         return 0;
3468 }
3469 
3470 static void alc880_auto_set_output_and_unmute(struct hda_codec *codec,
3471                                               hda_nid_t nid, int pin_type,
3472                                               int dac_idx)
3473 {
3474         /* set as output */
3475         snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
3476                             pin_type);
3477         snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
3478                             AMP_OUT_UNMUTE);
3479         /* need the manual connection? */
3480         if (alc880_is_multi_pin(nid)) {
3481                 struct alc_spec *spec = codec->spec;
3482                 int idx = alc880_multi_pin_idx(nid);
3483                 snd_hda_codec_write(codec, alc880_idx_to_selector(idx), 0,
3484                                     AC_VERB_SET_CONNECT_SEL,
3485                                     alc880_dac_to_idx(spec->multiout.dac_nids[dac_idx]));
3486         }
3487 }
3488 
3489 static int get_pin_type(int line_out_type)
3490 {
3491         if (line_out_type == AUTO_PIN_HP_OUT)
3492                 return PIN_HP;
3493         else
3494                 return PIN_OUT;
3495 }
3496 
3497 static void alc880_auto_init_multi_out(struct hda_codec *codec)
3498 {
3499         struct alc_spec *spec = codec->spec;
3500         int i;
3501         
3502         alc_subsystem_id(codec, 0x15, 0x1b, 0x14);
3503         for (i = 0; i < spec->autocfg.line_outs; i++) {
3504                 hda_nid_t nid = spec->autocfg.line_out_pins[i];
3505                 int pin_type = get_pin_type(spec->autocfg.line_out_type);
3506                 alc880_auto_set_output_and_unmute(codec, nid, pin_type, i);
3507         }
3508 }
3509 
3510 static void alc880_auto_init_extra_out(struct hda_codec *codec)
3511 {
3512         struct alc_spec *spec = codec->spec;
3513         hda_nid_t pin;
3514 
3515         pin = spec->autocfg.speaker_pins[0];
3516         if (pin) /* connect to front */
3517                 alc880_auto_set_output_and_unmute(codec, pin, PIN_OUT, 0);
3518         pin = spec->autocfg.hp_pins[0];
3519         if (pin) /* connect to front */
3520                 alc880_auto_set_output_and_unmute(codec, pin, PIN_HP, 0);
3521 }
3522 
3523 static void alc880_auto_init_analog_input(struct hda_codec *codec)
3524 {
3525         struct alc_spec *spec = codec->spec;
3526         int i;
3527 
3528         for (i = 0; i < AUTO_PIN_LAST; i++) {
3529                 hda_nid_t nid = spec->autocfg.input_pins[i];
3530                 if (alc880_is_input_pin(nid)) {
3531                         snd_hda_codec_write(codec, nid, 0,
3532                                             AC_VERB_SET_PIN_WIDGET_CONTROL,
3533                                             i <= AUTO_PIN_FRONT_MIC ?
3534                                             PIN_VREF80 : PIN_IN);
3535                         if (nid != ALC880_PIN_CD_NID)
3536                                 snd_hda_codec_write(codec, nid, 0,
3537                                                     AC_VERB_SET_AMP_GAIN_MUTE,
3538                                                     AMP_OUT_MUTE);
3539                 }
3540         }
3541 }
3542 
3543 /* parse the BIOS configuration and set up the alc_spec */
3544 /* return 1 if successful, 0 if the proper config is not found,
3545  * or a negative error code
3546  */
3547 static int alc880_parse_auto_config(struct hda_codec *codec)
3548 {
3549         struct alc_spec *spec = codec->spec;
3550         int err;
3551         static hda_nid_t alc880_ignore[] = { 0x1d, 0 };
3552 
3553         err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
3554                                            alc880_ignore);
3555         if (err < 0)
3556                 return err;
3557         if (!spec->autocfg.line_outs)
3558                 return 0; /* can't find valid BIOS pin config */
3559 
3560         err = alc880_auto_fill_dac_nids(spec, &spec->autocfg);
3561         if (err < 0)
3562                 return err;
3563         err = alc880_auto_create_multi_out_ctls(spec, &spec->autocfg);
3564         if (err < 0)
3565                 return err;
3566         err = alc880_auto_create_extra_out(spec,
3567                                            spec->autocfg.speaker_pins[0],
3568                                            "Speaker");
3569         if (err < 0)
3570                 return err;
3571         err = alc880_auto_create_extra_out(spec, spec->autocfg.hp_pins[0],
3572                                            "Headphone");
3573         if (err < 0)
3574                 return err;
3575         err = alc880_auto_create_analog_input_ctls(spec, &spec->autocfg);
3576         if (err < 0)
3577                 return err;
3578 
3579         spec->multiout.max_channels = spec->multiout.num_dacs * 2;
3580 
3581         if (spec->autocfg.dig_out_pin)
3582                 spec->multiout.dig_out_nid = ALC880_DIGOUT_NID;
3583         if (spec->autocfg.dig_in_pin)
3584                 spec->dig_in_nid = ALC880_DIGIN_NID;
3585 
3586         if (spec->kctl_alloc)
3587                 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
3588 
3589         spec->init_verbs[spec->num_init_verbs++] = alc880_volume_init_verbs;
3590 
3591         spec->num_mux_defs = 1;
3592         spec->input_mux = &spec->private_imux;
3593 
3594         return 1;
3595 }
3596 
3597 /* additional initialization for auto-configuration model */
3598 static void alc880_auto_init(struct hda_codec *codec)
3599 {
3600         alc880_auto_init_multi_out(codec);
3601         alc880_auto_init_extra_out(codec);
3602         alc880_auto_init_analog_input(codec);
3603 }
3604 
3605 /*
3606  * OK, here we have finally the patch for ALC880
3607  */
3608 
3609 static int patch_alc880(struct hda_codec *codec)
3610 {
3611         struct alc_spec *spec;
3612         int board_config;
3613         int err;
3614 
3615         spec = kzalloc(sizeof(*spec), GFP_KERNEL);
3616         if (spec == NULL)
3617                 return -ENOMEM;
3618 
3619         codec->spec = spec;
3620 
3621         board_config = snd_hda_check_board_config(codec, ALC880_MODEL_LAST,
3622                                                   alc880_models,
3623                                                   alc880_cfg_tbl);
3624         if (board_config < 0) {
3625                 printk(KERN_INFO "hda_codec: Unknown model for ALC880, "
3626                        "trying auto-probe from BIOS...\n");
3627                 board_config = ALC880_AUTO;
3628         }
3629 
3630         if (board_config == ALC880_AUTO) {
3631                 /* automatic parse from the BIOS config */
3632                 err = alc880_parse_auto_config(codec);
3633                 if (err < 0) {
3634                         alc_free(codec);
3635                         return err;
3636                 } else if (!err) {
3637                         printk(KERN_INFO
3638                                "hda_codec: Cannot set up configuration "
3639                                "from BIOS.  Using 3-stack mode...\n");
3640                         board_config = ALC880_3ST;
3641                 }
3642         }
3643 
3644         if (board_config != ALC880_AUTO)
3645                 setup_preset(spec, &alc880_presets[board_config]);
3646 
3647         spec->stream_name_analog = "ALC880 Analog";
3648         spec->stream_analog_playback = &alc880_pcm_analog_playback;
3649         spec->stream_analog_capture = &alc880_pcm_analog_capture;
3650         spec->stream_analog_alt_capture = &alc880_pcm_analog_alt_capture;
3651 
3652         spec->stream_name_digital = "ALC880 Digital";
3653         spec->stream_digital_playback = &alc880_pcm_digital_playback;
3654         spec->stream_digital_capture = &alc880_pcm_digital_capture;
3655 
3656         if (!spec->adc_nids && spec->input_mux) {
3657                 /* check whether NID 0x07 is valid */
3658                 unsigned int wcap = get_wcaps(codec, alc880_adc_nids[0]);
3659                 /* get type */
3660                 wcap = (wcap & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT;
3661                 if (wcap != AC_WID_AUD_IN) {
3662                         spec->adc_nids = alc880_adc_nids_alt;
3663                         spec->num_adc_nids = ARRAY_SIZE(alc880_adc_nids_alt);
3664                         spec->mixers[spec->num_mixers] =
3665                                 alc880_capture_alt_mixer;
3666                         spec->num_mixers++;
3667                 } else {
3668                         spec->adc_nids = alc880_adc_nids;
3669                         spec->num_adc_nids = ARRAY_SIZE(alc880_adc_nids);
3670                         spec->mixers[spec->num_mixers] = alc880_capture_mixer;
3671                         spec->num_mixers++;
3672                 }
3673         }
3674 
3675         spec->vmaster_nid = 0x0c;
3676 
3677         codec->patch_ops = alc_patch_ops;
3678         if (board_config == ALC880_AUTO)
3679                 spec->init_hook = alc880_auto_init;
3680 #ifdef CONFIG_SND_HDA_POWER_SAVE
3681         if (!spec->loopback.amplist)
3682                 spec->loopback.amplist = alc880_loopbacks;
3683 #endif
3684 
3685         return 0;
3686 }
3687 
3688 
3689 /*
3690  * ALC260 support
3691  */
3692 
3693 static hda_nid_t alc260_dac_nids[1] = {
3694         /* front */
3695         0x02,
3696 };
3697 
3698 static hda_nid_t alc260_adc_nids[1] = {
3699         /* ADC0 */
3700         0x04,
3701 };
3702 
3703 static hda_nid_t alc260_adc_nids_alt[1] = {
3704         /* ADC1 */
3705         0x05,
3706 };
3707 
3708 static hda_nid_t alc260_hp_adc_nids[2] = {
3709         /* ADC1, 0 */
3710         0x05, 0x04
3711 };
3712 
3713 /* NIDs used when simultaneous access to both ADCs makes sense.  Note that
3714  * alc260_capture_mixer assumes ADC0 (nid 0x04) is the first ADC.
3715  */
3716 static hda_nid_t alc260_dual_adc_nids[2] = {
3717         /* ADC0, ADC1 */
3718         0x04, 0x05
3719 };
3720 
3721 #define ALC260_DIGOUT_NID       0x03
3722 #define ALC260_DIGIN_NID        0x06
3723 
3724 static struct hda_input_mux alc260_capture_source = {
3725         .num_items = 4,
3726         .items = {
3727                 { "Mic", 0x0 },
3728                 { "Front Mic", 0x1 },
3729                 { "Line", 0x2 },
3730                 { "CD", 0x4 },
3731         },
3732 };
3733 
3734 /* On Fujitsu S702x laptops capture only makes sense from Mic/LineIn jack,
3735  * headphone jack and the internal CD lines since these are the only pins at
3736  * which audio can appear.  For flexibility, also allow the option of
3737  * recording the mixer output on the second ADC (ADC0 doesn't have a
3738  * connection to the mixer output).
3739  */
3740 static struct hda_input_mux alc260_fujitsu_capture_sources[2] = {
3741         {
3742                 .num_items = 3,
3743                 .items = {
3744                         { "Mic/Line", 0x0 },
3745                         { "CD", 0x4 },
3746                         { "Headphone", 0x2 },
3747                 },
3748         },
3749         {
3750                 .num_items = 4,
3751                 .items = {
3752                         { "Mic/Line", 0x0 },
3753                         { "CD", 0x4 },
3754                         { "Headphone", 0x2 },
3755                         { "Mixer", 0x5 },
3756                 },
3757         },
3758 
3759 };
3760 
3761 /* Acer TravelMate(/Extensa/Aspire) notebooks have similar configuration to
3762  * the Fujitsu S702x, but jacks are marked differently.
3763  */
3764 static struct hda_input_mux alc260_acer_capture_sources[2] = {
3765         {
3766                 .num_items = 4,
3767                 .items = {
3768                         { "Mic", 0x0 },
3769                         { "Line", 0x2 },
3770                         { "CD", 0x4 },
3771                         { "Headphone", 0x5 },
3772                 },
3773         },
3774         {
3775                 .num_items = 5,
3776                 .items = {
3777                         { "Mic", 0x0 },
3778                         { "Line", 0x2 },
3779                         { "CD", 0x4 },
3780                         { "Headphone", 0x6 },
3781                         { "Mixer", 0x5 },
3782                 },
3783         },
3784 };
3785 /*
3786  * This is just place-holder, so there's something for alc_build_pcms to look
3787  * at when it calculates the maximum number of channels. ALC260 has no mixer
3788  * element which allows changing the channel mode, so the verb list is
3789  * never used.
3790  */
3791 static struct hda_channel_mode alc260_modes[1] = {
3792         { 2, NULL },
3793 };
3794 
3795 
3796 /* Mixer combinations
3797  *
3798  * basic: base_output + input + pc_beep + capture
3799  * HP: base_output + input + capture_alt
3800  * HP_3013: hp_3013 + input + capture
3801  * fujitsu: fujitsu + capture
3802  * acer: acer + capture
3803  */
3804 
3805 static struct snd_kcontrol_new alc260_base_output_mixer[] = {
3806         HDA_CODEC_VOLUME("Front Playback Volume", 0x08, 0x0, HDA_OUTPUT),
3807         HDA_BIND_MUTE("Front Playback Switch", 0x08, 2, HDA_INPUT),
3808         HDA_CODEC_VOLUME("Headphone Playback Volume", 0x09, 0x0, HDA_OUTPUT),
3809         HDA_BIND_MUTE("Headphone Playback Switch", 0x09, 2, HDA_INPUT),
3810         HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x0a, 1, 0x0, HDA_OUTPUT),
3811         HDA_BIND_MUTE_MONO("Mono Playback Switch", 0x0a, 1, 2, HDA_INPUT),
3812         { } /* end */
3813 };
3814 
3815 static struct snd_kcontrol_new alc260_input_mixer[] = {
3816         HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT),
3817         HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT),
3818         HDA_CODEC_VOLUME("Line Playback Volume", 0x07, 0x02, HDA_INPUT),
3819         HDA_CODEC_MUTE("Line Playback Switch", 0x07, 0x02, HDA_INPUT),
3820         HDA_CODEC_VOLUME("Mic Playback Volume", 0x07, 0x0, HDA_INPUT),
3821         HDA_CODEC_MUTE("Mic Playback Switch", 0x07, 0x0, HDA_INPUT),
3822         HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x07, 0x01, HDA_INPUT),
3823         HDA_CODEC_MUTE("Front Mic Playback Switch", 0x07, 0x01, HDA_INPUT),
3824         { } /* end */
3825 };
3826 
3827 static struct snd_kcontrol_new alc260_pc_beep_mixer[] = {
3828         HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x07, 0x05, HDA_INPUT),
3829         HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x07, 0x05, HDA_INPUT),
3830         { } /* end */
3831 };
3832 
3833 /* update HP, line and mono out pins according to the master switch */
3834 static void alc260_hp_master_update(struct hda_codec *codec,
3835                                     hda_nid_t hp, hda_nid_t line,
3836                                     hda_nid_t mono)
3837 {
3838         struct alc_spec *spec = codec->spec;
3839         unsigned int val = spec->master_sw ? PIN_HP : 0;
3840         /* change HP and line-out pins */
3841         snd_hda_codec_write(codec, 0x0f, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
3842                             val);
3843         snd_hda_codec_write(codec, 0x10, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
3844                             val);
3845         /* mono (speaker) depending on the HP jack sense */
3846         val = (val && !spec->jack_present) ? PIN_OUT : 0;
3847         snd_hda_codec_write(codec, 0x11, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
3848                             val);
3849 }
3850 
3851 static int alc260_hp_master_sw_get(struct snd_kcontrol *kcontrol,
3852                                    struct snd_ctl_elem_value *ucontrol)
3853 {
3854         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3855         struct alc_spec *spec = codec->spec;
3856         *ucontrol->value.integer.value = spec->master_sw;
3857         return 0;
3858 }
3859 
3860 static int alc260_hp_master_sw_put(struct snd_kcontrol *kcontrol,
3861                                    struct snd_ctl_elem_value *ucontrol)
3862 {
3863         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3864         struct alc_spec *spec = codec->spec;
3865         int val = !!*ucontrol->value.integer.value;
3866         hda_nid_t hp, line, mono;
3867 
3868         if (val == spec->master_sw)
3869                 return 0;
3870         spec->master_sw = val;
3871         hp = (kcontrol->private_value >> 16) & 0xff;
3872         line = (kcontrol->private_value >> 8) & 0xff;
3873         mono = kcontrol->private_value & 0xff;
3874         alc260_hp_master_update(codec, hp, line, mono);
3875         return 1;
3876 }
3877 
3878 static struct snd_kcontrol_new alc260_hp_output_mixer[] = {
3879         {
3880                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
3881                 .name = "Master Playback Switch",
3882                 .info = snd_ctl_boolean_mono_info,
3883                 .get = alc260_hp_master_sw_get,
3884                 .put = alc260_hp_master_sw_put,
3885                 .private_value = (0x0f << 16) | (0x10 << 8) | 0x11
3886         },
3887         HDA_CODEC_VOLUME("Front Playback Volume", 0x08, 0x0, HDA_OUTPUT),
3888         HDA_BIND_MUTE("Front Playback Switch", 0x08, 2, HDA_INPUT),
3889         HDA_CODEC_VOLUME("Headphone Playback Volume", 0x09, 0x0, HDA_OUTPUT),
3890         HDA_BIND_MUTE("Headphone Playback Switch", 0x09, 2, HDA_INPUT),
3891         HDA_CODEC_VOLUME_MONO("Speaker Playback Volume", 0x0a, 1, 0x0,
3892                               HDA_OUTPUT),
3893         HDA_BIND_MUTE_MONO("Speaker Playback Switch", 0x0a, 1, 2, HDA_INPUT),
3894         { } /* end */
3895 };
3896 
3897 static struct hda_verb alc260_hp_unsol_verbs[] = {
3898         {0x10, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
3899         {},
3900 };
3901 
3902 static void alc260_hp_automute(struct hda_codec *codec)
3903 {
3904         struct alc_spec *spec = codec->spec;
3905         unsigned int present;
3906 
3907         present = snd_hda_codec_read(codec, 0x10, 0,
3908                                      AC_VERB_GET_PIN_SENSE, 0);
3909         spec->jack_present = (present & AC_PINSENSE_PRESENCE) != 0;
3910         alc260_hp_master_update(codec, 0x0f, 0x10, 0x11);
3911 }
3912 
3913 static void alc260_hp_unsol_event(struct hda_codec *codec, unsigned int res)
3914 {
3915         if ((res >> 26) == ALC880_HP_EVENT)
3916                 alc260_hp_automute(codec);
3917 }
3918 
3919 static struct snd_kcontrol_new alc260_hp_3013_mixer[] = {
3920         {
3921                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
3922                 .name = "Master Playback Switch",
3923                 .info = snd_ctl_boolean_mono_info,
3924                 .get = alc260_hp_master_sw_get,
3925                 .put = alc260_hp_master_sw_put,
3926                 .private_value = (0x10 << 16) | (0x15 << 8) | 0x11
3927         },
3928         HDA_CODEC_VOLUME("Front Playback Volume", 0x09, 0x0, HDA_OUTPUT),
3929         HDA_CODEC_MUTE("Front Playback Switch", 0x10, 0x0, HDA_OUTPUT),
3930         HDA_CODEC_VOLUME("Aux-In Playback Volume", 0x07, 0x06, HDA_INPUT),
3931         HDA_CODEC_MUTE("Aux-In Playback Switch", 0x07, 0x06, HDA_INPUT),
3932         HDA_CODEC_VOLUME("Headphone Playback Volume", 0x08, 0x0, HDA_OUTPUT),
3933         HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT),
3934         HDA_CODEC_VOLUME_MONO("Speaker Playback Volume", 0x0a, 1, 0x0, HDA_OUTPUT),
3935         HDA_CODEC_MUTE_MONO("Speaker Playback Switch", 0x11, 1, 0x0, HDA_OUTPUT),
3936         { } /* end */
3937 };
3938 
3939 static struct hda_verb alc260_hp_3013_unsol_verbs[] = {
3940         {0x15, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
3941         {},
3942 };
3943 
3944 static void alc260_hp_3013_automute(struct hda_codec *codec)
3945 {
3946         struct alc_spec *spec = codec->spec;
3947         unsigned int present;
3948 
3949         present = snd_hda_codec_read(codec, 0x15, 0,
3950                                      AC_VERB_GET_PIN_SENSE, 0);
3951         spec->jack_present = (present & AC_PINSENSE_PRESENCE) != 0;
3952         alc260_hp_master_update(codec, 0x10, 0x15, 0x11);
3953 }
3954 
3955 static void alc260_hp_3013_unsol_event(struct hda_codec *codec,
3956                                        unsigned int res)
3957 {
3958         if ((res >> 26) == ALC880_HP_EVENT)
3959                 alc260_hp_3013_automute(codec);
3960 }
3961 
3962 /* Fujitsu S702x series laptops.  ALC260 pin usage: Mic/Line jack = 0x12, 
3963  * HP jack = 0x14, CD audio =  0x16, internal speaker = 0x10.
3964  */
3965 static struct snd_kcontrol_new alc260_fujitsu_mixer[] = {
3966         HDA_CODEC_VOLUME("Headphone Playback Volume", 0x08, 0x0, HDA_OUTPUT),
3967         HDA_BIND_MUTE("Headphone Playback Switch", 0x08, 2, HDA_INPUT),
3968         ALC_PIN_MODE("Headphone Jack Mode", 0x14, ALC_PIN_DIR_INOUT),
3969         HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT),
3970         HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT),
3971         HDA_CODEC_VOLUME("Mic/Line Playback Volume", 0x07, 0x0, HDA_INPUT),
3972         HDA_CODEC_MUTE("Mic/Line Playback Switch", 0x07, 0x0, HDA_INPUT),
3973         ALC_PIN_MODE("Mic/Line Jack Mode", 0x12, ALC_PIN_DIR_IN),
3974         HDA_CODEC_VOLUME("Beep Playback Volume", 0x07, 0x05, HDA_INPUT),
3975         HDA_CODEC_MUTE("Beep Playback Switch", 0x07, 0x05, HDA_INPUT),
3976         HDA_CODEC_VOLUME("Speaker Playback Volume", 0x09, 0x0, HDA_OUTPUT),
3977         HDA_BIND_MUTE("Speaker Playback Switch", 0x09, 2, HDA_INPUT),
3978         { } /* end */
3979 };
3980 
3981 /* Mixer for Acer TravelMate(/Extensa/Aspire) notebooks.  Note that current
3982  * versions of the ALC260 don't act on requests to enable mic bias from NID
3983  * 0x0f (used to drive the headphone jack in these laptops).  The ALC260
3984  * datasheet doesn't mention this restriction.  At this stage it's not clear
3985  * whether this behaviour is intentional or is a hardware bug in chip
3986  * revisions available in early 2006.  Therefore for now allow the
3987  * "Headphone Jack Mode" control to span all choices, but if it turns out
3988  * that the lack of mic bias for this NID is intentional we could change the
3989  * mode from ALC_PIN_DIR_INOUT to ALC_PIN_DIR_INOUT_NOMICBIAS.
3990  *
3991  * In addition, Acer TravelMate(/Extensa/Aspire) notebooks in early 2006
3992  * don't appear to make the mic bias available from the "line" jack, even
3993  * though the NID used for this jack (0x14) can supply it.  The theory is
3994  * that perhaps Acer have included blocking capacitors between the ALC260
3995  * and the output jack.  If this turns out to be the case for all such
3996  * models the "Line Jack Mode" mode could be changed from ALC_PIN_DIR_INOUT
3997  * to ALC_PIN_DIR_INOUT_NOMICBIAS.
3998  *
3999  * The C20x Tablet series have a mono internal speaker which is controlled
4000  * via the chip's Mono sum widget and pin complex, so include the necessary
4001  * controls for such models.  On models without a "mono speaker" the control
4002  * won't do anything.
4003  */
4004 static struct snd_kcontrol_new alc260_acer_mixer[] = {
4005         HDA_CODEC_VOLUME("Master Playback Volume", 0x08, 0x0, HDA_OUTPUT),
4006         HDA_BIND_MUTE("Master Playback Switch", 0x08, 2, HDA_INPUT),
4007         ALC_PIN_MODE("Headphone Jack Mode", 0x0f, ALC_PIN_DIR_INOUT),
4008         HDA_CODEC_VOLUME_MONO("Speaker Playback Volume", 0x0a, 1, 0x0,
4009                               HDA_OUTPUT),
4010         HDA_BIND_MUTE_MONO("Speaker Playback Switch", 0x0a, 1, 2,
4011                            HDA_INPUT),
4012         HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT),
4013         HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT),
4014         HDA_CODEC_VOLUME("Mic Playback Volume", 0x07, 0x0, HDA_INPUT),
4015         HDA_CODEC_MUTE("Mic Playback Switch", 0x07, 0x0, HDA_INPUT),
4016         ALC_PIN_MODE("Mic Jack Mode", 0x12, ALC_PIN_DIR_IN),
4017         HDA_CODEC_VOLUME("Line Playback Volume", 0x07, 0x02, HDA_INPUT),
4018         HDA_CODEC_MUTE("Line Playback Switch", 0x07, 0x02, HDA_INPUT),
4019         ALC_PIN_MODE("Line Jack Mode", 0x14, ALC_PIN_DIR_INOUT),
4020         HDA_CODEC_VOLUME("Beep Playback Volume", 0x07, 0x05, HDA_INPUT),
4021         HDA_CODEC_MUTE("Beep Playback Switch", 0x07, 0x05, HDA_INPUT),
4022         { } /* end */
4023 };
4024 
4025 /* Packard bell V7900  ALC260 pin usage: HP = 0x0f, Mic jack = 0x12,
4026  * Line In jack = 0x14, CD audio =  0x16, pc beep = 0x17.
4027  */
4028 static struct snd_kcontrol_new alc260_will_mixer[] = {
4029         HDA_CODEC_VOLUME("Master Playback Volume", 0x08, 0x0, HDA_OUTPUT),
4030         HDA_BIND_MUTE("Master Playback Switch", 0x08, 0x2, HDA_INPUT),
4031         HDA_CODEC_VOLUME("Mic Playback Volume", 0x07, 0x0, HDA_INPUT),
4032         HDA_CODEC_MUTE("Mic Playback Switch", 0x07, 0x0, HDA_INPUT),
4033         ALC_PIN_MODE("Mic Jack Mode", 0x12, ALC_PIN_DIR_IN),
4034         HDA_CODEC_VOLUME("Line Playback Volume", 0x07, 0x02, HDA_INPUT),
4035         HDA_CODEC_MUTE("Line Playback Switch", 0x07, 0x02, HDA_INPUT),
4036         ALC_PIN_MODE("Line Jack Mode", 0x14, ALC_PIN_DIR_INOUT),
4037         HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT),
4038         HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT),
4039         HDA_CODEC_VOLUME("Beep Playback Volume", 0x07, 0x05, HDA_INPUT),
4040         HDA_CODEC_MUTE("Beep Playback Switch", 0x07, 0x05, HDA_INPUT),
4041         { } /* end */
4042 };
4043 
4044 /* Replacer 672V ALC260 pin usage: Mic jack = 0x12,
4045  * Line In jack = 0x14, ATAPI Mic = 0x13, speaker = 0x0f.
4046  */
4047 static struct snd_kcontrol_new alc260_replacer_672v_mixer[] = {
4048         HDA_CODEC_VOLUME("Master Playback Volume", 0x08, 0x0, HDA_OUTPUT),
4049         HDA_BIND_MUTE("Master Playback Switch", 0x08, 0x2, HDA_INPUT),
4050         HDA_CODEC_VOLUME("Mic Playback Volume", 0x07, 0x0, HDA_INPUT),
4051         HDA_CODEC_MUTE("Mic Playback Switch", 0x07, 0x0, HDA_INPUT),
4052         ALC_PIN_MODE("Mic Jack Mode", 0x12, ALC_PIN_DIR_IN),
4053         HDA_CODEC_VOLUME("ATAPI Mic Playback Volume", 0x07, 0x1, HDA_INPUT),
4054         HDA_CODEC_MUTE("ATATI Mic Playback Switch", 0x07, 0x1, HDA_INPUT),
4055         HDA_CODEC_VOLUME("Line Playback Volume", 0x07, 0x02, HDA_INPUT),
4056         HDA_CODEC_MUTE("Line Playback Switch", 0x07, 0x02, HDA_INPUT),
4057         ALC_PIN_MODE("Line Jack Mode", 0x14, ALC_PIN_DIR_INOUT),
4058         { } /* end */
4059 };
4060 
4061 /* capture mixer elements */
4062 static struct snd_kcontrol_new alc260_capture_mixer[] = {
4063         HDA_CODEC_VOLUME("Capture Volume", 0x04, 0x0, HDA_INPUT),
4064         HDA_CODEC_MUTE("Capture Switch", 0x04, 0x0, HDA_INPUT),
4065         HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x05, 0x0, HDA_INPUT),
4066         HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x05, 0x0, HDA_INPUT),
4067         {
4068                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
4069                 /* The multiple "Capture Source" controls confuse alsamixer
4070                  * So call somewhat different..
4071                  */
4072                 /* .name = "Capture Source", */
4073                 .name = "Input Source",
4074                 .count = 2,
4075                 .info = alc_mux_enum_info,
4076                 .get = alc_mux_enum_get,
4077                 .put = alc_mux_enum_put,
4078         },
4079         { } /* end */
4080 };
4081 
4082 static struct snd_kcontrol_new alc260_capture_alt_mixer[] = {
4083         HDA_CODEC_VOLUME("Capture Volume", 0x05, 0x0, HDA_INPUT),
4084         HDA_CODEC_MUTE("Capture Switch", 0x05, 0x0, HDA_INPUT),
4085         {
4086                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
4087                 /* The multiple "Capture Source" controls confuse alsamixer
4088                  * So call somewhat different..
4089                  */
4090                 /* .name = "Capture Source", */
4091                 .name = "Input Source",
4092                 .count = 1,
4093                 .info = alc_mux_enum_info,
4094                 .get = alc_mux_enum_get,
4095                 .put = alc_mux_enum_put,
4096         },
4097         { } /* end */
4098 };
4099 
4100 /*
4101  * initialization verbs
4102  */
4103 static struct hda_verb alc260_init_verbs[] = {
4104         /* Line In pin widget for input */
4105         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
4106         /* CD pin widget for input */
4107         {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
4108         /* Mic1 (rear panel) pin widget for input and vref at 80% */
4109         {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
4110         /* Mic2 (front panel) pin widget for input and vref at 80% */
4111         {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
4112         /* LINE-2 is used for line-out in rear */
4113         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4114         /* select line-out */
4115         {0x0e, AC_VERB_SET_CONNECT_SEL, 0x00},
4116         /* LINE-OUT pin */
4117         {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4118         /* enable HP */
4119         {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
4120         /* enable Mono */
4121         {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4122         /* mute capture amp left and right */
4123         {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4124         /* set connection select to line in (default select for this ADC) */
4125         {0x04, AC_VERB_SET_CONNECT_SEL, 0x02},
4126         /* mute capture amp left and right */
4127         {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4128         /* set connection select to line in (default select for this ADC) */
4129         {0x05, AC_VERB_SET_CONNECT_SEL, 0x02},
4130         /* set vol=0 Line-Out mixer amp left and right */
4131         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4132         /* unmute pin widget amp left and right (no gain on this amp) */
4133         {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4134         /* set vol=0 HP mixer amp left and right */
4135         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4136         /* unmute pin widget amp left and right (no gain on this amp) */
4137         {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4138         /* set vol=0 Mono mixer amp left and right */
4139         {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4140         /* unmute pin widget amp left and right (no gain on this amp) */
4141         {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4142         /* unmute LINE-2 out pin */
4143         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4144         /* Amp Indexes: CD = 0x04, Line In 1 = 0x02, Mic 1 = 0x00 &
4145          * Line In 2 = 0x03
4146          */
4147         /* mute analog inputs */
4148         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4149         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4150         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
4151         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
4152         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
4153         /* Amp Indexes: DAC = 0x01 & mixer = 0x00 */
4154         /* mute Front out path */
4155         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4156         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4157         /* mute Headphone out path */
4158         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4159         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4160         /* mute Mono out path */
4161         {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4162         {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4163         { }
4164 };
4165 
4166 #if 0 /* should be identical with alc260_init_verbs? */
4167 static struct hda_verb alc260_hp_init_verbs[] = {
4168         /* Headphone and output */
4169         {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0},
4170         /* mono output */
4171         {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
4172         /* Mic1 (rear panel) pin widget for input and vref at 80% */
4173         {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
4174         /* Mic2 (front panel) pin widget for input and vref at 80% */
4175         {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
4176         /* Line In pin widget for input */
4177         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
4178         /* Line-2 pin widget for output */
4179         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
4180         /* CD pin widget for input */
4181         {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
4182         /* unmute amp left and right */
4183         {0x04, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000},
4184         /* set connection select to line in (default select for this ADC) */
4185         {0x04, AC_VERB_SET_CONNECT_SEL, 0x02},
4186         /* unmute Line-Out mixer amp left and right (volume = 0) */
4187         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
4188         /* mute pin widget amp left and right (no gain on this amp) */
4189         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
4190         /* unmute HP mixer amp left and right (volume = 0) */
4191         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
4192         /* mute pin widget amp left and right (no gain on this amp) */
4193         {0x10, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
4194         /* Amp Indexes: CD = 0x04, Line In 1 = 0x02, Mic 1 = 0x00 &
4195          * Line In 2 = 0x03
4196          */
4197         /* mute analog inputs */
4198         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4199         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4200         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
4201         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
4202         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
4203         /* Amp Indexes: DAC = 0x01 & mixer = 0x00 */
4204         /* Unmute Front out path */
4205         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
4206         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
4207         /* Unmute Headphone out path */
4208         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
4209         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
4210         /* Unmute Mono out path */
4211         {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
4212         {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
4213         { }
4214 };
4215 #endif
4216 
4217 static struct hda_verb alc260_hp_3013_init_verbs[] = {
4218         /* Line out and output */
4219         {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
4220         /* mono output */
4221         {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
4222         /* Mic1 (rear panel) pin widget for input and vref at 80% */
4223         {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
4224         /* Mic2 (front panel) pin widget for input and vref at 80% */
4225         {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
4226         /* Line In pin widget for input */
4227         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
4228         /* Headphone pin widget for output */
4229         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0},
4230         /* CD pin widget for input */
4231         {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
4232         /* unmute amp left and right */
4233         {0x04, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000},
4234         /* set connection select to line in (default select for this ADC) */
4235         {0x04, AC_VERB_SET_CONNECT_SEL, 0x02},
4236         /* unmute Line-Out mixer amp left and right (volume = 0) */
4237         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
4238         /* mute pin widget amp left and right (no gain on this amp) */
4239         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
4240         /* unmute HP mixer amp left and right (volume = 0) */
4241         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
4242         /* mute pin widget amp left and right (no gain on this amp) */
4243         {0x10, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
4244         /* Amp Indexes: CD = 0x04, Line In 1 = 0x02, Mic 1 = 0x00 &
4245          * Line In 2 = 0x03
4246          */
4247         /* mute analog inputs */
4248         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4249         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4250         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
4251         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
4252         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
4253         /* Amp Indexes: DAC = 0x01 & mixer = 0x00 */
4254         /* Unmute Front out path */
4255         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
4256         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
4257         /* Unmute Headphone out path */
4258         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
4259         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
4260         /* Unmute Mono out path */
4261         {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
4262         {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
4263         { }
4264 };
4265 
4266 /* Initialisation sequence for ALC260 as configured in Fujitsu S702x
4267  * laptops.  ALC260 pin usage: Mic/Line jack = 0x12, HP jack = 0x14, CD
4268  * audio = 0x16, internal speaker = 0x10.
4269  */
4270 static struct hda_verb alc260_fujitsu_init_verbs[] = {
4271         /* Disable all GPIOs */
4272         {0x01, AC_VERB_SET_GPIO_MASK, 0},
4273         /* Internal speaker is connected to headphone pin */
4274         {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
4275         /* Headphone/Line-out jack connects to Line1 pin; make it an output */
4276         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4277         /* Mic/Line-in jack is connected to mic1 pin, so make it an input */
4278         {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
4279         /* Ensure all other unused pins are disabled and muted. */
4280         {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
4281         {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4282         {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
4283         {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4284         {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
4285         {0x13, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4286         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
4287         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4288 
4289         /* Disable digital (SPDIF) pins */
4290         {0x03, AC_VERB_SET_DIGI_CONVERT_1, 0},
4291         {0x06, AC_VERB_SET_DIGI_CONVERT_1, 0},
4292 
4293         /* Ensure Line1 pin widget takes its input from the OUT1 sum bus 
4294          * when acting as an output.
4295          */
4296         {0x0d, AC_VERB_SET_CONNECT_SEL, 0},
4297 
4298         /* Start with output sum widgets muted and their output gains at min */
4299         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4300         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4301         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4302         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4303         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4304         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4305         {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4306         {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4307         {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4308 
4309         /* Unmute HP pin widget amp left and right (no equiv mixer ctrl) */
4310         {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4311         /* Unmute Line1 pin widget output buffer since it starts as an output.
4312          * If the pin mode is changed by the user the pin mode control will
4313          * take care of enabling the pin's input/output buffers as needed.
4314          * Therefore there's no need to enable the input buffer at this
4315          * stage.
4316          */
4317         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4318         /* Unmute input buffer of pin widget used for Line-in (no equiv 
4319          * mixer ctrl)
4320          */
4321         {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4322 
4323         /* Mute capture amp left and right */
4324         {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4325         /* Set ADC connection select to match default mixer setting - line 
4326          * in (on mic1 pin)
4327          */
4328         {0x04, AC_VERB_SET_CONNECT_SEL, 0x00},
4329 
4330         /* Do the same for the second ADC: mute capture input amp and
4331          * set ADC connection to line in (on mic1 pin)
4332          */
4333         {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4334         {0x05, AC_VERB_SET_CONNECT_SEL, 0x00},
4335 
4336         /* Mute all inputs to mixer widget (even unconnected ones) */
4337         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* mic1 pin */
4338         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, /* mic2 pin */
4339         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, /* line1 pin */
4340         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, /* line2 pin */
4341         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, /* CD pin */
4342         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)}, /* Beep-gen pin */
4343         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)}, /* Line-out pin */
4344         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)}, /* HP-pin pin */
4345 
4346         { }
4347 };
4348 
4349 /* Initialisation sequence for ALC260 as configured in Acer TravelMate and
4350  * similar laptops (adapted from Fujitsu init verbs).
4351  */
4352 static struct hda_verb alc260_acer_init_verbs[] = {
4353         /* On TravelMate laptops, GPIO 0 enables the internal speaker and
4354          * the headphone jack.  Turn this on and rely on the standard mute
4355          * methods whenever the user wants to turn these outputs off.
4356          */
4357         {0x01, AC_VERB_SET_GPIO_MASK, 0x01},
4358         {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
4359         {0x01, AC_VERB_SET_GPIO_DATA, 0x01},
4360         /* Internal speaker/Headphone jack is connected to Line-out pin */
4361         {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
4362         /* Internal microphone/Mic jack is connected to Mic1 pin */
4363         {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF50},
4364         /* Line In jack is connected to Line1 pin */
4365         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
4366         /* Some Acers (eg: C20x Tablets) use Mono pin for internal speaker */
4367         {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
4368         /* Ensure all other unused pins are disabled and muted. */
4369         {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
4370         {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4371         {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
4372         {0x13, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4373         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
4374         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4375         /* Disable digital (SPDIF) pins */
4376         {0x03, AC_VERB_SET_DIGI_CONVERT_1, 0},
4377         {0x06, AC_VERB_SET_DIGI_CONVERT_1, 0},
4378 
4379         /* Ensure Mic1 and Line1 pin widgets take input from the OUT1 sum 
4380          * bus when acting as outputs.
4381          */
4382         {0x0b, AC_VERB_SET_CONNECT_SEL, 0},
4383         {0x0d, AC_VERB_SET_CONNECT_SEL, 0},
4384 
4385         /* Start with output sum widgets muted and their output gains at min */
4386         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4387         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4388         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4389         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4390         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4391         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4392         {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4393         {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4394         {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4395 
4396         /* Unmute Line-out pin widget amp left and right
4397          * (no equiv mixer ctrl)
4398          */
4399         {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4400         /* Unmute mono pin widget amp output (no equiv mixer ctrl) */
4401         {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4402         /* Unmute Mic1 and Line1 pin widget input buffers since they start as
4403          * inputs. If the pin mode is changed by the user the pin mode control
4404          * will take care of enabling the pin's input/output buffers as needed.
4405          * Therefore there's no need to enable the input buffer at this
4406          * stage.
4407          */
4408         {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4409         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4410 
4411         /* Mute capture amp left and right */
4412         {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4413         /* Set ADC connection select to match default mixer setting - mic
4414          * (on mic1 pin)
4415          */
4416         {0x04, AC_VERB_SET_CONNECT_SEL, 0x00},
4417 
4418         /* Do similar with the second ADC: mute capture input amp and
4419          * set ADC connection to mic to match ALSA's default state.
4420          */
4421         {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4422         {0x05, AC_VERB_SET_CONNECT_SEL, 0x00},
4423 
4424         /* Mute all inputs to mixer widget (even unconnected ones) */
4425         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* mic1 pin */
4426         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, /* mic2 pin */
4427         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, /* line1 pin */
4428         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, /* line2 pin */
4429         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, /* CD pin */
4430         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)}, /* Beep-gen pin */
4431         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)}, /* Line-out pin */
4432         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)}, /* HP-pin pin */
4433 
4434         { }
4435 };
4436 
4437 static struct hda_verb alc260_will_verbs[] = {
4438         {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
4439         {0x0b, AC_VERB_SET_CONNECT_SEL, 0x00},
4440         {0x0d, AC_VERB_SET_CONNECT_SEL, 0x00},
4441         {0x0f, AC_VERB_SET_EAPD_BTLENABLE, 0x02},
4442         {0x1a, AC_VERB_SET_COEF_INDEX, 0x07},
4443         {0x1a, AC_VERB_SET_PROC_COEF, 0x3040},
4444         {}
4445 };
4446 
4447 static struct hda_verb alc260_replacer_672v_verbs[] = {
4448         {0x0f, AC_VERB_SET_EAPD_BTLENABLE, 0x02},
4449         {0x1a, AC_VERB_SET_COEF_INDEX, 0x07},
4450         {0x1a, AC_VERB_SET_PROC_COEF, 0x3050},
4451 
4452         {0x01, AC_VERB_SET_GPIO_MASK, 0x01},
4453         {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
4454         {0x01, AC_VERB_SET_GPIO_DATA, 0x00},
4455 
4456         {0x0f, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
4457         {}
4458 };
4459 
4460 /* toggle speaker-output according to the hp-jack state */
4461 static void alc260_replacer_672v_automute(struct hda_codec *codec)
4462 {
4463         unsigned int present;
4464 
4465         /* speaker --> GPIO Data 0, hp or spdif --> GPIO data 1 */
4466         present = snd_hda_codec_read(codec, 0x0f, 0,
4467                                      AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
4468         if (present) {
4469                 snd_hda_codec_write_cache(codec, 0x01, 0,
4470                                           AC_VERB_SET_GPIO_DATA, 1);
4471                 snd_hda_codec_write_cache(codec, 0x0f, 0,
4472                                           AC_VERB_SET_PIN_WIDGET_CONTROL,
4473                                           PIN_HP);
4474         } else {
4475                 snd_hda_codec_write_cache(codec, 0x01, 0,
4476                                           AC_VERB_SET_GPIO_DATA, 0);
4477                 snd_hda_codec_write_cache(codec, 0x0f, 0,
4478                                           AC_VERB_SET_PIN_WIDGET_CONTROL,
4479                                           PIN_OUT);
4480         }
4481 }
4482 
4483 static void alc260_replacer_672v_unsol_event(struct hda_codec *codec,
4484                                        unsigned int res)
4485 {
4486         if ((res >> 26) == ALC880_HP_EVENT)
4487                 alc260_replacer_672v_automute(codec);
4488 }
4489 
4490 /* Test configuration for debugging, modelled after the ALC880 test
4491  * configuration.
4492  */
4493 #ifdef CONFIG_SND_DEBUG
4494 static hda_nid_t alc260_test_dac_nids[1] = {
4495         0x02,
4496 };
4497 static hda_nid_t alc260_test_adc_nids[2] = {
4498         0x04, 0x05,
4499 };
4500 /* For testing the ALC260, each input MUX needs its own definition since
4501  * the signal assignments are different.  This assumes that the first ADC 
4502  * is NID 0x04.
4503  */
4504 static struct hda_input_mux alc260_test_capture_sources[2] = {
4505         {
4506                 .num_items = 7,
4507                 .items = {
4508                         { "MIC1 pin", 0x0 },
4509                         { "MIC2 pin", 0x1 },
4510                         { "LINE1 pin", 0x2 },
4511                         { "LINE2 pin", 0x3 },
4512                         { "CD pin", 0x4 },
4513                         { "LINE-OUT pin", 0x5 },
4514                         { "HP-OUT pin", 0x6 },
4515                 },
4516         },
4517         {
4518                 .num_items = 8,
4519                 .items = {
4520                         { "MIC1 pin", 0x0 },
4521                         { "MIC2 pin", 0x1 },
4522                         { "LINE1 pin", 0x2 },
4523                         { "LINE2 pin", 0x3 },
4524                         { "CD pin", 0x4 },
4525                         { "Mixer", 0x5 },
4526                         { "LINE-OUT pin", 0x6 },
4527                         { "HP-OUT pin", 0x7 },
4528                 },
4529         },
4530 };
4531 static struct snd_kcontrol_new alc260_test_mixer[] = {
4532         /* Output driver widgets */
4533         HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x0a, 1, 0x0, HDA_OUTPUT),
4534         HDA_BIND_MUTE_MONO("Mono Playback Switch", 0x0a, 1, 2, HDA_INPUT),
4535         HDA_CODEC_VOLUME("LOUT2 Playback Volume", 0x09, 0x0, HDA_OUTPUT),
4536         HDA_BIND_MUTE("LOUT2 Playback Switch", 0x09, 2, HDA_INPUT),
4537         HDA_CODEC_VOLUME("LOUT1 Playback Volume", 0x08, 0x0, HDA_OUTPUT),
4538         HDA_BIND_MUTE("LOUT1 Playback Switch", 0x08, 2, HDA_INPUT),
4539 
4540         /* Modes for retasking pin widgets
4541          * Note: the ALC260 doesn't seem to act on requests to enable mic
4542          * bias from NIDs 0x0f and 0x10.  The ALC260 datasheet doesn't
4543          * mention this restriction.  At this stage it's not clear whether
4544          * this behaviour is intentional or is a hardware bug in chip
4545          * revisions available at least up until early 2006.  Therefore for
4546          * now allow the "HP-OUT" and "LINE-OUT" Mode controls to span all
4547          * choices, but if it turns out that the lack of mic bias for these
4548          * NIDs is intentional we could change their modes from
4549          * ALC_PIN_DIR_INOUT to ALC_PIN_DIR_INOUT_NOMICBIAS.
4550          */
4551         ALC_PIN_MODE("HP-OUT pin mode", 0x10, ALC_PIN_DIR_INOUT),
4552         ALC_PIN_MODE("LINE-OUT pin mode", 0x0f, ALC_PIN_DIR_INOUT),
4553         ALC_PIN_MODE("LINE2 pin mode", 0x15, ALC_PIN_DIR_INOUT),
4554         ALC_PIN_MODE("LINE1 pin mode", 0x14, ALC_PIN_DIR_INOUT),
4555         ALC_PIN_MODE("MIC2 pin mode", 0x13, ALC_PIN_DIR_INOUT),
4556         ALC_PIN_MODE("MIC1 pin mode", 0x12, ALC_PIN_DIR_INOUT),
4557 
4558         /* Loopback mixer controls */
4559         HDA_CODEC_VOLUME("MIC1 Playback Volume", 0x07, 0x00, HDA_INPUT),
4560         HDA_CODEC_MUTE("MIC1 Playback Switch", 0x07, 0x00, HDA_INPUT),
4561         HDA_CODEC_VOLUME("MIC2 Playback Volume", 0x07, 0x01, HDA_INPUT),
4562         HDA_CODEC_MUTE("MIC2 Playback Switch", 0x07, 0x01, HDA_INPUT),
4563         HDA_CODEC_VOLUME("LINE1 Playback Volume", 0x07, 0x02, HDA_INPUT),
4564         HDA_CODEC_MUTE("LINE1 Playback Switch", 0x07, 0x02, HDA_INPUT),
4565         HDA_CODEC_VOLUME("LINE2 Playback Volume", 0x07, 0x03, HDA_INPUT),
4566         HDA_CODEC_MUTE("LINE2 Playback Switch", 0x07, 0x03, HDA_INPUT),
4567         HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT),
4568         HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT),
4569         HDA_CODEC_VOLUME("Beep Playback Volume", 0x07, 0x05, HDA_INPUT),
4570         HDA_CODEC_MUTE("Beep Playback Switch", 0x07, 0x05, HDA_INPUT),
4571         HDA_CODEC_VOLUME("LINE-OUT loopback Playback Volume", 0x07, 0x06, HDA_INPUT),
4572         HDA_CODEC_MUTE("LINE-OUT loopback Playback Switch", 0x07, 0x06, HDA_INPUT),
4573         HDA_CODEC_VOLUME("HP-OUT loopback Playback Volume", 0x07, 0x7, HDA_INPUT),
4574         HDA_CODEC_MUTE("HP-OUT loopback Playback Switch", 0x07, 0x7, HDA_INPUT),
4575 
4576         /* Controls for GPIO pins, assuming they are configured as outputs */
4577         ALC_GPIO_DATA_SWITCH("GPIO pin 0", 0x01, 0x01),
4578         ALC_GPIO_DATA_SWITCH("GPIO pin 1", 0x01, 0x02),
4579         ALC_GPIO_DATA_SWITCH("GPIO pin 2", 0x01, 0x04),
4580         ALC_GPIO_DATA_SWITCH("GPIO pin 3", 0x01, 0x08),
4581 
4582         /* Switches to allow the digital IO pins to be enabled.  The datasheet
4583          * is ambigious as to which NID is which; testing on laptops which
4584          * make this output available should provide clarification. 
4585          */
4586         ALC_SPDIF_CTRL_SWITCH("SPDIF Playback Switch", 0x03, 0x01),
4587         ALC_SPDIF_CTRL_SWITCH("SPDIF Capture Switch", 0x06, 0x01),
4588 
4589         /* A switch allowing EAPD to be enabled.  Some laptops seem to use
4590          * this output to turn on an external amplifier.
4591          */
4592         ALC_EAPD_CTRL_SWITCH("LINE-OUT EAPD Enable Switch", 0x0f, 0x02),
4593         ALC_EAPD_CTRL_SWITCH("HP-OUT EAPD Enable Switch", 0x10, 0x02),
4594 
4595         { } /* end */
4596 };
4597 static struct hda_verb alc260_test_init_verbs[] = {
4598         /* Enable all GPIOs as outputs with an initial value of 0 */
4599         {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x0f},
4600         {0x01, AC_VERB_SET_GPIO_DATA, 0x00},
4601         {0x01, AC_VERB_SET_GPIO_MASK, 0x0f},
4602 
4603         /* Enable retasking pins as output, initially without power amp */
4604         {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4605         {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4606         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4607         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4608         {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4609         {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4610 
4611         /* Disable digital (SPDIF) pins initially, but users can enable
4612          * them via a mixer switch.  In the case of SPDIF-out, this initverb
4613          * payload also sets the generation to 0, output to be in "consumer"
4614          * PCM format, copyright asserted, no pre-emphasis and no validity
4615          * control.
4616          */
4617         {0x03, AC_VERB_SET_DIGI_CONVERT_1, 0},
4618         {0x06, AC_VERB_SET_DIGI_CONVERT_1, 0},
4619 
4620         /* Ensure mic1, mic2, line1 and line2 pin widgets take input from the 
4621          * OUT1 sum bus when acting as an output.
4622          */
4623         {0x0b, AC_VERB_SET_CONNECT_SEL, 0},
4624         {0x0c, AC_VERB_SET_CONNECT_SEL, 0},
4625         {0x0d, AC_VERB_SET_CONNECT_SEL, 0},
4626         {0x0e, AC_VERB_SET_CONNECT_SEL, 0},
4627 
4628         /* Start with output sum widgets muted and their output gains at min */
4629         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4630         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4631         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4632         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4633         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4634         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4635         {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4636         {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4637         {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4638 
4639         /* Unmute retasking pin widget output buffers since the default
4640          * state appears to be output.  As the pin mode is changed by the
4641          * user the pin mode control will take care of enabling the pin's
4642          * input/output buffers as needed.
4643          */
4644         {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4645         {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4646         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4647         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4648         {0x13, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4649         {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4650         /* Also unmute the mono-out pin widget */
4651         {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4652 
4653         /* Mute capture amp left and right */
4654         {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4655         /* Set ADC connection select to match default mixer setting (mic1
4656          * pin)
4657          */
4658         {0x04, AC_VERB_SET_CONNECT_SEL, 0x00},
4659 
4660         /* Do the same for the second ADC: mute capture input amp and
4661          * set ADC connection to mic1 pin
4662          */
4663         {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4664         {0x05, AC_VERB_SET_CONNECT_SEL, 0x00},
4665 
4666         /* Mute all inputs to mixer widget (even unconnected ones) */
4667         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* mic1 pin */
4668         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, /* mic2 pin */
4669         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, /* line1 pin */
4670         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, /* line2 pin */
4671         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, /* CD pin */
4672         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)}, /* Beep-gen pin */
4673         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)}, /* Line-out pin */
4674         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)}, /* HP-pin pin */
4675 
4676         { }
4677 };
4678 #endif
4679 
4680 #define alc260_pcm_analog_playback      alc880_pcm_analog_alt_playback
4681 #define alc260_pcm_analog_capture       alc880_pcm_analog_capture
4682 
4683 #define alc260_pcm_digital_playback     alc880_pcm_digital_playback
4684 #define alc260_pcm_digital_capture      alc880_pcm_digital_capture
4685 
4686 /*
4687  * for BIOS auto-configuration
4688  */
4689 
4690 static int alc260_add_playback_controls(struct alc_spec *spec, hda_nid_t nid,
4691                                         const char *pfx)
4692 {
4693         hda_nid_t nid_vol;
4694         unsigned long vol_val, sw_val;
4695         char name[32];
4696         int err;
4697 
4698         if (nid >= 0x0f && nid < 0x11) {
4699                 nid_vol = nid - 0x7;
4700                 vol_val = HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0, HDA_OUTPUT);
4701                 sw_val = HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT);
4702         } else if (nid == 0x11) {
4703                 nid_vol = nid - 0x7;
4704                 vol_val = HDA_COMPOSE_AMP_VAL(nid_vol, 2, 0, HDA_OUTPUT);
4705                 sw_val = HDA_COMPOSE_AMP_VAL(nid, 2, 0, HDA_OUTPUT);
4706         } else if (nid >= 0x12 && nid <= 0x15) {
4707                 nid_vol = 0x08;
4708                 vol_val = HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0, HDA_OUTPUT);
4709                 sw_val = HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT);
4710         } else
4711                 return 0; /* N/A */
4712         
4713         snprintf(name, sizeof(name), "%s Playback Volume", pfx);
4714         err = add_control(spec, ALC_CTL_WIDGET_VOL, name, vol_val);
4715         if (err < 0)
4716                 return err;
4717         snprintf(name, sizeof(name), "%s Playback Switch", pfx);
4718         err = add_control(spec, ALC_CTL_WIDGET_MUTE, name, sw_val);
4719         if (err < 0)
4720                 return err;
4721         return 1;
4722 }
4723 
4724 /* add playback controls from the parsed DAC table */
4725 static int alc260_auto_create_multi_out_ctls(struct alc_spec *spec,
4726                                              const struct auto_pin_cfg *cfg)
4727 {
4728         hda_nid_t nid;
4729         int err;
4730 
4731         spec->multiout.num_dacs = 1;
4732         spec->multiout.dac_nids = spec->private_dac_nids;
4733         spec->multiout.dac_nids[0] = 0x02;
4734 
4735         nid = cfg->line_out_pins[0];
4736         if (nid) {
4737                 err = alc260_add_playback_controls(spec, nid, "Front");
4738                 if (err < 0)
4739                         return err;
4740         }
4741 
4742         nid = cfg->speaker_pins[0];
4743         if (nid) {
4744                 err = alc260_add_playback_controls(spec, nid, "Speaker");
4745                 if (err < 0)
4746                         return err;
4747         }
4748 
4749         nid = cfg->hp_pins[0];
4750         if (nid) {
4751                 err = alc260_add_playback_controls(spec, nid, "Headphone");
4752                 if (err < 0)
4753                         return err;
4754         }
4755         return 0;
4756 }
4757 
4758 /* create playback/capture controls for input pins */
4759 static int alc260_auto_create_analog_input_ctls(struct alc_spec *spec,
4760                                                 const struct auto_pin_cfg *cfg)
4761 {
4762         struct hda_input_mux *imux = &spec->private_imux;
4763         int i, err, idx;
4764 
4765         for (i = 0; i < AUTO_PIN_LAST; i++) {
4766                 if (cfg->input_pins[i] >= 0x12) {
4767                         idx = cfg->input_pins[i] - 0x12;
4768                         err = new_analog_input(spec, cfg->input_pins[i],
4769                                                auto_pin_cfg_labels[i], idx,
4770                                                0x07);
4771                         if (err < 0)
4772                                 return err;
4773                         imux->items[imux->num_items].label =
4774                                 auto_pin_cfg_labels[i];
4775                         imux->items[imux->num_items].index = idx;
4776                         imux->num_items++;
4777                 }
4778                 if (cfg->input_pins[i] >= 0x0f && cfg->input_pins[i] <= 0x10){
4779                         idx = cfg->input_pins[i] - 0x09;
4780                         err = new_analog_input(spec, cfg->input_pins[i],
4781                                                auto_pin_cfg_labels[i], idx,
4782                                                0x07);
4783                         if (err < 0)
4784                                 return err;
4785                         imux->items[imux->num_items].label =
4786                                 auto_pin_cfg_labels[i];
4787                         imux->items[imux->num_items].index = idx;
4788                         imux->num_items++;
4789                 }
4790         }
4791         return 0;
4792 }
4793 
4794 static void alc260_auto_set_output_and_unmute(struct hda_codec *codec,
4795                                               hda_nid_t nid, int pin_type,
4796                                               int sel_idx)
4797 {
4798         /* set as output */
4799         snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
4800                             pin_type);
4801         snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
4802                             AMP_OUT_UNMUTE);
4803         /* need the manual connection? */
4804         if (nid >= 0x12) {
4805                 int idx = nid - 0x12;
4806                 snd_hda_codec_write(codec, idx + 0x0b, 0,
4807                                     AC_VERB_SET_CONNECT_SEL, sel_idx);
4808         }
4809 }
4810 
4811 static void alc260_auto_init_multi_out(struct hda_codec *codec)
4812 {
4813         struct alc_spec *spec = codec->spec;
4814         hda_nid_t nid;
4815 
4816         alc_subsystem_id(codec, 0x10, 0x15, 0x0f);
4817         nid = spec->autocfg.line_out_pins[0];
4818         if (nid) {
4819                 int pin_type = get_pin_type(spec->autocfg.line_out_type);
4820                 alc260_auto_set_output_and_unmute(codec, nid, pin_type, 0);
4821         }
4822         
4823         nid = spec->autocfg.speaker_pins[0];
4824         if (nid)
4825                 alc260_auto_set_output_and_unmute(codec, nid, PIN_OUT, 0);
4826 
4827         nid = spec->autocfg.hp_pins[0];
4828         if (nid)
4829                 alc260_auto_set_output_and_unmute(codec, nid, PIN_HP, 0);
4830 }
4831 
4832 #define ALC260_PIN_CD_NID               0x16
4833 static void alc260_auto_init_analog_input(struct hda_codec *codec)
4834 {
4835         struct alc_spec *spec = codec->spec;
4836         int i;
4837 
4838         for (i = 0; i < AUTO_PIN_LAST; i++) {
4839                 hda_nid_t nid = spec->autocfg.input_pins[i];
4840                 if (nid >= 0x12) {
4841                         snd_hda_codec_write(codec, nid, 0,
4842                                             AC_VERB_SET_PIN_WIDGET_CONTROL,
4843                                             i <= AUTO_PIN_FRONT_MIC ?
4844                                             PIN_VREF80 : PIN_IN);
4845                         if (nid != ALC260_PIN_CD_NID)
4846                                 snd_hda_codec_write(codec, nid, 0,
4847                                                     AC_VERB_SET_AMP_GAIN_MUTE,
4848                                                     AMP_OUT_MUTE);
4849                 }
4850         }
4851 }
4852 
4853 /*
4854  * generic initialization of ADC, input mixers and output mixers
4855  */
4856 static struct hda_verb alc260_volume_init_verbs[] = {
4857         /*
4858          * Unmute ADC0-1 and set the default input to mic-in
4859          */
4860         {0x04, AC_VERB_SET_CONNECT_SEL, 0x00},
4861         {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4862         {0x05, AC_VERB_SET_CONNECT_SEL, 0x00},
4863         {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4864         
4865         /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
4866          * mixer widget
4867          * Note: PASD motherboards uses the Line In 2 as the input for
4868          * front panel mic (mic 2)
4869          */
4870         /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
4871         /* mute analog inputs */
4872         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4873         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4874         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
4875         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
4876         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
4877 
4878         /*
4879          * Set up output mixers (0x08 - 0x0a)
4880          */
4881         /* set vol=0 to output mixers */
4882         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4883         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4884         {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4885         /* set up input amps for analog loopback */
4886         /* Amp Indices: DAC = 0, mixer = 1 */
4887         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4888         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4889         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4890         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4891         {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4892         {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4893         
4894         { }
4895 };
4896 
4897 static int alc260_parse_auto_config(struct hda_codec *codec)
4898 {
4899         struct alc_spec *spec = codec->spec;
4900         unsigned int wcap;
4901         int err;
4902         static hda_nid_t alc260_ignore[] = { 0x17, 0 };
4903 
4904         err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
4905                                            alc260_ignore);
4906         if (err < 0)
4907                 return err;
4908         err = alc260_auto_create_multi_out_ctls(spec, &spec->autocfg);
4909         if (err < 0)
4910                 return err;
4911         if (!spec->kctl_alloc)
4912                 return 0; /* can't find valid BIOS pin config */
4913         err = alc260_auto_create_analog_input_ctls(spec, &spec->autocfg);
4914         if (err < 0)
4915                 return err;
4916 
4917         spec->multiout.max_channels = 2;
4918 
4919         if (spec->autocfg.dig_out_pin)
4920                 spec->multiout.dig_out_nid = ALC260_DIGOUT_NID;
4921         if (spec->kctl_alloc)
4922                 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
4923 
4924         spec->init_verbs[spec->num_init_verbs++] = alc260_volume_init_verbs;
4925 
4926         spec->num_mux_defs = 1;
4927         spec->input_mux = &spec->private_imux;
4928 
4929         /* check whether NID 0x04 is valid */
4930         wcap = get_wcaps(codec, 0x04);
4931         wcap = (wcap & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT; /* get type */
4932         if (wcap != AC_WID_AUD_IN) {
4933                 spec->adc_nids = alc260_adc_nids_alt;
4934                 spec->num_adc_nids = ARRAY_SIZE(alc260_adc_nids_alt);
4935                 spec->mixers[spec->num_mixers] = alc260_capture_alt_mixer;
4936         } else {
4937                 spec->adc_nids = alc260_adc_nids;
4938                 spec->num_adc_nids = ARRAY_SIZE(alc260_adc_nids);
4939                 spec->mixers[spec->num_mixers] = alc260_capture_mixer;
4940         }
4941         spec->num_mixers++;
4942 
4943         return 1;
4944 }
4945 
4946 /* additional initialization for auto-configuration model */
4947 static void alc260_auto_init(struct hda_codec *codec)
4948 {
4949         alc260_auto_init_multi_out(codec);
4950         alc260_auto_init_analog_input(codec);
4951 }
4952 
4953 #ifdef CONFIG_SND_HDA_POWER_SAVE
4954 static struct hda_amp_list alc260_loopbacks[] = {
4955         { 0x07, HDA_INPUT, 0 },
4956         { 0x07, HDA_INPUT, 1 },
4957         { 0x07, HDA_INPUT, 2 },
4958         { 0x07, HDA_INPUT, 3 },
4959         { 0x07, HDA_INPUT, 4 },
4960         { } /* end */
4961 };
4962 #endif
4963 
4964 /*
4965  * ALC260 configurations
4966  */
4967 static const char *alc260_models[ALC260_MODEL_LAST] = {
4968         [ALC260_BASIC]          = "basic",
4969         [ALC260_HP]             = "hp",
4970         [ALC260_HP_3013]        = "hp-3013",
4971         [ALC260_FUJITSU_S702X]  = "fujitsu",
4972         [ALC260_ACER]           = "acer",
4973         [ALC260_WILL]           = "will",
4974         [ALC260_REPLACER_672V]  = "replacer",
4975 #ifdef CONFIG_SND_DEBUG
4976         [ALC260_TEST]           = "test",
4977 #endif
4978         [ALC260_AUTO]           = "auto",
4979 };
4980 
4981 static struct snd_pci_quirk alc260_cfg_tbl[] = {
4982         SND_PCI_QUIRK(0x1025, 0x007b, "Acer C20x", ALC260_ACER),
4983         SND_PCI_QUIRK(0x1025, 0x008f, "Acer", ALC260_ACER),
4984         SND_PCI_QUIRK(0x103c, 0x2808, "HP d5700", ALC260_HP_3013),
4985         SND_PCI_QUIRK(0x103c, 0x280a, "HP d5750", ALC260_HP_3013),
4986         SND_PCI_QUIRK(0x103c, 0x3010, "HP", ALC260_HP_3013),
4987         SND_PCI_QUIRK(0x103c, 0x3011, "HP", ALC260_HP),
4988         SND_PCI_QUIRK(0x103c, 0x3012, "HP", ALC260_HP_3013),
4989         SND_PCI_QUIRK(0x103c, 0x3013, "HP", ALC260_HP_3013),
4990         SND_PCI_QUIRK(0x103c, 0x3014, "HP", ALC260_HP),
4991         SND_PCI_QUIRK(0x103c, 0x3015, "HP", ALC260_HP),
4992         SND_PCI_QUIRK(0x103c, 0x3016, "HP", ALC260_HP),
4993         SND_PCI_QUIRK(0x104d, 0x81bb, "Sony VAIO", ALC260_BASIC),
4994         SND_PCI_QUIRK(0x104d, 0x81cc, "Sony VAIO", ALC260_BASIC),
4995         SND_PCI_QUIRK(0x104d, 0x81cd, "Sony VAIO", ALC260_BASIC),
4996         SND_PCI_QUIRK(0x10cf, 0x1326, "Fujitsu S702X", ALC260_FUJITSU_S702X),
4997         SND_PCI_QUIRK(0x152d, 0x0729, "CTL U553W", ALC260_BASIC),
4998         SND_PCI_QUIRK(0x161f, 0x2057, "Replacer 672V", ALC260_REPLACER_672V),
4999         SND_PCI_QUIRK(0x1631, 0xc017, "PB V7900", ALC260_WILL),
5000         {}
5001 };
5002 
5003 static struct alc_config_preset alc260_presets[] = {
5004         [ALC260_BASIC] = {
5005                 .mixers = { alc260_base_output_mixer,
5006                             alc260_input_mixer,
5007                             alc260_pc_beep_mixer,
5008                             alc260_capture_mixer },
5009                 .init_verbs = { alc260_init_verbs },
5010                 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
5011                 .dac_nids = alc260_dac_nids,
5012                 .num_adc_nids = ARRAY_SIZE(alc260_adc_nids),
5013                 .adc_nids = alc260_adc_nids,
5014                 .num_channel_mode = ARRAY_SIZE(alc260_modes),
5015                 .channel_mode = alc260_modes,
5016                 .input_mux = &alc260_capture_source,
5017         },
5018         [ALC260_HP] = {
5019                 .mixers = { alc260_hp_output_mixer,
5020                             alc260_input_mixer,
5021                             alc260_capture_alt_mixer },
5022                 .init_verbs = { alc260_init_verbs,
5023                                 alc260_hp_unsol_verbs },
5024                 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
5025                 .dac_nids = alc260_dac_nids,
5026                 .num_adc_nids = ARRAY_SIZE(alc260_hp_adc_nids),
5027                 .adc_nids = alc260_hp_adc_nids,
5028                 .num_channel_mode = ARRAY_SIZE(alc260_modes),
5029                 .channel_mode = alc260_modes,
5030                 .input_mux = &alc260_capture_source,
5031                 .unsol_event = alc260_hp_unsol_event,
5032                 .init_hook = alc260_hp_automute,
5033         },
5034         [ALC260_HP_3013] = {
5035                 .mixers = { alc260_hp_3013_mixer,
5036                             alc260_input_mixer,
5037                             alc260_capture_alt_mixer },
5038                 .init_verbs = { alc260_hp_3013_init_verbs,
5039                                 alc260_hp_3013_unsol_verbs },
5040                 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
5041                 .dac_nids = alc260_dac_nids,
5042                 .num_adc_nids = ARRAY_SIZE(alc260_hp_adc_nids),
5043                 .adc_nids = alc260_hp_adc_nids,
5044                 .num_channel_mode = ARRAY_SIZE(alc260_modes),
5045                 .channel_mode = alc260_modes,
5046                 .input_mux = &alc260_capture_source,
5047                 .unsol_event = alc260_hp_3013_unsol_event,
5048                 .init_hook = alc260_hp_3013_automute,
5049         },
5050         [ALC260_FUJITSU_S702X] = {
5051                 .mixers = { alc260_fujitsu_mixer,
5052                             alc260_capture_mixer },
5053                 .init_verbs = { alc260_fujitsu_init_verbs },
5054                 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
5055                 .dac_nids = alc260_dac_nids,
5056                 .num_adc_nids = ARRAY_SIZE(alc260_dual_adc_nids),
5057                 .adc_nids = alc260_dual_adc_nids,
5058                 .num_channel_mode = ARRAY_SIZE(alc260_modes),
5059                 .channel_mode = alc260_modes,
5060                 .num_mux_defs = ARRAY_SIZE(alc260_fujitsu_capture_sources),
5061                 .input_mux = alc260_fujitsu_capture_sources,
5062         },
5063         [ALC260_ACER] = {
5064                 .mixers = { alc260_acer_mixer,
5065                             alc260_capture_mixer },
5066                 .init_verbs = { alc260_acer_init_verbs },
5067                 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
5068                 .dac_nids = alc260_dac_nids,
5069                 .num_adc_nids = ARRAY_SIZE(alc260_dual_adc_nids),
5070                 .adc_nids = alc260_dual_adc_nids,
5071                 .num_channel_mode = ARRAY_SIZE(alc260_modes),
5072                 .channel_mode = alc260_modes,
5073                 .num_mux_defs = ARRAY_SIZE(alc260_acer_capture_sources),
5074                 .input_mux = alc260_acer_capture_sources,
5075         },
5076         [ALC260_WILL] = {
5077                 .mixers = { alc260_will_mixer,
5078                             alc260_capture_mixer },
5079                 .init_verbs = { alc260_init_verbs, alc260_will_verbs },
5080                 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
5081                 .dac_nids = alc260_dac_nids,
5082                 .num_adc_nids = ARRAY_SIZE(alc260_adc_nids),
5083                 .adc_nids = alc260_adc_nids,
5084                 .dig_out_nid = ALC260_DIGOUT_NID,
5085                 .num_channel_mode = ARRAY_SIZE(alc260_modes),
5086                 .channel_mode = alc260_modes,
5087                 .input_mux = &alc260_capture_source,
5088         },
5089         [ALC260_REPLACER_672V] = {
5090                 .mixers = { alc260_replacer_672v_mixer,
5091                             alc260_capture_mixer },
5092                 .init_verbs = { alc260_init_verbs, alc260_replacer_672v_verbs },
5093                 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
5094                 .dac_nids = alc260_dac_nids,
5095                 .num_adc_nids = ARRAY_SIZE(alc260_adc_nids),
5096                 .adc_nids = alc260_adc_nids,
5097                 .dig_out_nid = ALC260_DIGOUT_NID,
5098                 .num_channel_mode = ARRAY_SIZE(alc260_modes),
5099                 .channel_mode = alc260_modes,
5100                 .input_mux = &alc260_capture_source,
5101                 .unsol_event = alc260_replacer_672v_unsol_event,
5102                 .init_hook = alc260_replacer_672v_automute,
5103         },
5104 #ifdef CONFIG_SND_DEBUG
5105         [ALC260_TEST] = {
5106                 .mixers = { alc260_test_mixer,
5107                             alc260_capture_mixer },
5108                 .init_verbs = { alc260_test_init_verbs },
5109                 .num_dacs = ARRAY_SIZE(alc260_test_dac_nids),
5110                 .dac_nids = alc260_test_dac_nids,
5111                 .num_adc_nids = ARRAY_SIZE(alc260_test_adc_nids),
5112                 .adc_nids = alc260_test_adc_nids,
5113                 .num_channel_mode = ARRAY_SIZE(alc260_modes),
5114                 .channel_mode = alc260_modes,
5115                 .num_mux_defs = ARRAY_SIZE(alc260_test_capture_sources),
5116                 .input_mux = alc260_test_capture_sources,
5117         },
5118 #endif
5119 };
5120 
5121 static int patch_alc260(struct hda_codec *codec)
5122 {
5123         struct alc_spec *spec;
5124         int err, board_config;
5125 
5126         spec = kzalloc(sizeof(*spec), GFP_KERNEL);
5127         if (spec == NULL)
5128                 return -ENOMEM;
5129 
5130         codec->spec = spec;
5131 
5132         board_config = snd_hda_check_board_config(codec, ALC260_MODEL_LAST,
5133                                                   alc260_models,
5134                                                   alc260_cfg_tbl);
5135         if (board_config < 0) {
5136                 snd_printd(KERN_INFO "hda_codec: Unknown model for ALC260, "
5137                            "trying auto-probe from BIOS...\n");
5138                 board_config = ALC260_AUTO;
5139         }
5140 
5141         if (board_config == ALC260_AUTO) {
5142                 /* automatic parse from the BIOS config */
5143                 err = alc260_parse_auto_config(codec);
5144                 if (err < 0) {
5145                         alc_free(codec);
5146                         return err;
5147                 } else if (!err) {
5148                         printk(KERN_INFO
5149                                "hda_codec: Cannot set up configuration "
5150                                "from BIOS.  Using base mode...\n");
5151                         board_config = ALC260_BASIC;
5152                 }
5153         }
5154 
5155         if (board_config != ALC260_AUTO)
5156                 setup_preset(spec, &alc260_presets[board_config]);
5157 
5158         spec->stream_name_analog = "ALC260 Analog";
5159         spec->stream_analog_playback = &alc260_pcm_analog_playback;
5160         spec->stream_analog_capture = &alc260_pcm_analog_capture;
5161 
5162         spec->stream_name_digital = "ALC260 Digital";
5163         spec->stream_digital_playback = &alc260_pcm_digital_playback;
5164         spec->stream_digital_capture = &alc260_pcm_digital_capture;
5165 
5166         spec->vmaster_nid = 0x08;
5167 
5168         codec->patch_ops = alc_patch_ops;
5169         if (board_config == ALC260_AUTO)
5170                 spec->init_hook = alc260_auto_init;
5171 #ifdef CONFIG_SND_HDA_POWER_SAVE
5172         if (!spec->loopback.amplist)
5173                 spec->loopback.amplist = alc260_loopbacks;
5174 #endif
5175 
5176         return 0;
5177 }
5178 
5179 
5180 /*
5181  * ALC882 support
5182  *
5183  * ALC882 is almost identical with ALC880 but has cleaner and more flexible
5184  * configuration.  Each pin widget can choose any input DACs and a mixer.
5185  * Each ADC is connected from a mixer of all inputs.  This makes possible
5186  * 6-channel independent captures.
5187  *
5188  * In addition, an independent DAC for the multi-playback (not used in this
5189  * driver yet).
5190  */
5191 #define ALC882_DIGOUT_NID       0x06
5192 #define ALC882_DIGIN_NID        0x0a
5193 
5194 static struct hda_channel_mode alc882_ch_modes[1] = {
5195         { 8, NULL }
5196 };
5197 
5198 static hda_nid_t alc882_dac_nids[4] = {
5199         /* front, rear, clfe, rear_surr */
5200         0x02, 0x03, 0x04, 0x05
5201 };
5202 
5203 /* identical with ALC880 */
5204 #define alc882_adc_nids         alc880_adc_nids
5205 #define alc882_adc_nids_alt     alc880_adc_nids_alt
5206 
5207 /* input MUX */
5208 /* FIXME: should be a matrix-type input source selection */
5209 
5210 static struct hda_input_mux alc882_capture_source = {
5211         .num_items = 4,
5212         .items = {
5213                 { "Mic", 0x0 },
5214                 { "Front Mic", 0x1 },
5215                 { "Line", 0x2 },
5216                 { "CD", 0x4 },
5217         },
5218 };
5219 #define alc882_mux_enum_info alc_mux_enum_info
5220 #define alc882_mux_enum_get alc_mux_enum_get
5221 
5222 static int alc882_mux_enum_put(struct snd_kcontrol *kcontrol,
5223                                struct snd_ctl_elem_value *ucontrol)
5224 {
5225         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
5226         struct alc_spec *spec = codec->spec;
5227         const struct hda_input_mux *imux = spec->input_mux;
5228         unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
5229         static hda_nid_t capture_mixers[3] = { 0x24, 0x23, 0x22 };
5230         hda_nid_t nid;
5231         unsigned int *cur_val = &spec->cur_mux[adc_idx];
5232         unsigned int i, idx;
5233 
5234         if (spec->num_adc_nids < 3)
5235                 nid = capture_mixers[adc_idx + 1];
5236         else
5237                 nid = capture_mixers[adc_idx];
5238         idx = ucontrol->value.enumerated.item[0];
5239         if (idx >= imux->num_items)
5240                 idx = imux->num_items - 1;
5241         if (*cur_val == idx)
5242                 return 0;
5243         for (i = 0; i < imux->num_items; i++) {
5244                 unsigned int v = (i == idx) ? 0 : HDA_AMP_MUTE;
5245                 snd_hda_codec_amp_stereo(codec, nid, HDA_INPUT,
5246                                          imux->items[i].index,
5247                                          HDA_AMP_MUTE, v);
5248         }
5249         *cur_val = idx;
5250         return 1;
5251 }
5252 
5253 /*
5254  * 2ch mode
5255  */
5256 static struct hda_verb alc882_3ST_ch2_init[] = {
5257         { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
5258         { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
5259         { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
5260         { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
5261         { } /* end */
5262 };
5263 
5264 /*
5265  * 6ch mode
5266  */
5267 static struct hda_verb alc882_3ST_ch6_init[] = {
5268         { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
5269         { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
5270         { 0x18, AC_VERB_SET_CONNECT_SEL, 0x02 },
5271         { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
5272         { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
5273         { 0x1a, AC_VERB_SET_CONNECT_SEL, 0x01 },
5274         { } /* end */
5275 };
5276 
5277 static struct hda_channel_mode alc882_3ST_6ch_modes[2] = {
5278         { 2, alc882_3ST_ch2_init },
5279         { 6, alc882_3ST_ch6_init },
5280 };
5281 
5282 /*
5283  * 6ch mode
5284  */
5285 static struct hda_verb alc882_sixstack_ch6_init[] = {
5286         { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
5287         { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
5288         { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
5289         { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
5290         { } /* end */
5291 };
5292 
5293 /*
5294  * 8ch mode
5295  */
5296 static struct hda_verb alc882_sixstack_ch8_init[] = {
5297         { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
5298         { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
5299         { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
5300         { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
5301         { } /* end */
5302 };
5303 
5304 static struct hda_channel_mode alc882_sixstack_modes[2] = {
5305         { 6, alc882_sixstack_ch6_init },
5306         { 8, alc882_sixstack_ch8_init },
5307 };
5308 
5309 /*
5310  * macbook pro ALC885 can switch LineIn to LineOut without loosing Mic
5311  */
5312 
5313 /*
5314  * 2ch mode
5315  */
5316 static struct hda_verb alc885_mbp_ch2_init[] = {
5317         { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
5318         { 0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5319         { 0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5320         { } /* end */
5321 };
5322 
5323 /*
5324  * 6ch mode
5325  */
5326 static struct hda_verb alc885_mbp_ch6_init[] = {
5327         { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
5328         { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5329         { 0x1a, AC_VERB_SET_CONNECT_SEL, 0x01 },
5330         { 0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5331         { 0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5332         { } /* end */
5333 };
5334 
5335 static struct hda_channel_mode alc885_mbp_6ch_modes[2] = {
5336         { 2, alc885_mbp_ch2_init },
5337         { 6, alc885_mbp_ch6_init },
5338 };
5339 
5340 
5341 /* Pin assignment: Front=0x14, Rear=0x15, CLFE=0x16, Side=0x17
5342  *                 Mic=0x18, Front Mic=0x19, Line-In=0x1a, HP=0x1b
5343  */
5344 static struct snd_kcontrol_new alc882_base_mixer[] = {
5345         HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
5346         HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
5347         HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
5348         HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
5349         HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
5350         HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
5351         HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
5352         HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
5353         HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
5354         HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT),
5355         HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
5356         HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
5357         HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
5358         HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
5359         HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
5360         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
5361         HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
5362         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
5363         HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
5364         HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
5365         HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
5366         HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
5367         HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
5368         { } /* end */
5369 };
5370 
5371 static struct snd_kcontrol_new alc885_mbp3_mixer[] = {
5372         HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x00, HDA_OUTPUT),
5373         HDA_BIND_MUTE   ("Front Playback Switch", 0x0c, 0x02, HDA_INPUT),
5374         HDA_CODEC_MUTE  ("Speaker Playback Switch", 0x14, 0x00, HDA_OUTPUT),
5375         HDA_CODEC_VOLUME("Line-Out Playback Volume", 0x0d, 0x00, HDA_OUTPUT),
5376         HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
5377         HDA_CODEC_MUTE  ("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
5378         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x00, HDA_INPUT),
5379         HDA_CODEC_MUTE  ("Mic Playback Switch", 0x0b, 0x00, HDA_INPUT),
5380         HDA_CODEC_VOLUME("Line Boost", 0x1a, 0x00, HDA_INPUT),
5381         HDA_CODEC_VOLUME("Mic Boost", 0x18, 0x00, HDA_INPUT),
5382         { } /* end */
5383 };
5384 static struct snd_kcontrol_new alc882_w2jc_mixer[] = {
5385         HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
5386         HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
5387         HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
5388         HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
5389         HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
5390         HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
5391         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
5392         HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
5393         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
5394         HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
5395         HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
5396         { } /* end */
5397 };
5398 
5399 static struct snd_kcontrol_new alc882_targa_mixer[] = {
5400         HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
5401         HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
5402         HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
5403         HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
5404         HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
5405         HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
5406         HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
5407         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
5408         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
5409         HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
5410         HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
5411         HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
5412         HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
5413         { } /* end */
5414 };
5415 
5416 /* Pin assignment: Front=0x14, HP = 0x15, Front = 0x16, ???
5417  *                 Front Mic=0x18, Line In = 0x1a, Line In = 0x1b, CD = 0x1c
5418  */
5419 static struct snd_kcontrol_new alc882_asus_a7j_mixer[] = {
5420         HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
5421         HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT),
5422         HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT),
5423         HDA_CODEC_MUTE("Mobile Front Playback Switch", 0x16, 0x0, HDA_OUTPUT),
5424         HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
5425         HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
5426         HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
5427         HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
5428         HDA_CODEC_VOLUME("Mobile Line Playback Volume", 0x0b, 0x03, HDA_INPUT),
5429         HDA_CODEC_MUTE("Mobile Line Playback Switch", 0x0b, 0x03, HDA_INPUT),
5430         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
5431         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
5432         HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
5433         { } /* end */
5434 };
5435 
5436 static struct snd_kcontrol_new alc882_asus_a7m_mixer[] = {
5437         HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
5438         HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
5439         HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT),
5440         HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
5441         HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
5442         HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
5443         HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
5444         HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
5445         HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
5446         HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
5447         HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
5448         HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
5449         { } /* end */
5450 };
5451 
5452 static struct snd_kcontrol_new alc882_chmode_mixer[] = {
5453         {
5454                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
5455                 .name = "Channel Mode",
5456                 .info = alc_ch_mode_info,
5457                 .get = alc_ch_mode_get,
5458                 .put = alc_ch_mode_put,
5459         },
5460         { } /* end */
5461 };
5462 
5463 static struct hda_verb alc882_init_verbs[] = {
5464         /* Front mixer: unmute input/output amp left and right (volume = 0) */
5465         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5466         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5467         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5468         /* Rear mixer */
5469         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5470         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5471         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5472         /* CLFE mixer */
5473         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5474         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5475         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5476         /* Side mixer */
5477         {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5478         {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5479         {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5480 
5481         /* Front Pin: output 0 (0x0c) */
5482         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5483         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5484         {0x14, AC_VERB_SET_CONNECT_SEL, 0x00},
5485         /* Rear Pin: output 1 (0x0d) */
5486         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5487         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5488         {0x15, AC_VERB_SET_CONNECT_SEL, 0x01},
5489         /* CLFE Pin: output 2 (0x0e) */
5490         {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5491         {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5492         {0x16, AC_VERB_SET_CONNECT_SEL, 0x02},
5493         /* Side Pin: output 3 (0x0f) */
5494         {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5495         {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5496         {0x17, AC_VERB_SET_CONNECT_SEL, 0x03},
5497         /* Mic (rear) pin: input vref at 80% */
5498         {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
5499         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5500         /* Front Mic pin: input vref at 80% */
5501         {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
5502         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5503         /* Line In pin: input */
5504         {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
5505         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5506         /* Line-2 In: Headphone output (output 0 - 0x0c) */
5507         {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
5508         {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5509         {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
5510         /* CD pin widget for input */
5511         {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
5512 
5513         /* FIXME: use matrix-type input source selection */
5514         /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
5515         /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
5516         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5517         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
5518         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
5519         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
5520         /* Input mixer2 */
5521         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5522         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
5523         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
5524         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
5525         /* Input mixer3 */
5526         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5527         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
5528         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
5529         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
5530         /* ADC1: mute amp left and right */
5531         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5532         {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
5533         /* ADC2: mute amp left and right */
5534         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5535         {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
5536         /* ADC3: mute amp left and right */
5537         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5538         {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
5539 
5540         { }
5541 };
5542 
5543 static struct hda_verb alc882_eapd_verbs[] = {
5544         /* change to EAPD mode */
5545         {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
5546         {0x20, AC_VERB_SET_PROC_COEF, 0x3060},
5547         { }
5548 };
5549 
5550 /* Mac Pro test */
5551 static struct snd_kcontrol_new alc882_macpro_mixer[] = {
5552         HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
5553         HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
5554         HDA_CODEC_MUTE("Headphone Playback Switch", 0x18, 0x0, HDA_OUTPUT),
5555         HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x01, HDA_INPUT),
5556         HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x01, HDA_INPUT),
5557         HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x02, HDA_INPUT),
5558         HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x02, HDA_INPUT),
5559         { } /* end */
5560 };
5561 
5562 static struct hda_verb alc882_macpro_init_verbs[] = {
5563         /* Front mixer: unmute input/output amp left and right (volume = 0) */
5564         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5565         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5566         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5567         /* Front Pin: output 0 (0x0c) */
5568         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5569         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5570         {0x15, AC_VERB_SET_CONNECT_SEL, 0x00},
5571         /* Front Mic pin: input vref at 80% */
5572         {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
5573         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5574         /* Speaker:  output */
5575         {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5576         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5577         {0x1a, AC_VERB_SET_CONNECT_SEL, 0x04},
5578         /* Headphone output (output 0 - 0x0c) */
5579         {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
5580         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5581         {0x18, AC_VERB_SET_CONNECT_SEL, 0x00},
5582 
5583         /* FIXME: use matrix-type input source selection */
5584         /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
5585         /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
5586         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5587         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
5588         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
5589         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
5590         /* Input mixer2 */
5591         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5592         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
5593         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
5594         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
5595         /* Input mixer3 */
5596         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5597         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
5598         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
5599         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
5600         /* ADC1: mute amp left and right */
5601         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5602         {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
5603         /* ADC2: mute amp left and right */
5604         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5605         {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
5606         /* ADC3: mute amp left and right */
5607         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5608         {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
5609 
5610         { }
5611 };
5612 
5613 /* Macbook Pro rev3 */
5614 static struct hda_verb alc885_mbp3_init_verbs[] = {
5615         /* Front mixer: unmute input/output amp left and right (volume = 0) */
5616         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5617         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5618         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5619         /* Rear mixer */
5620         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5621         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5622         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5623         /* Front Pin: output 0 (0x0c) */
5624         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5625         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5626         {0x14, AC_VERB_SET_CONNECT_SEL, 0x00},
5627         /* HP Pin: output 0 (0x0d) */
5628         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc4},
5629         {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5630         {0x15, AC_VERB_SET_CONNECT_SEL, 0x00},
5631         {0x15, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
5632         /* Mic (rear) pin: input vref at 80% */
5633         {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
5634         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5635         /* Front Mic pin: input vref at 80% */
5636         {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
5637         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5638         /* Line In pin: use output 1 when in LineOut mode */
5639         {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
5640         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5641         {0x1a, AC_VERB_SET_CONNECT_SEL, 0x01},
5642 
5643         /* FIXME: use matrix-type input source selection */
5644         /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
5645         /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
5646         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5647         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
5648         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
5649         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
5650         /* Input mixer2 */
5651         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5652         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
5653         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
5654         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
5655         /* Input mixer3 */
5656         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5657         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
5658         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
5659         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
5660         /* ADC1: mute amp left and right */
5661         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5662         {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
5663         /* ADC2: mute amp left and right */
5664         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5665         {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
5666         /* ADC3: mute amp left and right */
5667         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5668         {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
5669 
5670         { }
5671 };
5672 
5673 /* iMac 24 mixer. */
5674 static struct snd_kcontrol_new alc885_imac24_mixer[] = {
5675         HDA_CODEC_VOLUME("Master Playback Volume", 0x0c, 0x00, HDA_OUTPUT),
5676         HDA_CODEC_MUTE("Master Playback Switch", 0x0c, 0x00, HDA_INPUT),
5677         { } /* end */
5678 };
5679 
5680 /* iMac 24 init verbs. */
5681 static struct hda_verb alc885_imac24_init_verbs[] = {
5682         /* Internal speakers: output 0 (0x0c) */
5683         {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5684         {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5685         {0x18, AC_VERB_SET_CONNECT_SEL, 0x00},
5686         /* Internal speakers: output 0 (0x0c) */
5687         {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5688         {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5689         {0x1a, AC_VERB_SET_CONNECT_SEL, 0x00},
5690         /* Headphone: output 0 (0x0c) */
5691         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
5692         {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5693         {0x14, AC_VERB_SET_CONNECT_SEL, 0x00},
5694         {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
5695         /* Front Mic: input vref at 80% */
5696         {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
5697         {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5698         { }
5699 };
5700 
5701 /* Toggle speaker-output according to the hp-jack state */
5702 static void alc885_imac24_automute(struct hda_codec *codec)
5703 {
5704         unsigned int present;
5705 
5706         present = snd_hda_codec_read(codec, 0x14, 0,
5707                                      AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
5708         snd_hda_codec_amp_stereo(codec, 0x18, HDA_OUTPUT, 0,
5709                                  HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0);
5710         snd_hda_codec_amp_stereo(codec, 0x1a, HDA_OUTPUT, 0,
5711                                  HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0);
5712 }
5713 
5714 /* Processes unsolicited events. */
5715 static void alc885_imac24_unsol_event(struct hda_codec *codec,
5716                                       unsigned int res)
5717 {
5718         /* Headphone insertion or removal. */
5719         if ((res >> 26) == ALC880_HP_EVENT)
5720                 alc885_imac24_automute(codec);
5721 }
5722 
5723 static void alc885_mbp3_automute(struct hda_codec *codec)
5724 {
5725         unsigned int present;
5726 
5727         present = snd_hda_codec_read(codec, 0x15, 0,
5728                                      AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
5729         snd_hda_codec_amp_stereo(codec, 0x14,  HDA_OUTPUT, 0,
5730                                  HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0);
5731         snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0,
5732                                  HDA_AMP_MUTE, present ? 0 : HDA_AMP_MUTE);
5733 
5734 }
5735 static void alc885_mbp3_unsol_event(struct hda_codec *codec,
5736                                     unsigned int res)
5737 {
5738         /* Headphone insertion or removal. */
5739         if ((res >> 26) == ALC880_HP_EVENT)
5740                 alc885_mbp3_automute(codec);
5741 }
5742 
5743 
5744 static struct hda_verb alc882_targa_verbs[] = {
5745         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5746         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5747 
5748         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
5749         {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5750         
5751         {0x18, AC_VERB_SET_CONNECT_SEL, 0x02}, /* mic/clfe */
5752         {0x1a, AC_VERB_SET_CONNECT_SEL, 0x01}, /* line/surround */
5753         {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
5754 
5755         {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
5756         {0x01, AC_VERB_SET_GPIO_MASK, 0x03},
5757         {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x03},
5758         {0x01, AC_VERB_SET_GPIO_DATA, 0x03},
5759         { } /* end */
5760 };
5761 
5762 /* toggle speaker-output according to the hp-jack state */
5763 static void alc882_targa_automute(struct hda_codec *codec)
5764 {
5765         unsigned int present;
5766  
5767         present = snd_hda_codec_read(codec, 0x14, 0,
5768                                      AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
5769         snd_hda_codec_amp_stereo(codec, 0x1b, HDA_OUTPUT, 0,
5770                                  HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0);
5771         snd_hda_codec_write_cache(codec, 1, 0, AC_VERB_SET_GPIO_DATA,
5772                                   present ? 1 : 3);
5773 }
5774 
5775 static void alc882_targa_unsol_event(struct hda_codec *codec, unsigned int res)
5776 {
5777         /* Looks like the unsol event is incompatible with the standard
5778          * definition.  4bit tag is placed at 26 bit!
5779          */
5780         if (((res >> 26) == ALC880_HP_EVENT)) {
5781                 alc882_targa_automute(codec);
5782         }
5783 }
5784 
5785 static struct hda_verb alc882_asus_a7j_verbs[] = {
5786         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5787         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5788 
5789         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
5790         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5791         {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5792         
5793         {0x14, AC_VERB_SET_CONNECT_SEL, 0x00}, /* Front */
5794         {0x15, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
5795         {0x16, AC_VERB_SET_CONNECT_SEL, 0x00}, /* Front */
5796 
5797         {0x18, AC_VERB_SET_CONNECT_SEL, 0x02}, /* mic/clfe */
5798         {0x1a, AC_VERB_SET_CONNECT_SEL, 0x01}, /* line/surround */
5799         {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
5800         { } /* end */
5801 };
5802 
5803 static struct hda_verb alc882_asus_a7m_verbs[] = {
5804         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5805         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5806 
5807         {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
5808         {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5809         {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5810         
5811         {0x14, AC_VERB_SET_CONNECT_SEL, 0x00}, /* Front */
5812         {0x15, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
5813         {0x16, AC_VERB_SET_CONNECT_SEL, 0x00}, /* Front */
5814 
5815         {0x18, AC_VERB_SET_CONNECT_SEL, 0x02}, /* mic/clfe */
5816         {0x1a, AC_VERB_SET_CONNECT_SEL, 0x01}, /* line/surround */
5817         {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
5818         { } /* end */
5819 };
5820 
5821 static void alc882_gpio_mute(struct hda_codec *codec, int pin, int muted)
5822 {
5823         unsigned int gpiostate, gpiomask, gpiodir;
5824 
5825         gpiostate = snd_hda_codec_read(codec, codec->afg, 0,
5826                                        AC_VERB_GET_GPIO_DATA, 0);
5827 
5828         if (!muted)
5829                 gpiostate |= (1 << pin);
5830         else
5831                 gpiostate &= ~(1 << pin);
5832 
5833         gpiomask = snd_hda_codec_read(codec, codec->afg, 0,
5834                                       AC_VERB_GET_GPIO_MASK, 0);
5835         gpiomask |= (1 << pin);
5836 
5837         gpiodir = snd_hda_codec_read(codec, codec->afg, 0,
5838                                      AC_VERB_GET_GPIO_DIRECTION, 0);
5839         gpiodir |= (1 << pin);
5840 
5841 
5842         snd_hda_codec_write(codec, codec->afg, 0,
5843                             AC_VERB_SET_GPIO_MASK, gpiomask);
5844         snd_hda_codec_write(codec, codec->afg, 0,
5845                             AC_VERB_SET_GPIO_DIRECTION, gpiodir);
5846 
5847         msleep(1);
5848 
5849         snd_hda_codec_write(codec, codec->afg, 0,
5850                             AC_VERB_SET_GPIO_DATA, gpiostate);
5851 }
5852 
5853 /* set up GPIO at initialization */
5854 static void alc885_macpro_init_hook(struct hda_codec *codec)
5855 {
5856         alc882_gpio_mute(codec, 0, 0);
5857         alc882_gpio_mute(codec, 1, 0);
5858 }
5859 
5860 /* set up GPIO and update auto-muting at initialization */
5861 static void alc885_imac24_init_hook(struct hda_codec *codec)
5862 {
5863         alc885_macpro_init_hook(codec);
5864         alc885_imac24_automute(codec);
5865 }
5866 
5867 /*
5868  * generic initialization of ADC, input mixers and output mixers
5869  */
5870 static struct hda_verb alc882_auto_init_verbs[] = {
5871         /*
5872          * Unmute ADC0-2 and set the default input to mic-in
5873          */
5874         {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
5875         {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5876         {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
5877         {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5878         {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
5879         {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5880 
5881         /* Mute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
5882          * mixer widget
5883          * Note: PASD motherboards uses the Line In 2 as the input for
5884          * front panel mic (mic 2)
5885          */
5886         /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
5887         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5888         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5889         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
5890         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
5891         {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
5892 
5893         /*
5894          * Set up output mixers (0x0c - 0x0f)
5895          */
5896         /* set vol=0 to output mixers */
5897         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5898         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5899         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5900         {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5901         /* set up input amps for analog loopback */
5902         /* Amp Indices: DAC = 0, mixer = 1 */
5903         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5904         {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5905         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5906         {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5907         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5908         {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5909         {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5910         {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5911         {0x26, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5912         {0x26, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5913 
5914         /* FIXME: use matrix-type input source selection */
5915         /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
5916         /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
5917         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
5918         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
5919         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
5920         {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
5921         /* Input mixer2 */
5922         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
5923         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
5924         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
5925         {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
5926         /* Input mixer3 */
5927         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
5928         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
5929         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
5930         {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
5931 
5932         { }
5933 };
5934 
5935 /* capture mixer elements */
5936 static struct snd_kcontrol_new alc882_capture_alt_mixer[] = {
5937         HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
5938         HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
5939         HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
5940         HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
5941         {
5942                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
5943                 /* The multiple "Capture Source" controls confuse alsamixer
5944                  * So call somewhat different..
5945                  */
5946                 /* .name = "Capture Source", */
5947                 .name = "Input Source",
5948                 .count = 2,
5949                 .info = alc882_mux_enum_info,
5950                 .get = alc882_mux_enum_get,
5951                 .put = alc882_mux_enum_put,
5952         },
5953         { } /* end */
5954 };
5955 
5956 static struct snd_kcontrol_new alc882_capture_mixer[] = {
5957         HDA_CODEC_VOLUME("Capture Volume", 0x07, 0x0, HDA_INPUT),
5958         HDA_CODEC_MUTE("Capture Switch", 0x07, 0x0, HDA_INPUT),
5959         HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x08, 0x0, HDA_INPUT),
5960         HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x08, 0x0, HDA_INPUT),
5961         HDA_CODEC_VOLUME_IDX("Capture Volume", 2, 0x09, 0x0, HDA_INPUT),
5962         HDA_CODEC_MUTE_IDX("Capture Switch", 2, 0x09, 0x0, HDA_INPUT),
5963         {
5964                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
5965                 /* The multiple "Capture Source" controls confuse alsamixer
5966                  * So call somewhat different..
5967                  */
5968                 /* .name = "Capture Source", */
5969                 .name = "Input Source",
5970                 .count = 3,
5971                 .info = alc882_mux_enum_info,
5972                 .get = alc882_mux_enum_get,
5973                 .put = alc882_mux_enum_put,
5974         },
5975         { } /* end */
5976 };
5977 
5978 #ifdef CONFIG_SND_HDA_POWER_SAVE
5979 #define alc882_loopbacks        alc880_loopbacks
5980 #endif
5981 
5982 /* pcm configuration: identiacal with ALC880 */
5983 #define alc882_pcm_analog_playback      alc880_pcm_analog_playback
5984 #define alc882_pcm_analog_capture       alc880_pcm_analog_capture
5985 #define alc882_pcm_digital_playback     alc880_pcm_digital_playback
5986 #define alc882_pcm_digital_capture      alc880_pcm_digital_capture
5987 
5988 /*
5989  * configuration and preset
5990  */
5991 static const char *alc882_models[ALC882_MODEL_LAST] = {
5992         [ALC882_3ST_DIG]        = "3stack-dig",
5993         [ALC882_6ST_DIG]        = "6stack-dig",
5994         [ALC882_ARIMA]          = "arima",
5995         [ALC882_W2JC]           = "w2jc",
5996         [ALC882_TARGA]          = "targa",
5997         [ALC882_ASUS_A7J]       = "asus-a7j",
5998         [ALC882_ASUS_A7M]       = "asus-a7m",
5999         [ALC885_MACPRO]         = "macpro",
6000         [ALC885_MBP3]           = "mbp3",
6001         [ALC885_IMAC24]         = "imac24",
6002         [ALC882_AUTO]           = "auto",
6003 };
6004 
6005 static struct snd_pci_quirk alc882_cfg_tbl[] = {
6006         SND_PCI_QUIRK(0x1019, 0x6668, "ECS", ALC882_6ST_DIG),
6007         SND_PCI_QUIRK(0x1043, 0x060d, "Asus A7J", ALC882_ASUS_A7J),
6008         SND_PCI_QUIRK(0x1043, 0x1243, "Asus A7J", ALC882_ASUS_A7J),
6009         SND_PCI_QUIRK(0x1043, 0x13c2, "Asus A7M", ALC882_ASUS_A7M),
6010         SND_PCI_QUIRK(0x1043, 0x1971, "Asus W2JC", ALC882_W2JC),
6011         SND_PCI_QUIRK(0x1043, 0x817f, "Asus P5LD2", ALC882_6ST_DIG),
6012         SND_PCI_QUIRK(0x1043, 0x81d8, "Asus P5WD", ALC882_6ST_DIG),
6013         SND_PCI_QUIRK(0x105b, 0x6668, "Foxconn", ALC882_6ST_DIG),
6014         SND_PCI_QUIRK(0x1458, 0xa002, "Gigabyte P35 DS3R", ALC882_6ST_DIG),
6015         SND_PCI_QUIRK(0x1462, 0x28fb, "Targa T8", ALC882_TARGA), /* MSI-1049 T8  */
6016         SND_PCI_QUIRK(0x1462, 0x6668, "MSI", ALC882_6ST_DIG),
6017         SND_PCI_QUIRK(0x161f, 0x2054, "Arima W820", ALC882_ARIMA),
6018         {}
6019 };
6020 
6021 static struct alc_config_preset alc882_presets[] = {
6022         [ALC882_3ST_DIG] = {
6023                 .mixers = { alc882_base_mixer },
6024                 .init_verbs = { alc882_init_verbs },
6025                 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
6026                 .dac_nids = alc882_dac_nids,
6027                 .dig_out_nid = ALC882_DIGOUT_NID,
6028                 .dig_in_nid = ALC882_DIGIN_NID,
6029                 .num_channel_mode = ARRAY_SIZE(alc882_ch_modes),
6030                 .channel_mode = alc882_ch_modes,
6031                 .need_dac_fix = 1,
6032                 .input_mux = &alc882_capture_source,
6033         },
6034         [ALC882_6ST_DIG] = {
6035                 .mixers = { alc882_base_mixer, alc882_chmode_mixer },
6036                 .init_verbs = { alc882_init_verbs },
6037                 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
6038                 .dac_nids = alc882_dac_nids,
6039                 .dig_out_nid = ALC882_DIGOUT_NID,
6040                 .dig_in_nid = ALC882_DIGIN_NID,
6041                 .num_channel_mode = ARRAY_SIZE(alc882_sixstack_modes),
6042                 .channel_mode = alc882_sixstack_modes,
6043                 .input_mux = &alc882_capture_source,
6044         },
6045         [ALC882_ARIMA] = {
6046                 .mixers = { alc882_base_mixer, alc882_chmode_mixer },
6047                 .init_verbs = { alc882_init_verbs, alc882_eapd_verbs },
6048                 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
6049                 .dac_nids = alc882_dac_nids,
6050                 .num_channel_mode = ARRAY_SIZE(alc882_sixstack_modes),
6051                 .channel_mode = alc882_sixstack_modes,
6052                 .input_mux = &alc882_capture_source,
6053         },
6054         [ALC882_W2JC] = {
6055                 .mixers = { alc882_w2jc_mixer, alc882_chmode_mixer },
6056                 .init_verbs = { alc882_init_verbs, alc882_eapd_verbs,
6057                                 alc880_gpio1_init_verbs },
6058                 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
6059                 .dac_nids = alc882_dac_nids,
6060                 .num_channel_mode = ARRAY_SIZE(alc880_threestack_modes),
6061                 .channel_mode = alc880_threestack_modes,
6062                 .need_dac_fix = 1,
6063                 .input_mux = &alc882_capture_source,
6064                 .dig_out_nid = ALC882_DIGOUT_NID,
6065         },
6066         [ALC885_MBP3] = {
6067                 .mixers = { alc885_mbp3_mixer, alc882_chmode_mixer },
6068                 .init_verbs = { alc885_mbp3_init_verbs,
6069                                 alc880_gpio1_init_verbs },
6070                 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
6071                 .dac_nids = alc882_dac_nids,
6072                 .channel_mode = alc885_mbp_6ch_modes,
6073                 .num_channel_mode = ARRAY_SIZE(alc885_mbp_6ch_modes),
6074                 .input_mux = &alc882_capture_source,
6075                 .dig_out_nid = ALC882_DIGOUT_NID,
6076                 .dig_in_nid = ALC882_DIGIN_NID,
6077                 .unsol_event = alc885_mbp3_unsol_event,
6078                 .init_hook = alc885_mbp3_automute,
6079         },
6080         [ALC885_MACPRO] = {
6081                 .mixers = { alc882_macpro_mixer },
6082                 .init_verbs = { alc882_macpro_init_verbs },
6083                 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
6084                 .dac_nids = alc882_dac_nids,
6085                 .dig_out_nid = ALC882_DIGOUT_NID,
6086                 .dig_in_nid = ALC882_DIGIN_NID,
6087                 .num_channel_mode = ARRAY_SIZE(alc882_ch_modes),
6088                 .channel_mode = alc882_ch_modes,
6089                 .input_mux = &alc882_capture_source,
6090                 .init_hook = alc885_macpro_init_hook,
6091         },
6092         [ALC885_IMAC24] = {
6093                 .mixers = { alc885_imac24_mixer },
6094                 .init_verbs = { alc885_imac24_init_verbs },
6095                 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
6096                 .dac_nids = alc882_dac_nids,
6097                 .dig_out_nid = ALC882_DIGOUT_NID,
6098                 .dig_in_nid = ALC882_DIGIN_NID,
6099                 .num_channel_mode = ARRAY_SIZE(alc882_ch_modes),
6100                 .channel_mode = alc882_ch_modes,
6101                 .input_mux = &alc882_capture_source,
6102                 .unsol_event = alc885_imac24_unsol_event,
6103                 .init_hook = alc885_imac24_init_hook,
6104         },
6105         [ALC882_TARGA] = {
6106                 .mixers = { alc882_targa_mixer, alc882_chmode_mixer,
6107                             alc882_capture_mixer },
6108                 .init_verbs = { alc882_init_verbs, alc882_targa_verbs},
6109                 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
6110                 .dac_nids = alc882_dac_nids,
6111                 .dig_out_nid = ALC882_DIGOUT_NID,
6112                 .num_adc_nids = ARRAY_SIZE(alc882_adc_nids),
6113                 .adc_nids = alc882_adc_nids,
6114                 .num_channel_mode = ARRAY_SIZE(alc882_3ST_6ch_modes),
6115                 .channel_mode = alc882_3ST_6ch_modes,
6116                 .need_dac_fix = 1,
6117                 .input_mux = &alc882_capture_source,
6118                 .unsol_event = alc882_targa_unsol_event,
6119                 .init_hook = alc882_targa_automute,
6120         },
6121         [ALC882_ASUS_A7J] = {
6122                 .mixers = { alc882_asus_a7j_mixer, alc882_chmode_mixer,
6123                             alc882_capture_mixer },
6124                 .init_verbs = { alc882_init_verbs, alc882_asus_a7j_verbs},
6125                 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
6126                 .dac_nids = alc882_dac_nids,
6127                 .dig_out_nid = ALC882_DIGOUT_NID,
6128                 .num_adc_nids = ARRAY_SIZE(alc882_adc_nids),
6129                 .adc_nids = alc882_adc_nids,
6130                 .num_channel_mode = ARRAY_SIZE(alc882_3ST_6ch_modes),
6131                 .channel_mode = alc882_3ST_6ch_modes,
6132                 .need_dac_fix = 1,
6133                 .input_mux = &alc882_capture_source,
6134         },      
6135         [ALC882_ASUS_A7M] = {
6136                 .mixers = { alc882_asus_a7m_mixer, alc882_chmode_mixer },
6137                 .init_verbs = { alc882_init_verbs, alc882_eapd_verbs,
6138                                 alc880_gpio1_init_verbs,
6139                                 alc882_asus_a7m_verbs },
6140                 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
6141                 .dac_nids = alc882_dac_nids,
6142                 .dig_out_nid = ALC882_DIGOUT_NID,
6143                 .num_channel_mode = ARRAY_SIZE(alc880_threestack_modes),
6144                 .channel_mode = alc880_threestack_modes,
6145                 .need_dac_fix = 1,
6146                 .input_mux = &alc882_capture_source,
6147         },      
6148 };
6149 
6150 
6151 /*
6152  * Pin config fixes
6153  */
6154 enum { 
6155         PINFIX_ABIT_AW9D_MAX
6156 };
6157 
6158 static struct alc_pincfg alc882_abit_aw9d_pinfix[] = {
6159         { 0x15, 0x01080104 }, /* side */
6160         { 0x16, 0x01011012 }, /* rear */
6161         { 0x17, 0x01016011 }, /* clfe */
6162         { }
6163 };
6164 
6165 static const struct alc_pincfg *alc882_pin_fixes[] = {
6166         [PINFIX_ABIT_AW9D_MAX] = alc882_abit_aw9d_pinfix,
6167 };
6168 
6169 static struct snd_pci_quirk alc882_pinfix_tbl[] = {
6170         SND_PCI_QUIRK(0x147b, 0x107a, "Abit AW9D-MAX", PINFIX_ABIT_AW9D_MAX),
6171         {}
6172 };
6173 
6174 /*
6175  * BIOS auto configuration
6176  */
6177 static void alc882_auto_set_output_and_unmute(struct hda_codec *codec,
6178                                               hda_nid_t nid, int pin_type,
6179                                               int dac_idx)
6180 {
6181         /* set as output */
6182         struct alc_spec *spec = codec->spec;
6183         int idx;
6184 
6185         if (spec->multiout.dac_nids[dac_idx] == 0x25)
6186                 idx = 4;
6187         else
6188                 idx = spec->multiout.dac_nids[dac_idx] - 2;
6189 
6190         snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
6191                             pin_type);
6192         snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
6193                             AMP_OUT_UNMUTE);
6194         snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CONNECT_SEL, idx);
6195 
6196 }
6197 
6198 static void alc882_auto_init_multi_out(struct hda_codec *codec)
6199 {
6200         struct alc_spec *spec = codec->spec;
6201         int i;
6202 
6203         alc_subsystem_id(codec, 0x15, 0x1b, 0x14);
6204         for (i = 0; i <= HDA_SIDE; i++) {
6205                 hda_nid_t nid = spec->autocfg.line_out_pins[i];
6206                 int pin_type = get_pin_type(spec->autocfg.line_out_type);
6207                 if (nid)
6208                         alc882_auto_set_output_and_unmute(codec, nid, pin_type,
6209                                                           i);
6210         }
6211 }
6212 
6213 static void alc882_auto_init_hp_out(struct hda_codec *codec)
6214 {
6215         struct alc_spec *spec = codec->spec;
6216         hda_nid_t pin;
6217 
6218         pin = spec->autocfg.hp_pins[0];
6219         if (pin) /* connect to front */
6220                 /* use dac 0 */
6221                 alc882_auto_set_output_and_unmute(codec, pin, PIN_HP, 0);
6222 }
6223 
6224 #define alc882_is_input_pin(nid)        alc880_is_input_pin(nid)
6225 #define ALC882_PIN_CD_NID               ALC880_PIN_CD_NID
6226 
6227 static void alc882_auto_init_analog_input(struct hda_codec *codec)
6228 {
6229         struct alc_spec *spec = codec->spec;
6230         int i;
6231 
6232         for (i = 0; i < AUTO_PIN_LAST; i++) {
6233                 hda_nid_t nid = spec->autocfg.input_pins[i];
6234                 if (alc882_is_input_pin(nid)) {
6235                         snd_hda_codec_write(codec, nid, 0,
6236                                             AC_VERB_SET_PIN_WIDGET_CONTROL,
6237                                             i <= AUTO_PIN_FRONT_MIC ?
6238                                             PIN_VREF80 : PIN_IN);
6239                         if (nid != ALC882_PIN_CD_NID)
6240                                 snd_hda_codec_write(codec, nid, 0,
6241                                                     AC_VERB_SET_AMP_GAIN_MUTE,
624