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 ] 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 */</