]> git.karo-electronics.de Git - mv-sheeva.git/blob - sound/pci/hda/patch_realtek.c
ALSA: hda/realtek - Drop all ALC880 static quirks
[mv-sheeva.git] / sound / pci / hda / patch_realtek.c
1 /*
2  * Universal Interface for Intel High Definition Audio Codec
3  *
4  * HD audio interface patch for Realtek ALC 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 <linux/module.h>
31 #include <sound/core.h>
32 #include <sound/jack.h>
33 #include "hda_codec.h"
34 #include "hda_local.h"
35 #include "hda_beep.h"
36 #include "hda_jack.h"
37
38 /* unsol event tags */
39 #define ALC_FRONT_EVENT         0x01
40 #define ALC_DCVOL_EVENT         0x02
41 #define ALC_HP_EVENT            0x04
42 #define ALC_MIC_EVENT           0x08
43
44 /* for GPIO Poll */
45 #define GPIO_MASK       0x03
46
47 /* extra amp-initialization sequence types */
48 enum {
49         ALC_INIT_NONE,
50         ALC_INIT_DEFAULT,
51         ALC_INIT_GPIO1,
52         ALC_INIT_GPIO2,
53         ALC_INIT_GPIO3,
54 };
55
56 struct alc_customize_define {
57         unsigned int  sku_cfg;
58         unsigned char port_connectivity;
59         unsigned char check_sum;
60         unsigned char customization;
61         unsigned char external_amp;
62         unsigned int  enable_pcbeep:1;
63         unsigned int  platform_type:1;
64         unsigned int  swap:1;
65         unsigned int  override:1;
66         unsigned int  fixup:1; /* Means that this sku is set by driver, not read from hw */
67 };
68
69 struct alc_fixup;
70
71 struct alc_multi_io {
72         hda_nid_t pin;          /* multi-io widget pin NID */
73         hda_nid_t dac;          /* DAC to be connected */
74         unsigned int ctl_in;    /* cached input-pin control value */
75 };
76
77 enum {
78         ALC_AUTOMUTE_PIN,       /* change the pin control */
79         ALC_AUTOMUTE_AMP,       /* mute/unmute the pin AMP */
80         ALC_AUTOMUTE_MIXER,     /* mute/unmute mixer widget AMP */
81 };
82
83 #define MAX_VOL_NIDS    0x40
84
85 struct alc_spec {
86         /* codec parameterization */
87         const struct snd_kcontrol_new *mixers[5];       /* mixer arrays */
88         unsigned int num_mixers;
89         const struct snd_kcontrol_new *cap_mixer;       /* capture mixer */
90         unsigned int beep_amp;  /* beep amp value, set via set_beep_amp() */
91
92         const struct hda_verb *init_verbs[10];  /* initialization verbs
93                                                  * don't forget NULL
94                                                  * termination!
95                                                  */
96         unsigned int num_init_verbs;
97
98         char stream_name_analog[32];    /* analog PCM stream */
99         const struct hda_pcm_stream *stream_analog_playback;
100         const struct hda_pcm_stream *stream_analog_capture;
101         const struct hda_pcm_stream *stream_analog_alt_playback;
102         const struct hda_pcm_stream *stream_analog_alt_capture;
103
104         char stream_name_digital[32];   /* digital PCM stream */
105         const struct hda_pcm_stream *stream_digital_playback;
106         const struct hda_pcm_stream *stream_digital_capture;
107
108         /* playback */
109         struct hda_multi_out multiout;  /* playback set-up
110                                          * max_channels, dacs must be set
111                                          * dig_out_nid and hp_nid are optional
112                                          */
113         hda_nid_t alt_dac_nid;
114         hda_nid_t slave_dig_outs[3];    /* optional - for auto-parsing */
115         int dig_out_type;
116
117         /* capture */
118         unsigned int num_adc_nids;
119         const hda_nid_t *adc_nids;
120         const hda_nid_t *capsrc_nids;
121         hda_nid_t dig_in_nid;           /* digital-in NID; optional */
122         hda_nid_t mixer_nid;            /* analog-mixer NID */
123         DECLARE_BITMAP(vol_ctls, MAX_VOL_NIDS << 1);
124         DECLARE_BITMAP(sw_ctls, MAX_VOL_NIDS << 1);
125
126         /* capture setup for dynamic dual-adc switch */
127         hda_nid_t cur_adc;
128         unsigned int cur_adc_stream_tag;
129         unsigned int cur_adc_format;
130
131         /* capture source */
132         unsigned int num_mux_defs;
133         const struct hda_input_mux *input_mux;
134         unsigned int cur_mux[3];
135         hda_nid_t ext_mic_pin;
136         hda_nid_t dock_mic_pin;
137         hda_nid_t int_mic_pin;
138
139         /* channel model */
140         const struct hda_channel_mode *channel_mode;
141         int num_channel_mode;
142         int need_dac_fix;
143         int const_channel_count;
144         int ext_channel_count;
145
146         /* PCM information */
147         struct hda_pcm pcm_rec[3];      /* used in alc_build_pcms() */
148
149         /* dynamic controls, init_verbs and input_mux */
150         struct auto_pin_cfg autocfg;
151         struct alc_customize_define cdefine;
152         struct snd_array kctls;
153         struct hda_input_mux private_imux[3];
154         hda_nid_t private_dac_nids[AUTO_CFG_MAX_OUTS];
155         hda_nid_t private_adc_nids[AUTO_CFG_MAX_OUTS];
156         hda_nid_t private_capsrc_nids[AUTO_CFG_MAX_OUTS];
157         hda_nid_t imux_pins[HDA_MAX_NUM_INPUTS];
158         unsigned int dyn_adc_idx[HDA_MAX_NUM_INPUTS];
159         int int_mic_idx, ext_mic_idx, dock_mic_idx; /* for auto-mic */
160
161         /* hooks */
162         void (*init_hook)(struct hda_codec *codec);
163         void (*unsol_event)(struct hda_codec *codec, unsigned int res);
164 #ifdef CONFIG_SND_HDA_POWER_SAVE
165         void (*power_hook)(struct hda_codec *codec);
166 #endif
167         void (*shutup)(struct hda_codec *codec);
168         void (*automute_hook)(struct hda_codec *codec);
169
170         /* for pin sensing */
171         unsigned int hp_jack_present:1;
172         unsigned int line_jack_present:1;
173         unsigned int master_mute:1;
174         unsigned int auto_mic:1;
175         unsigned int auto_mic_valid_imux:1;     /* valid imux for auto-mic */
176         unsigned int automute_speaker:1; /* automute speaker outputs */
177         unsigned int automute_lo:1; /* automute LO outputs */
178         unsigned int detect_hp:1;       /* Headphone detection enabled */
179         unsigned int detect_lo:1;       /* Line-out detection enabled */
180         unsigned int automute_speaker_possible:1; /* there are speakers and either LO or HP */
181         unsigned int automute_lo_possible:1;      /* there are line outs and HP */
182         unsigned int keep_vref_in_automute:1; /* Don't clear VREF in automute */
183
184         /* other flags */
185         unsigned int no_analog :1; /* digital I/O only */
186         unsigned int dyn_adc_switch:1; /* switch ADCs (for ALC275) */
187         unsigned int single_input_src:1;
188         unsigned int vol_in_capsrc:1; /* use capsrc volume (ADC has no vol) */
189         unsigned int parse_flags; /* passed to snd_hda_parse_pin_defcfg() */
190         unsigned int shared_mic_hp:1; /* HP/Mic-in sharing */
191
192         /* auto-mute control */
193         int automute_mode;
194         hda_nid_t automute_mixer_nid[AUTO_CFG_MAX_OUTS];
195
196         int init_amp;
197         int codec_variant;      /* flag for other variants */
198
199         /* for virtual master */
200         hda_nid_t vmaster_nid;
201 #ifdef CONFIG_SND_HDA_POWER_SAVE
202         struct hda_loopback_check loopback;
203 #endif
204
205         /* for PLL fix */
206         hda_nid_t pll_nid;
207         unsigned int pll_coef_idx, pll_coef_bit;
208         unsigned int coef0;
209
210         /* fix-up list */
211         int fixup_id;
212         const struct alc_fixup *fixup_list;
213         const char *fixup_name;
214
215         /* multi-io */
216         int multi_ios;
217         struct alc_multi_io multi_io[4];
218
219         /* bind volumes */
220         struct snd_array bind_ctls;
221 };
222
223 #define ALC_MODEL_AUTO          0       /* common for all chips */
224
225 static bool check_amp_caps(struct hda_codec *codec, hda_nid_t nid,
226                            int dir, unsigned int bits)
227 {
228         if (!nid)
229                 return false;
230         if (get_wcaps(codec, nid) & (1 << (dir + 1)))
231                 if (query_amp_caps(codec, nid, dir) & bits)
232                         return true;
233         return false;
234 }
235
236 #define nid_has_mute(codec, nid, dir) \
237         check_amp_caps(codec, nid, dir, AC_AMPCAP_MUTE)
238 #define nid_has_volume(codec, nid, dir) \
239         check_amp_caps(codec, nid, dir, AC_AMPCAP_NUM_STEPS)
240
241 /*
242  * input MUX handling
243  */
244 static int alc_mux_enum_info(struct snd_kcontrol *kcontrol,
245                              struct snd_ctl_elem_info *uinfo)
246 {
247         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
248         struct alc_spec *spec = codec->spec;
249         unsigned int mux_idx = snd_ctl_get_ioffidx(kcontrol, &uinfo->id);
250         if (mux_idx >= spec->num_mux_defs)
251                 mux_idx = 0;
252         if (!spec->input_mux[mux_idx].num_items && mux_idx > 0)
253                 mux_idx = 0;
254         return snd_hda_input_mux_info(&spec->input_mux[mux_idx], uinfo);
255 }
256
257 static int alc_mux_enum_get(struct snd_kcontrol *kcontrol,
258                             struct snd_ctl_elem_value *ucontrol)
259 {
260         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
261         struct alc_spec *spec = codec->spec;
262         unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
263
264         ucontrol->value.enumerated.item[0] = spec->cur_mux[adc_idx];
265         return 0;
266 }
267
268 static bool alc_dyn_adc_pcm_resetup(struct hda_codec *codec, int cur)
269 {
270         struct alc_spec *spec = codec->spec;
271         hda_nid_t new_adc = spec->adc_nids[spec->dyn_adc_idx[cur]];
272
273         if (spec->cur_adc && spec->cur_adc != new_adc) {
274                 /* stream is running, let's swap the current ADC */
275                 __snd_hda_codec_cleanup_stream(codec, spec->cur_adc, 1);
276                 spec->cur_adc = new_adc;
277                 snd_hda_codec_setup_stream(codec, new_adc,
278                                            spec->cur_adc_stream_tag, 0,
279                                            spec->cur_adc_format);
280                 return true;
281         }
282         return false;
283 }
284
285 static inline hda_nid_t get_capsrc(struct alc_spec *spec, int idx)
286 {
287         return spec->capsrc_nids ?
288                 spec->capsrc_nids[idx] : spec->adc_nids[idx];
289 }
290
291 static void call_update_outputs(struct hda_codec *codec);
292
293 /* select the given imux item; either unmute exclusively or select the route */
294 static int alc_mux_select(struct hda_codec *codec, unsigned int adc_idx,
295                           unsigned int idx, bool force)
296 {
297         struct alc_spec *spec = codec->spec;
298         const struct hda_input_mux *imux;
299         unsigned int mux_idx;
300         int i, type, num_conns;
301         hda_nid_t nid;
302
303         mux_idx = adc_idx >= spec->num_mux_defs ? 0 : adc_idx;
304         imux = &spec->input_mux[mux_idx];
305         if (!imux->num_items && mux_idx > 0)
306                 imux = &spec->input_mux[0];
307         if (!imux->num_items)
308                 return 0;
309
310         if (idx >= imux->num_items)
311                 idx = imux->num_items - 1;
312         if (spec->cur_mux[adc_idx] == idx && !force)
313                 return 0;
314         spec->cur_mux[adc_idx] = idx;
315
316         /* for shared I/O, change the pin-control accordingly */
317         if (spec->shared_mic_hp) {
318                 /* NOTE: this assumes that there are only two inputs, the
319                  * first is the real internal mic and the second is HP jack.
320                  */
321                 snd_hda_codec_write(codec, spec->autocfg.inputs[1].pin, 0,
322                                     AC_VERB_SET_PIN_WIDGET_CONTROL,
323                                     spec->cur_mux[adc_idx] ?
324                                     PIN_VREF80 : PIN_HP);
325                 spec->automute_speaker = !spec->cur_mux[adc_idx];
326                 call_update_outputs(codec);
327         }
328
329         if (spec->dyn_adc_switch) {
330                 alc_dyn_adc_pcm_resetup(codec, idx);
331                 adc_idx = spec->dyn_adc_idx[idx];
332         }
333
334         nid = get_capsrc(spec, adc_idx);
335
336         /* no selection? */
337         num_conns = snd_hda_get_conn_list(codec, nid, NULL);
338         if (num_conns <= 1)
339                 return 1;
340
341         type = get_wcaps_type(get_wcaps(codec, nid));
342         if (type == AC_WID_AUD_MIX) {
343                 /* Matrix-mixer style (e.g. ALC882) */
344                 int active = imux->items[idx].index;
345                 for (i = 0; i < num_conns; i++) {
346                         unsigned int v = (i == active) ? 0 : HDA_AMP_MUTE;
347                         snd_hda_codec_amp_stereo(codec, nid, HDA_INPUT, i,
348                                                  HDA_AMP_MUTE, v);
349                 }
350         } else {
351                 /* MUX style (e.g. ALC880) */
352                 snd_hda_codec_write_cache(codec, nid, 0,
353                                           AC_VERB_SET_CONNECT_SEL,
354                                           imux->items[idx].index);
355         }
356         return 1;
357 }
358
359 static int alc_mux_enum_put(struct snd_kcontrol *kcontrol,
360                             struct snd_ctl_elem_value *ucontrol)
361 {
362         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
363         unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
364         return alc_mux_select(codec, adc_idx,
365                               ucontrol->value.enumerated.item[0], false);
366 }
367
368 /*
369  * set up the input pin config (depending on the given auto-pin type)
370  */
371 static void alc_set_input_pin(struct hda_codec *codec, hda_nid_t nid,
372                               int auto_pin_type)
373 {
374         unsigned int val = PIN_IN;
375
376         if (auto_pin_type == AUTO_PIN_MIC) {
377                 unsigned int pincap;
378                 unsigned int oldval;
379                 oldval = snd_hda_codec_read(codec, nid, 0,
380                                             AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
381                 pincap = snd_hda_query_pin_caps(codec, nid);
382                 pincap = (pincap & AC_PINCAP_VREF) >> AC_PINCAP_VREF_SHIFT;
383                 /* if the default pin setup is vref50, we give it priority */
384                 if ((pincap & AC_PINCAP_VREF_80) && oldval != PIN_VREF50)
385                         val = PIN_VREF80;
386                 else if (pincap & AC_PINCAP_VREF_50)
387                         val = PIN_VREF50;
388                 else if (pincap & AC_PINCAP_VREF_100)
389                         val = PIN_VREF100;
390                 else if (pincap & AC_PINCAP_VREF_GRD)
391                         val = PIN_VREFGRD;
392         }
393         snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, val);
394 }
395
396 /*
397  * Append the given mixer and verb elements for the later use
398  * The mixer array is referred in build_controls(), and init_verbs are
399  * called in init().
400  */
401 static void add_mixer(struct alc_spec *spec, const struct snd_kcontrol_new *mix)
402 {
403         if (snd_BUG_ON(spec->num_mixers >= ARRAY_SIZE(spec->mixers)))
404                 return;
405         spec->mixers[spec->num_mixers++] = mix;
406 }
407
408 static void add_verb(struct alc_spec *spec, const struct hda_verb *verb)
409 {
410         if (snd_BUG_ON(spec->num_init_verbs >= ARRAY_SIZE(spec->init_verbs)))
411                 return;
412         spec->init_verbs[spec->num_init_verbs++] = verb;
413 }
414
415 /*
416  * GPIO setup tables, used in initialization
417  */
418 /* Enable GPIO mask and set output */
419 static const struct hda_verb alc_gpio1_init_verbs[] = {
420         {0x01, AC_VERB_SET_GPIO_MASK, 0x01},
421         {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
422         {0x01, AC_VERB_SET_GPIO_DATA, 0x01},
423         { }
424 };
425
426 static const struct hda_verb alc_gpio2_init_verbs[] = {
427         {0x01, AC_VERB_SET_GPIO_MASK, 0x02},
428         {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x02},
429         {0x01, AC_VERB_SET_GPIO_DATA, 0x02},
430         { }
431 };
432
433 static const struct hda_verb alc_gpio3_init_verbs[] = {
434         {0x01, AC_VERB_SET_GPIO_MASK, 0x03},
435         {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x03},
436         {0x01, AC_VERB_SET_GPIO_DATA, 0x03},
437         { }
438 };
439
440 /*
441  * Fix hardware PLL issue
442  * On some codecs, the analog PLL gating control must be off while
443  * the default value is 1.
444  */
445 static void alc_fix_pll(struct hda_codec *codec)
446 {
447         struct alc_spec *spec = codec->spec;
448         unsigned int val;
449
450         if (!spec->pll_nid)
451                 return;
452         snd_hda_codec_write(codec, spec->pll_nid, 0, AC_VERB_SET_COEF_INDEX,
453                             spec->pll_coef_idx);
454         val = snd_hda_codec_read(codec, spec->pll_nid, 0,
455                                  AC_VERB_GET_PROC_COEF, 0);
456         snd_hda_codec_write(codec, spec->pll_nid, 0, AC_VERB_SET_COEF_INDEX,
457                             spec->pll_coef_idx);
458         snd_hda_codec_write(codec, spec->pll_nid, 0, AC_VERB_SET_PROC_COEF,
459                             val & ~(1 << spec->pll_coef_bit));
460 }
461
462 static void alc_fix_pll_init(struct hda_codec *codec, hda_nid_t nid,
463                              unsigned int coef_idx, unsigned int coef_bit)
464 {
465         struct alc_spec *spec = codec->spec;
466         spec->pll_nid = nid;
467         spec->pll_coef_idx = coef_idx;
468         spec->pll_coef_bit = coef_bit;
469         alc_fix_pll(codec);
470 }
471
472 /*
473  * Jack detections for HP auto-mute and mic-switch
474  */
475
476 /* check each pin in the given array; returns true if any of them is plugged */
477 static bool detect_jacks(struct hda_codec *codec, int num_pins, hda_nid_t *pins)
478 {
479         int i, present = 0;
480
481         for (i = 0; i < num_pins; i++) {
482                 hda_nid_t nid = pins[i];
483                 if (!nid)
484                         break;
485                 present |= snd_hda_jack_detect(codec, nid);
486         }
487         return present;
488 }
489
490 /* standard HP/line-out auto-mute helper */
491 static void do_automute(struct hda_codec *codec, int num_pins, hda_nid_t *pins,
492                         bool mute, bool hp_out)
493 {
494         struct alc_spec *spec = codec->spec;
495         unsigned int mute_bits = mute ? HDA_AMP_MUTE : 0;
496         unsigned int pin_bits = mute ? 0 : (hp_out ? PIN_HP : PIN_OUT);
497         int i;
498
499         for (i = 0; i < num_pins; i++) {
500                 hda_nid_t nid = pins[i];
501                 unsigned int val;
502                 if (!nid)
503                         break;
504                 switch (spec->automute_mode) {
505                 case ALC_AUTOMUTE_PIN:
506                         /* don't reset VREF value in case it's controlling
507                          * the amp (see alc861_fixup_asus_amp_vref_0f())
508                          */
509                         if (spec->keep_vref_in_automute) {
510                                 val = snd_hda_codec_read(codec, nid, 0,
511                                         AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
512                                 val &= ~PIN_HP;
513                         } else
514                                 val = 0;
515                         val |= pin_bits;
516                         snd_hda_codec_write(codec, nid, 0,
517                                             AC_VERB_SET_PIN_WIDGET_CONTROL,
518                                             val);
519                         break;
520                 case ALC_AUTOMUTE_AMP:
521                         snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
522                                                  HDA_AMP_MUTE, mute_bits);
523                         break;
524                 case ALC_AUTOMUTE_MIXER:
525                         nid = spec->automute_mixer_nid[i];
526                         if (!nid)
527                                 break;
528                         snd_hda_codec_amp_stereo(codec, nid, HDA_INPUT, 0,
529                                                  HDA_AMP_MUTE, mute_bits);
530                         snd_hda_codec_amp_stereo(codec, nid, HDA_INPUT, 1,
531                                                  HDA_AMP_MUTE, mute_bits);
532                         break;
533                 }
534         }
535 }
536
537 /* Toggle outputs muting */
538 static void update_outputs(struct hda_codec *codec)
539 {
540         struct alc_spec *spec = codec->spec;
541         int on;
542
543         /* Control HP pins/amps depending on master_mute state;
544          * in general, HP pins/amps control should be enabled in all cases,
545          * but currently set only for master_mute, just to be safe
546          */
547         if (!spec->shared_mic_hp) /* don't change HP-pin when shared with mic */
548                 do_automute(codec, ARRAY_SIZE(spec->autocfg.hp_pins),
549                     spec->autocfg.hp_pins, spec->master_mute, true);
550
551         if (!spec->automute_speaker)
552                 on = 0;
553         else
554                 on = spec->hp_jack_present | spec->line_jack_present;
555         on |= spec->master_mute;
556         do_automute(codec, ARRAY_SIZE(spec->autocfg.speaker_pins),
557                     spec->autocfg.speaker_pins, on, false);
558
559         /* toggle line-out mutes if needed, too */
560         /* if LO is a copy of either HP or Speaker, don't need to handle it */
561         if (spec->autocfg.line_out_pins[0] == spec->autocfg.hp_pins[0] ||
562             spec->autocfg.line_out_pins[0] == spec->autocfg.speaker_pins[0])
563                 return;
564         if (!spec->automute_lo)
565                 on = 0;
566         else
567                 on = spec->hp_jack_present;
568         on |= spec->master_mute;
569         do_automute(codec, ARRAY_SIZE(spec->autocfg.line_out_pins),
570                     spec->autocfg.line_out_pins, on, false);
571 }
572
573 static void call_update_outputs(struct hda_codec *codec)
574 {
575         struct alc_spec *spec = codec->spec;
576         if (spec->automute_hook)
577                 spec->automute_hook(codec);
578         else
579                 update_outputs(codec);
580 }
581
582 /* standard HP-automute helper */
583 static void alc_hp_automute(struct hda_codec *codec)
584 {
585         struct alc_spec *spec = codec->spec;
586
587         spec->hp_jack_present =
588                 detect_jacks(codec, ARRAY_SIZE(spec->autocfg.hp_pins),
589                              spec->autocfg.hp_pins);
590         if (!spec->detect_hp || (!spec->automute_speaker && !spec->automute_lo))
591                 return;
592         call_update_outputs(codec);
593 }
594
595 /* standard line-out-automute helper */
596 static void alc_line_automute(struct hda_codec *codec)
597 {
598         struct alc_spec *spec = codec->spec;
599
600         /* check LO jack only when it's different from HP */
601         if (spec->autocfg.line_out_pins[0] == spec->autocfg.hp_pins[0])
602                 return;
603
604         spec->line_jack_present =
605                 detect_jacks(codec, ARRAY_SIZE(spec->autocfg.line_out_pins),
606                              spec->autocfg.line_out_pins);
607         if (!spec->automute_speaker || !spec->detect_lo)
608                 return;
609         call_update_outputs(codec);
610 }
611
612 #define get_connection_index(codec, mux, nid) \
613         snd_hda_get_conn_index(codec, mux, nid, 0)
614
615 /* standard mic auto-switch helper */
616 static void alc_mic_automute(struct hda_codec *codec)
617 {
618         struct alc_spec *spec = codec->spec;
619         hda_nid_t *pins = spec->imux_pins;
620
621         if (!spec->auto_mic || !spec->auto_mic_valid_imux)
622                 return;
623         if (snd_BUG_ON(!spec->adc_nids))
624                 return;
625         if (snd_BUG_ON(spec->int_mic_idx < 0 || spec->ext_mic_idx < 0))
626                 return;
627
628         if (snd_hda_jack_detect(codec, pins[spec->ext_mic_idx]))
629                 alc_mux_select(codec, 0, spec->ext_mic_idx, false);
630         else if (spec->dock_mic_idx >= 0 &&
631                    snd_hda_jack_detect(codec, pins[spec->dock_mic_idx]))
632                 alc_mux_select(codec, 0, spec->dock_mic_idx, false);
633         else
634                 alc_mux_select(codec, 0, spec->int_mic_idx, false);
635 }
636
637 /* handle the specified unsol action (ALC_XXX_EVENT) */
638 static void alc_exec_unsol_event(struct hda_codec *codec, int action)
639 {
640         switch (action) {
641         case ALC_HP_EVENT:
642                 alc_hp_automute(codec);
643                 break;
644         case ALC_FRONT_EVENT:
645                 alc_line_automute(codec);
646                 break;
647         case ALC_MIC_EVENT:
648                 alc_mic_automute(codec);
649                 break;
650         }
651         snd_hda_jack_report_sync(codec);
652 }
653
654 /* update the master volume per volume-knob's unsol event */
655 static void alc_update_knob_master(struct hda_codec *codec, hda_nid_t nid)
656 {
657         unsigned int val;
658         struct snd_kcontrol *kctl;
659         struct snd_ctl_elem_value *uctl;
660
661         kctl = snd_hda_find_mixer_ctl(codec, "Master Playback Volume");
662         if (!kctl)
663                 return;
664         uctl = kzalloc(sizeof(*uctl), GFP_KERNEL);
665         if (!uctl)
666                 return;
667         val = snd_hda_codec_read(codec, nid, 0,
668                                  AC_VERB_GET_VOLUME_KNOB_CONTROL, 0);
669         val &= HDA_AMP_VOLMASK;
670         uctl->value.integer.value[0] = val;
671         uctl->value.integer.value[1] = val;
672         kctl->put(kctl, uctl);
673         kfree(uctl);
674 }
675
676 /* unsolicited event for HP jack sensing */
677 static void alc_sku_unsol_event(struct hda_codec *codec, unsigned int res)
678 {
679         int action;
680
681         if (codec->vendor_id == 0x10ec0880)
682                 res >>= 28;
683         else
684                 res >>= 26;
685         action = snd_hda_jack_get_action(codec, res);
686         if (res == ALC_DCVOL_EVENT) {
687                 /* Execute the dc-vol event here as it requires the NID
688                  * but we don't pass NID to alc_exec_unsol_event().
689                  * Once when we convert all static quirks to the auto-parser,
690                  * this can be integerated into there.
691                  */
692                 struct hda_jack_tbl *jack;
693                 jack = snd_hda_jack_tbl_get_from_tag(codec, res);
694                 if (jack)
695                         alc_update_knob_master(codec, jack->nid);
696                 return;
697         }
698         alc_exec_unsol_event(codec, action);
699 }
700
701 /* call init functions of standard auto-mute helpers */
702 static void alc_inithook(struct hda_codec *codec)
703 {
704         alc_hp_automute(codec);
705         alc_line_automute(codec);
706         alc_mic_automute(codec);
707 }
708
709 /* additional initialization for ALC888 variants */
710 static void alc888_coef_init(struct hda_codec *codec)
711 {
712         unsigned int tmp;
713
714         snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 0);
715         tmp = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_PROC_COEF, 0);
716         snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 7);
717         if ((tmp & 0xf0) == 0x20)
718                 /* alc888S-VC */
719                 snd_hda_codec_read(codec, 0x20, 0,
720                                    AC_VERB_SET_PROC_COEF, 0x830);
721          else
722                  /* alc888-VB */
723                  snd_hda_codec_read(codec, 0x20, 0,
724                                     AC_VERB_SET_PROC_COEF, 0x3030);
725 }
726
727 /* additional initialization for ALC889 variants */
728 static void alc889_coef_init(struct hda_codec *codec)
729 {
730         unsigned int tmp;
731
732         snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 7);
733         tmp = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_PROC_COEF, 0);
734         snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 7);
735         snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_PROC_COEF, tmp|0x2010);
736 }
737
738 /* turn on/off EAPD control (only if available) */
739 static void set_eapd(struct hda_codec *codec, hda_nid_t nid, int on)
740 {
741         if (get_wcaps_type(get_wcaps(codec, nid)) != AC_WID_PIN)
742                 return;
743         if (snd_hda_query_pin_caps(codec, nid) & AC_PINCAP_EAPD)
744                 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_EAPD_BTLENABLE,
745                                     on ? 2 : 0);
746 }
747
748 /* turn on/off EAPD controls of the codec */
749 static void alc_auto_setup_eapd(struct hda_codec *codec, bool on)
750 {
751         /* We currently only handle front, HP */
752         static hda_nid_t pins[] = {
753                 0x0f, 0x10, 0x14, 0x15, 0
754         };
755         hda_nid_t *p;
756         for (p = pins; *p; p++)
757                 set_eapd(codec, *p, on);
758 }
759
760 /* generic shutup callback;
761  * just turning off EPAD and a little pause for avoiding pop-noise
762  */
763 static void alc_eapd_shutup(struct hda_codec *codec)
764 {
765         alc_auto_setup_eapd(codec, false);
766         msleep(200);
767 }
768
769 /* generic EAPD initialization */
770 static void alc_auto_init_amp(struct hda_codec *codec, int type)
771 {
772         unsigned int tmp;
773
774         alc_auto_setup_eapd(codec, true);
775         switch (type) {
776         case ALC_INIT_GPIO1:
777                 snd_hda_sequence_write(codec, alc_gpio1_init_verbs);
778                 break;
779         case ALC_INIT_GPIO2:
780                 snd_hda_sequence_write(codec, alc_gpio2_init_verbs);
781                 break;
782         case ALC_INIT_GPIO3:
783                 snd_hda_sequence_write(codec, alc_gpio3_init_verbs);
784                 break;
785         case ALC_INIT_DEFAULT:
786                 switch (codec->vendor_id) {
787                 case 0x10ec0260:
788                         snd_hda_codec_write(codec, 0x1a, 0,
789                                             AC_VERB_SET_COEF_INDEX, 7);
790                         tmp = snd_hda_codec_read(codec, 0x1a, 0,
791                                                  AC_VERB_GET_PROC_COEF, 0);
792                         snd_hda_codec_write(codec, 0x1a, 0,
793                                             AC_VERB_SET_COEF_INDEX, 7);
794                         snd_hda_codec_write(codec, 0x1a, 0,
795                                             AC_VERB_SET_PROC_COEF,
796                                             tmp | 0x2010);
797                         break;
798                 case 0x10ec0262:
799                 case 0x10ec0880:
800                 case 0x10ec0882:
801                 case 0x10ec0883:
802                 case 0x10ec0885:
803                 case 0x10ec0887:
804                 /*case 0x10ec0889:*/ /* this causes an SPDIF problem */
805                         alc889_coef_init(codec);
806                         break;
807                 case 0x10ec0888:
808                         alc888_coef_init(codec);
809                         break;
810 #if 0 /* XXX: This may cause the silent output on speaker on some machines */
811                 case 0x10ec0267:
812                 case 0x10ec0268:
813                         snd_hda_codec_write(codec, 0x20, 0,
814                                             AC_VERB_SET_COEF_INDEX, 7);
815                         tmp = snd_hda_codec_read(codec, 0x20, 0,
816                                                  AC_VERB_GET_PROC_COEF, 0);
817                         snd_hda_codec_write(codec, 0x20, 0,
818                                             AC_VERB_SET_COEF_INDEX, 7);
819                         snd_hda_codec_write(codec, 0x20, 0,
820                                             AC_VERB_SET_PROC_COEF,
821                                             tmp | 0x3000);
822                         break;
823 #endif /* XXX */
824                 }
825                 break;
826         }
827 }
828
829 /*
830  * Auto-Mute mode mixer enum support
831  */
832 static int alc_automute_mode_info(struct snd_kcontrol *kcontrol,
833                                   struct snd_ctl_elem_info *uinfo)
834 {
835         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
836         struct alc_spec *spec = codec->spec;
837         static const char * const texts2[] = {
838                 "Disabled", "Enabled"
839         };
840         static const char * const texts3[] = {
841                 "Disabled", "Speaker Only", "Line-Out+Speaker"
842         };
843         const char * const *texts;
844
845         uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
846         uinfo->count = 1;
847         if (spec->automute_speaker_possible && spec->automute_lo_possible) {
848                 uinfo->value.enumerated.items = 3;
849                 texts = texts3;
850         } else {
851                 uinfo->value.enumerated.items = 2;
852                 texts = texts2;
853         }
854         if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items)
855                 uinfo->value.enumerated.item = uinfo->value.enumerated.items - 1;
856         strcpy(uinfo->value.enumerated.name,
857                texts[uinfo->value.enumerated.item]);
858         return 0;
859 }
860
861 static int alc_automute_mode_get(struct snd_kcontrol *kcontrol,
862                                  struct snd_ctl_elem_value *ucontrol)
863 {
864         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
865         struct alc_spec *spec = codec->spec;
866         unsigned int val = 0;
867         if (spec->automute_speaker)
868                 val++;
869         if (spec->automute_lo)
870                 val++;
871
872         ucontrol->value.enumerated.item[0] = val;
873         return 0;
874 }
875
876 static int alc_automute_mode_put(struct snd_kcontrol *kcontrol,
877                                  struct snd_ctl_elem_value *ucontrol)
878 {
879         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
880         struct alc_spec *spec = codec->spec;
881
882         switch (ucontrol->value.enumerated.item[0]) {
883         case 0:
884                 if (!spec->automute_speaker && !spec->automute_lo)
885                         return 0;
886                 spec->automute_speaker = 0;
887                 spec->automute_lo = 0;
888                 break;
889         case 1:
890                 if (spec->automute_speaker_possible) {
891                         if (!spec->automute_lo && spec->automute_speaker)
892                                 return 0;
893                         spec->automute_speaker = 1;
894                         spec->automute_lo = 0;
895                 } else if (spec->automute_lo_possible) {
896                         if (spec->automute_lo)
897                                 return 0;
898                         spec->automute_lo = 1;
899                 } else
900                         return -EINVAL;
901                 break;
902         case 2:
903                 if (!spec->automute_lo_possible || !spec->automute_speaker_possible)
904                         return -EINVAL;
905                 if (spec->automute_speaker && spec->automute_lo)
906                         return 0;
907                 spec->automute_speaker = 1;
908                 spec->automute_lo = 1;
909                 break;
910         default:
911                 return -EINVAL;
912         }
913         call_update_outputs(codec);
914         return 1;
915 }
916
917 static const struct snd_kcontrol_new alc_automute_mode_enum = {
918         .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
919         .name = "Auto-Mute Mode",
920         .info = alc_automute_mode_info,
921         .get = alc_automute_mode_get,
922         .put = alc_automute_mode_put,
923 };
924
925 static struct snd_kcontrol_new *alc_kcontrol_new(struct alc_spec *spec)
926 {
927         snd_array_init(&spec->kctls, sizeof(struct snd_kcontrol_new), 32);
928         return snd_array_new(&spec->kctls);
929 }
930
931 static int alc_add_automute_mode_enum(struct hda_codec *codec)
932 {
933         struct alc_spec *spec = codec->spec;
934         struct snd_kcontrol_new *knew;
935
936         knew = alc_kcontrol_new(spec);
937         if (!knew)
938                 return -ENOMEM;
939         *knew = alc_automute_mode_enum;
940         knew->name = kstrdup("Auto-Mute Mode", GFP_KERNEL);
941         if (!knew->name)
942                 return -ENOMEM;
943         return 0;
944 }
945
946 /*
947  * Check the availability of HP/line-out auto-mute;
948  * Set up appropriately if really supported
949  */
950 static void alc_init_automute(struct hda_codec *codec)
951 {
952         struct alc_spec *spec = codec->spec;
953         struct auto_pin_cfg *cfg = &spec->autocfg;
954         int present = 0;
955         int i;
956
957         if (cfg->hp_pins[0])
958                 present++;
959         if (cfg->line_out_pins[0])
960                 present++;
961         if (cfg->speaker_pins[0])
962                 present++;
963         if (present < 2) /* need two different output types */
964                 return;
965
966         if (!cfg->speaker_pins[0] &&
967             cfg->line_out_type == AUTO_PIN_SPEAKER_OUT) {
968                 memcpy(cfg->speaker_pins, cfg->line_out_pins,
969                        sizeof(cfg->speaker_pins));
970                 cfg->speaker_outs = cfg->line_outs;
971         }
972
973         if (!cfg->hp_pins[0] &&
974             cfg->line_out_type == AUTO_PIN_HP_OUT) {
975                 memcpy(cfg->hp_pins, cfg->line_out_pins,
976                        sizeof(cfg->hp_pins));
977                 cfg->hp_outs = cfg->line_outs;
978         }
979
980         spec->automute_mode = ALC_AUTOMUTE_PIN;
981
982         for (i = 0; i < cfg->hp_outs; i++) {
983                 hda_nid_t nid = cfg->hp_pins[i];
984                 if (!is_jack_detectable(codec, nid))
985                         continue;
986                 snd_printdd("realtek: Enable HP auto-muting on NID 0x%x\n",
987                             nid);
988                 snd_hda_jack_detect_enable(codec, nid, ALC_HP_EVENT);
989                 spec->detect_hp = 1;
990         }
991
992         if (cfg->line_out_type == AUTO_PIN_LINE_OUT && cfg->line_outs) {
993                 if (cfg->speaker_outs)
994                         for (i = 0; i < cfg->line_outs; i++) {
995                                 hda_nid_t nid = cfg->line_out_pins[i];
996                                 if (!is_jack_detectable(codec, nid))
997                                         continue;
998                                 snd_printdd("realtek: Enable Line-Out "
999                                             "auto-muting on NID 0x%x\n", nid);
1000                                 snd_hda_jack_detect_enable(codec, nid,
1001                                                            ALC_FRONT_EVENT);
1002                                 spec->detect_lo = 1;
1003                 }
1004                 spec->automute_lo_possible = spec->detect_hp;
1005         }
1006
1007         spec->automute_speaker_possible = cfg->speaker_outs &&
1008                 (spec->detect_hp || spec->detect_lo);
1009
1010         spec->automute_lo = spec->automute_lo_possible;
1011         spec->automute_speaker = spec->automute_speaker_possible;
1012
1013         if (spec->automute_speaker_possible || spec->automute_lo_possible) {
1014                 /* create a control for automute mode */
1015                 alc_add_automute_mode_enum(codec);
1016                 spec->unsol_event = alc_sku_unsol_event;
1017         }
1018 }
1019
1020 /* return the position of NID in the list, or -1 if not found */
1021 static int find_idx_in_nid_list(hda_nid_t nid, const hda_nid_t *list, int nums)
1022 {
1023         int i;
1024         for (i = 0; i < nums; i++)
1025                 if (list[i] == nid)
1026                         return i;
1027         return -1;
1028 }
1029
1030 /* check whether dynamic ADC-switching is available */
1031 static bool alc_check_dyn_adc_switch(struct hda_codec *codec)
1032 {
1033         struct alc_spec *spec = codec->spec;
1034         struct hda_input_mux *imux = &spec->private_imux[0];
1035         int i, n, idx;
1036         hda_nid_t cap, pin;
1037
1038         if (imux != spec->input_mux) /* no dynamic imux? */
1039                 return false;
1040
1041         for (n = 0; n < spec->num_adc_nids; n++) {
1042                 cap = spec->private_capsrc_nids[n];
1043                 for (i = 0; i < imux->num_items; i++) {
1044                         pin = spec->imux_pins[i];
1045                         if (!pin)
1046                                 return false;
1047                         if (get_connection_index(codec, cap, pin) < 0)
1048                                 break;
1049                 }
1050                 if (i >= imux->num_items)
1051                         return true; /* no ADC-switch is needed */
1052         }
1053
1054         for (i = 0; i < imux->num_items; i++) {
1055                 pin = spec->imux_pins[i];
1056                 for (n = 0; n < spec->num_adc_nids; n++) {
1057                         cap = spec->private_capsrc_nids[n];
1058                         idx = get_connection_index(codec, cap, pin);
1059                         if (idx >= 0) {
1060                                 imux->items[i].index = idx;
1061                                 spec->dyn_adc_idx[i] = n;
1062                                 break;
1063                         }
1064                 }
1065         }
1066
1067         snd_printdd("realtek: enabling ADC switching\n");
1068         spec->dyn_adc_switch = 1;
1069         return true;
1070 }
1071
1072 /* rebuild imux for matching with the given auto-mic pins (if not yet) */
1073 static bool alc_rebuild_imux_for_auto_mic(struct hda_codec *codec)
1074 {
1075         struct alc_spec *spec = codec->spec;
1076         struct hda_input_mux *imux;
1077         static char * const texts[3] = {
1078                 "Mic", "Internal Mic", "Dock Mic"
1079         };
1080         int i;
1081
1082         if (!spec->auto_mic)
1083                 return false;
1084         imux = &spec->private_imux[0];
1085         if (spec->input_mux == imux)
1086                 return true;
1087         spec->imux_pins[0] = spec->ext_mic_pin;
1088         spec->imux_pins[1] = spec->int_mic_pin;
1089         spec->imux_pins[2] = spec->dock_mic_pin;
1090         for (i = 0; i < 3; i++) {
1091                 strcpy(imux->items[i].label, texts[i]);
1092                 if (spec->imux_pins[i]) {
1093                         hda_nid_t pin = spec->imux_pins[i];
1094                         int c;
1095                         for (c = 0; c < spec->num_adc_nids; c++) {
1096                                 hda_nid_t cap = get_capsrc(spec, c);
1097                                 int idx = get_connection_index(codec, cap, pin);
1098                                 if (idx >= 0) {
1099                                         imux->items[i].index = idx;
1100                                         break;
1101                                 }
1102                         }
1103                         imux->num_items = i + 1;
1104                 }
1105         }
1106         spec->num_mux_defs = 1;
1107         spec->input_mux = imux;
1108         return true;
1109 }
1110
1111 /* check whether all auto-mic pins are valid; setup indices if OK */
1112 static bool alc_auto_mic_check_imux(struct hda_codec *codec)
1113 {
1114         struct alc_spec *spec = codec->spec;
1115         const struct hda_input_mux *imux;
1116
1117         if (!spec->auto_mic)
1118                 return false;
1119         if (spec->auto_mic_valid_imux)
1120                 return true; /* already checked */
1121
1122         /* fill up imux indices */
1123         if (!alc_check_dyn_adc_switch(codec)) {
1124                 spec->auto_mic = 0;
1125                 return false;
1126         }
1127
1128         imux = spec->input_mux;
1129         spec->ext_mic_idx = find_idx_in_nid_list(spec->ext_mic_pin,
1130                                         spec->imux_pins, imux->num_items);
1131         spec->int_mic_idx = find_idx_in_nid_list(spec->int_mic_pin,
1132                                         spec->imux_pins, imux->num_items);
1133         spec->dock_mic_idx = find_idx_in_nid_list(spec->dock_mic_pin,
1134                                         spec->imux_pins, imux->num_items);
1135         if (spec->ext_mic_idx < 0 || spec->int_mic_idx < 0) {
1136                 spec->auto_mic = 0;
1137                 return false; /* no corresponding imux */
1138         }
1139
1140         snd_hda_jack_detect_enable(codec, spec->ext_mic_pin, ALC_MIC_EVENT);
1141         if (spec->dock_mic_pin)
1142                 snd_hda_jack_detect_enable(codec, spec->dock_mic_pin,
1143                                            ALC_MIC_EVENT);
1144
1145         spec->auto_mic_valid_imux = 1;
1146         spec->auto_mic = 1;
1147         return true;
1148 }
1149
1150 /*
1151  * Check the availability of auto-mic switch;
1152  * Set up if really supported
1153  */
1154 static void alc_init_auto_mic(struct hda_codec *codec)
1155 {
1156         struct alc_spec *spec = codec->spec;
1157         struct auto_pin_cfg *cfg = &spec->autocfg;
1158         hda_nid_t fixed, ext, dock;
1159         int i;
1160
1161         if (spec->shared_mic_hp)
1162                 return; /* no auto-mic for the shared I/O */
1163
1164         spec->ext_mic_idx = spec->int_mic_idx = spec->dock_mic_idx = -1;
1165
1166         fixed = ext = dock = 0;
1167         for (i = 0; i < cfg->num_inputs; i++) {
1168                 hda_nid_t nid = cfg->inputs[i].pin;
1169                 unsigned int defcfg;
1170                 defcfg = snd_hda_codec_get_pincfg(codec, nid);
1171                 switch (snd_hda_get_input_pin_attr(defcfg)) {
1172                 case INPUT_PIN_ATTR_INT:
1173                         if (fixed)
1174                                 return; /* already occupied */
1175                         if (cfg->inputs[i].type != AUTO_PIN_MIC)
1176                                 return; /* invalid type */
1177                         fixed = nid;
1178                         break;
1179                 case INPUT_PIN_ATTR_UNUSED:
1180                         return; /* invalid entry */
1181                 case INPUT_PIN_ATTR_DOCK:
1182                         if (dock)
1183                                 return; /* already occupied */
1184                         if (cfg->inputs[i].type > AUTO_PIN_LINE_IN)
1185                                 return; /* invalid type */
1186                         dock = nid;
1187                         break;
1188                 default:
1189                         if (ext)
1190                                 return; /* already occupied */
1191                         if (cfg->inputs[i].type != AUTO_PIN_MIC)
1192                                 return; /* invalid type */
1193                         ext = nid;
1194                         break;
1195                 }
1196         }
1197         if (!ext && dock) {
1198                 ext = dock;
1199                 dock = 0;
1200         }
1201         if (!ext || !fixed)
1202                 return;
1203         if (!is_jack_detectable(codec, ext))
1204                 return; /* no unsol support */
1205         if (dock && !is_jack_detectable(codec, dock))
1206                 return; /* no unsol support */
1207
1208         /* check imux indices */
1209         spec->ext_mic_pin = ext;
1210         spec->int_mic_pin = fixed;
1211         spec->dock_mic_pin = dock;
1212
1213         spec->auto_mic = 1;
1214         if (!alc_auto_mic_check_imux(codec))
1215                 return;
1216
1217         snd_printdd("realtek: Enable auto-mic switch on NID 0x%x/0x%x/0x%x\n",
1218                     ext, fixed, dock);
1219         spec->unsol_event = alc_sku_unsol_event;
1220 }
1221
1222 /* check the availabilities of auto-mute and auto-mic switches */
1223 static void alc_auto_check_switches(struct hda_codec *codec)
1224 {
1225         alc_init_automute(codec);
1226         alc_init_auto_mic(codec);
1227 }
1228
1229 /*
1230  * Realtek SSID verification
1231  */
1232
1233 /* Could be any non-zero and even value. When used as fixup, tells
1234  * the driver to ignore any present sku defines.
1235  */
1236 #define ALC_FIXUP_SKU_IGNORE (2)
1237
1238 static int alc_auto_parse_customize_define(struct hda_codec *codec)
1239 {
1240         unsigned int ass, tmp, i;
1241         unsigned nid = 0;
1242         struct alc_spec *spec = codec->spec;
1243
1244         spec->cdefine.enable_pcbeep = 1; /* assume always enabled */
1245
1246         if (spec->cdefine.fixup) {
1247                 ass = spec->cdefine.sku_cfg;
1248                 if (ass == ALC_FIXUP_SKU_IGNORE)
1249                         return -1;
1250                 goto do_sku;
1251         }
1252
1253         ass = codec->subsystem_id & 0xffff;
1254         if (ass != codec->bus->pci->subsystem_device && (ass & 1))
1255                 goto do_sku;
1256
1257         nid = 0x1d;
1258         if (codec->vendor_id == 0x10ec0260)
1259                 nid = 0x17;
1260         ass = snd_hda_codec_get_pincfg(codec, nid);
1261
1262         if (!(ass & 1)) {
1263                 printk(KERN_INFO "hda_codec: %s: SKU not ready 0x%08x\n",
1264                        codec->chip_name, ass);
1265                 return -1;
1266         }
1267
1268         /* check sum */
1269         tmp = 0;
1270         for (i = 1; i < 16; i++) {
1271                 if ((ass >> i) & 1)
1272                         tmp++;
1273         }
1274         if (((ass >> 16) & 0xf) != tmp)
1275                 return -1;
1276
1277         spec->cdefine.port_connectivity = ass >> 30;
1278         spec->cdefine.enable_pcbeep = (ass & 0x100000) >> 20;
1279         spec->cdefine.check_sum = (ass >> 16) & 0xf;
1280         spec->cdefine.customization = ass >> 8;
1281 do_sku:
1282         spec->cdefine.sku_cfg = ass;
1283         spec->cdefine.external_amp = (ass & 0x38) >> 3;
1284         spec->cdefine.platform_type = (ass & 0x4) >> 2;
1285         spec->cdefine.swap = (ass & 0x2) >> 1;
1286         spec->cdefine.override = ass & 0x1;
1287
1288         snd_printd("SKU: Nid=0x%x sku_cfg=0x%08x\n",
1289                    nid, spec->cdefine.sku_cfg);
1290         snd_printd("SKU: port_connectivity=0x%x\n",
1291                    spec->cdefine.port_connectivity);
1292         snd_printd("SKU: enable_pcbeep=0x%x\n", spec->cdefine.enable_pcbeep);
1293         snd_printd("SKU: check_sum=0x%08x\n", spec->cdefine.check_sum);
1294         snd_printd("SKU: customization=0x%08x\n", spec->cdefine.customization);
1295         snd_printd("SKU: external_amp=0x%x\n", spec->cdefine.external_amp);
1296         snd_printd("SKU: platform_type=0x%x\n", spec->cdefine.platform_type);
1297         snd_printd("SKU: swap=0x%x\n", spec->cdefine.swap);
1298         snd_printd("SKU: override=0x%x\n", spec->cdefine.override);
1299
1300         return 0;
1301 }
1302
1303 /* return true if the given NID is found in the list */
1304 static bool found_in_nid_list(hda_nid_t nid, const hda_nid_t *list, int nums)
1305 {
1306         return find_idx_in_nid_list(nid, list, nums) >= 0;
1307 }
1308
1309 /* check subsystem ID and set up device-specific initialization;
1310  * return 1 if initialized, 0 if invalid SSID
1311  */
1312 /* 32-bit subsystem ID for BIOS loading in HD Audio codec.
1313  *      31 ~ 16 :       Manufacture ID
1314  *      15 ~ 8  :       SKU ID
1315  *      7  ~ 0  :       Assembly ID
1316  *      port-A --> pin 39/41, port-E --> pin 14/15, port-D --> pin 35/36
1317  */
1318 static int alc_subsystem_id(struct hda_codec *codec,
1319                             hda_nid_t porta, hda_nid_t porte,
1320                             hda_nid_t portd, hda_nid_t porti)
1321 {
1322         unsigned int ass, tmp, i;
1323         unsigned nid;
1324         struct alc_spec *spec = codec->spec;
1325
1326         if (spec->cdefine.fixup) {
1327                 ass = spec->cdefine.sku_cfg;
1328                 if (ass == ALC_FIXUP_SKU_IGNORE)
1329                         return 0;
1330                 goto do_sku;
1331         }
1332
1333         ass = codec->subsystem_id & 0xffff;
1334         if ((ass != codec->bus->pci->subsystem_device) && (ass & 1))
1335                 goto do_sku;
1336
1337         /* invalid SSID, check the special NID pin defcfg instead */
1338         /*
1339          * 31~30        : port connectivity
1340          * 29~21        : reserve
1341          * 20           : PCBEEP input
1342          * 19~16        : Check sum (15:1)
1343          * 15~1         : Custom
1344          * 0            : override
1345         */
1346         nid = 0x1d;
1347         if (codec->vendor_id == 0x10ec0260)
1348                 nid = 0x17;
1349         ass = snd_hda_codec_get_pincfg(codec, nid);
1350         snd_printd("realtek: No valid SSID, "
1351                    "checking pincfg 0x%08x for NID 0x%x\n",
1352                    ass, nid);
1353         if (!(ass & 1))
1354                 return 0;
1355         if ((ass >> 30) != 1)   /* no physical connection */
1356                 return 0;
1357
1358         /* check sum */
1359         tmp = 0;
1360         for (i = 1; i < 16; i++) {
1361                 if ((ass >> i) & 1)
1362                         tmp++;
1363         }
1364         if (((ass >> 16) & 0xf) != tmp)
1365                 return 0;
1366 do_sku:
1367         snd_printd("realtek: Enabling init ASM_ID=0x%04x CODEC_ID=%08x\n",
1368                    ass & 0xffff, codec->vendor_id);
1369         /*
1370          * 0 : override
1371          * 1 :  Swap Jack
1372          * 2 : 0 --> Desktop, 1 --> Laptop
1373          * 3~5 : External Amplifier control
1374          * 7~6 : Reserved
1375         */
1376         tmp = (ass & 0x38) >> 3;        /* external Amp control */
1377         switch (tmp) {
1378         case 1:
1379                 spec->init_amp = ALC_INIT_GPIO1;
1380                 break;
1381         case 3:
1382                 spec->init_amp = ALC_INIT_GPIO2;
1383                 break;
1384         case 7:
1385                 spec->init_amp = ALC_INIT_GPIO3;
1386                 break;
1387         case 5:
1388         default:
1389                 spec->init_amp = ALC_INIT_DEFAULT;
1390                 break;
1391         }
1392
1393         /* is laptop or Desktop and enable the function "Mute internal speaker
1394          * when the external headphone out jack is plugged"
1395          */
1396         if (!(ass & 0x8000))
1397                 return 1;
1398         /*
1399          * 10~8 : Jack location
1400          * 12~11: Headphone out -> 00: PortA, 01: PortE, 02: PortD, 03: Resvered
1401          * 14~13: Resvered
1402          * 15   : 1 --> enable the function "Mute internal speaker
1403          *              when the external headphone out jack is plugged"
1404          */
1405         if (!spec->autocfg.hp_pins[0] &&
1406             !(spec->autocfg.line_out_pins[0] &&
1407               spec->autocfg.line_out_type == AUTO_PIN_HP_OUT)) {
1408                 hda_nid_t nid;
1409                 tmp = (ass >> 11) & 0x3;        /* HP to chassis */
1410                 if (tmp == 0)
1411                         nid = porta;
1412                 else if (tmp == 1)
1413                         nid = porte;
1414                 else if (tmp == 2)
1415                         nid = portd;
1416                 else if (tmp == 3)
1417                         nid = porti;
1418                 else
1419                         return 1;
1420                 if (found_in_nid_list(nid, spec->autocfg.line_out_pins,
1421                                       spec->autocfg.line_outs))
1422                         return 1;
1423                 spec->autocfg.hp_pins[0] = nid;
1424         }
1425         return 1;
1426 }
1427
1428 /* Check the validity of ALC subsystem-id
1429  * ports contains an array of 4 pin NIDs for port-A, E, D and I */
1430 static void alc_ssid_check(struct hda_codec *codec, const hda_nid_t *ports)
1431 {
1432         if (!alc_subsystem_id(codec, ports[0], ports[1], ports[2], ports[3])) {
1433                 struct alc_spec *spec = codec->spec;
1434                 snd_printd("realtek: "
1435                            "Enable default setup for auto mode as fallback\n");
1436                 spec->init_amp = ALC_INIT_DEFAULT;
1437         }
1438 }
1439
1440 /*
1441  * Fix-up pin default configurations and add default verbs
1442  */
1443
1444 struct alc_pincfg {
1445         hda_nid_t nid;
1446         u32 val;
1447 };
1448
1449 struct alc_model_fixup {
1450         const int id;
1451         const char *name;
1452 };
1453
1454 struct alc_fixup {
1455         int type;
1456         bool chained;
1457         int chain_id;
1458         union {
1459                 unsigned int sku;
1460                 const struct alc_pincfg *pins;
1461                 const struct hda_verb *verbs;
1462                 void (*func)(struct hda_codec *codec,
1463                              const struct alc_fixup *fix,
1464                              int action);
1465         } v;
1466 };
1467
1468 enum {
1469         ALC_FIXUP_INVALID,
1470         ALC_FIXUP_SKU,
1471         ALC_FIXUP_PINS,
1472         ALC_FIXUP_VERBS,
1473         ALC_FIXUP_FUNC,
1474 };
1475
1476 enum {
1477         ALC_FIXUP_ACT_PRE_PROBE,
1478         ALC_FIXUP_ACT_PROBE,
1479         ALC_FIXUP_ACT_INIT,
1480 };
1481
1482 static void alc_apply_fixup(struct hda_codec *codec, int action)
1483 {
1484         struct alc_spec *spec = codec->spec;
1485         int id = spec->fixup_id;
1486 #ifdef CONFIG_SND_DEBUG_VERBOSE
1487         const char *modelname = spec->fixup_name;
1488 #endif
1489         int depth = 0;
1490
1491         if (!spec->fixup_list)
1492                 return;
1493
1494         while (id >= 0) {
1495                 const struct alc_fixup *fix = spec->fixup_list + id;
1496                 const struct alc_pincfg *cfg;
1497
1498                 switch (fix->type) {
1499                 case ALC_FIXUP_SKU:
1500                         if (action != ALC_FIXUP_ACT_PRE_PROBE || !fix->v.sku)
1501                                 break;
1502                         snd_printdd(KERN_INFO "hda_codec: %s: "
1503                                     "Apply sku override for %s\n",
1504                                     codec->chip_name, modelname);
1505                         spec->cdefine.sku_cfg = fix->v.sku;
1506                         spec->cdefine.fixup = 1;
1507                         break;
1508                 case ALC_FIXUP_PINS:
1509                         cfg = fix->v.pins;
1510                         if (action != ALC_FIXUP_ACT_PRE_PROBE || !cfg)
1511                                 break;
1512                         snd_printdd(KERN_INFO "hda_codec: %s: "
1513                                     "Apply pincfg for %s\n",
1514                                     codec->chip_name, modelname);
1515                         for (; cfg->nid; cfg++)
1516                                 snd_hda_codec_set_pincfg(codec, cfg->nid,
1517                                                          cfg->val);
1518                         break;
1519                 case ALC_FIXUP_VERBS:
1520                         if (action != ALC_FIXUP_ACT_PROBE || !fix->v.verbs)
1521                                 break;
1522                         snd_printdd(KERN_INFO "hda_codec: %s: "
1523                                     "Apply fix-verbs for %s\n",
1524                                     codec->chip_name, modelname);
1525                         add_verb(codec->spec, fix->v.verbs);
1526                         break;
1527                 case ALC_FIXUP_FUNC:
1528                         if (!fix->v.func)
1529                                 break;
1530                         snd_printdd(KERN_INFO "hda_codec: %s: "
1531                                     "Apply fix-func for %s\n",
1532                                     codec->chip_name, modelname);
1533                         fix->v.func(codec, fix, action);
1534                         break;
1535                 default:
1536                         snd_printk(KERN_ERR "hda_codec: %s: "
1537                                    "Invalid fixup type %d\n",
1538                                    codec->chip_name, fix->type);
1539                         break;
1540                 }
1541                 if (!fix->chained)
1542                         break;
1543                 if (++depth > 10)
1544                         break;
1545                 id = fix->chain_id;
1546         }
1547 }
1548
1549 static void alc_pick_fixup(struct hda_codec *codec,
1550                            const struct alc_model_fixup *models,
1551                            const struct snd_pci_quirk *quirk,
1552                            const struct alc_fixup *fixlist)
1553 {
1554         struct alc_spec *spec = codec->spec;
1555         const struct snd_pci_quirk *q;
1556         int id = -1;
1557         const char *name = NULL;
1558
1559         if (codec->modelname && models) {
1560                 while (models->name) {
1561                         if (!strcmp(codec->modelname, models->name)) {
1562                                 id = models->id;
1563                                 name = models->name;
1564                                 break;
1565                         }
1566                         models++;
1567                 }
1568         }
1569         if (id < 0) {
1570                 q = snd_pci_quirk_lookup(codec->bus->pci, quirk);
1571                 if (q) {
1572                         id = q->value;
1573 #ifdef CONFIG_SND_DEBUG_VERBOSE
1574                         name = q->name;
1575 #endif
1576                 }
1577         }
1578         if (id < 0) {
1579                 for (q = quirk; q->subvendor; q++) {
1580                         unsigned int vendorid =
1581                                 q->subdevice | (q->subvendor << 16);
1582                         if (vendorid == codec->subsystem_id) {
1583                                 id = q->value;
1584 #ifdef CONFIG_SND_DEBUG_VERBOSE
1585                                 name = q->name;
1586 #endif
1587                                 break;
1588                         }
1589                 }
1590         }
1591
1592         spec->fixup_id = id;
1593         if (id >= 0) {
1594                 spec->fixup_list = fixlist;
1595                 spec->fixup_name = name;
1596         }
1597 }
1598
1599 /*
1600  * COEF access helper functions
1601  */
1602 static int alc_read_coef_idx(struct hda_codec *codec,
1603                         unsigned int coef_idx)
1604 {
1605         unsigned int val;
1606         snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX,
1607                                 coef_idx);
1608         val = snd_hda_codec_read(codec, 0x20, 0,
1609                                 AC_VERB_GET_PROC_COEF, 0);
1610         return val;
1611 }
1612
1613 static void alc_write_coef_idx(struct hda_codec *codec, unsigned int coef_idx,
1614                                                         unsigned int coef_val)
1615 {
1616         snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX,
1617                             coef_idx);
1618         snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_PROC_COEF,
1619                             coef_val);
1620 }
1621
1622 /* a special bypass for COEF 0; read the cached value at the second time */
1623 static unsigned int alc_get_coef0(struct hda_codec *codec)
1624 {
1625         struct alc_spec *spec = codec->spec;
1626         if (!spec->coef0)
1627                 spec->coef0 = alc_read_coef_idx(codec, 0);
1628         return spec->coef0;
1629 }
1630
1631 /*
1632  * Digital I/O handling
1633  */
1634
1635 /* set right pin controls for digital I/O */
1636 static void alc_auto_init_digital(struct hda_codec *codec)
1637 {
1638         struct alc_spec *spec = codec->spec;
1639         int i;
1640         hda_nid_t pin, dac;
1641
1642         for (i = 0; i < spec->autocfg.dig_outs; i++) {
1643                 pin = spec->autocfg.dig_out_pins[i];
1644                 if (!pin)
1645                         continue;
1646                 snd_hda_codec_write(codec, pin, 0,
1647                                     AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
1648                 if (!i)
1649                         dac = spec->multiout.dig_out_nid;
1650                 else
1651                         dac = spec->slave_dig_outs[i - 1];
1652                 if (!dac || !(get_wcaps(codec, dac) & AC_WCAP_OUT_AMP))
1653                         continue;
1654                 snd_hda_codec_write(codec, dac, 0,
1655                                     AC_VERB_SET_AMP_GAIN_MUTE,
1656                                     AMP_OUT_UNMUTE);
1657         }
1658         pin = spec->autocfg.dig_in_pin;
1659         if (pin)
1660                 snd_hda_codec_write(codec, pin, 0,
1661                                     AC_VERB_SET_PIN_WIDGET_CONTROL,
1662                                     PIN_IN);
1663 }
1664
1665 /* parse digital I/Os and set up NIDs in BIOS auto-parse mode */
1666 static void alc_auto_parse_digital(struct hda_codec *codec)
1667 {
1668         struct alc_spec *spec = codec->spec;
1669         int i, err, nums;
1670         hda_nid_t dig_nid;
1671
1672         /* support multiple SPDIFs; the secondary is set up as a slave */
1673         nums = 0;
1674         for (i = 0; i < spec->autocfg.dig_outs; i++) {
1675                 hda_nid_t conn[4];
1676                 err = snd_hda_get_connections(codec,
1677                                               spec->autocfg.dig_out_pins[i],
1678                                               conn, ARRAY_SIZE(conn));
1679                 if (err <= 0)
1680                         continue;
1681                 dig_nid = conn[0]; /* assume the first element is audio-out */
1682                 if (!nums) {
1683                         spec->multiout.dig_out_nid = dig_nid;
1684                         spec->dig_out_type = spec->autocfg.dig_out_type[0];
1685                 } else {
1686                         spec->multiout.slave_dig_outs = spec->slave_dig_outs;
1687                         if (nums >= ARRAY_SIZE(spec->slave_dig_outs) - 1)
1688                                 break;
1689                         spec->slave_dig_outs[nums - 1] = dig_nid;
1690                 }
1691                 nums++;
1692         }
1693
1694         if (spec->autocfg.dig_in_pin) {
1695                 dig_nid = codec->start_nid;
1696                 for (i = 0; i < codec->num_nodes; i++, dig_nid++) {
1697                         unsigned int wcaps = get_wcaps(codec, dig_nid);
1698                         if (get_wcaps_type(wcaps) != AC_WID_AUD_IN)
1699                                 continue;
1700                         if (!(wcaps & AC_WCAP_DIGITAL))
1701                                 continue;
1702                         if (!(wcaps & AC_WCAP_CONN_LIST))
1703                                 continue;
1704                         err = get_connection_index(codec, dig_nid,
1705                                                    spec->autocfg.dig_in_pin);
1706                         if (err >= 0) {
1707                                 spec->dig_in_nid = dig_nid;
1708                                 break;
1709                         }
1710                 }
1711         }
1712 }
1713
1714 /*
1715  * capture mixer elements
1716  */
1717 static int alc_cap_vol_info(struct snd_kcontrol *kcontrol,
1718                             struct snd_ctl_elem_info *uinfo)
1719 {
1720         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1721         struct alc_spec *spec = codec->spec;
1722         unsigned long val;
1723         int err;
1724
1725         mutex_lock(&codec->control_mutex);
1726         if (spec->vol_in_capsrc)
1727                 val = HDA_COMPOSE_AMP_VAL(spec->capsrc_nids[0], 3, 0, HDA_OUTPUT);
1728         else
1729                 val = HDA_COMPOSE_AMP_VAL(spec->adc_nids[0], 3, 0, HDA_INPUT);
1730         kcontrol->private_value = val;
1731         err = snd_hda_mixer_amp_volume_info(kcontrol, uinfo);
1732         mutex_unlock(&codec->control_mutex);
1733         return err;
1734 }
1735
1736 static int alc_cap_vol_tlv(struct snd_kcontrol *kcontrol, int op_flag,
1737                            unsigned int size, unsigned int __user *tlv)
1738 {
1739         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1740         struct alc_spec *spec = codec->spec;
1741         unsigned long val;
1742         int err;
1743
1744         mutex_lock(&codec->control_mutex);
1745         if (spec->vol_in_capsrc)
1746                 val = HDA_COMPOSE_AMP_VAL(spec->capsrc_nids[0], 3, 0, HDA_OUTPUT);
1747         else
1748                 val = HDA_COMPOSE_AMP_VAL(spec->adc_nids[0], 3, 0, HDA_INPUT);
1749         kcontrol->private_value = val;
1750         err = snd_hda_mixer_amp_tlv(kcontrol, op_flag, size, tlv);
1751         mutex_unlock(&codec->control_mutex);
1752         return err;
1753 }
1754
1755 typedef int (*getput_call_t)(struct snd_kcontrol *kcontrol,
1756                              struct snd_ctl_elem_value *ucontrol);
1757
1758 static int alc_cap_getput_caller(struct snd_kcontrol *kcontrol,
1759                                  struct snd_ctl_elem_value *ucontrol,
1760                                  getput_call_t func, bool check_adc_switch)
1761 {
1762         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1763         struct alc_spec *spec = codec->spec;
1764         int i, err = 0;
1765
1766         mutex_lock(&codec->control_mutex);
1767         if (check_adc_switch && spec->dyn_adc_switch) {
1768                 for (i = 0; i < spec->num_adc_nids; i++) {
1769                         kcontrol->private_value =
1770                                 HDA_COMPOSE_AMP_VAL(spec->adc_nids[i],
1771                                                     3, 0, HDA_INPUT);
1772                         err = func(kcontrol, ucontrol);
1773                         if (err < 0)
1774                                 goto error;
1775                 }
1776         } else {
1777                 i = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
1778                 if (spec->vol_in_capsrc)
1779                         kcontrol->private_value =
1780                                 HDA_COMPOSE_AMP_VAL(spec->capsrc_nids[i],
1781                                                     3, 0, HDA_OUTPUT);
1782                 else
1783                         kcontrol->private_value =
1784                                 HDA_COMPOSE_AMP_VAL(spec->adc_nids[i],
1785                                                     3, 0, HDA_INPUT);
1786                 err = func(kcontrol, ucontrol);
1787         }
1788  error:
1789         mutex_unlock(&codec->control_mutex);
1790         return err;
1791 }
1792
1793 static int alc_cap_vol_get(struct snd_kcontrol *kcontrol,
1794                            struct snd_ctl_elem_value *ucontrol)
1795 {
1796         return alc_cap_getput_caller(kcontrol, ucontrol,
1797                                      snd_hda_mixer_amp_volume_get, false);
1798 }
1799
1800 static int alc_cap_vol_put(struct snd_kcontrol *kcontrol,
1801                            struct snd_ctl_elem_value *ucontrol)
1802 {
1803         return alc_cap_getput_caller(kcontrol, ucontrol,
1804                                      snd_hda_mixer_amp_volume_put, true);
1805 }
1806
1807 /* capture mixer elements */
1808 #define alc_cap_sw_info         snd_ctl_boolean_stereo_info
1809
1810 static int alc_cap_sw_get(struct snd_kcontrol *kcontrol,
1811                           struct snd_ctl_elem_value *ucontrol)
1812 {
1813         return alc_cap_getput_caller(kcontrol, ucontrol,
1814                                      snd_hda_mixer_amp_switch_get, false);
1815 }
1816
1817 static int alc_cap_sw_put(struct snd_kcontrol *kcontrol,
1818                           struct snd_ctl_elem_value *ucontrol)
1819 {
1820         return alc_cap_getput_caller(kcontrol, ucontrol,
1821                                      snd_hda_mixer_amp_switch_put, true);
1822 }
1823
1824 #define _DEFINE_CAPMIX(num) \
1825         { \
1826                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1827                 .name = "Capture Switch", \
1828                 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE, \
1829                 .count = num, \
1830                 .info = alc_cap_sw_info, \
1831                 .get = alc_cap_sw_get, \
1832                 .put = alc_cap_sw_put, \
1833         }, \
1834         { \
1835                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1836                 .name = "Capture Volume", \
1837                 .access = (SNDRV_CTL_ELEM_ACCESS_READWRITE | \
1838                            SNDRV_CTL_ELEM_ACCESS_TLV_READ | \
1839                            SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK), \
1840                 .count = num, \
1841                 .info = alc_cap_vol_info, \
1842                 .get = alc_cap_vol_get, \
1843                 .put = alc_cap_vol_put, \
1844                 .tlv = { .c = alc_cap_vol_tlv }, \
1845         }
1846
1847 #define _DEFINE_CAPSRC(num) \
1848         { \
1849                 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1850                 /* .name = "Capture Source", */ \
1851                 .name = "Input Source", \
1852                 .count = num, \
1853                 .info = alc_mux_enum_info, \
1854                 .get = alc_mux_enum_get, \
1855                 .put = alc_mux_enum_put, \
1856         }
1857
1858 #define DEFINE_CAPMIX(num) \
1859 static const struct snd_kcontrol_new alc_capture_mixer ## num[] = { \
1860         _DEFINE_CAPMIX(num),                                  \
1861         _DEFINE_CAPSRC(num),                                  \
1862         { } /* end */                                         \
1863 }
1864
1865 #define DEFINE_CAPMIX_NOSRC(num) \
1866 static const struct snd_kcontrol_new alc_capture_mixer_nosrc ## num[] = { \
1867         _DEFINE_CAPMIX(num),                                        \
1868         { } /* end */                                               \
1869 }
1870
1871 /* up to three ADCs */
1872 DEFINE_CAPMIX(1);
1873 DEFINE_CAPMIX(2);
1874 DEFINE_CAPMIX(3);
1875 DEFINE_CAPMIX_NOSRC(1);
1876 DEFINE_CAPMIX_NOSRC(2);
1877 DEFINE_CAPMIX_NOSRC(3);
1878
1879 /*
1880  * virtual master controls
1881  */
1882
1883 /*
1884  * slave controls for virtual master
1885  */
1886 static const char * const alc_slave_pfxs[] = {
1887         "Front", "Surround", "Center", "LFE", "Side",
1888         "Headphone", "Speaker", "Mono", "Line-Out",
1889         "CLFE", "Bass Speaker", "PCM",
1890         NULL,
1891 };
1892
1893 /*
1894  * build control elements
1895  */
1896
1897 #define NID_MAPPING             (-1)
1898
1899 #define SUBDEV_SPEAKER_         (0 << 6)
1900 #define SUBDEV_HP_              (1 << 6)
1901 #define SUBDEV_LINE_            (2 << 6)
1902 #define SUBDEV_SPEAKER(x)       (SUBDEV_SPEAKER_ | ((x) & 0x3f))
1903 #define SUBDEV_HP(x)            (SUBDEV_HP_ | ((x) & 0x3f))
1904 #define SUBDEV_LINE(x)          (SUBDEV_LINE_ | ((x) & 0x3f))
1905
1906 static void alc_free_kctls(struct hda_codec *codec);
1907
1908 #ifdef CONFIG_SND_HDA_INPUT_BEEP
1909 /* additional beep mixers; the actual parameters are overwritten at build */
1910 static const struct snd_kcontrol_new alc_beep_mixer[] = {
1911         HDA_CODEC_VOLUME("Beep Playback Volume", 0, 0, HDA_INPUT),
1912         HDA_CODEC_MUTE_BEEP("Beep Playback Switch", 0, 0, HDA_INPUT),
1913         { } /* end */
1914 };
1915 #endif
1916
1917 static int __alc_build_controls(struct hda_codec *codec)
1918 {
1919         struct alc_spec *spec = codec->spec;
1920         struct snd_kcontrol *kctl = NULL;
1921         const struct snd_kcontrol_new *knew;
1922         int i, j, err;
1923         unsigned int u;
1924         hda_nid_t nid;
1925
1926         for (i = 0; i < spec->num_mixers; i++) {
1927                 err = snd_hda_add_new_ctls(codec, spec->mixers[i]);
1928                 if (err < 0)
1929                         return err;
1930         }
1931         if (spec->cap_mixer) {
1932                 err = snd_hda_add_new_ctls(codec, spec->cap_mixer);
1933                 if (err < 0)
1934                         return err;
1935         }
1936         if (spec->multiout.dig_out_nid) {
1937                 err = snd_hda_create_spdif_out_ctls(codec,
1938                                                     spec->multiout.dig_out_nid,
1939                                                     spec->multiout.dig_out_nid);
1940                 if (err < 0)
1941                         return err;
1942                 if (!spec->no_analog) {
1943                         err = snd_hda_create_spdif_share_sw(codec,
1944                                                             &spec->multiout);
1945                         if (err < 0)
1946                                 return err;
1947                         spec->multiout.share_spdif = 1;
1948                 }
1949         }
1950         if (spec->dig_in_nid) {
1951                 err = snd_hda_create_spdif_in_ctls(codec, spec->dig_in_nid);
1952                 if (err < 0)
1953                         return err;
1954         }
1955
1956 #ifdef CONFIG_SND_HDA_INPUT_BEEP
1957         /* create beep controls if needed */
1958         if (spec->beep_amp) {
1959                 const struct snd_kcontrol_new *knew;
1960                 for (knew = alc_beep_mixer; knew->name; knew++) {
1961                         struct snd_kcontrol *kctl;
1962                         kctl = snd_ctl_new1(knew, codec);
1963                         if (!kctl)
1964                                 return -ENOMEM;
1965                         kctl->private_value = spec->beep_amp;
1966                         err = snd_hda_ctl_add(codec, 0, kctl);
1967                         if (err < 0)
1968                                 return err;
1969                 }
1970         }
1971 #endif
1972
1973         /* if we have no master control, let's create it */
1974         if (!spec->no_analog &&
1975             !snd_hda_find_mixer_ctl(codec, "Master Playback Volume")) {
1976                 unsigned int vmaster_tlv[4];
1977                 snd_hda_set_vmaster_tlv(codec, spec->vmaster_nid,
1978                                         HDA_OUTPUT, vmaster_tlv);
1979                 err = snd_hda_add_vmaster(codec, "Master Playback Volume",
1980                                           vmaster_tlv, alc_slave_pfxs,
1981                                           "Playback Volume");
1982                 if (err < 0)
1983                         return err;
1984         }
1985         if (!spec->no_analog &&
1986             !snd_hda_find_mixer_ctl(codec, "Master Playback Switch")) {
1987                 err = snd_hda_add_vmaster(codec, "Master Playback Switch",
1988                                           NULL, alc_slave_pfxs,
1989                                           "Playback Switch");
1990                 if (err < 0)
1991                         return err;
1992         }
1993
1994         /* assign Capture Source enums to NID */
1995         if (spec->capsrc_nids || spec->adc_nids) {
1996                 kctl = snd_hda_find_mixer_ctl(codec, "Capture Source");
1997                 if (!kctl)
1998                         kctl = snd_hda_find_mixer_ctl(codec, "Input Source");
1999                 for (i = 0; kctl && i < kctl->count; i++) {
2000                         err = snd_hda_add_nid(codec, kctl, i,
2001                                               get_capsrc(spec, i));
2002                         if (err < 0)
2003                                 return err;
2004                 }
2005         }
2006         if (spec->cap_mixer && spec->adc_nids) {
2007                 const char *kname = kctl ? kctl->id.name : NULL;
2008                 for (knew = spec->cap_mixer; knew->name; knew++) {
2009                         if (kname && strcmp(knew->name, kname) == 0)
2010                                 continue;
2011                         kctl = snd_hda_find_mixer_ctl(codec, knew->name);
2012                         for (i = 0; kctl && i < kctl->count; i++) {
2013                                 err = snd_hda_add_nid(codec, kctl, i,
2014                                                       spec->adc_nids[i]);
2015                                 if (err < 0)
2016                                         return err;
2017                         }
2018                 }
2019         }
2020
2021         /* other nid->control mapping */
2022         for (i = 0; i < spec->num_mixers; i++) {
2023                 for (knew = spec->mixers[i]; knew->name; knew++) {
2024                         if (knew->iface != NID_MAPPING)
2025                                 continue;
2026                         kctl = snd_hda_find_mixer_ctl(codec, knew->name);
2027                         if (kctl == NULL)
2028                                 continue;
2029                         u = knew->subdevice;
2030                         for (j = 0; j < 4; j++, u >>= 8) {
2031                                 nid = u & 0x3f;
2032                                 if (nid == 0)
2033                                         continue;
2034                                 switch (u & 0xc0) {
2035                                 case SUBDEV_SPEAKER_:
2036                                         nid = spec->autocfg.speaker_pins[nid];
2037                                         break;
2038                                 case SUBDEV_LINE_:
2039                                         nid = spec->autocfg.line_out_pins[nid];
2040                                         break;
2041                                 case SUBDEV_HP_:
2042                                         nid = spec->autocfg.hp_pins[nid];
2043                                         break;
2044                                 default:
2045                                         continue;
2046                                 }
2047                                 err = snd_hda_add_nid(codec, kctl, 0, nid);
2048                                 if (err < 0)
2049                                         return err;
2050                         }
2051                         u = knew->private_value;
2052                         for (j = 0; j < 4; j++, u >>= 8) {
2053                                 nid = u & 0xff;
2054                                 if (nid == 0)
2055                                         continue;
2056                                 err = snd_hda_add_nid(codec, kctl, 0, nid);
2057                                 if (err < 0)
2058                                         return err;
2059                         }
2060                 }
2061         }
2062
2063         alc_free_kctls(codec); /* no longer needed */
2064
2065         return 0;
2066 }
2067
2068 static int alc_build_controls(struct hda_codec *codec)
2069 {
2070         struct alc_spec *spec = codec->spec;
2071         int err = __alc_build_controls(codec);
2072         if (err < 0)
2073                 return err;
2074         return snd_hda_jack_add_kctls(codec, &spec->autocfg);
2075 }
2076
2077
2078 /*
2079  * Common callbacks
2080  */
2081
2082 static void alc_init_special_input_src(struct hda_codec *codec);
2083
2084 static int alc_init(struct hda_codec *codec)
2085 {
2086         struct alc_spec *spec = codec->spec;
2087         unsigned int i;
2088
2089         alc_fix_pll(codec);
2090         alc_auto_init_amp(codec, spec->init_amp);
2091
2092         for (i = 0; i < spec->num_init_verbs; i++)
2093                 snd_hda_sequence_write(codec, spec->init_verbs[i]);
2094         alc_init_special_input_src(codec);
2095
2096         if (spec->init_hook)
2097                 spec->init_hook(codec);
2098
2099         alc_apply_fixup(codec, ALC_FIXUP_ACT_INIT);
2100
2101         snd_hda_jack_report_sync(codec);
2102
2103         hda_call_check_power_status(codec, 0x01);
2104         return 0;
2105 }
2106
2107 static void alc_unsol_event(struct hda_codec *codec, unsigned int res)
2108 {
2109         struct alc_spec *spec = codec->spec;
2110
2111         if (spec->unsol_event)
2112                 spec->unsol_event(codec, res);
2113 }
2114
2115 #ifdef CONFIG_SND_HDA_POWER_SAVE
2116 static int alc_check_power_status(struct hda_codec *codec, hda_nid_t nid)
2117 {
2118         struct alc_spec *spec = codec->spec;
2119         return snd_hda_check_amp_list_power(codec, &spec->loopback, nid);
2120 }
2121 #endif
2122
2123 /*
2124  * Analog playback callbacks
2125  */
2126 static int alc_playback_pcm_open(struct hda_pcm_stream *hinfo,
2127                                     struct hda_codec *codec,
2128                                     struct snd_pcm_substream *substream)
2129 {
2130         struct alc_spec *spec = codec->spec;
2131         return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream,
2132                                              hinfo);
2133 }
2134
2135 static int alc_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
2136                                        struct hda_codec *codec,
2137                                        unsigned int stream_tag,
2138                                        unsigned int format,
2139                                        struct snd_pcm_substream *substream)
2140 {
2141         struct alc_spec *spec = codec->spec;
2142         return snd_hda_multi_out_analog_prepare(codec, &spec->multiout,
2143                                                 stream_tag, format, substream);
2144 }
2145
2146 static int alc_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
2147                                        struct hda_codec *codec,
2148                                        struct snd_pcm_substream *substream)
2149 {
2150         struct alc_spec *spec = codec->spec;
2151         return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout);
2152 }
2153
2154 /*
2155  * Digital out
2156  */
2157 static int alc_dig_playback_pcm_open(struct hda_pcm_stream *hinfo,
2158                                         struct hda_codec *codec,
2159                                         struct snd_pcm_substream *substream)
2160 {
2161         struct alc_spec *spec = codec->spec;
2162         return snd_hda_multi_out_dig_open(codec, &spec->multiout);
2163 }
2164
2165 static int alc_dig_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
2166                                            struct hda_codec *codec,
2167                                            unsigned int stream_tag,
2168                                            unsigned int format,
2169                                            struct snd_pcm_substream *substream)
2170 {
2171         struct alc_spec *spec = codec->spec;
2172         return snd_hda_multi_out_dig_prepare(codec, &spec->multiout,
2173                                              stream_tag, format, substream);
2174 }
2175
2176 static int alc_dig_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
2177                                            struct hda_codec *codec,
2178                                            struct snd_pcm_substream *substream)
2179 {
2180         struct alc_spec *spec = codec->spec;
2181         return snd_hda_multi_out_dig_cleanup(codec, &spec->multiout);
2182 }
2183
2184 static int alc_dig_playback_pcm_close(struct hda_pcm_stream *hinfo,
2185                                          struct hda_codec *codec,
2186                                          struct snd_pcm_substream *substream)
2187 {
2188         struct alc_spec *spec = codec->spec;
2189         return snd_hda_multi_out_dig_close(codec, &spec->multiout);
2190 }
2191
2192 /*
2193  * Analog capture
2194  */
2195 static int alc_alt_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
2196                                       struct hda_codec *codec,
2197                                       unsigned int stream_tag,
2198                                       unsigned int format,
2199                                       struct snd_pcm_substream *substream)
2200 {
2201         struct alc_spec *spec = codec->spec;
2202
2203         snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number + 1],
2204                                    stream_tag, 0, format);
2205         return 0;
2206 }
2207
2208 static int alc_alt_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
2209                                       struct hda_codec *codec,
2210                                       struct snd_pcm_substream *substream)
2211 {
2212         struct alc_spec *spec = codec->spec;
2213
2214         snd_hda_codec_cleanup_stream(codec,
2215                                      spec->adc_nids[substream->number + 1]);
2216         return 0;
2217 }
2218
2219 /* analog capture with dynamic dual-adc changes */
2220 static int dyn_adc_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
2221                                        struct hda_codec *codec,
2222                                        unsigned int stream_tag,
2223                                        unsigned int format,
2224                                        struct snd_pcm_substream *substream)
2225 {
2226         struct alc_spec *spec = codec->spec;
2227         spec->cur_adc = spec->adc_nids[spec->dyn_adc_idx[spec->cur_mux[0]]];
2228         spec->cur_adc_stream_tag = stream_tag;
2229         spec->cur_adc_format = format;
2230         snd_hda_codec_setup_stream(codec, spec->cur_adc, stream_tag, 0, format);
2231         return 0;
2232 }
2233
2234 static int dyn_adc_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
2235                                        struct hda_codec *codec,
2236                                        struct snd_pcm_substream *substream)
2237 {
2238         struct alc_spec *spec = codec->spec;
2239         snd_hda_codec_cleanup_stream(codec, spec->cur_adc);
2240         spec->cur_adc = 0;
2241         return 0;
2242 }
2243
2244 static const struct hda_pcm_stream dyn_adc_pcm_analog_capture = {
2245         .substreams = 1,
2246         .channels_min = 2,
2247         .channels_max = 2,
2248         .nid = 0, /* fill later */
2249         .ops = {
2250                 .prepare = dyn_adc_capture_pcm_prepare,
2251                 .cleanup = dyn_adc_capture_pcm_cleanup
2252         },
2253 };
2254
2255 /*
2256  */
2257 static const struct hda_pcm_stream alc_pcm_analog_playback = {
2258         .substreams = 1,
2259         .channels_min = 2,
2260         .channels_max = 8,
2261         /* NID is set in alc_build_pcms */
2262         .ops = {
2263                 .open = alc_playback_pcm_open,
2264                 .prepare = alc_playback_pcm_prepare,
2265                 .cleanup = alc_playback_pcm_cleanup
2266         },
2267 };
2268
2269 static const struct hda_pcm_stream alc_pcm_analog_capture = {
2270         .substreams = 1,
2271         .channels_min = 2,
2272         .channels_max = 2,
2273         /* NID is set in alc_build_pcms */
2274 };
2275
2276 static const struct hda_pcm_stream alc_pcm_analog_alt_playback = {
2277         .substreams = 1,
2278         .channels_min = 2,
2279         .channels_max = 2,
2280         /* NID is set in alc_build_pcms */
2281 };
2282
2283 static const struct hda_pcm_stream alc_pcm_analog_alt_capture = {
2284         .substreams = 2, /* can be overridden */
2285         .channels_min = 2,
2286         .channels_max = 2,
2287         /* NID is set in alc_build_pcms */
2288         .ops = {
2289                 .prepare = alc_alt_capture_pcm_prepare,
2290                 .cleanup = alc_alt_capture_pcm_cleanup
2291         },
2292 };
2293
2294 static const struct hda_pcm_stream alc_pcm_digital_playback = {
2295         .substreams = 1,
2296         .channels_min = 2,
2297         .channels_max = 2,
2298         /* NID is set in alc_build_pcms */
2299         .ops = {
2300                 .open = alc_dig_playback_pcm_open,
2301                 .close = alc_dig_playback_pcm_close,
2302                 .prepare = alc_dig_playback_pcm_prepare,
2303                 .cleanup = alc_dig_playback_pcm_cleanup
2304         },
2305 };
2306
2307 static const struct hda_pcm_stream alc_pcm_digital_capture = {
2308         .substreams = 1,
2309         .channels_min = 2,
2310         .channels_max = 2,
2311         /* NID is set in alc_build_pcms */
2312 };
2313
2314 /* Used by alc_build_pcms to flag that a PCM has no playback stream */
2315 static const struct hda_pcm_stream alc_pcm_null_stream = {
2316         .substreams = 0,
2317         .channels_min = 0,
2318         .channels_max = 0,
2319 };
2320
2321 static int alc_build_pcms(struct hda_codec *codec)
2322 {
2323         struct alc_spec *spec = codec->spec;
2324         struct hda_pcm *info = spec->pcm_rec;
2325         const struct hda_pcm_stream *p;
2326         bool have_multi_adcs;
2327         int i;
2328
2329         codec->num_pcms = 1;
2330         codec->pcm_info = info;
2331
2332         if (spec->no_analog)
2333                 goto skip_analog;
2334
2335         snprintf(spec->stream_name_analog, sizeof(spec->stream_name_analog),
2336                  "%s Analog", codec->chip_name);
2337         info->name = spec->stream_name_analog;
2338
2339         if (spec->multiout.num_dacs > 0) {
2340                 p = spec->stream_analog_playback;
2341                 if (!p)
2342                         p = &alc_pcm_analog_playback;
2343                 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = *p;
2344                 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dac_nids[0];
2345         }
2346         if (spec->adc_nids) {
2347                 p = spec->stream_analog_capture;
2348                 if (!p) {
2349                         if (spec->dyn_adc_switch)
2350                                 p = &dyn_adc_pcm_analog_capture;
2351                         else
2352                                 p = &alc_pcm_analog_capture;
2353                 }
2354                 info->stream[SNDRV_PCM_STREAM_CAPTURE] = *p;
2355                 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[0];
2356         }
2357
2358         if (spec->channel_mode) {
2359                 info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max = 0;
2360                 for (i = 0; i < spec->num_channel_mode; i++) {
2361                         if (spec->channel_mode[i].channels > info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max) {
2362                                 info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max = spec->channel_mode[i].channels;
2363                         }
2364                 }
2365         }
2366
2367  skip_analog:
2368         /* SPDIF for stream index #1 */
2369         if (spec->multiout.dig_out_nid || spec->dig_in_nid) {
2370                 snprintf(spec->stream_name_digital,
2371                          sizeof(spec->stream_name_digital),
2372                          "%s Digital", codec->chip_name);
2373                 codec->num_pcms = 2;
2374                 codec->slave_dig_outs = spec->multiout.slave_dig_outs;
2375                 info = spec->pcm_rec + 1;
2376                 info->name = spec->stream_name_digital;
2377                 if (spec->dig_out_type)
2378                         info->pcm_type = spec->dig_out_type;
2379                 else
2380                         info->pcm_type = HDA_PCM_TYPE_SPDIF;
2381                 if (spec->multiout.dig_out_nid) {
2382                         p = spec->stream_digital_playback;
2383                         if (!p)
2384                                 p = &alc_pcm_digital_playback;
2385                         info->stream[SNDRV_PCM_STREAM_PLAYBACK] = *p;
2386                         info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dig_out_nid;
2387                 }
2388                 if (spec->dig_in_nid) {
2389                         p = spec->stream_digital_capture;
2390                         if (!p)
2391                                 p = &alc_pcm_digital_capture;
2392                         info->stream[SNDRV_PCM_STREAM_CAPTURE] = *p;
2393                         info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->dig_in_nid;
2394                 }
2395                 /* FIXME: do we need this for all Realtek codec models? */
2396                 codec->spdif_status_reset = 1;
2397         }
2398
2399         if (spec->no_analog)
2400                 return 0;
2401
2402         /* If the use of more than one ADC is requested for the current
2403          * model, configure a second analog capture-only PCM.
2404          */
2405         have_multi_adcs = (spec->num_adc_nids > 1) &&
2406                 !spec->dyn_adc_switch && !spec->auto_mic &&
2407                 (!spec->input_mux || spec->input_mux->num_items > 1);
2408         /* Additional Analaog capture for index #2 */
2409         if (spec->alt_dac_nid || have_multi_adcs) {
2410                 codec->num_pcms = 3;
2411                 info = spec->pcm_rec + 2;
2412                 info->name = spec->stream_name_analog;
2413                 if (spec->alt_dac_nid) {
2414                         p = spec->stream_analog_alt_playback;
2415                         if (!p)
2416                                 p = &alc_pcm_analog_alt_playback;
2417                         info->stream[SNDRV_PCM_STREAM_PLAYBACK] = *p;
2418                         info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid =
2419                                 spec->alt_dac_nid;
2420                 } else {
2421                         info->stream[SNDRV_PCM_STREAM_PLAYBACK] =
2422                                 alc_pcm_null_stream;
2423                         info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = 0;
2424                 }
2425                 if (have_multi_adcs) {
2426                         p = spec->stream_analog_alt_capture;
2427                         if (!p)
2428                                 p = &alc_pcm_analog_alt_capture;
2429                         info->stream[SNDRV_PCM_STREAM_CAPTURE] = *p;
2430                         info->stream[SNDRV_PCM_STREAM_CAPTURE].nid =
2431                                 spec->adc_nids[1];
2432                         info->stream[SNDRV_PCM_STREAM_CAPTURE].substreams =
2433                                 spec->num_adc_nids - 1;
2434                 } else {
2435                         info->stream[SNDRV_PCM_STREAM_CAPTURE] =
2436                                 alc_pcm_null_stream;
2437                         info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = 0;
2438                 }
2439         }
2440
2441         return 0;
2442 }
2443
2444 static inline void alc_shutup(struct hda_codec *codec)
2445 {
2446         struct alc_spec *spec = codec->spec;
2447
2448         if (spec && spec->shutup)
2449                 spec->shutup(codec);
2450         snd_hda_shutup_pins(codec);
2451 }
2452
2453 static void alc_free_kctls(struct hda_codec *codec)
2454 {
2455         struct alc_spec *spec = codec->spec;
2456
2457         if (spec->kctls.list) {
2458                 struct snd_kcontrol_new *kctl = spec->kctls.list;
2459                 int i;
2460                 for (i = 0; i < spec->kctls.used; i++)
2461                         kfree(kctl[i].name);
2462         }
2463         snd_array_free(&spec->kctls);
2464 }
2465
2466 static void alc_free_bind_ctls(struct hda_codec *codec)
2467 {
2468         struct alc_spec *spec = codec->spec;
2469         if (spec->bind_ctls.list) {
2470                 struct hda_bind_ctls **ctl = spec->bind_ctls.list;
2471                 int i;
2472                 for (i = 0; i < spec->bind_ctls.used; i++)
2473                         kfree(ctl[i]);
2474         }
2475         snd_array_free(&spec->bind_ctls);
2476 }
2477
2478 static void alc_free(struct hda_codec *codec)
2479 {
2480         struct alc_spec *spec = codec->spec;
2481
2482         if (!spec)
2483                 return;
2484
2485         alc_shutup(codec);
2486         alc_free_kctls(codec);
2487         alc_free_bind_ctls(codec);
2488         kfree(spec);
2489         snd_hda_detach_beep_device(codec);
2490 }
2491
2492 #ifdef CONFIG_SND_HDA_POWER_SAVE
2493 static void alc_power_eapd(struct hda_codec *codec)
2494 {
2495         alc_auto_setup_eapd(codec, false);
2496 }
2497
2498 static int alc_suspend(struct hda_codec *codec, pm_message_t state)
2499 {
2500         struct alc_spec *spec = codec->spec;
2501         alc_shutup(codec);
2502         if (spec && spec->power_hook)
2503                 spec->power_hook(codec);
2504         return 0;
2505 }
2506 #endif
2507
2508 #ifdef CONFIG_PM
2509 static int alc_resume(struct hda_codec *codec)
2510 {
2511         msleep(150); /* to avoid pop noise */
2512         codec->patch_ops.init(codec);
2513         snd_hda_codec_resume_amp(codec);
2514         snd_hda_codec_resume_cache(codec);
2515         hda_call_check_power_status(codec, 0x01);
2516         return 0;
2517 }
2518 #endif
2519
2520 /*
2521  */
2522 static const struct hda_codec_ops alc_patch_ops = {
2523         .build_controls = alc_build_controls,
2524         .build_pcms = alc_build_pcms,
2525         .init = alc_init,
2526         .free = alc_free,
2527         .unsol_event = alc_unsol_event,
2528 #ifdef CONFIG_PM
2529         .resume = alc_resume,
2530 #endif
2531 #ifdef CONFIG_SND_HDA_POWER_SAVE
2532         .suspend = alc_suspend,
2533         .check_power_status = alc_check_power_status,
2534 #endif
2535         .reboot_notify = alc_shutup,
2536 };
2537
2538 /* replace the codec chip_name with the given string */
2539 static int alc_codec_rename(struct hda_codec *codec, const char *name)
2540 {
2541         kfree(codec->chip_name);
2542         codec->chip_name = kstrdup(name, GFP_KERNEL);
2543         if (!codec->chip_name) {
2544                 alc_free(codec);
2545                 return -ENOMEM;
2546         }
2547         return 0;
2548 }
2549
2550 /*
2551  * Rename codecs appropriately from COEF value
2552  */
2553 struct alc_codec_rename_table {
2554         unsigned int vendor_id;
2555         unsigned short coef_mask;
2556         unsigned short coef_bits;
2557         const char *name;
2558 };
2559
2560 static struct alc_codec_rename_table rename_tbl[] = {
2561         { 0x10ec0269, 0xfff0, 0x3010, "ALC277" },
2562         { 0x10ec0269, 0xf0f0, 0x2010, "ALC259" },
2563         { 0x10ec0269, 0xf0f0, 0x3010, "ALC258" },
2564         { 0x10ec0269, 0x00f0, 0x0010, "ALC269VB" },
2565         { 0x10ec0269, 0xffff, 0xa023, "ALC259" },
2566         { 0x10ec0269, 0xffff, 0x6023, "ALC281X" },
2567         { 0x10ec0269, 0x00f0, 0x0020, "ALC269VC" },
2568         { 0x10ec0887, 0x00f0, 0x0030, "ALC887-VD" },
2569         { 0x10ec0888, 0x00f0, 0x0030, "ALC888-VD" },
2570         { 0x10ec0888, 0xf0f0, 0x3020, "ALC886" },
2571         { 0x10ec0899, 0x2000, 0x2000, "ALC899" },
2572         { 0x10ec0892, 0xffff, 0x8020, "ALC661" },
2573         { 0x10ec0892, 0xffff, 0x8011, "ALC661" },
2574         { 0x10ec0892, 0xffff, 0x4011, "ALC656" },
2575         { } /* terminator */
2576 };
2577
2578 static int alc_codec_rename_from_preset(struct hda_codec *codec)
2579 {
2580         const struct alc_codec_rename_table *p;
2581
2582         for (p = rename_tbl; p->vendor_id; p++) {
2583                 if (p->vendor_id != codec->vendor_id)
2584                         continue;
2585                 if ((alc_get_coef0(codec) & p->coef_mask) == p->coef_bits)
2586                         return alc_codec_rename(codec, p->name);
2587         }
2588         return 0;
2589 }
2590
2591 /*
2592  * Automatic parse of I/O pins from the BIOS configuration
2593  */
2594
2595 enum {
2596         ALC_CTL_WIDGET_VOL,
2597         ALC_CTL_WIDGET_MUTE,
2598         ALC_CTL_BIND_MUTE,
2599         ALC_CTL_BIND_VOL,
2600         ALC_CTL_BIND_SW,
2601 };
2602 static const struct snd_kcontrol_new alc_control_templates[] = {
2603         HDA_CODEC_VOLUME(NULL, 0, 0, 0),
2604         HDA_CODEC_MUTE(NULL, 0, 0, 0),
2605         HDA_BIND_MUTE(NULL, 0, 0, 0),
2606         HDA_BIND_VOL(NULL, 0),
2607         HDA_BIND_SW(NULL, 0),
2608 };
2609
2610 /* add dynamic controls */
2611 static int add_control(struct alc_spec *spec, int type, const char *name,
2612                        int cidx, unsigned long val)
2613 {
2614         struct snd_kcontrol_new *knew;
2615
2616         knew = alc_kcontrol_new(spec);
2617         if (!knew)
2618                 return -ENOMEM;
2619         *knew = alc_control_templates[type];
2620         knew->name = kstrdup(name, GFP_KERNEL);
2621         if (!knew->name)
2622                 return -ENOMEM;
2623         knew->index = cidx;
2624         if (get_amp_nid_(val))
2625                 knew->subdevice = HDA_SUBDEV_AMP_FLAG;
2626         knew->private_value = val;
2627         return 0;
2628 }
2629
2630 static int add_control_with_pfx(struct alc_spec *spec, int type,
2631                                 const char *pfx, const char *dir,
2632                                 const char *sfx, int cidx, unsigned long val)
2633 {
2634         char name[32];
2635         snprintf(name, sizeof(name), "%s %s %s", pfx, dir, sfx);
2636         return add_control(spec, type, name, cidx, val);
2637 }
2638
2639 #define add_pb_vol_ctrl(spec, type, pfx, val)                   \
2640         add_control_with_pfx(spec, type, pfx, "Playback", "Volume", 0, val)
2641 #define add_pb_sw_ctrl(spec, type, pfx, val)                    \
2642         add_control_with_pfx(spec, type, pfx, "Playback", "Switch", 0, val)
2643 #define __add_pb_vol_ctrl(spec, type, pfx, cidx, val)                   \
2644         add_control_with_pfx(spec, type, pfx, "Playback", "Volume", cidx, val)
2645 #define __add_pb_sw_ctrl(spec, type, pfx, cidx, val)                    \
2646         add_control_with_pfx(spec, type, pfx, "Playback", "Switch", cidx, val)
2647
2648 static const char * const channel_name[4] = {
2649         "Front", "Surround", "CLFE", "Side"
2650 };
2651
2652 static const char *alc_get_line_out_pfx(struct alc_spec *spec, int ch,
2653                                         bool can_be_master, int *index)
2654 {
2655         struct auto_pin_cfg *cfg = &spec->autocfg;
2656
2657         *index = 0;
2658         if (cfg->line_outs == 1 && !spec->multi_ios &&
2659             !cfg->hp_outs && !cfg->speaker_outs && can_be_master)
2660                 return "Master";
2661
2662         switch (cfg->line_out_type) {
2663         case AUTO_PIN_SPEAKER_OUT:
2664                 if (cfg->line_outs == 1)
2665                         return "Speaker";
2666                 if (cfg->line_outs == 2)
2667                         return ch ? "Bass Speaker" : "Speaker";
2668                 break;
2669         case AUTO_PIN_HP_OUT:
2670                 /* for multi-io case, only the primary out */
2671                 if (ch && spec->multi_ios)
2672                         break;
2673                 *index = ch;
2674                 return "Headphone";
2675         default:
2676                 if (cfg->line_outs == 1 && !spec->multi_ios)
2677                         return "PCM";
2678                 break;
2679         }
2680         if (snd_BUG_ON(ch >= ARRAY_SIZE(channel_name)))
2681                 return "PCM";
2682
2683         return channel_name[ch];
2684 }
2685
2686 /* create input playback/capture controls for the given pin */
2687 static int new_analog_input(struct alc_spec *spec, hda_nid_t pin,
2688                             const char *ctlname, int ctlidx,
2689                             int idx, hda_nid_t mix_nid)
2690 {
2691         int err;
2692
2693         err = __add_pb_vol_ctrl(spec, ALC_CTL_WIDGET_VOL, ctlname, ctlidx,
2694                           HDA_COMPOSE_AMP_VAL(mix_nid, 3, idx, HDA_INPUT));
2695         if (err < 0)
2696                 return err;
2697         err = __add_pb_sw_ctrl(spec, ALC_CTL_WIDGET_MUTE, ctlname, ctlidx,
2698                           HDA_COMPOSE_AMP_VAL(mix_nid, 3, idx, HDA_INPUT));
2699         if (err < 0)
2700                 return err;
2701         return 0;
2702 }
2703
2704 static int alc_is_input_pin(struct hda_codec *codec, hda_nid_t nid)
2705 {
2706         unsigned int pincap = snd_hda_query_pin_caps(codec, nid);
2707         return (pincap & AC_PINCAP_IN) != 0;
2708 }
2709
2710 /* Parse the codec tree and retrieve ADCs and corresponding capsrc MUXs */
2711 static int alc_auto_fill_adc_caps(struct hda_codec *codec)
2712 {
2713         struct alc_spec *spec = codec->spec;
2714         hda_nid_t nid;
2715         hda_nid_t *adc_nids = spec->private_adc_nids;
2716         hda_nid_t *cap_nids = spec->private_capsrc_nids;
2717         int max_nums = ARRAY_SIZE(spec->private_adc_nids);
2718         int i, nums = 0;
2719
2720         if (spec->shared_mic_hp)
2721                 max_nums = 1; /* no multi streams with the shared HP/mic */
2722
2723         nid = codec->start_nid;
2724         for (i = 0; i < codec->num_nodes; i++, nid++) {
2725                 hda_nid_t src;
2726                 const hda_nid_t *list;
2727                 unsigned int caps = get_wcaps(codec, nid);
2728                 int type = get_wcaps_type(caps);
2729
2730                 if (type != AC_WID_AUD_IN || (caps & AC_WCAP_DIGITAL))
2731                         continue;
2732                 adc_nids[nums] = nid;
2733                 cap_nids[nums] = nid;
2734                 src = nid;
2735                 for (;;) {
2736                         int n;
2737                         type = get_wcaps_type(get_wcaps(codec, src));
2738                         if (type == AC_WID_PIN)
2739                                 break;
2740                         if (type == AC_WID_AUD_SEL) {
2741                                 cap_nids[nums] = src;
2742                                 break;
2743                         }
2744                         n = snd_hda_get_conn_list(codec, src, &list);
2745                         if (n > 1) {
2746                                 cap_nids[nums] = src;
2747                                 break;
2748                         } else if (n != 1)
2749                                 break;
2750                         src = *list;
2751                 }
2752                 if (++nums >= max_nums)
2753                         break;
2754         }
2755         spec->adc_nids = spec->private_adc_nids;
2756         spec->capsrc_nids = spec->private_capsrc_nids;
2757         spec->num_adc_nids = nums;
2758         return nums;
2759 }
2760
2761 /* create playback/capture controls for input pins */
2762 static int alc_auto_create_input_ctls(struct hda_codec *codec)
2763 {
2764         struct alc_spec *spec = codec->spec;
2765         const struct auto_pin_cfg *cfg = &spec->autocfg;
2766         hda_nid_t mixer = spec->mixer_nid;
2767         struct hda_input_mux *imux = &spec->private_imux[0];
2768         int num_adcs;
2769         int i, c, err, idx, type_idx = 0;
2770         const char *prev_label = NULL;
2771
2772         num_adcs = alc_auto_fill_adc_caps(codec);
2773         if (num_adcs < 0)
2774                 return 0;
2775
2776         for (i = 0; i < cfg->num_inputs; i++) {
2777                 hda_nid_t pin;
2778                 const char *label;
2779
2780                 pin = cfg->inputs[i].pin;
2781                 if (!alc_is_input_pin(codec, pin))
2782                         continue;
2783
2784                 label = hda_get_autocfg_input_label(codec, cfg, i);
2785                 if (spec->shared_mic_hp && !strcmp(label, "Misc"))
2786                         label = "Headphone Mic";
2787                 if (prev_label && !strcmp(label, prev_label))
2788                         type_idx++;
2789                 else
2790                         type_idx = 0;
2791                 prev_label = label;
2792
2793                 if (mixer) {
2794                         idx = get_connection_index(codec, mixer, pin);
2795                         if (idx >= 0) {
2796                                 err = new_analog_input(spec, pin,
2797                                                        label, type_idx,
2798                                                        idx, mixer);
2799                                 if (err < 0)
2800                                         return err;
2801                         }
2802                 }
2803
2804                 for (c = 0; c < num_adcs; c++) {
2805                         hda_nid_t cap = get_capsrc(spec, c);
2806                         idx = get_connection_index(codec, cap, pin);
2807                         if (idx >= 0) {
2808                                 spec->imux_pins[imux->num_items] = pin;
2809                                 snd_hda_add_imux_item(imux, label, idx, NULL);
2810                                 break;
2811                         }
2812                 }
2813         }
2814
2815         spec->num_mux_defs = 1;
2816         spec->input_mux = imux;
2817
2818         return 0;
2819 }
2820
2821 /* create a shared input with the headphone out */
2822 static int alc_auto_create_shared_input(struct hda_codec *codec)
2823 {
2824         struct alc_spec *spec = codec->spec;
2825         struct auto_pin_cfg *cfg = &spec->autocfg;
2826         unsigned int defcfg;
2827         hda_nid_t nid;
2828
2829         /* only one internal input pin? */
2830         if (cfg->num_inputs != 1)
2831                 return 0;
2832         defcfg = snd_hda_codec_get_pincfg(codec, cfg->inputs[0].pin);
2833         if (snd_hda_get_input_pin_attr(defcfg) != INPUT_PIN_ATTR_INT)
2834                 return 0;
2835
2836         if (cfg->hp_outs == 1 && cfg->line_out_type == AUTO_PIN_SPEAKER_OUT)
2837                 nid = cfg->hp_pins[0]; /* OK, we have a single HP-out */
2838         else if (cfg->line_outs == 1 && cfg->line_out_type == AUTO_PIN_HP_OUT)
2839                 nid = cfg->line_out_pins[0]; /* OK, we have a single line-out */
2840         else
2841                 return 0; /* both not available */
2842
2843         if (!(snd_hda_query_pin_caps(codec, nid) & AC_PINCAP_IN))
2844                 return 0; /* no input */
2845
2846         cfg->inputs[1].pin = nid;
2847         cfg->inputs[1].type = AUTO_PIN_MIC;
2848         cfg->num_inputs = 2;
2849         spec->shared_mic_hp = 1;
2850         snd_printdd("realtek: Enable shared I/O jack on NID 0x%x\n", nid);
2851         return 0;
2852 }
2853
2854 static void alc_set_pin_output(struct hda_codec *codec, hda_nid_t nid,
2855                                unsigned int pin_type)
2856 {
2857         snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
2858                             pin_type);
2859         /* unmute pin */
2860         if (nid_has_mute(codec, nid, HDA_OUTPUT))
2861                 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
2862                             AMP_OUT_UNMUTE);
2863 }
2864
2865 static int get_pin_type(int line_out_type)
2866 {
2867         if (line_out_type == AUTO_PIN_HP_OUT)
2868                 return PIN_HP;
2869         else
2870                 return PIN_OUT;
2871 }
2872
2873 static void alc_auto_init_analog_input(struct hda_codec *codec)
2874 {
2875         struct alc_spec *spec = codec->spec;
2876         struct auto_pin_cfg *cfg = &spec->autocfg;
2877         int i;
2878
2879         for (i = 0; i < cfg->num_inputs; i++) {
2880                 hda_nid_t nid = cfg->inputs[i].pin;
2881                 if (alc_is_input_pin(codec, nid)) {
2882                         alc_set_input_pin(codec, nid, cfg->inputs[i].type);
2883                         if (get_wcaps(codec, nid) & AC_WCAP_OUT_AMP)
2884                                 snd_hda_codec_write(codec, nid, 0,
2885                                                     AC_VERB_SET_AMP_GAIN_MUTE,
2886                                                     AMP_OUT_MUTE);
2887                 }
2888         }
2889
2890         /* mute all loopback inputs */
2891         if (spec->mixer_nid) {
2892                 int nums = snd_hda_get_conn_list(codec, spec->mixer_nid, NULL);
2893                 for (i = 0; i < nums; i++)
2894                         snd_hda_codec_write(codec, spec->mixer_nid, 0,
2895                                             AC_VERB_SET_AMP_GAIN_MUTE,
2896                                             AMP_IN_MUTE(i));
2897         }
2898 }
2899
2900 /* convert from MIX nid to DAC */
2901 static hda_nid_t alc_auto_mix_to_dac(struct hda_codec *codec, hda_nid_t nid)
2902 {
2903         hda_nid_t list[5];
2904         int i, num;
2905
2906         if (get_wcaps_type(get_wcaps(codec, nid)) == AC_WID_AUD_OUT)
2907                 return nid;
2908         num = snd_hda_get_connections(codec, nid, list, ARRAY_SIZE(list));
2909         for (i = 0; i < num; i++) {
2910                 if (get_wcaps_type(get_wcaps(codec, list[i])) == AC_WID_AUD_OUT)
2911                         return list[i];
2912         }
2913         return 0;
2914 }
2915
2916 /* go down to the selector widget before the mixer */
2917 static hda_nid_t alc_go_down_to_selector(struct hda_codec *codec, hda_nid_t pin)
2918 {
2919         hda_nid_t srcs[5];
2920         int num = snd_hda_get_connections(codec, pin, srcs,
2921                                           ARRAY_SIZE(srcs));
2922         if (num != 1 ||
2923             get_wcaps_type(get_wcaps(codec, srcs[0])) != AC_WID_AUD_SEL)
2924                 return pin;
2925         return srcs[0];
2926 }
2927
2928 /* get MIX nid connected to the given pin targeted to DAC */
2929 static hda_nid_t alc_auto_dac_to_mix(struct hda_codec *codec, hda_nid_t pin,
2930                                    hda_nid_t dac)
2931 {
2932         hda_nid_t mix[5];
2933         int i, num;
2934
2935         pin = alc_go_down_to_selector(codec, pin);
2936         num = snd_hda_get_connections(codec, pin, mix, ARRAY_SIZE(mix));
2937         for (i = 0; i < num; i++) {
2938                 if (alc_auto_mix_to_dac(codec, mix[i]) == dac)
2939                         return mix[i];
2940         }
2941         return 0;
2942 }
2943
2944 /* select the connection from pin to DAC if needed */
2945 static int alc_auto_select_dac(struct hda_codec *codec, hda_nid_t pin,
2946                                hda_nid_t dac)
2947 {
2948         hda_nid_t mix[5];
2949         int i, num;
2950
2951         pin = alc_go_down_to_selector(codec, pin);
2952         num = snd_hda_get_connections(codec, pin, mix, ARRAY_SIZE(mix));
2953         if (num < 2)
2954                 return 0;
2955         for (i = 0; i < num; i++) {
2956                 if (alc_auto_mix_to_dac(codec, mix[i]) == dac) {
2957                         snd_hda_codec_update_cache(codec, pin, 0,
2958                                                    AC_VERB_SET_CONNECT_SEL, i);
2959                         return 0;
2960                 }
2961         }
2962         return 0;
2963 }
2964
2965 static bool alc_is_dac_already_used(struct hda_codec *codec, hda_nid_t nid)
2966 {
2967         struct alc_spec *spec = codec->spec;
2968         int i;
2969         if (found_in_nid_list(nid, spec->multiout.dac_nids,
2970                               ARRAY_SIZE(spec->private_dac_nids)) ||
2971             found_in_nid_list(nid, spec->multiout.hp_out_nid,
2972                               ARRAY_SIZE(spec->multiout.hp_out_nid)) ||
2973             found_in_nid_list(nid, spec->multiout.extra_out_nid,
2974                               ARRAY_SIZE(spec->multiout.extra_out_nid)))
2975                 return true;
2976         for (i = 0; i < spec->multi_ios; i++) {
2977                 if (spec->multi_io[i].dac == nid)
2978                         return true;
2979         }
2980         return false;
2981 }
2982
2983 /* look for an empty DAC slot */
2984 static hda_nid_t alc_auto_look_for_dac(struct hda_codec *codec, hda_nid_t pin)
2985 {
2986         hda_nid_t srcs[5];
2987         int i, num;
2988
2989         pin = alc_go_down_to_selector(codec, pin);
2990         num = snd_hda_get_connections(codec, pin, srcs, ARRAY_SIZE(srcs));
2991         for (i = 0; i < num; i++) {
2992                 hda_nid_t nid = alc_auto_mix_to_dac(codec, srcs[i]);
2993                 if (!nid)
2994                         continue;
2995                 if (!alc_is_dac_already_used(codec, nid))
2996                         return nid;
2997         }
2998         return 0;
2999 }
3000
3001 /* check whether the DAC is reachable from the pin */
3002 static bool alc_auto_is_dac_reachable(struct hda_codec *codec,
3003                                       hda_nid_t pin, hda_nid_t dac)
3004 {
3005         hda_nid_t srcs[5];
3006         int i, num;
3007
3008         if (!pin || !dac)
3009                 return false;
3010         pin = alc_go_down_to_selector(codec, pin);
3011         num = snd_hda_get_connections(codec, pin, srcs, ARRAY_SIZE(srcs));
3012         for (i = 0; i < num; i++) {
3013                 hda_nid_t nid = alc_auto_mix_to_dac(codec, srcs[i]);
3014                 if (nid == dac)
3015                         return true;
3016         }
3017         return false;
3018 }
3019
3020 static hda_nid_t get_dac_if_single(struct hda_codec *codec, hda_nid_t pin)
3021 {
3022         struct alc_spec *spec = codec->spec;
3023         hda_nid_t sel = alc_go_down_to_selector(codec, pin);
3024         hda_nid_t nid, nid_found, srcs[5];
3025         int i, num = snd_hda_get_connections(codec, sel, srcs,
3026                                           ARRAY_SIZE(srcs));
3027         if (num == 1)
3028                 return alc_auto_look_for_dac(codec, pin);
3029         nid_found = 0;
3030         for (i = 0; i < num; i++) {
3031                 if (srcs[i] == spec->mixer_nid)
3032                         continue;
3033                 nid = alc_auto_mix_to_dac(codec, srcs[i]);
3034                 if (nid && !alc_is_dac_already_used(codec, nid)) {
3035                         if (nid_found)
3036                                 return 0;
3037                         nid_found = nid;
3038                 }
3039         }
3040         return nid_found;
3041 }
3042
3043 /* mark up volume and mute control NIDs: used during badness parsing and
3044  * at creating actual controls
3045  */
3046 static inline unsigned int get_ctl_pos(unsigned int data)
3047 {
3048         hda_nid_t nid = get_amp_nid_(data);
3049         unsigned int dir;
3050         if (snd_BUG_ON(nid >= MAX_VOL_NIDS))
3051                 return 0;
3052         dir = get_amp_direction_(data);
3053         return (nid << 1) | dir;
3054 }
3055
3056 #define is_ctl_used(bits, data) \
3057         test_bit(get_ctl_pos(data), bits)
3058 #define mark_ctl_usage(bits, data) \
3059         set_bit(get_ctl_pos(data), bits)
3060
3061 static void clear_vol_marks(struct hda_codec *codec)
3062 {
3063         struct alc_spec *spec = codec->spec;
3064         memset(spec->vol_ctls, 0, sizeof(spec->vol_ctls));
3065         memset(spec->sw_ctls, 0, sizeof(spec->sw_ctls));
3066 }
3067
3068 /* badness definition */
3069 enum {
3070         /* No primary DAC is found for the main output */
3071         BAD_NO_PRIMARY_DAC = 0x10000,
3072         /* No DAC is found for the extra output */
3073         BAD_NO_DAC = 0x4000,
3074         /* No possible multi-ios */
3075         BAD_MULTI_IO = 0x103,
3076         /* No individual DAC for extra output */
3077         BAD_NO_EXTRA_DAC = 0x102,
3078         /* No individual DAC for extra surrounds */
3079         BAD_NO_EXTRA_SURR_DAC = 0x101,
3080         /* Primary DAC shared with main surrounds */
3081         BAD_SHARED_SURROUND = 0x100,
3082         /* Primary DAC shared with main CLFE */
3083         BAD_SHARED_CLFE = 0x10,
3084         /* Primary DAC shared with extra surrounds */
3085         BAD_SHARED_EXTRA_SURROUND = 0x10,
3086         /* Volume widget is shared */
3087         BAD_SHARED_VOL = 0x10,
3088 };
3089
3090 static hda_nid_t alc_look_for_out_mute_nid(struct hda_codec *codec,
3091                                            hda_nid_t pin, hda_nid_t dac);
3092 static hda_nid_t alc_look_for_out_vol_nid(struct hda_codec *codec,
3093                                           hda_nid_t pin, hda_nid_t dac);
3094
3095 static int eval_shared_vol_badness(struct hda_codec *codec, hda_nid_t pin,
3096                                    hda_nid_t dac)
3097 {
3098         struct alc_spec *spec = codec->spec;
3099         hda_nid_t nid;
3100         unsigned int val;
3101         int badness = 0;
3102
3103         nid = alc_look_for_out_vol_nid(codec, pin, dac);
3104         if (nid) {
3105                 val = HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT);
3106                 if (is_ctl_used(spec->vol_ctls, nid))
3107                         badness += BAD_SHARED_VOL;
3108                 else
3109                         mark_ctl_usage(spec->vol_ctls, val);
3110         } else
3111                 badness += BAD_SHARED_VOL;
3112         nid = alc_look_for_out_mute_nid(codec, pin, dac);
3113         if (nid) {
3114                 unsigned int wid_type = get_wcaps_type(get_wcaps(codec, nid));
3115                 if (wid_type == AC_WID_PIN || wid_type == AC_WID_AUD_OUT)
3116                         val = HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT);
3117                 else
3118                         val = HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_INPUT);
3119                 if (is_ctl_used(spec->sw_ctls, val))
3120                         badness += BAD_SHARED_VOL;
3121                 else
3122                         mark_ctl_usage(spec->sw_ctls, val);
3123         } else
3124                 badness += BAD_SHARED_VOL;
3125         return badness;
3126 }
3127
3128 struct badness_table {
3129         int no_primary_dac;     /* no primary DAC */
3130         int no_dac;             /* no secondary DACs */
3131         int shared_primary;     /* primary DAC is shared with main output */
3132         int shared_surr;        /* secondary DAC shared with main or primary */
3133         int shared_clfe;        /* third DAC shared with main or primary */
3134         int shared_surr_main;   /* secondary DAC sahred with main/DAC0 */
3135 };
3136
3137 static struct badness_table main_out_badness = {
3138         .no_primary_dac = BAD_NO_PRIMARY_DAC,
3139         .no_dac = BAD_NO_DAC,
3140         .shared_primary = BAD_NO_PRIMARY_DAC,
3141         .shared_surr = BAD_SHARED_SURROUND,
3142         .shared_clfe = BAD_SHARED_CLFE,
3143         .shared_surr_main = BAD_SHARED_SURROUND,
3144 };
3145
3146 static struct badness_table extra_out_badness = {
3147         .no_primary_dac = BAD_NO_DAC,
3148         .no_dac = BAD_NO_DAC,
3149         .shared_primary = BAD_NO_EXTRA_DAC,
3150         .shared_surr = BAD_SHARED_EXTRA_SURROUND,
3151         .shared_clfe = BAD_SHARED_EXTRA_SURROUND,
3152         .shared_surr_main = BAD_NO_EXTRA_SURR_DAC,
3153 };
3154
3155 /* try to assign DACs to pins and return the resultant badness */
3156 static int alc_auto_fill_dacs(struct hda_codec *codec, int num_outs,
3157                               const hda_nid_t *pins, hda_nid_t *dacs,
3158                               const struct badness_table *bad)
3159 {
3160         struct alc_spec *spec = codec->spec;
3161         struct auto_pin_cfg *cfg = &spec->autocfg;
3162         int i, j;
3163         int badness = 0;
3164         hda_nid_t dac;
3165
3166         if (!num_outs)
3167                 return 0;
3168
3169         for (i = 0; i < num_outs; i++) {
3170                 hda_nid_t pin = pins[i];
3171                 if (!dacs[i])
3172                         dacs[i] = alc_auto_look_for_dac(codec, pin);
3173                 if (!dacs[i] && !i) {
3174                         for (j = 1; j < num_outs; j++) {
3175                                 if (alc_auto_is_dac_reachable(codec, pin, dacs[j])) {
3176                                         dacs[0] = dacs[j];
3177                                         dacs[j] = 0;
3178                                         break;
3179                                 }
3180                         }
3181                 }
3182                 dac = dacs[i];
3183                 if (!dac) {
3184                         if (alc_auto_is_dac_reachable(codec, pin, dacs[0]))
3185                                 dac = dacs[0];
3186                         else if (cfg->line_outs > i &&
3187                                  alc_auto_is_dac_reachable(codec, pin,
3188                                         spec->private_dac_nids[i]))
3189                                 dac = spec->private_dac_nids[i];
3190                         if (dac) {
3191                                 if (!i)
3192                                         badness += bad->shared_primary;
3193                                 else if (i == 1)
3194                                         badness += bad->shared_surr;
3195                                 else
3196                                         badness += bad->shared_clfe;
3197                         } else if (alc_auto_is_dac_reachable(codec, pin,
3198                                         spec->private_dac_nids[0])) {
3199                                 dac = spec->private_dac_nids[0];
3200                                 badness += bad->shared_surr_main;
3201                         } else if (!i)
3202                                 badness += bad->no_primary_dac;
3203                         else
3204                                 badness += bad->no_dac;
3205                 }
3206                 if (dac)
3207                         badness += eval_shared_vol_badness(codec, pin, dac);
3208         }
3209
3210         return badness;
3211 }
3212
3213 static int alc_auto_fill_multi_ios(struct hda_codec *codec,
3214                                    hda_nid_t reference_pin,
3215                                    bool hardwired, int offset);
3216
3217 static bool alc_map_singles(struct hda_codec *codec, int outs,
3218                             const hda_nid_t *pins, hda_nid_t *dacs)
3219 {
3220         int i;
3221         bool found = false;
3222         for (i = 0; i < outs; i++) {
3223                 if (dacs[i])
3224                         continue;
3225                 dacs[i] = get_dac_if_single(codec, pins[i]);
3226                 if (dacs[i])
3227                         found = true;
3228         }
3229         return found;
3230 }
3231
3232 /* fill in the dac_nids table from the parsed pin configuration */
3233 static int fill_and_eval_dacs(struct hda_codec *codec,
3234                               bool fill_hardwired,
3235                               bool fill_mio_first)
3236 {
3237         struct alc_spec *spec = codec->spec;
3238         struct auto_pin_cfg *cfg = &spec->autocfg;
3239         int i, err, badness;
3240
3241         /* set num_dacs once to full for alc_auto_look_for_dac() */
3242         spec->multiout.num_dacs = cfg->line_outs;
3243         spec->multiout.dac_nids = spec->private_dac_nids;
3244         memset(spec->private_dac_nids, 0, sizeof(spec->private_dac_nids));
3245         memset(spec->multiout.hp_out_nid, 0, sizeof(spec->multiout.hp_out_nid));
3246         memset(spec->multiout.extra_out_nid, 0, sizeof(spec->multiout.extra_out_nid));
3247         spec->multi_ios = 0;
3248         clear_vol_marks(codec);
3249         badness = 0;
3250
3251         /* fill hard-wired DACs first */
3252         if (fill_hardwired) {
3253                 bool mapped;
3254                 do {
3255                         mapped = alc_map_singles(codec, cfg->line_outs,
3256                                                  cfg->line_out_pins,
3257                                                  spec->private_dac_nids);
3258                         mapped |= alc_map_singles(codec, cfg->hp_outs,
3259                                                   cfg->hp_pins,
3260                                                   spec->multiout.hp_out_nid);
3261                         mapped |= alc_map_singles(codec, cfg->speaker_outs,
3262                                                   cfg->speaker_pins,
3263                                                   spec->multiout.extra_out_nid);
3264                         if (fill_mio_first && cfg->line_outs == 1 &&
3265                             cfg->line_out_type != AUTO_PIN_SPEAKER_OUT) {
3266                                 err = alc_auto_fill_multi_ios(codec, cfg->line_out_pins[0], true, 0);
3267                                 if (!err)
3268                                         mapped = true;
3269                         }
3270                 } while (mapped);
3271         }
3272
3273         badness += alc_auto_fill_dacs(codec, cfg->line_outs, cfg->line_out_pins,
3274                                       spec->private_dac_nids,
3275                                       &main_out_badness);
3276
3277         /* re-count num_dacs and squash invalid entries */
3278         spec->multiout.num_dacs = 0;
3279         for (i = 0; i < cfg->line_outs; i++) {
3280                 if (spec->private_dac_nids[i])
3281                         spec->multiout.num_dacs++;
3282                 else {
3283                         memmove(spec->private_dac_nids + i,
3284                                 spec->private_dac_nids + i + 1,
3285                                 sizeof(hda_nid_t) * (cfg->line_outs - i - 1));
3286                         spec->private_dac_nids[cfg->line_outs - 1] = 0;
3287                 }
3288         }
3289
3290         if (fill_mio_first &&
3291             cfg->line_outs == 1 && cfg->line_out_type != AUTO_PIN_SPEAKER_OUT) {
3292                 /* try to fill multi-io first */
3293                 err = alc_auto_fill_multi_ios(codec, cfg->line_out_pins[0], false, 0);
3294                 if (err < 0)
3295                         return err;
3296                 /* we don't count badness at this stage yet */
3297         }
3298
3299         if (cfg->line_out_type != AUTO_PIN_HP_OUT) {
3300                 err = alc_auto_fill_dacs(codec, cfg->hp_outs, cfg->hp_pins,
3301                                          spec->multiout.hp_out_nid,
3302                                          &extra_out_badness);
3303                 if (err < 0)
3304                         return err;
3305                 badness += err;
3306         }
3307         if (cfg->line_out_type != AUTO_PIN_SPEAKER_OUT) {
3308                 err = alc_auto_fill_dacs(codec, cfg->speaker_outs,
3309                                          cfg->speaker_pins,
3310                                          spec->multiout.extra_out_nid,
3311                                          &extra_out_badness);
3312                 if (err < 0)
3313                         return err;
3314                 badness += err;
3315         }
3316         if (cfg->line_outs == 1 && cfg->line_out_type != AUTO_PIN_SPEAKER_OUT) {
3317                 err = alc_auto_fill_multi_ios(codec, cfg->line_out_pins[0], false, 0);
3318                 if (err < 0)
3319                         return err;
3320                 badness += err;
3321         }
3322         if (cfg->hp_outs && cfg->line_out_type == AUTO_PIN_SPEAKER_OUT) {
3323                 /* try multi-ios with HP + inputs */
3324                 err = alc_auto_fill_multi_ios(codec, cfg->hp_pins[0], false, 1);
3325                 if (err < 0)
3326                         return err;
3327                 badness += err;
3328         }
3329
3330         if (spec->multi_ios == 2) {
3331                 for (i = 0; i < 2; i++)
3332                         spec->private_dac_nids[spec->multiout.num_dacs++] =
3333                                 spec->multi_io[i].dac;
3334                 spec->ext_channel_count = 2;
3335         } else if (spec->multi_ios) {
3336                 spec->multi_ios = 0;
3337                 badness += BAD_MULTI_IO;
3338         }
3339
3340         return badness;
3341 }
3342
3343 #define DEBUG_BADNESS
3344
3345 #ifdef DEBUG_BADNESS
3346 #define debug_badness   snd_printdd
3347 #else
3348 #define debug_badness(...)
3349 #endif
3350
3351 static void debug_show_configs(struct alc_spec *spec, struct auto_pin_cfg *cfg)
3352 {
3353         debug_badness("multi_outs = %x/%x/%x/%x : %x/%x/%x/%x\n",
3354                       cfg->line_out_pins[0], cfg->line_out_pins[1],
3355                       cfg->line_out_pins[2], cfg->line_out_pins[2],
3356                       spec->multiout.dac_nids[0],
3357                       spec->multiout.dac_nids[1],
3358                       spec->multiout.dac_nids[2],
3359                       spec->multiout.dac_nids[3]);
3360         if (spec->multi_ios > 0)
3361                 debug_badness("multi_ios(%d) = %x/%x : %x/%x\n",
3362                               spec->multi_ios,
3363                               spec->multi_io[0].pin, spec->multi_io[1].pin,
3364                               spec->multi_io[0].dac, spec->multi_io[1].dac);
3365         debug_badness("hp_outs = %x/%x/%x/%x : %x/%x/%x/%x\n",
3366                       cfg->hp_pins[0], cfg->hp_pins[1],
3367                       cfg->hp_pins[2], cfg->hp_pins[2],
3368                       spec->multiout.hp_out_nid[0],
3369                       spec->multiout.hp_out_nid[1],
3370                       spec->multiout.hp_out_nid[2],
3371                       spec->multiout.hp_out_nid[3]);
3372         debug_badness("spk_outs = %x/%x/%x/%x : %x/%x/%x/%x\n",
3373                       cfg->speaker_pins[0], cfg->speaker_pins[1],
3374                       cfg->speaker_pins[2], cfg->speaker_pins[3],
3375                       spec->multiout.extra_out_nid[0],
3376                       spec->multiout.extra_out_nid[1],
3377                       spec->multiout.extra_out_nid[2],
3378                       spec->multiout.extra_out_nid[3]);
3379 }
3380
3381 static int alc_auto_fill_dac_nids(struct hda_codec *codec)
3382 {
3383         struct alc_spec *spec = codec->spec;
3384         struct auto_pin_cfg *cfg = &spec->autocfg;
3385         struct auto_pin_cfg *best_cfg;
3386         int best_badness = INT_MAX;
3387         int badness;
3388         bool fill_hardwired = true, fill_mio_first = true;
3389         bool best_wired = true, best_mio = true;
3390         bool hp_spk_swapped = false;
3391
3392         best_cfg = kmalloc(sizeof(*best_cfg), GFP_KERNEL);
3393         if (!best_cfg)
3394                 return -ENOMEM;
3395         *best_cfg = *cfg;
3396
3397         for (;;) {
3398                 badness = fill_and_eval_dacs(codec, fill_hardwired,
3399                                              fill_mio_first);
3400                 if (badness < 0)
3401                         return badness;
3402                 debug_badness("==> lo_type=%d, wired=%d, mio=%d, badness=0x%x\n",
3403                               cfg->line_out_type, fill_hardwired, fill_mio_first,
3404                               badness);
3405                 debug_show_configs(spec, cfg);
3406                 if (badness < best_badness) {
3407                         best_badness = badness;
3408                         *best_cfg = *cfg;
3409                         best_wired = fill_hardwired;
3410                         best_mio = fill_mio_first;
3411                 }
3412                 if (!badness)
3413                         break;
3414                 fill_mio_first = !fill_mio_first;
3415                 if (!fill_mio_first)
3416                         continue;
3417                 fill_hardwired = !fill_hardwired;
3418                 if (!fill_hardwired)
3419                         continue;
3420                 if (hp_spk_swapped)
3421                         break;
3422                 hp_spk_swapped = true;
3423                 if (cfg->speaker_outs > 0 &&
3424                     cfg->line_out_type == AUTO_PIN_HP_OUT) {
3425                         cfg->hp_outs = cfg->line_outs;
3426                         memcpy(cfg->hp_pins, cfg->line_out_pins,
3427                                sizeof(cfg->hp_pins));
3428                         cfg->line_outs = cfg->speaker_outs;
3429                         memcpy(cfg->line_out_pins, cfg->speaker_pins,
3430                                sizeof(cfg->speaker_pins));
3431                         cfg->speaker_outs = 0;
3432                         memset(cfg->speaker_pins, 0, sizeof(cfg->speaker_pins));
3433                         cfg->line_out_type = AUTO_PIN_SPEAKER_OUT;
3434                         fill_hardwired = true;
3435                         continue;
3436                 } 
3437                 if (cfg->hp_outs > 0 &&
3438                     cfg->line_out_type == AUTO_PIN_SPEAKER_OUT) {
3439                         cfg->speaker_outs = cfg->line_outs;
3440                         memcpy(cfg->speaker_pins, cfg->line_out_pins,
3441                                sizeof(cfg->speaker_pins));
3442                         cfg->line_outs = cfg->hp_outs;
3443                         memcpy(cfg->line_out_pins, cfg->hp_pins,
3444                                sizeof(cfg->hp_pins));
3445                         cfg->hp_outs = 0;
3446                         memset(cfg->hp_pins, 0, sizeof(cfg->hp_pins));
3447                         cfg->line_out_type = AUTO_PIN_HP_OUT;
3448                         fill_hardwired = true;
3449                         continue;
3450                 } 
3451                 break;
3452         }
3453
3454         if (badness) {
3455                 *cfg = *best_cfg;
3456                 fill_and_eval_dacs(codec, best_wired, best_mio);
3457         }
3458         debug_badness("==> Best config: lo_type=%d, wired=%d, mio=%d\n",
3459                       cfg->line_out_type, best_wired, best_mio);
3460         debug_show_configs(spec, cfg);
3461
3462         if (cfg->line_out_pins[0])
3463                 spec->vmaster_nid =
3464                         alc_look_for_out_vol_nid(codec, cfg->line_out_pins[0],
3465                                                  spec->multiout.dac_nids[0]);
3466
3467         /* clear the bitmap flags for creating controls */
3468         clear_vol_marks(codec);
3469         kfree(best_cfg);
3470         return 0;
3471 }
3472
3473 static int alc_auto_add_vol_ctl(struct hda_codec *codec,
3474                               const char *pfx, int cidx,
3475                               hda_nid_t nid, unsigned int chs)
3476 {
3477         struct alc_spec *spec = codec->spec;
3478         unsigned int val;
3479         if (!nid)
3480                 return 0;
3481         val = HDA_COMPOSE_AMP_VAL(nid, chs, 0, HDA_OUTPUT);
3482         if (is_ctl_used(spec->vol_ctls, val) && chs != 2) /* exclude LFE */
3483                 return 0;
3484         mark_ctl_usage(spec->vol_ctls, val);
3485         return __add_pb_vol_ctrl(codec->spec, ALC_CTL_WIDGET_VOL, pfx, cidx,
3486                                  val);
3487 }
3488
3489 static int alc_auto_add_stereo_vol(struct hda_codec *codec,
3490                                    const char *pfx, int cidx,
3491                                    hda_nid_t nid)
3492 {
3493         int chs = 1;
3494         if (get_wcaps(codec, nid) & AC_WCAP_STEREO)
3495                 chs = 3;
3496         return alc_auto_add_vol_ctl(codec, pfx, cidx, nid, chs);
3497 }
3498
3499 /* create a mute-switch for the given mixer widget;
3500  * if it has multiple sources (e.g. DAC and loopback), create a bind-mute
3501  */
3502 static int alc_auto_add_sw_ctl(struct hda_codec *codec,
3503                              const char *pfx, int cidx,
3504                              hda_nid_t nid, unsigned int chs)
3505 {
3506         struct alc_spec *spec = codec->spec;
3507         int wid_type;
3508         int type;
3509         unsigned long val;
3510         if (!nid)
3511                 return 0;
3512         wid_type = get_wcaps_type(get_wcaps(codec, nid));
3513         if (wid_type == AC_WID_PIN || wid_type == AC_WID_AUD_OUT) {
3514                 type = ALC_CTL_WIDGET_MUTE;
3515                 val = HDA_COMPOSE_AMP_VAL(nid, chs, 0, HDA_OUTPUT);
3516         } else if (snd_hda_get_conn_list(codec, nid, NULL) == 1) {
3517                 type = ALC_CTL_WIDGET_MUTE;
3518                 val = HDA_COMPOSE_AMP_VAL(nid, chs, 0, HDA_INPUT);
3519         } else {
3520                 type = ALC_CTL_BIND_MUTE;
3521                 val = HDA_COMPOSE_AMP_VAL(nid, chs, 2, HDA_INPUT);
3522         }
3523         if (is_ctl_used(spec->sw_ctls, val) && chs != 2) /* exclude LFE */
3524                 return 0;
3525         mark_ctl_usage(spec->sw_ctls, val);
3526         return __add_pb_sw_ctrl(codec->spec, type, pfx, cidx, val);
3527 }
3528
3529 static int alc_auto_add_stereo_sw(struct hda_codec *codec, const char *pfx,
3530                                   int cidx, hda_nid_t nid)
3531 {
3532         int chs = 1;
3533         if (get_wcaps(codec, nid) & AC_WCAP_STEREO)
3534                 chs = 3;
3535         return alc_auto_add_sw_ctl(codec, pfx, cidx, nid, chs);
3536 }
3537
3538 static hda_nid_t alc_look_for_out_mute_nid(struct hda_codec *codec,
3539                                            hda_nid_t pin, hda_nid_t dac)
3540 {
3541         hda_nid_t mix = alc_auto_dac_to_mix(codec, pin, dac);
3542         if (nid_has_mute(codec, pin, HDA_OUTPUT))
3543                 return pin;
3544         else if (mix && nid_has_mute(codec, mix, HDA_INPUT))
3545                 return mix;
3546         else if (nid_has_mute(codec, dac, HDA_OUTPUT))
3547                 return dac;
3548         return 0;
3549 }
3550
3551 static hda_nid_t alc_look_for_out_vol_nid(struct hda_codec *codec,
3552                                           hda_nid_t pin, hda_nid_t dac)
3553 {
3554         hda_nid_t mix = alc_auto_dac_to_mix(codec, pin, dac);
3555         if (nid_has_volume(codec, dac, HDA_OUTPUT))
3556                 return dac;
3557         else if (nid_has_volume(codec, mix, HDA_OUTPUT))
3558                 return mix;
3559         else if (nid_has_volume(codec, pin, HDA_OUTPUT))
3560                 return pin;
3561         return 0;
3562 }
3563
3564 /* add playback controls from the parsed DAC table */
3565 static int alc_auto_create_multi_out_ctls(struct hda_codec *codec,
3566                                              const struct auto_pin_cfg *cfg)
3567 {
3568         struct alc_spec *spec = codec->spec;
3569         int i, err, noutputs;
3570
3571         noutputs = cfg->line_outs;
3572         if (spec->multi_ios > 0 && cfg->line_outs < 3)
3573                 noutputs += spec->multi_ios;
3574
3575         for (i = 0; i < noutputs; i++) {
3576                 const char *name;
3577                 int index;
3578                 hda_nid_t dac, pin;
3579                 hda_nid_t sw, vol;
3580
3581                 dac = spec->multiout.dac_nids[i];
3582                 if (!dac)
3583                         continue;
3584                 if (i >= cfg->line_outs)
3585                         pin = spec->multi_io[i - 1].pin;
3586                 else
3587                         pin = cfg->line_out_pins[i];
3588
3589                 sw = alc_look_for_out_mute_nid(codec, pin, dac);
3590                 vol = alc_look_for_out_vol_nid(codec, pin, dac);
3591                 name = alc_get_line_out_pfx(spec, i, true, &index);
3592                 if (!name || !strcmp(name, "CLFE")) {
3593                         /* Center/LFE */
3594                         err = alc_auto_add_vol_ctl(codec, "Center", 0, vol, 1);
3595                         if (err < 0)
3596                                 return err;
3597                         err = alc_auto_add_vol_ctl(codec, "LFE", 0, vol, 2);
3598                         if (err < 0)
3599                                 return err;
3600                         err = alc_auto_add_sw_ctl(codec, "Center", 0, sw, 1);
3601                         if (err < 0)
3602                                 return err;
3603                         err = alc_auto_add_sw_ctl(codec, "LFE", 0, sw, 2);
3604                         if (err < 0)
3605                                 return err;
3606                 } else {
3607                         err = alc_auto_add_stereo_vol(codec, name, index, vol);
3608                         if (err < 0)
3609                                 return err;
3610                         err = alc_auto_add_stereo_sw(codec, name, index, sw);
3611                         if (err < 0)
3612                                 return err;
3613                 }
3614         }
3615         return 0;
3616 }
3617
3618 static int alc_auto_create_extra_out(struct hda_codec *codec, hda_nid_t pin,
3619                                      hda_nid_t dac, const char *pfx,
3620                                      int cidx)
3621 {
3622         struct alc_spec *spec = codec->spec;
3623         hda_nid_t sw, vol;
3624         int err;
3625
3626         if (!dac) {
3627                 unsigned int val;
3628                 /* the corresponding DAC is already occupied */
3629                 if (!(get_wcaps(codec, pin) & AC_WCAP_OUT_AMP))
3630                         return 0; /* no way */
3631                 /* create a switch only */
3632                 val = HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_OUTPUT);
3633                 if (is_ctl_used(spec->sw_ctls, val))
3634                         return 0; /* already created */
3635                 mark_ctl_usage(spec->sw_ctls, val);
3636                 return __add_pb_sw_ctrl(spec, ALC_CTL_WIDGET_MUTE, pfx, cidx, val);
3637         }
3638
3639         sw = alc_look_for_out_mute_nid(codec, pin, dac);
3640         vol = alc_look_for_out_vol_nid(codec, pin, dac);
3641         err = alc_auto_add_stereo_vol(codec, pfx, cidx, vol);
3642         if (err < 0)
3643                 return err;
3644         err = alc_auto_add_stereo_sw(codec, pfx, cidx, sw);
3645         if (err < 0)
3646                 return err;
3647         return 0;
3648 }
3649
3650 static struct hda_bind_ctls *new_bind_ctl(struct hda_codec *codec,
3651                                           unsigned int nums,
3652                                           struct hda_ctl_ops *ops)
3653 {
3654         struct alc_spec *spec = codec->spec;
3655         struct hda_bind_ctls **ctlp, *ctl;
3656         snd_array_init(&spec->bind_ctls, sizeof(ctl), 8);
3657         ctlp = snd_array_new(&spec->bind_ctls);
3658         if (!ctlp)
3659                 return NULL;
3660         ctl = kzalloc(sizeof(*ctl) + sizeof(long) * (nums + 1), GFP_KERNEL);
3661         *ctlp = ctl;
3662         if (ctl)
3663                 ctl->ops = ops;
3664         return ctl;
3665 }
3666
3667 /* add playback controls for speaker and HP outputs */
3668 static int alc_auto_create_extra_outs(struct hda_codec *codec, int num_pins,
3669                                       const hda_nid_t *pins,
3670                                       const hda_nid_t *dacs,
3671                                       const char *pfx)
3672 {
3673         struct alc_spec *spec = codec->spec;
3674         struct hda_bind_ctls *ctl;
3675         char name[32];
3676         int i, n, err;
3677
3678         if (!num_pins || !pins[0])
3679                 return 0;
3680
3681         if (num_pins == 1) {
3682                 hda_nid_t dac = *dacs;
3683                 if (!dac)
3684                         dac = spec->multiout.dac_nids[0];
3685                 return alc_auto_create_extra_out(codec, *pins, dac, pfx, 0);
3686         }
3687
3688         if (dacs[num_pins - 1]) {
3689                 /* OK, we have a multi-output system with individual volumes */
3690                 for (i = 0; i < num_pins; i++) {
3691                         if (num_pins >= 3) {
3692                                 snprintf(name, sizeof(name), "%s %s",
3693                                          pfx, channel_name[i]);
3694                                 err = alc_auto_create_extra_out(codec, pins[i], dacs[i],
3695                                                                 name, 0);
3696                         } else {
3697                                 err = alc_auto_create_extra_out(codec, pins[i], dacs[i],
3698                                                                 pfx, i);
3699                         }
3700                         if (err < 0)
3701                                 return err;
3702                 }
3703                 return 0;
3704         }
3705
3706         /* Let's create a bind-controls */
3707         ctl = new_bind_ctl(codec, num_pins, &snd_hda_bind_sw);
3708         if (!ctl)
3709                 return -ENOMEM;
3710         n = 0;
3711         for (i = 0; i < num_pins; i++) {
3712                 if (get_wcaps(codec, pins[i]) & AC_WCAP_OUT_AMP)
3713                         ctl->values[n++] =
3714                                 HDA_COMPOSE_AMP_VAL(pins[i], 3, 0, HDA_OUTPUT);
3715         }
3716         if (n) {
3717                 snprintf(name, sizeof(name), "%s Playback Switch", pfx);
3718                 err = add_control(spec, ALC_CTL_BIND_SW, name, 0, (long)ctl);
3719                 if (err < 0)
3720                         return err;
3721         }
3722
3723         ctl = new_bind_ctl(codec, num_pins, &snd_hda_bind_vol);
3724         if (!ctl)
3725                 return -ENOMEM;
3726         n = 0;
3727         for (i = 0; i < num_pins; i++) {
3728                 hda_nid_t vol;
3729                 if (!pins[i] || !dacs[i])
3730                         continue;
3731                 vol = alc_look_for_out_vol_nid(codec, pins[i], dacs[i]);
3732                 if (vol)
3733                         ctl->values[n++] =
3734                                 HDA_COMPOSE_AMP_VAL(vol, 3, 0, HDA_OUTPUT);
3735         }
3736         if (n) {
3737                 snprintf(name, sizeof(name), "%s Playback Volume", pfx);
3738                 err = add_control(spec, ALC_CTL_BIND_VOL, name, 0, (long)ctl);
3739                 if (err < 0)
3740                         return err;
3741         }
3742         return 0;
3743 }
3744
3745 static int alc_auto_create_hp_out(struct hda_codec *codec)
3746 {
3747         struct alc_spec *spec = codec->spec;
3748         return alc_auto_create_extra_outs(codec, spec->autocfg.hp_outs,
3749                                           spec->autocfg.hp_pins,
3750                                           spec->multiout.hp_out_nid,
3751                                           "Headphone");
3752 }
3753
3754 static int alc_auto_create_speaker_out(struct hda_codec *codec)
3755 {
3756         struct alc_spec *spec = codec->spec;
3757         return alc_auto_create_extra_outs(codec, spec->autocfg.speaker_outs,
3758                                           spec->autocfg.speaker_pins,
3759                                           spec->multiout.extra_out_nid,
3760                                           "Speaker");
3761 }
3762
3763 static void alc_auto_set_output_and_unmute(struct hda_codec *codec,
3764                                               hda_nid_t pin, int pin_type,
3765                                               hda_nid_t dac)
3766 {
3767         int i, num;
3768         hda_nid_t nid, mix = 0;
3769         hda_nid_t srcs[HDA_MAX_CONNECTIONS];
3770
3771         alc_set_pin_output(codec, pin, pin_type);
3772         nid = alc_go_down_to_selector(codec, pin);
3773         num = snd_hda_get_connections(codec, nid, srcs, ARRAY_SIZE(srcs));
3774         for (i = 0; i < num; i++) {
3775                 if (alc_auto_mix_to_dac(codec, srcs[i]) != dac)
3776                         continue;
3777                 mix = srcs[i];
3778                 break;
3779         }
3780         if (!mix)
3781                 return;
3782
3783         /* need the manual connection? */
3784         if (num > 1)
3785                 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CONNECT_SEL, i);
3786         /* unmute mixer widget inputs */
3787         if (nid_has_mute(codec, mix, HDA_INPUT)) {
3788                 snd_hda_codec_write(codec, mix, 0, AC_VERB_SET_AMP_GAIN_MUTE,
3789                             AMP_IN_UNMUTE(0));
3790                 snd_hda_codec_write(codec, mix, 0, AC_VERB_SET_AMP_GAIN_MUTE,
3791                             AMP_IN_UNMUTE(1));
3792         }
3793         /* initialize volume */
3794         nid = alc_look_for_out_vol_nid(codec, pin, dac);
3795         if (nid)
3796                 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
3797                                     AMP_OUT_ZERO);
3798
3799         /* unmute DAC if it's not assigned to a mixer */
3800         nid = alc_look_for_out_mute_nid(codec, pin, dac);
3801         if (nid == mix && nid_has_mute(codec, dac, HDA_OUTPUT))
3802                 snd_hda_codec_write(codec, dac, 0, AC_VERB_SET_AMP_GAIN_MUTE,
3803                                     AMP_OUT_ZERO);
3804 }
3805
3806 static void alc_auto_init_multi_out(struct hda_codec *codec)
3807 {
3808         struct alc_spec *spec = codec->spec;
3809         int pin_type = get_pin_type(spec->autocfg.line_out_type);
3810         int i;
3811
3812         for (i = 0; i <= HDA_SIDE; i++) {
3813                 hda_nid_t nid = spec->autocfg.line_out_pins[i];
3814                 if (nid)
3815                         alc_auto_set_output_and_unmute(codec, nid, pin_type,
3816                                         spec->multiout.dac_nids[i]);
3817         }
3818 }
3819
3820 static void alc_auto_init_extra_out(struct hda_codec *codec)
3821 {
3822         struct alc_spec *spec = codec->spec;
3823         int i;
3824         hda_nid_t pin, dac;
3825
3826         for (i = 0; i < spec->autocfg.hp_outs; i++) {
3827                 if (spec->autocfg.line_out_type == AUTO_PIN_HP_OUT)
3828                         break;
3829                 pin = spec->autocfg.hp_pins[i];
3830                 if (!pin)
3831                         break;
3832                 dac = spec->multiout.hp_out_nid[i];
3833                 if (!dac) {
3834                         if (i > 0 && spec->multiout.hp_out_nid[0])
3835                                 dac = spec->multiout.hp_out_nid[0];
3836                         else
3837                                 dac = spec->multiout.dac_nids[0];
3838                 }
3839                 alc_auto_set_output_and_unmute(codec, pin, PIN_HP, dac);
3840         }
3841         for (i = 0; i < spec->autocfg.speaker_outs; i++) {
3842                 if (spec->autocfg.line_out_type == AUTO_PIN_SPEAKER_OUT)
3843                         break;
3844                 pin = spec->autocfg.speaker_pins[i];
3845                 if (!pin)
3846                         break;
3847                 dac = spec->multiout.extra_out_nid[i];
3848                 if (!dac) {
3849                         if (i > 0 && spec->multiout.extra_out_nid[0])
3850                                 dac = spec->multiout.extra_out_nid[0];
3851                         else
3852                                 dac = spec->multiout.dac_nids[0];
3853                 }
3854                 alc_auto_set_output_and_unmute(codec, pin, PIN_OUT, dac);
3855         }
3856 }
3857
3858 /* check whether the given pin can be a multi-io pin */
3859 static bool can_be_multiio_pin(struct hda_codec *codec,
3860                                unsigned int location, hda_nid_t nid)
3861 {
3862         unsigned int defcfg, caps;
3863
3864         defcfg = snd_hda_codec_get_pincfg(codec, nid);
3865         if (get_defcfg_connect(defcfg) != AC_JACK_PORT_COMPLEX)
3866                 return false;
3867         if (location && get_defcfg_location(defcfg) != location)
3868                 return false;
3869         caps = snd_hda_query_pin_caps(codec, nid);
3870         if (!(caps & AC_PINCAP_OUT))
3871                 return false;
3872         return true;
3873 }
3874
3875 /*
3876  * multi-io helper
3877  *
3878  * When hardwired is set, try to fill ony hardwired pins, and returns
3879  * zero if any pins are filled, non-zero if nothing found.
3880  * When hardwired is off, try to fill possible input pins, and returns
3881  * the badness value.
3882  */
3883 static int alc_auto_fill_multi_ios(struct hda_codec *codec,
3884                                    hda_nid_t reference_pin,
3885                                    bool hardwired, int offset)
3886 {
3887         struct alc_spec *spec = codec->spec;
3888         struct auto_pin_cfg *cfg = &spec->autocfg;
3889         int type, i, j, dacs, num_pins, old_pins;
3890         unsigned int defcfg = snd_hda_codec_get_pincfg(codec, reference_pin);
3891         unsigned int location = get_defcfg_location(defcfg);
3892         int badness = 0;
3893
3894         old_pins = spec->multi_ios;
3895         if (old_pins >= 2)
3896                 goto end_fill;
3897
3898         num_pins = 0;
3899         for (type = AUTO_PIN_LINE_IN; type >= AUTO_PIN_MIC; type--) {
3900                 for (i = 0; i < cfg->num_inputs; i++) {
3901                         if (cfg->inputs[i].type != type)
3902                                 continue;
3903                         if (can_be_multiio_pin(codec, location,
3904                                                cfg->inputs[i].pin))
3905                                 num_pins++;
3906                 }
3907         }
3908         if (num_pins < 2)
3909                 goto end_fill;
3910
3911         dacs = spec->multiout.num_dacs;
3912         for (type = AUTO_PIN_LINE_IN; type >= AUTO_PIN_MIC; type--) {
3913                 for (i = 0; i < cfg->num_inputs; i++) {
3914                         hda_nid_t nid = cfg->inputs[i].pin;
3915                         hda_nid_t dac = 0;
3916
3917                         if (cfg->inputs[i].type != type)
3918                                 continue;
3919                         if (!can_be_multiio_pin(codec, location, nid))
3920                                 continue;
3921                         for (j = 0; j < spec->multi_ios; j++) {
3922                                 if (nid == spec->multi_io[j].pin)
3923                                         break;
3924                         }
3925                         if (j < spec->multi_ios)
3926                                 continue;
3927
3928                         if (offset && offset + spec->multi_ios < dacs) {
3929                                 dac = spec->private_dac_nids[offset + spec->multi_ios];
3930                                 if (!alc_auto_is_dac_reachable(codec, nid, dac))
3931                                         dac = 0;
3932                         }
3933                         if (hardwired)
3934                                 dac = get_dac_if_single(codec, nid);
3935                         else if (!dac)
3936                                 dac = alc_auto_look_for_dac(codec, nid);
3937                         if (!dac) {
3938                                 badness++;
3939                                 continue;
3940                         }
3941                         spec->multi_io[spec->multi_ios].pin = nid;
3942                         spec->multi_io[spec->multi_ios].dac = dac;
3943                         spec->multi_ios++;
3944                         if (spec->multi_ios >= 2)
3945                                 break;
3946                 }
3947         }
3948  end_fill:
3949         if (badness)
3950                 badness = BAD_MULTI_IO;
3951         if (old_pins == spec->multi_ios) {
3952                 if (hardwired)
3953                         return 1; /* nothing found */
3954                 else
3955                         return badness; /* no badness if nothing found */
3956         }
3957         if (!hardwired && spec->multi_ios < 2) {
3958                 spec->multi_ios = old_pins;
3959                 return badness;
3960         }
3961
3962         return 0;
3963 }
3964
3965 static int alc_auto_ch_mode_info(struct snd_kcontrol *kcontrol,
3966                                  struct snd_ctl_elem_info *uinfo)
3967 {
3968         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3969         struct alc_spec *spec = codec->spec;
3970
3971         uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
3972         uinfo->count = 1;
3973         uinfo->value.enumerated.items = spec->multi_ios + 1;
3974         if (uinfo->value.enumerated.item > spec->multi_ios)
3975                 uinfo->value.enumerated.item = spec->multi_ios;
3976         sprintf(uinfo->value.enumerated.name, "%dch",
3977                 (uinfo->value.enumerated.item + 1) * 2);
3978         return 0;
3979 }
3980
3981 static int alc_auto_ch_mode_get(struct snd_kcontrol *kcontrol,
3982                                 struct snd_ctl_elem_value *ucontrol)
3983 {
3984         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3985         struct alc_spec *spec = codec->spec;
3986         ucontrol->value.enumerated.item[0] = (spec->ext_channel_count - 1) / 2;
3987         return 0;
3988 }
3989
3990 static int alc_set_multi_io(struct hda_codec *codec, int idx, bool output)
3991 {
3992         struct alc_spec *spec = codec->spec;
3993         hda_nid_t nid = spec->multi_io[idx].pin;
3994
3995         if (!spec->multi_io[idx].ctl_in)
3996                 spec->multi_io[idx].ctl_in =
3997                         snd_hda_codec_read(codec, nid, 0,
3998                                            AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
3999         if (output) {
4000                 snd_hda_codec_update_cache(codec, nid, 0,
4001                                            AC_VERB_SET_PIN_WIDGET_CONTROL,
4002                                            PIN_OUT);
4003                 if (get_wcaps(codec, nid) & AC_WCAP_OUT_AMP)
4004                         snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
4005                                                  HDA_AMP_MUTE, 0);
4006                 alc_auto_select_dac(codec, nid, spec->multi_io[idx].dac);
4007         } else {
4008                 if (get_wcaps(codec, nid) & AC_WCAP_OUT_AMP)
4009                         snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
4010                                                  HDA_AMP_MUTE, HDA_AMP_MUTE);
4011                 snd_hda_codec_update_cache(codec, nid, 0,
4012                                            AC_VERB_SET_PIN_WIDGET_CONTROL,
4013                                            spec->multi_io[idx].ctl_in);
4014         }
4015         return 0;
4016 }
4017
4018 static int alc_auto_ch_mode_put(struct snd_kcontrol *kcontrol,
4019                                 struct snd_ctl_elem_value *ucontrol)
4020 {
4021         struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
4022         struct alc_spec *spec = codec->spec;
4023         int i, ch;
4024
4025         ch = ucontrol->value.enumerated.item[0];
4026         if (ch < 0 || ch > spec->multi_ios)
4027                 return -EINVAL;
4028         if (ch == (spec->ext_channel_count - 1) / 2)
4029                 return 0;
4030         spec->ext_channel_count = (ch + 1) * 2;
4031         for (i = 0; i < spec->multi_ios; i++)
4032                 alc_set_multi_io(codec, i, i < ch);
4033         spec->multiout.max_channels = spec->ext_channel_count;
4034         if (spec->need_dac_fix && !spec->const_channel_count)
4035                 spec->multiout.num_dacs = spec->multiout.max_channels / 2;
4036         return 1;
4037 }
4038
4039 static const struct snd_kcontrol_new alc_auto_channel_mode_enum = {
4040         .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
4041         .name = "Channel Mode",
4042         .info = alc_auto_ch_mode_info,
4043         .get = alc_auto_ch_mode_get,
4044         .put = alc_auto_ch_mode_put,
4045 };
4046
4047 static int alc_auto_add_multi_channel_mode(struct hda_codec *codec)
4048 {
4049         struct alc_spec *spec = codec->spec;
4050
4051         if (spec->multi_ios > 0) {
4052                 struct snd_kcontrol_new *knew;
4053
4054                 knew = alc_kcontrol_new(spec);
4055                 if (!knew)
4056                         return -ENOMEM;
4057                 *knew = alc_auto_channel_mode_enum;
4058                 knew->name = kstrdup("Channel Mode", GFP_KERNEL);
4059                 if (!knew->name)
4060                         return -ENOMEM;
4061         }
4062         return 0;
4063 }
4064
4065 /* filter out invalid adc_nids (and capsrc_nids) that don't give all
4066  * active input pins
4067  */
4068 static void alc_remove_invalid_adc_nids(struct hda_codec *codec)
4069 {
4070         struct alc_spec *spec = codec->spec;
4071         const struct hda_input_mux *imux;
4072         hda_nid_t adc_nids[ARRAY_SIZE(spec->private_adc_nids)];
4073         hda_nid_t capsrc_nids[ARRAY_SIZE(spec->private_adc_nids)];
4074         int i, n, nums;
4075
4076         imux = spec->input_mux;
4077         if (!imux)
4078                 return;
4079         if (spec->dyn_adc_switch)
4080                 return;
4081
4082         nums = 0;
4083         for (n = 0; n < spec->num_adc_nids; n++) {
4084                 hda_nid_t cap = spec->private_capsrc_nids[n];
4085                 int num_conns = snd_hda_get_conn_list(codec, cap, NULL);
4086                 for (i = 0; i < imux->num_items; i++) {
4087                         hda_nid_t pin = spec->imux_pins[i];
4088                         if (pin) {
4089                                 if (get_connection_index(codec, cap, pin) < 0)
4090                                         break;
4091                         } else if (num_conns <= imux->items[i].index)
4092                                 break;
4093                 }
4094                 if (i >= imux->num_items) {
4095                         adc_nids[nums] = spec->private_adc_nids[n];
4096                         capsrc_nids[nums++] = cap;
4097                 }
4098         }
4099         if (!nums) {
4100                 /* check whether ADC-switch is possible */
4101                 if (!alc_check_dyn_adc_switch(codec)) {
4102                         printk(KERN_WARNING "hda_codec: %s: no valid ADC found;"
4103                                " using fallback 0x%x\n",
4104                                codec->chip_name, spec->private_adc_nids[0]);
4105                         spec->num_adc_nids = 1;
4106                         spec->auto_mic = 0;
4107                         return;
4108                 }
4109         } else if (nums != spec->num_adc_nids) {
4110                 memcpy(spec->private_adc_nids, adc_nids,
4111                        nums * sizeof(hda_nid_t));
4112                 memcpy(spec->private_capsrc_nids, capsrc_nids,
4113                        nums * sizeof(hda_nid_t));
4114                 spec->num_adc_nids = nums;
4115         }
4116
4117         if (spec->auto_mic)
4118                 alc_auto_mic_check_imux(codec); /* check auto-mic setups */
4119         else if (spec->input_mux->num_items == 1)
4120                 spec->num_adc_nids = 1; /* reduce to a single ADC */
4121 }
4122
4123 /*
4124  * initialize ADC paths
4125  */
4126 static void alc_auto_init_adc(struct hda_codec *codec, int adc_idx)
4127 {
4128         struct alc_spec *spec = codec->spec;
4129         hda_nid_t nid;
4130
4131         nid = spec->adc_nids[adc_idx];
4132         /* mute ADC */
4133         if (nid_has_mute(codec, nid, HDA_INPUT)) {
4134                 snd_hda_codec_write(codec, nid, 0,
4135                                     AC_VERB_SET_AMP_GAIN_MUTE,
4136                                     AMP_IN_MUTE(0));
4137                 return;
4138         }
4139         if (!spec->capsrc_nids)
4140                 return;
4141         nid = spec->capsrc_nids[adc_idx];
4142         if (nid_has_mute(codec, nid, HDA_OUTPUT))
4143                 snd_hda_codec_write(codec, nid, 0,
4144                                     AC_VERB_SET_AMP_GAIN_MUTE,
4145                                     AMP_OUT_MUTE);
4146 }
4147
4148 static void alc_auto_init_input_src(struct hda_codec *codec)
4149 {
4150         struct alc_spec *spec = codec->spec;
4151         int c, nums;
4152
4153         for (c = 0; c < spec->num_adc_nids; c++)
4154                 alc_auto_init_adc(codec, c);
4155         if (spec->dyn_adc_switch)
4156                 nums = 1;
4157         else
4158                 nums = spec->num_adc_nids;
4159         for (c = 0; c < nums; c++)
4160                 alc_mux_select(codec, 0, spec->cur_mux[c], true);
4161 }
4162
4163 /* add mic boosts if needed */
4164 static int alc_auto_add_mic_boost(struct hda_codec *codec)
4165 {
4166         struct alc_spec *spec = codec->spec;
4167         struct auto_pin_cfg *cfg = &spec->autocfg;
4168         int i, err;
4169         int type_idx = 0;
4170         hda_nid_t nid;
4171         const char *prev_label = NULL;
4172
4173         for (i = 0; i < cfg->num_inputs; i++) {
4174                 if (cfg->inputs[i].type > AUTO_PIN_MIC)
4175                         break;
4176                 nid = cfg->inputs[i].pin;
4177                 if (get_wcaps(codec, nid) & AC_WCAP_IN_AMP) {
4178                         const char *label;
4179                         char boost_label[32];
4180
4181                         label = hda_get_autocfg_input_label(codec, cfg, i);
4182                         if (spec->shared_mic_hp && !strcmp(label, "Misc"))
4183                                 label = "Headphone Mic";
4184                         if (prev_label && !strcmp(label, prev_label))
4185                                 type_idx++;
4186                         else
4187                                 type_idx = 0;
4188                         prev_label = label;
4189
4190                         snprintf(boost_label, sizeof(boost_label),
4191                                  "%s Boost Volume", label);
4192                         err = add_control(spec, ALC_CTL_WIDGET_VOL,
4193                                           boost_label, type_idx,
4194                                   HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_INPUT));
4195                         if (err < 0)
4196                                 return err;
4197                 }
4198         }
4199         return 0;
4200 }
4201
4202 /* select or unmute the given capsrc route */
4203 static void select_or_unmute_capsrc(struct hda_codec *codec, hda_nid_t cap,
4204                                     int idx)
4205 {
4206         if (get_wcaps_type(get_wcaps(codec, cap)) == AC_WID_AUD_MIX) {
4207                 snd_hda_codec_amp_stereo(codec, cap, HDA_INPUT, idx,
4208                                          HDA_AMP_MUTE, 0);
4209         } else if (snd_hda_get_conn_list(codec, cap, NULL) > 1) {
4210                 snd_hda_codec_write_cache(codec, cap, 0,
4211                                           AC_VERB_SET_CONNECT_SEL, idx);
4212         }
4213 }
4214
4215 /* set the default connection to that pin */
4216 static int init_capsrc_for_pin(struct hda_codec *codec, hda_nid_t pin)
4217 {
4218         struct alc_spec *spec = codec->spec;
4219         int i;
4220
4221         if (!pin)
4222                 return 0;
4223         for (i = 0; i < spec->num_adc_nids; i++) {
4224                 hda_nid_t cap = get_capsrc(spec, i);
4225                 int idx;
4226
4227                 idx = get_connection_index(codec, cap, pin);
4228                 if (idx < 0)
4229                         continue;
4230                 select_or_unmute_capsrc(codec, cap, idx);
4231                 return i; /* return the found index */
4232         }
4233         return -1; /* not found */
4234 }
4235
4236 /* initialize some special cases for input sources */
4237 static void alc_init_special_input_src(struct hda_codec *codec)
4238 {
4239         struct alc_spec *spec = codec->spec;
4240         int i;
4241
4242         for (i = 0; i < spec->autocfg.num_inputs; i++)
4243                 init_capsrc_for_pin(codec, spec->autocfg.inputs[i].pin);
4244 }
4245
4246 /* assign appropriate capture mixers */
4247 static void set_capture_mixer(struct hda_codec *codec)
4248 {
4249         struct alc_spec *spec = codec->spec;
4250         static const struct snd_kcontrol_new *caps[2][3] = {
4251                 { alc_capture_mixer_nosrc1,
4252                   alc_capture_mixer_nosrc2,
4253                   alc_capture_mixer_nosrc3 },
4254                 { alc_capture_mixer1,
4255                   alc_capture_mixer2,
4256                   alc_capture_mixer3 },
4257         };
4258
4259         /* check whether either of ADC or MUX has a volume control */
4260         if (!nid_has_volume(codec, spec->adc_nids[0], HDA_INPUT)) {
4261                 if (!spec->capsrc_nids)
4262                         return; /* no volume */
4263                 if (!nid_has_volume(codec, spec->capsrc_nids[0], HDA_OUTPUT))
4264                         return; /* no volume in capsrc, too */
4265                 spec->vol_in_capsrc = 1;
4266         }
4267
4268         if (spec->num_adc_nids > 0) {
4269                 int mux = 0;
4270                 int num_adcs = 0;
4271
4272                 if (spec->input_mux && spec->input_mux->num_items > 1)
4273                         mux = 1;
4274                 if (spec->auto_mic) {
4275                         num_adcs = 1;
4276                         mux = 0;
4277                 } else if (spec->dyn_adc_switch)
4278                         num_adcs = 1;
4279                 if (!num_adcs) {
4280                         if (spec->num_adc_nids > 3)
4281                                 spec->num_adc_nids = 3;
4282                         else if (!spec->num_adc_nids)
4283                                 return;
4284                         num_adcs = spec->num_adc_nids;
4285                 }
4286                 spec->cap_mixer = caps[mux][num_adcs - 1];
4287         }
4288 }
4289
4290 /*
4291  * standard auto-parser initializations
4292  */
4293 static void alc_auto_init_std(struct hda_codec *codec)
4294 {
4295         struct alc_spec *spec = codec->spec;
4296         alc_auto_init_multi_out(codec);
4297         alc_auto_init_extra_out(codec);
4298         alc_auto_init_analog_input(codec);
4299         alc_auto_init_input_src(codec);
4300         alc_auto_init_digital(codec);
4301         if (spec->unsol_event)
4302                 alc_inithook(codec);
4303 }
4304
4305 /*
4306  * Digital-beep handlers
4307  */
4308 #ifdef CONFIG_SND_HDA_INPUT_BEEP
4309 #define set_beep_amp(spec, nid, idx, dir) \
4310         ((spec)->beep_amp = HDA_COMPOSE_AMP_VAL(nid, 3, idx, dir))
4311
4312 static const struct snd_pci_quirk beep_white_list[] = {
4313         SND_PCI_QUIRK(0x1043, 0x829f, "ASUS", 1),
4314         SND_PCI_QUIRK(0x1043, 0x83ce, "EeePC", 1),
4315         SND_PCI_QUIRK(0x1043, 0x831a, "EeePC", 1),
4316         SND_PCI_QUIRK(0x1043, 0x834a, "EeePC", 1),
4317         SND_PCI_QUIRK(0x8086, 0xd613, "Intel", 1),
4318         {}
4319 };
4320
4321 static inline int has_cdefine_beep(struct hda_codec *codec)
4322 {
4323         struct alc_spec *spec = codec->spec;
4324         const struct snd_pci_quirk *q;
4325         q = snd_pci_quirk_lookup(codec->bus->pci, beep_white_list);
4326         if (q)
4327                 return q->value;
4328         return spec->cdefine.enable_pcbeep;
4329 }
4330 #else
4331 #define set_beep_amp(spec, nid, idx, dir) /* NOP */
4332 #define has_cdefine_beep(codec)         0
4333 #endif
4334
4335 /* parse the BIOS configuration and set up the alc_spec */
4336 /* return 1 if successful, 0 if the proper config is not found,
4337  * or a negative error code
4338  */
4339 static int alc_parse_auto_config(struct hda_codec *codec,
4340                                  const hda_nid_t *ignore_nids,
4341                                  const hda_nid_t *ssid_nids)
4342 {
4343         struct alc_spec *spec = codec->spec;
4344         struct auto_pin_cfg *cfg = &spec->autocfg;
4345         int err;
4346
4347         err = snd_hda_parse_pin_defcfg(codec, cfg, ignore_nids,
4348                                        spec->parse_flags);
4349         if (err < 0)
4350                 return err;
4351         if (!cfg->line_outs) {
4352                 if (cfg->dig_outs || cfg->dig_in_pin) {
4353                         spec->multiout.max_channels = 2;
4354                         spec->no_analog = 1;
4355                         goto dig_only;
4356                 }
4357                 return 0; /* can't find valid BIOS pin config */
4358         }
4359
4360         if (cfg->line_out_type == AUTO_PIN_SPEAKER_OUT &&
4361             cfg->line_outs <= cfg->hp_outs) {
4362                 /* use HP as primary out */
4363                 cfg->speaker_outs = cfg->line_outs;
4364                 memcpy(cfg->speaker_pins, cfg->line_out_pins,
4365                        sizeof(cfg->speaker_pins));
4366                 cfg->line_outs = cfg->hp_outs;
4367                 memcpy(cfg->line_out_pins, cfg->hp_pins, sizeof(cfg->hp_pins));
4368                 cfg->hp_outs = 0;
4369                 memset(cfg->hp_pins, 0, sizeof(cfg->hp_pins));
4370                 cfg->line_out_type = AUTO_PIN_HP_OUT;
4371         }
4372
4373         err = alc_auto_fill_dac_nids(codec);
4374         if (err < 0)
4375                 return err;
4376         err = alc_auto_add_multi_channel_mode(codec);
4377         if (err < 0)
4378                 return err;
4379         err = alc_auto_create_multi_out_ctls(codec, cfg);
4380         if (err < 0)
4381                 return err;
4382         err = alc_auto_create_hp_out(codec);
4383         if (err < 0)
4384                 return err;
4385         err = alc_auto_create_speaker_out(codec);
4386         if (err < 0)
4387                 return err;
4388         err = alc_auto_create_shared_input(codec);
4389         if (err < 0)
4390                 return err;
4391         err = alc_auto_create_input_ctls(codec);
4392         if (err < 0)
4393                 return err;
4394
4395         spec->multiout.max_channels = spec->multiout.num_dacs * 2;
4396
4397  dig_only:
4398         alc_auto_parse_digital(codec);
4399
4400         if (!spec->no_analog)
4401                 alc_remove_invalid_adc_nids(codec);
4402
4403         if (ssid_nids)
4404                 alc_ssid_check(codec, ssid_nids);
4405
4406         if (!spec->no_analog) {
4407                 alc_auto_check_switches(codec);
4408                 err = alc_auto_add_mic_boost(codec);
4409                 if (err < 0)
4410                         return err;
4411         }
4412
4413         if (spec->kctls.list)
4414                 add_mixer(spec, spec->kctls.list);
4415
4416         return 1;
4417 }
4418
4419 static int alc880_parse_auto_config(struct hda_codec *codec)
4420 {
4421         static const hda_nid_t alc880_ignore[] = { 0x1d, 0 };
4422         static const hda_nid_t alc880_ssids[] = { 0x15, 0x1b, 0x14, 0 }; 
4423         return alc_parse_auto_config(codec, alc880_ignore, alc880_ssids);
4424 }
4425
4426 #ifdef CONFIG_SND_HDA_POWER_SAVE
4427 static const struct hda_amp_list alc880_loopbacks[] = {
4428         { 0x0b, HDA_INPUT, 0 },
4429         { 0x0b, HDA_INPUT, 1 },
4430         { 0x0b, HDA_INPUT, 2 },
4431         { 0x0b, HDA_INPUT, 3 },
4432         { 0x0b, HDA_INPUT, 4 },
4433         { } /* end */
4434 };
4435 #endif
4436
4437 /*
4438  * ALC880 fix-ups
4439  */
4440 enum {
4441         ALC880_FIXUP_GPIO1,
4442         ALC880_FIXUP_GPIO2,
4443         ALC880_FIXUP_MEDION_RIM,
4444         ALC880_FIXUP_LG,
4445         ALC880_FIXUP_W810,
4446         ALC880_FIXUP_EAPD_COEF,
4447         ALC880_FIXUP_TCL_S700,
4448         ALC880_FIXUP_VOL_KNOB,
4449         ALC880_FIXUP_FUJITSU,
4450         ALC880_FIXUP_F1734,
4451         ALC880_FIXUP_UNIWILL,
4452         ALC880_FIXUP_UNIWILL_DIG,
4453         ALC880_FIXUP_Z71V,
4454         ALC880_FIXUP_3ST_BASE,
4455         ALC880_FIXUP_3ST,
4456         ALC880_FIXUP_3ST_DIG,
4457         ALC880_FIXUP_5ST_BASE,
4458         ALC880_FIXUP_5ST,
4459         ALC880_FIXUP_5ST_DIG,
4460         ALC880_FIXUP_6ST_BASE,
4461         ALC880_FIXUP_6ST,
4462         ALC880_FIXUP_6ST_DIG,
4463 };
4464
4465 /* enable the volume-knob widget support on NID 0x21 */
4466 static void alc880_fixup_vol_knob(struct hda_codec *codec,
4467                                   const struct alc_fixup *fix, int action)
4468 {
4469         if (action == ALC_FIXUP_ACT_PROBE)
4470                 snd_hda_jack_detect_enable(codec, 0x21, ALC_DCVOL_EVENT);
4471 }
4472
4473 static const struct alc_fixup alc880_fixups[] = {
4474         [ALC880_FIXUP_GPIO1] = {
4475                 .type = ALC_FIXUP_VERBS,
4476                 .v.verbs = alc_gpio1_init_verbs,
4477         },
4478         [ALC880_FIXUP_GPIO2] = {
4479                 .type = ALC_FIXUP_VERBS,
4480                 .v.verbs = alc_gpio2_init_verbs,
4481         },
4482         [ALC880_FIXUP_MEDION_RIM] = {
4483                 .type = ALC_FIXUP_VERBS,
4484                 .v.verbs = (const struct hda_verb[]) {
4485                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
4486                         { 0x20, AC_VERB_SET_PROC_COEF,  0x3060 },
4487                         { }
4488                 },
4489                 .chained = true,
4490                 .chain_id = ALC880_FIXUP_GPIO2,
4491         },
4492         [ALC880_FIXUP_LG] = {
4493                 .type = ALC_FIXUP_PINS,
4494                 .v.pins = (const struct alc_pincfg[]) {
4495                         /* disable bogus unused pins */
4496                         { 0x16, 0x411111f0 },
4497                         { 0x18, 0x411111f0 },
4498                         { 0x1a, 0x411111f0 },
4499                         { }
4500                 }
4501         },
4502         [ALC880_FIXUP_W810] = {
4503                 .type = ALC_FIXUP_PINS,
4504                 .v.pins = (const struct alc_pincfg[]) {
4505                         /* disable bogus unused pins */
4506                         { 0x17, 0x411111f0 },
4507                         { }
4508                 },
4509                 .chained = true,
4510                 .chain_id = ALC880_FIXUP_GPIO2,
4511         },
4512         [ALC880_FIXUP_EAPD_COEF] = {
4513                 .type = ALC_FIXUP_VERBS,
4514                 .v.verbs = (const struct hda_verb[]) {
4515                         /* change to EAPD mode */
4516                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
4517                         { 0x20, AC_VERB_SET_PROC_COEF,  0x3060 },
4518                         {}
4519                 },
4520         },
4521         [ALC880_FIXUP_TCL_S700] = {
4522                 .type = ALC_FIXUP_VERBS,
4523                 .v.verbs = (const struct hda_verb[]) {
4524                         /* change to EAPD mode */
4525                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
4526                         { 0x20, AC_VERB_SET_PROC_COEF,  0x3070 },
4527                         {}
4528                 },
4529                 .chained = true,
4530                 .chain_id = ALC880_FIXUP_GPIO2,
4531         },
4532         [ALC880_FIXUP_VOL_KNOB] = {
4533                 .type = ALC_FIXUP_FUNC,
4534                 .v.func = alc880_fixup_vol_knob,
4535         },
4536         [ALC880_FIXUP_FUJITSU] = {
4537                 /* override all pins as BIOS on old Amilo is broken */
4538                 .type = ALC_FIXUP_PINS,
4539                 .v.pins = (const struct alc_pincfg[]) {
4540                         { 0x14, 0x0121411f }, /* HP */
4541                         { 0x15, 0x99030120 }, /* speaker */
4542                         { 0x16, 0x99030130 }, /* bass speaker */
4543                         { 0x17, 0x411111f0 }, /* N/A */
4544                         { 0x18, 0x411111f0 }, /* N/A */
4545                         { 0x19, 0x01a19950 }, /* mic-in */
4546                         { 0x1a, 0x411111f0 }, /* N/A */
4547                         { 0x1b, 0x411111f0 }, /* N/A */
4548                         { 0x1c, 0x411111f0 }, /* N/A */
4549                         { 0x1d, 0x411111f0 }, /* N/A */
4550                         { 0x1e, 0x01454140 }, /* SPDIF out */
4551                         { }
4552                 },
4553                 .chained = true,
4554                 .chain_id = ALC880_FIXUP_VOL_KNOB,
4555         },
4556         [ALC880_FIXUP_F1734] = {
4557                 /* almost compatible with FUJITSU, but no bass and SPDIF */
4558                 .type = ALC_FIXUP_PINS,
4559                 .v.pins = (const struct alc_pincfg[]) {
4560                         { 0x14, 0x0121411f }, /* HP */
4561                         { 0x15, 0x99030120 }, /* speaker */
4562                         { 0x16, 0x411111f0 }, /* N/A */
4563                         { 0x17, 0x411111f0 }, /* N/A */
4564                         { 0x18, 0x411111f0 }, /* N/A */
4565                         { 0x19, 0x01a19950 }, /* mic-in */
4566                         { 0x1a, 0x411111f0 }, /* N/A */
4567                         { 0x1b, 0x411111f0 }, /* N/A */
4568                         { 0x1c, 0x411111f0 }, /* N/A */
4569                         { 0x1d, 0x411111f0 }, /* N/A */
4570                         { 0x1e, 0x411111f0 }, /* N/A */
4571                         { }
4572                 },
4573                 .chained = true,
4574                 .chain_id = ALC880_FIXUP_VOL_KNOB,
4575         },
4576         [ALC880_FIXUP_UNIWILL] = {
4577                 /* need to fix HP and speaker pins to be parsed correctly */
4578                 .type = ALC_FIXUP_PINS,
4579                 .v.pins = (const struct alc_pincfg[]) {
4580                         { 0x14, 0x0121411f }, /* HP */
4581                         { 0x15, 0x99030120 }, /* speaker */
4582                         { 0x16, 0x99030130 }, /* bass speaker */
4583                         { }
4584                 },
4585         },
4586         [ALC880_FIXUP_UNIWILL_DIG] = {
4587                 .type = ALC_FIXUP_PINS,
4588                 .v.pins = (const struct alc_pincfg[]) {
4589                         /* disable bogus unused pins */
4590                         { 0x17, 0x411111f0 },
4591                         { 0x19, 0x411111f0 },
4592                         { 0x1b, 0x411111f0 },
4593                         { 0x1f, 0x411111f0 },
4594                         { }
4595                 }
4596         },
4597         [ALC880_FIXUP_Z71V] = {
4598                 .type = ALC_FIXUP_PINS,
4599                 .v.pins = (const struct alc_pincfg[]) {
4600                         /* set up the whole pins as BIOS is utterly broken */
4601                         { 0x14, 0x99030120 }, /* speaker */
4602                         { 0x15, 0x0121411f }, /* HP */
4603                         { 0x16, 0x411111f0 }, /* N/A */
4604                         { 0x17, 0x411111f0 }, /* N/A */
4605                         { 0x18, 0x01a19950 }, /* mic-in */
4606                         { 0x19, 0x411111f0 }, /* N/A */
4607                         { 0x1a, 0x01813031 }, /* line-in */
4608                         { 0x1b, 0x411111f0 }, /* N/A */
4609                         { 0x1c, 0x411111f0 }, /* N/A */
4610                         { 0x1d, 0x411111f0 }, /* N/A */
4611                         { 0x1e, 0x0144111e }, /* SPDIF */
4612                         { }
4613                 }
4614         },
4615         [ALC880_FIXUP_3ST_BASE] = {
4616                 .type = ALC_FIXUP_PINS,
4617                 .v.pins = (const struct alc_pincfg[]) {
4618                         { 0x14, 0x01014010 }, /* line-out */
4619                         { 0x15, 0x411111f0 }, /* N/A */
4620                         { 0x16, 0x411111f0 }, /* N/A */
4621                         { 0x17, 0x411111f0 }, /* N/A */
4622                         { 0x18, 0x01a19c30 }, /* mic-in */
4623                         { 0x19, 0x0121411f }, /* HP */
4624                         { 0x1a, 0x01813031 }, /* line-in */
4625                         { 0x1b, 0x02a19c40 }, /* front-mic */
4626                         { 0x1c, 0x411111f0 }, /* N/A */
4627                         { 0x1d, 0x411111f0 }, /* N/A */
4628                         /* 0x1e is filled in below */
4629                         { 0x1f, 0x411111f0 }, /* N/A */
4630                         { }
4631                 }
4632         },
4633         [ALC880_FIXUP_3ST] = {
4634                 .type = ALC_FIXUP_PINS,
4635                 .v.pins = (const struct alc_pincfg[]) {
4636                         { 0x1e, 0x411111f0 }, /* N/A */
4637                         { }
4638                 },
4639                 .chained = true,
4640                 .chain_id = ALC880_FIXUP_3ST_BASE,
4641         },
4642         [ALC880_FIXUP_3ST_DIG] = {
4643                 .type = ALC_FIXUP_PINS,
4644                 .v.pins = (const struct alc_pincfg[]) {
4645                         { 0x1e, 0x0144111e }, /* SPDIF */
4646                         { }
4647                 },
4648                 .chained = true,
4649                 .chain_id = ALC880_FIXUP_3ST_BASE,
4650         },
4651         [ALC880_FIXUP_5ST_BASE] = {
4652                 .type = ALC_FIXUP_PINS,
4653                 .v.pins = (const struct alc_pincfg[]) {
4654                         { 0x14, 0x01014010 }, /* front */
4655                         { 0x15, 0x411111f0 }, /* N/A */
4656                         { 0x16, 0x01011411 }, /* CLFE */
4657                         { 0x17, 0x01016412 }, /* surr */
4658                         { 0x18, 0x01a19c30 }, /* mic-in */
4659                         { 0x19, 0x0121411f }, /* HP */
4660                         { 0x1a, 0x01813031 }, /* line-in */
4661                         { 0x1b, 0x02a19c40 }, /* front-mic */
4662                         { 0x1c, 0x411111f0 }, /* N/A */
4663                         { 0x1d, 0x411111f0 }, /* N/A */
4664                         /* 0x1e is filled in below */
4665                         { 0x1f, 0x411111f0 }, /* N/A */
4666                         { }
4667                 }
4668         },
4669         [ALC880_FIXUP_5ST] = {
4670                 .type = ALC_FIXUP_PINS,
4671                 .v.pins = (const struct alc_pincfg[]) {
4672                         { 0x1e, 0x411111f0 }, /* N/A */
4673                         { }
4674                 },
4675                 .chained = true,
4676                 .chain_id = ALC880_FIXUP_5ST_BASE,
4677         },
4678         [ALC880_FIXUP_5ST_DIG] = {
4679                 .type = ALC_FIXUP_PINS,
4680                 .v.pins = (const struct alc_pincfg[]) {
4681                         { 0x1e, 0x0144111e }, /* SPDIF */
4682                         { }
4683                 },
4684                 .chained = true,
4685                 .chain_id = ALC880_FIXUP_5ST_BASE,
4686         },
4687         [ALC880_FIXUP_6ST_BASE] = {
4688                 .type = ALC_FIXUP_PINS,
4689                 .v.pins = (const struct alc_pincfg[]) {
4690                         { 0x14, 0x01014010 }, /* front */
4691                         { 0x15, 0x01016412 }, /* surr */
4692                         { 0x16, 0x01011411 }, /* CLFE */
4693                         { 0x17, 0x01012414 }, /* side */
4694                         { 0x18, 0x01a19c30 }, /* mic-in */
4695                         { 0x19, 0x02a19c40 }, /* front-mic */
4696                         { 0x1a, 0x01813031 }, /* line-in */
4697                         { 0x1b, 0x0121411f }, /* HP */
4698                         { 0x1c, 0x411111f0 }, /* N/A */
4699                         { 0x1d, 0x411111f0 }, /* N/A */
4700                         /* 0x1e is filled in below */
4701                         { 0x1f, 0x411111f0 }, /* N/A */
4702                         { }
4703                 }
4704         },
4705         [ALC880_FIXUP_6ST] = {
4706                 .type = ALC_FIXUP_PINS,
4707                 .v.pins = (const struct alc_pincfg[]) {
4708                         { 0x1e, 0x411111f0 }, /* N/A */
4709                         { }
4710                 },
4711                 .chained = true,
4712                 .chain_id = ALC880_FIXUP_6ST_BASE,
4713         },
4714         [ALC880_FIXUP_6ST_DIG] = {
4715                 .type = ALC_FIXUP_PINS,
4716                 .v.pins = (const struct alc_pincfg[]) {
4717                         { 0x1e, 0x0144111e }, /* SPDIF */
4718                         { }
4719                 },
4720                 .chained = true,
4721                 .chain_id = ALC880_FIXUP_6ST_BASE,
4722         },
4723 };
4724
4725 static const struct snd_pci_quirk alc880_fixup_tbl[] = {
4726         SND_PCI_QUIRK(0x1019, 0x0f69, "Coeus G610P", ALC880_FIXUP_W810),
4727         SND_PCI_QUIRK(0x1043, 0x1964, "ASUS Z71V", ALC880_FIXUP_Z71V),
4728         SND_PCI_QUIRK_VENDOR(0x1043, "ASUS", ALC880_FIXUP_GPIO1),
4729         SND_PCI_QUIRK(0x1558, 0x5401, "Clevo GPIO2", ALC880_FIXUP_GPIO2),
4730         SND_PCI_QUIRK_VENDOR(0x1558, "Clevo", ALC880_FIXUP_EAPD_COEF),
4731         SND_PCI_QUIRK(0x1584, 0x9050, "Uniwill", ALC880_FIXUP_UNIWILL_DIG),
4732         SND_PCI_QUIRK(0x1584, 0x9054, "Uniwill", ALC880_FIXUP_F1734),
4733         SND_PCI_QUIRK(0x1584, 0x9070, "Uniwill", ALC880_FIXUP_UNIWILL),
4734         SND_PCI_QUIRK(0x1584, 0x9077, "Uniwill P53", ALC880_FIXUP_VOL_KNOB),
4735         SND_PCI_QUIRK(0x161f, 0x203d, "W810", ALC880_FIXUP_W810),
4736         SND_PCI_QUIRK(0x161f, 0x205d, "Medion Rim 2150", ALC880_FIXUP_MEDION_RIM),
4737         SND_PCI_QUIRK(0x1734, 0x107c, "FSC F1734", ALC880_FIXUP_F1734),
4738         SND_PCI_QUIRK(0x1734, 0x1094, "FSC Amilo M1451G", ALC880_FIXUP_FUJITSU),
4739         SND_PCI_QUIRK(0x1734, 0x10ac, "FSC AMILO Xi 1526", ALC880_FIXUP_F1734),
4740         SND_PCI_QUIRK(0x1734, 0x10b0, "FSC Amilo Pi1556", ALC880_FIXUP_FUJITSU),
4741         SND_PCI_QUIRK(0x1854, 0x003b, "LG", ALC880_FIXUP_LG),
4742         SND_PCI_QUIRK(0x1854, 0x005f, "LG P1 Express", ALC880_FIXUP_LG),
4743         SND_PCI_QUIRK(0x1854, 0x0068, "LG w1", ALC880_FIXUP_LG),
4744         SND_PCI_QUIRK(0x19db, 0x4188, "TCL S700", ALC880_FIXUP_TCL_S700),
4745
4746         /* Below is the copied entries from alc880_quirks.c.
4747          * It's not quite sure whether BIOS sets the correct pin-config table
4748          * on these machines, thus they are kept to be compatible with
4749          * the old static quirks.  Once when it's confirmed to work without
4750          * these overrides, it'd be better to remove.
4751          */
4752         SND_PCI_QUIRK(0x1019, 0xa880, "ECS", ALC880_FIXUP_5ST_DIG),
4753         SND_PCI_QUIRK(0x1019, 0xa884, "Acer APFV", ALC880_FIXUP_6ST),
4754         SND_PCI_QUIRK(0x1025, 0x0070, "ULI", ALC880_FIXUP_3ST_DIG),
4755         SND_PCI_QUIRK(0x1025, 0x0077, "ULI", ALC880_FIXUP_6ST_DIG),
4756         SND_PCI_QUIRK(0x1025, 0x0078, "ULI", ALC880_FIXUP_6ST_DIG),
4757         SND_PCI_QUIRK(0x1025, 0x0087, "ULI", ALC880_FIXUP_6ST_DIG),
4758         SND_PCI_QUIRK(0x1025, 0xe309, "ULI", ALC880_FIXUP_3ST_DIG),
4759         SND_PCI_QUIRK(0x1025, 0xe310, "ULI", ALC880_FIXUP_3ST),
4760         SND_PCI_QUIRK(0x1039, 0x1234, NULL, ALC880_FIXUP_6ST_DIG),
4761         SND_PCI_QUIRK(0x104d, 0x81a0, "Sony", ALC880_FIXUP_3ST),
4762         SND_PCI_QUIRK(0x104d, 0x81d6, "Sony", ALC880_FIXUP_3ST),
4763         SND_PCI_QUIRK(0x107b, 0x3032, "Gateway", ALC880_FIXUP_5ST),
4764         SND_PCI_QUIRK(0x107b, 0x3033, "Gateway", ALC880_FIXUP_5ST),
4765         SND_PCI_QUIRK(0x107b, 0x4039, "Gateway", ALC880_FIXUP_5ST),
4766         SND_PCI_QUIRK(0x1297, 0xc790, "Shuttle ST20G5", ALC880_FIXUP_6ST_DIG),
4767         SND_PCI_QUIRK(0x1458, 0xa102, "Gigabyte K8", ALC880_FIXUP_6ST_DIG),
4768         SND_PCI_QUIRK(0x1462, 0x1150, "MSI", ALC880_FIXUP_6ST_DIG),
4769         SND_PCI_QUIRK(0x1509, 0x925d, "FIC P4M", ALC880_FIXUP_6ST_DIG),
4770         SND_PCI_QUIRK(0x1565, 0x8202, "Biostar", ALC880_FIXUP_5ST_DIG),
4771         SND_PCI_QUIRK(0x1695, 0x400d, "EPoX", ALC880_FIXUP_5ST_DIG),
4772         SND_PCI_QUIRK(0x1695, 0x4012, "EPox EP-5LDA", ALC880_FIXUP_5ST_DIG),
4773         SND_PCI_QUIRK(0x2668, 0x8086, NULL, ALC880_FIXUP_6ST_DIG), /* broken BIOS */
4774         SND_PCI_QUIRK(0x8086, 0x2668, NULL, ALC880_FIXUP_6ST_DIG),
4775         SND_PCI_QUIRK(0x8086, 0xa100, "Intel mobo", ALC880_FIXUP_5ST_DIG),
4776         SND_PCI_QUIRK(0x8086, 0xd400, "Intel mobo", ALC880_FIXUP_5ST_DIG),
4777         SND_PCI_QUIRK(0x8086, 0xd401, "Intel mobo", ALC880_FIXUP_5ST_DIG),
4778         SND_PCI_QUIRK(0x8086, 0xd402, "Intel mobo", ALC880_FIXUP_3ST_DIG),
4779         SND_PCI_QUIRK(0x8086, 0xe224, "Intel mobo", ALC880_FIXUP_5ST_DIG),
4780         SND_PCI_QUIRK(0x8086, 0xe305, "Intel mobo", ALC880_FIXUP_3ST_DIG),
4781         SND_PCI_QUIRK(0x8086, 0xe308, "Intel mobo", ALC880_FIXUP_3ST_DIG),
4782         SND_PCI_QUIRK(0x8086, 0xe400, "Intel mobo", ALC880_FIXUP_5ST_DIG),
4783         SND_PCI_QUIRK(0x8086, 0xe401, "Intel mobo", ALC880_FIXUP_5ST_DIG),
4784         SND_PCI_QUIRK(0x8086, 0xe402, "Intel mobo", ALC880_FIXUP_5ST_DIG),
4785         /* default Intel */
4786         SND_PCI_QUIRK_VENDOR(0x8086, "Intel mobo", ALC880_FIXUP_3ST),
4787         SND_PCI_QUIRK(0xa0a0, 0x0560, "AOpen i915GMm-HFS", ALC880_FIXUP_5ST_DIG),
4788         SND_PCI_QUIRK(0xe803, 0x1019, NULL, ALC880_FIXUP_6ST_DIG),
4789         {}
4790 };
4791
4792 static const struct alc_model_fixup alc880_fixup_models[] = {
4793         {.id = ALC880_FIXUP_3ST, .name = "3stack"},
4794         {.id = ALC880_FIXUP_3ST_DIG, .name = "3stack-digout"},
4795         {.id = ALC880_FIXUP_5ST, .name = "5stack"},
4796         {.id = ALC880_FIXUP_5ST_DIG, .name = "5stack-digout"},
4797         {.id = ALC880_FIXUP_6ST, .name = "6stack"},
4798         {.id = ALC880_FIXUP_6ST_DIG, .name = "6stack-digout"},
4799         {}
4800 };
4801
4802
4803 /*
4804  * board setups
4805  */
4806 #ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
4807 #define alc_board_config \
4808         snd_hda_check_board_config
4809 #define alc_board_codec_sid_config \
4810         snd_hda_check_board_codec_sid_config
4811 #include "alc_quirks.c"
4812 #else
4813 #define alc_board_config(codec, nums, models, tbl)      -1
4814 #define alc_board_codec_sid_config(codec, nums, models, tbl)    -1
4815 #define setup_preset(codec, x)  /* NOP */
4816 #endif
4817
4818 /*
4819  * OK, here we have finally the patch for ALC880
4820  */
4821 static int patch_alc880(struct hda_codec *codec)
4822 {
4823         struct alc_spec *spec;
4824         int err;
4825
4826         spec = kzalloc(sizeof(*spec), GFP_KERNEL);
4827         if (spec == NULL)
4828                 return -ENOMEM;
4829
4830         codec->spec = spec;
4831
4832         spec->mixer_nid = 0x0b;
4833         spec->need_dac_fix = 1;
4834
4835         alc_pick_fixup(codec, alc880_fixup_models, alc880_fixup_tbl,
4836                        alc880_fixups);
4837         alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
4838
4839         /* automatic parse from the BIOS config */
4840         err = alc880_parse_auto_config(codec);
4841         if (err < 0)
4842                 goto error;
4843
4844         if (!spec->no_analog && !spec->adc_nids) {
4845                 alc_auto_fill_adc_caps(codec);
4846                 alc_rebuild_imux_for_auto_mic(codec);
4847                 alc_remove_invalid_adc_nids(codec);
4848         }
4849
4850         if (!spec->no_analog && !spec->cap_mixer)
4851                 set_capture_mixer(codec);
4852
4853         if (!spec->no_analog) {
4854                 err = snd_hda_attach_beep_device(codec, 0x1);
4855                 if (err < 0)
4856                         goto error;
4857                 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
4858         }
4859
4860         codec->patch_ops = alc_patch_ops;
4861         spec->init_hook = alc_auto_init_std;
4862 #ifdef CONFIG_SND_HDA_POWER_SAVE
4863         if (!spec->loopback.amplist)
4864                 spec->loopback.amplist = alc880_loopbacks;
4865 #endif
4866
4867         alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
4868
4869         return 0;
4870
4871  error:
4872         alc_free(codec);
4873         return err;
4874 }
4875
4876
4877 /*
4878  * ALC260 support
4879  */
4880 static int alc260_parse_auto_config(struct hda_codec *codec)
4881 {
4882         static const hda_nid_t alc260_ignore[] = { 0x17, 0 };
4883         static const hda_nid_t alc260_ssids[] = { 0x10, 0x15, 0x0f, 0 };
4884         return alc_parse_auto_config(codec, alc260_ignore, alc260_ssids);
4885 }
4886
4887 #ifdef CONFIG_SND_HDA_POWER_SAVE
4888 static const struct hda_amp_list alc260_loopbacks[] = {
4889         { 0x07, HDA_INPUT, 0 },
4890         { 0x07, HDA_INPUT, 1 },
4891         { 0x07, HDA_INPUT, 2 },
4892         { 0x07, HDA_INPUT, 3 },
4893         { 0x07, HDA_INPUT, 4 },
4894         { } /* end */
4895 };
4896 #endif
4897
4898 /*
4899  * Pin config fixes
4900  */
4901 enum {
4902         ALC260_FIXUP_HP_DC5750,
4903         ALC260_FIXUP_HP_PIN_0F,
4904         ALC260_FIXUP_COEF,
4905         ALC260_FIXUP_GPIO1,
4906         ALC260_FIXUP_GPIO1_TOGGLE,
4907         ALC260_FIXUP_REPLACER,
4908         ALC260_FIXUP_HP_B1900,
4909 };
4910
4911 static void alc260_gpio1_automute(struct hda_codec *codec)
4912 {
4913         struct alc_spec *spec = codec->spec;
4914         snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_DATA,
4915                             spec->hp_jack_present);
4916 }
4917
4918 static void alc260_fixup_gpio1_toggle(struct hda_codec *codec,
4919                                       const struct alc_fixup *fix, int action)
4920 {
4921         struct alc_spec *spec = codec->spec;
4922         if (action == ALC_FIXUP_ACT_PROBE) {
4923                 /* although the machine has only one output pin, we need to
4924                  * toggle GPIO1 according to the jack state
4925                  */
4926                 spec->automute_hook = alc260_gpio1_automute;
4927                 spec->detect_hp = 1;
4928                 spec->automute_speaker = 1;
4929                 spec->autocfg.hp_pins[0] = 0x0f; /* copy it for automute */
4930                 snd_hda_jack_detect_enable(codec, 0x0f, ALC_HP_EVENT);
4931                 spec->unsol_event = alc_sku_unsol_event;
4932                 add_verb(codec->spec, alc_gpio1_init_verbs);
4933         }
4934 }
4935
4936 static const struct alc_fixup alc260_fixups[] = {
4937         [ALC260_FIXUP_HP_DC5750] = {
4938                 .type = ALC_FIXUP_PINS,
4939                 .v.pins = (const struct alc_pincfg[]) {
4940                         { 0x11, 0x90130110 }, /* speaker */
4941                         { }
4942                 }
4943         },
4944         [ALC260_FIXUP_HP_PIN_0F] = {
4945                 .type = ALC_FIXUP_PINS,
4946                 .v.pins = (const struct alc_pincfg[]) {
4947                         { 0x0f, 0x01214000 }, /* HP */
4948                         { }
4949                 }
4950         },
4951         [ALC260_FIXUP_COEF] = {
4952                 .type = ALC_FIXUP_VERBS,
4953                 .v.verbs = (const struct hda_verb[]) {
4954                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
4955                         { 0x20, AC_VERB_SET_PROC_COEF,  0x3040 },
4956                         { }
4957                 },
4958                 .chained = true,
4959                 .chain_id = ALC260_FIXUP_HP_PIN_0F,
4960         },
4961         [ALC260_FIXUP_GPIO1] = {
4962                 .type = ALC_FIXUP_VERBS,
4963                 .v.verbs = alc_gpio1_init_verbs,
4964         },
4965         [ALC260_FIXUP_GPIO1_TOGGLE] = {
4966                 .type = ALC_FIXUP_FUNC,
4967                 .v.func = alc260_fixup_gpio1_toggle,
4968                 .chained = true,
4969                 .chain_id = ALC260_FIXUP_HP_PIN_0F,
4970         },
4971         [ALC260_FIXUP_REPLACER] = {
4972                 .type = ALC_FIXUP_VERBS,
4973                 .v.verbs = (const struct hda_verb[]) {
4974                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
4975                         { 0x20, AC_VERB_SET_PROC_COEF,  0x3050 },
4976                         { }
4977                 },
4978                 .chained = true,
4979                 .chain_id = ALC260_FIXUP_GPIO1_TOGGLE,
4980         },
4981         [ALC260_FIXUP_HP_B1900] = {
4982                 .type = ALC_FIXUP_FUNC,
4983                 .v.func = alc260_fixup_gpio1_toggle,
4984                 .chained = true,
4985                 .chain_id = ALC260_FIXUP_COEF,
4986         }
4987 };
4988
4989 static const struct snd_pci_quirk alc260_fixup_tbl[] = {
4990         SND_PCI_QUIRK(0x1025, 0x007b, "Acer C20x", ALC260_FIXUP_GPIO1),
4991         SND_PCI_QUIRK(0x1025, 0x007f, "Acer Aspire 9500", ALC260_FIXUP_COEF),
4992         SND_PCI_QUIRK(0x1025, 0x008f, "Acer", ALC260_FIXUP_GPIO1),
4993         SND_PCI_QUIRK(0x103c, 0x280a, "HP dc5750", ALC260_FIXUP_HP_DC5750),
4994         SND_PCI_QUIRK(0x103c, 0x30ba, "HP Presario B1900", ALC260_FIXUP_HP_B1900),
4995         SND_PCI_QUIRK(0x1509, 0x4540, "Favorit 100XS", ALC260_FIXUP_GPIO1),
4996         SND_PCI_QUIRK(0x161f, 0x2057, "Replacer 672V", ALC260_FIXUP_REPLACER),
4997         SND_PCI_QUIRK(0x1631, 0xc017, "PB V7900", ALC260_FIXUP_COEF),
4998         {}
4999 };
5000
5001 /*
5002  */
5003 static int patch_alc260(struct hda_codec *codec)
5004 {
5005         struct alc_spec *spec;
5006         int err;
5007
5008         spec = kzalloc(sizeof(*spec), GFP_KERNEL);
5009         if (spec == NULL)
5010                 return -ENOMEM;
5011
5012         codec->spec = spec;
5013
5014         spec->mixer_nid = 0x07;
5015
5016         alc_pick_fixup(codec, NULL, alc260_fixup_tbl, alc260_fixups);
5017         alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
5018
5019         /* automatic parse from the BIOS config */
5020         err = alc260_parse_auto_config(codec);
5021         if (err < 0)
5022                 goto error;
5023
5024         if (!spec->no_analog && !spec->adc_nids) {
5025                 alc_auto_fill_adc_caps(codec);
5026                 alc_rebuild_imux_for_auto_mic(codec);
5027                 alc_remove_invalid_adc_nids(codec);
5028         }
5029
5030         if (!spec->no_analog && !spec->cap_mixer)
5031                 set_capture_mixer(codec);
5032
5033         if (!spec->no_analog) {
5034                 err = snd_hda_attach_beep_device(codec, 0x1);
5035                 if (err < 0)
5036                         goto error;
5037                 set_beep_amp(spec, 0x07, 0x05, HDA_INPUT);
5038         }
5039
5040         codec->patch_ops = alc_patch_ops;
5041         spec->init_hook = alc_auto_init_std;
5042         spec->shutup = alc_eapd_shutup;
5043 #ifdef CONFIG_SND_HDA_POWER_SAVE
5044         if (!spec->loopback.amplist)
5045                 spec->loopback.amplist = alc260_loopbacks;
5046 #endif
5047
5048         alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
5049
5050         return 0;
5051
5052  error:
5053         alc_free(codec);
5054         return err;
5055 }
5056
5057
5058 /*
5059  * ALC882/883/885/888/889 support
5060  *
5061  * ALC882 is almost identical with ALC880 but has cleaner and more flexible
5062  * configuration.  Each pin widget can choose any input DACs and a mixer.
5063  * Each ADC is connected from a mixer of all inputs.  This makes possible
5064  * 6-channel independent captures.
5065  *
5066  * In addition, an independent DAC for the multi-playback (not used in this
5067  * driver yet).
5068  */
5069 #ifdef CONFIG_SND_HDA_POWER_SAVE
5070 #define alc882_loopbacks        alc880_loopbacks
5071 #endif
5072
5073 /*
5074  * Pin config fixes
5075  */
5076 enum {
5077         ALC882_FIXUP_ABIT_AW9D_MAX,
5078         ALC882_FIXUP_LENOVO_Y530,
5079         ALC882_FIXUP_PB_M5210,
5080         ALC882_FIXUP_ACER_ASPIRE_7736,
5081         ALC882_FIXUP_ASUS_W90V,
5082         ALC889_FIXUP_VAIO_TT,
5083         ALC888_FIXUP_EEE1601,
5084         ALC882_FIXUP_EAPD,
5085         ALC883_FIXUP_EAPD,
5086         ALC883_FIXUP_ACER_EAPD,
5087         ALC882_FIXUP_GPIO3,
5088         ALC889_FIXUP_COEF,
5089         ALC882_FIXUP_ASUS_W2JC,
5090         ALC882_FIXUP_ACER_ASPIRE_4930G,
5091         ALC882_FIXUP_ACER_ASPIRE_8930G,
5092         ALC882_FIXUP_ASPIRE_8930G_VERBS,
5093         ALC885_FIXUP_MACPRO_GPIO,
5094         ALC889_FIXUP_DAC_ROUTE,
5095 };
5096
5097 static void alc889_fixup_coef(struct hda_codec *codec,
5098                               const struct alc_fixup *fix, int action)
5099 {
5100         if (action != ALC_FIXUP_ACT_INIT)
5101                 return;
5102         alc889_coef_init(codec);
5103 }
5104
5105 /* toggle speaker-output according to the hp-jack state */
5106 static void alc882_gpio_mute(struct hda_codec *codec, int pin, int muted)
5107 {
5108         unsigned int gpiostate, gpiomask, gpiodir;
5109
5110         gpiostate = snd_hda_codec_read(codec, codec->afg, 0,
5111                                        AC_VERB_GET_GPIO_DATA, 0);
5112
5113         if (!muted)
5114                 gpiostate |= (1 << pin);
5115         else
5116                 gpiostate &= ~(1 << pin);
5117
5118         gpiomask = snd_hda_codec_read(codec, codec->afg, 0,
5119                                       AC_VERB_GET_GPIO_MASK, 0);
5120         gpiomask |= (1 << pin);
5121
5122         gpiodir = snd_hda_codec_read(codec, codec->afg, 0,
5123                                      AC_VERB_GET_GPIO_DIRECTION, 0);
5124         gpiodir |= (1 << pin);
5125
5126
5127         snd_hda_codec_write(codec, codec->afg, 0,
5128                             AC_VERB_SET_GPIO_MASK, gpiomask);
5129         snd_hda_codec_write(codec, codec->afg, 0,
5130                             AC_VERB_SET_GPIO_DIRECTION, gpiodir);
5131
5132         msleep(1);
5133
5134         snd_hda_codec_write(codec, codec->afg, 0,
5135                             AC_VERB_SET_GPIO_DATA, gpiostate);
5136 }
5137
5138 /* set up GPIO at initialization */
5139 static void alc885_fixup_macpro_gpio(struct hda_codec *codec,
5140                                      const struct alc_fixup *fix, int action)
5141 {
5142         if (action != ALC_FIXUP_ACT_INIT)
5143                 return;
5144         alc882_gpio_mute(codec, 0, 0);
5145         alc882_gpio_mute(codec, 1, 0);
5146 }
5147
5148 /* Fix the connection of some pins for ALC889:
5149  * At least, Acer Aspire 5935 shows the connections to DAC3/4 don't
5150  * work correctly (bko#42740)
5151  */
5152 static void alc889_fixup_dac_route(struct hda_codec *codec,
5153                                    const struct alc_fixup *fix, int action)
5154 {
5155         if (action == ALC_FIXUP_ACT_PRE_PROBE) {
5156                 hda_nid_t conn1[2] = { 0x0c, 0x0d };
5157                 hda_nid_t conn2[2] = { 0x0e, 0x0f };
5158                 snd_hda_override_conn_list(codec, 0x14, 2, conn1);
5159                 snd_hda_override_conn_list(codec, 0x15, 2, conn1);
5160                 snd_hda_override_conn_list(codec, 0x18, 2, conn2);
5161                 snd_hda_override_conn_list(codec, 0x1a, 2, conn2);
5162         }
5163 }
5164
5165 static const struct alc_fixup alc882_fixups[] = {
5166         [ALC882_FIXUP_ABIT_AW9D_MAX] = {
5167                 .type = ALC_FIXUP_PINS,
5168                 .v.pins = (const struct alc_pincfg[]) {
5169                         { 0x15, 0x01080104 }, /* side */
5170                         { 0x16, 0x01011012 }, /* rear */
5171                         { 0x17, 0x01016011 }, /* clfe */
5172                         { }
5173                 }
5174         },
5175         [ALC882_FIXUP_LENOVO_Y530] = {
5176                 .type = ALC_FIXUP_PINS,
5177                 .v.pins = (const struct alc_pincfg[]) {
5178                         { 0x15, 0x99130112 }, /* rear int speakers */
5179                         { 0x16, 0x99130111 }, /* subwoofer */
5180                         { }
5181                 }
5182         },
5183         [ALC882_FIXUP_PB_M5210] = {
5184                 .type = ALC_FIXUP_VERBS,
5185                 .v.verbs = (const struct hda_verb[]) {
5186                         { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF50 },
5187                         {}
5188                 }
5189         },
5190         [ALC882_FIXUP_ACER_ASPIRE_7736] = {
5191                 .type = ALC_FIXUP_SKU,
5192                 .v.sku = ALC_FIXUP_SKU_IGNORE,
5193         },
5194         [ALC882_FIXUP_ASUS_W90V] = {
5195                 .type = ALC_FIXUP_PINS,
5196                 .v.pins = (const struct alc_pincfg[]) {
5197                         { 0x16, 0x99130110 }, /* fix sequence for CLFE */
5198                         { }
5199                 }
5200         },
5201         [ALC889_FIXUP_VAIO_TT] = {
5202                 .type = ALC_FIXUP_PINS,
5203                 .v.pins = (const struct alc_pincfg[]) {
5204                         { 0x17, 0x90170111 }, /* hidden surround speaker */
5205                         { }
5206                 }
5207         },
5208         [ALC888_FIXUP_EEE1601] = {
5209                 .type = ALC_FIXUP_VERBS,
5210                 .v.verbs = (const struct hda_verb[]) {
5211                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x0b },
5212                         { 0x20, AC_VERB_SET_PROC_COEF,  0x0838 },
5213                         { }
5214                 }
5215         },
5216         [ALC882_FIXUP_EAPD] = {
5217                 .type = ALC_FIXUP_VERBS,
5218                 .v.verbs = (const struct hda_verb[]) {
5219                         /* change to EAPD mode */
5220                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
5221                         { 0x20, AC_VERB_SET_PROC_COEF, 0x3060 },
5222                         { }
5223                 }
5224         },
5225         [ALC883_FIXUP_EAPD] = {
5226                 .type = ALC_FIXUP_VERBS,
5227                 .v.verbs = (const struct hda_verb[]) {
5228                         /* change to EAPD mode */
5229                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
5230                         { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
5231                         { }
5232                 }
5233         },
5234         [ALC883_FIXUP_ACER_EAPD] = {
5235                 .type = ALC_FIXUP_VERBS,
5236                 .v.verbs = (const struct hda_verb[]) {
5237                         /* eanable EAPD on Acer laptops */
5238                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
5239                         { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
5240                         { }
5241                 }
5242         },
5243         [ALC882_FIXUP_GPIO3] = {
5244                 .type = ALC_FIXUP_VERBS,
5245                 .v.verbs = alc_gpio3_init_verbs,
5246         },
5247         [ALC882_FIXUP_ASUS_W2JC] = {
5248                 .type = ALC_FIXUP_VERBS,
5249                 .v.verbs = alc_gpio1_init_verbs,
5250                 .chained = true,
5251                 .chain_id = ALC882_FIXUP_EAPD,
5252         },
5253         [ALC889_FIXUP_COEF] = {
5254                 .type = ALC_FIXUP_FUNC,
5255                 .v.func = alc889_fixup_coef,
5256         },
5257         [ALC882_FIXUP_ACER_ASPIRE_4930G] = {
5258                 .type = ALC_FIXUP_PINS,
5259                 .v.pins = (const struct alc_pincfg[]) {
5260                         { 0x16, 0x99130111 }, /* CLFE speaker */
5261                         { 0x17, 0x99130112 }, /* surround speaker */
5262                         { }
5263                 }
5264         },
5265         [ALC882_FIXUP_ACER_ASPIRE_8930G] = {
5266                 .type = ALC_FIXUP_PINS,
5267                 .v.pins = (const struct alc_pincfg[]) {
5268                         { 0x16, 0x99130111 }, /* CLFE speaker */
5269                         { 0x1b, 0x99130112 }, /* surround speaker */
5270                         { }
5271                 },
5272                 .chained = true,
5273                 .chain_id = ALC882_FIXUP_ASPIRE_8930G_VERBS,
5274         },
5275         [ALC882_FIXUP_ASPIRE_8930G_VERBS] = {
5276                 /* additional init verbs for Acer Aspire 8930G */
5277                 .type = ALC_FIXUP_VERBS,
5278                 .v.verbs = (const struct hda_verb[]) {
5279                         /* Enable all DACs */
5280                         /* DAC DISABLE/MUTE 1? */
5281                         /*  setting bits 1-5 disables DAC nids 0x02-0x06
5282                          *  apparently. Init=0x38 */
5283                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x03 },
5284                         { 0x20, AC_VERB_SET_PROC_COEF, 0x0000 },
5285                         /* DAC DISABLE/MUTE 2? */
5286                         /*  some bit here disables the other DACs.
5287                          *  Init=0x4900 */
5288                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x08 },
5289                         { 0x20, AC_VERB_SET_PROC_COEF, 0x0000 },
5290                         /* DMIC fix
5291                          * This laptop has a stereo digital microphone.
5292                          * The mics are only 1cm apart which makes the stereo
5293                          * useless. However, either the mic or the ALC889
5294                          * makes the signal become a difference/sum signal
5295                          * instead of standard stereo, which is annoying.
5296                          * So instead we flip this bit which makes the
5297                          * codec replicate the sum signal to both channels,
5298                          * turning it into a normal mono mic.
5299                          */
5300                         /* DMIC_CONTROL? Init value = 0x0001 */
5301                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x0b },
5302                         { 0x20, AC_VERB_SET_PROC_COEF, 0x0003 },
5303                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
5304                         { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
5305                         { }
5306                 }
5307         },
5308         [ALC885_FIXUP_MACPRO_GPIO] = {
5309                 .type = ALC_FIXUP_FUNC,
5310                 .v.func = alc885_fixup_macpro_gpio,
5311         },
5312         [ALC889_FIXUP_DAC_ROUTE] = {
5313                 .type = ALC_FIXUP_FUNC,
5314                 .v.func = alc889_fixup_dac_route,
5315         },
5316 };
5317
5318 static const struct snd_pci_quirk alc882_fixup_tbl[] = {
5319         SND_PCI_QUIRK(0x1025, 0x006c, "Acer Aspire 9810", ALC883_FIXUP_ACER_EAPD),
5320         SND_PCI_QUIRK(0x1025, 0x0090, "Acer Aspire", ALC883_FIXUP_ACER_EAPD),
5321         SND_PCI_QUIRK(0x1025, 0x010a, "Acer Ferrari 5000", ALC883_FIXUP_ACER_EAPD),
5322         SND_PCI_QUIRK(0x1025, 0x0110, "Acer Aspire", ALC883_FIXUP_ACER_EAPD),
5323         SND_PCI_QUIRK(0x1025, 0x0112, "Acer Aspire 9303", ALC883_FIXUP_ACER_EAPD),
5324         SND_PCI_QUIRK(0x1025, 0x0121, "Acer Aspire 5920G", ALC883_FIXUP_ACER_EAPD),
5325         SND_PCI_QUIRK(0x1025, 0x013e, "Acer Aspire 4930G",
5326                       ALC882_FIXUP_ACER_ASPIRE_4930G),
5327         SND_PCI_QUIRK(0x1025, 0x013f, "Acer Aspire 5930G",
5328                       ALC882_FIXUP_ACER_ASPIRE_4930G),
5329         SND_PCI_QUIRK(0x1025, 0x0145, "Acer Aspire 8930G",
5330                       ALC882_FIXUP_ACER_ASPIRE_8930G),
5331         SND_PCI_QUIRK(0x1025, 0x0146, "Acer Aspire 6935G",
5332                       ALC882_FIXUP_ACER_ASPIRE_8930G),
5333         SND_PCI_QUIRK(0x1025, 0x015e, "Acer Aspire 6930G",
5334                       ALC882_FIXUP_ACER_ASPIRE_4930G),
5335         SND_PCI_QUIRK(0x1025, 0x0166, "Acer Aspire 6530G",
5336                       ALC882_FIXUP_ACER_ASPIRE_4930G),
5337         SND_PCI_QUIRK(0x1025, 0x0142, "Acer Aspire 7730G",
5338                       ALC882_FIXUP_ACER_ASPIRE_4930G),
5339         SND_PCI_QUIRK(0x1025, 0x0155, "Packard-Bell M5120", ALC882_FIXUP_PB_M5210),
5340         SND_PCI_QUIRK(0x1025, 0x0259, "Acer Aspire 5935", ALC889_FIXUP_DAC_ROUTE),
5341         SND_PCI_QUIRK(0x1025, 0x0296, "Acer Aspire 7736z", ALC882_FIXUP_ACER_ASPIRE_7736),
5342         SND_PCI_QUIRK(0x1043, 0x13c2, "Asus A7M", ALC882_FIXUP_EAPD),
5343         SND_PCI_QUIRK(0x1043, 0x1873, "ASUS W90V", ALC882_FIXUP_ASUS_W90V),
5344         SND_PCI_QUIRK(0x1043, 0x1971, "Asus W2JC", ALC882_FIXUP_ASUS_W2JC),
5345         SND_PCI_QUIRK(0x1043, 0x835f, "Asus Eee 1601", ALC888_FIXUP_EEE1601),
5346         SND_PCI_QUIRK(0x104d, 0x9047, "Sony Vaio TT", ALC889_FIXUP_VAIO_TT),
5347
5348         /* All Apple entries are in codec SSIDs */
5349         SND_PCI_QUIRK(0x106b, 0x0c00, "Mac Pro", ALC885_FIXUP_MACPRO_GPIO),
5350         SND_PCI_QUIRK(0x106b, 0x1000, "iMac 24", ALC885_FIXUP_MACPRO_GPIO),
5351         SND_PCI_QUIRK(0x106b, 0x2800, "AppleTV", ALC885_FIXUP_MACPRO_GPIO),
5352         SND_PCI_QUIRK(0x106b, 0x3200, "iMac 7,1 Aluminum", ALC882_FIXUP_EAPD),
5353         SND_PCI_QUIRK(0x106b, 0x3e00, "iMac 24 Aluminum", ALC885_FIXUP_MACPRO_GPIO),
5354
5355         SND_PCI_QUIRK(0x1071, 0x8258, "Evesham Voyaeger", ALC882_FIXUP_EAPD),
5356         SND_PCI_QUIRK_VENDOR(0x1462, "MSI", ALC882_FIXUP_GPIO3),
5357         SND_PCI_QUIRK(0x147b, 0x107a, "Abit AW9D-MAX", ALC882_FIXUP_ABIT_AW9D_MAX),
5358         SND_PCI_QUIRK_VENDOR(0x1558, "Clevo laptop", ALC882_FIXUP_EAPD),
5359         SND_PCI_QUIRK(0x161f, 0x2054, "Medion laptop", ALC883_FIXUP_EAPD),
5360         SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Y530", ALC882_FIXUP_LENOVO_Y530),
5361         SND_PCI_QUIRK(0x8086, 0x0022, "DX58SO", ALC889_FIXUP_COEF),
5362         {}
5363 };
5364
5365 /*
5366  * BIOS auto configuration
5367  */
5368 /* almost identical with ALC880 parser... */
5369 static int alc882_parse_auto_config(struct hda_codec *codec)
5370 {
5371         static const hda_nid_t alc882_ignore[] = { 0x1d, 0 };
5372         static const hda_nid_t alc882_ssids[] = { 0x15, 0x1b, 0x14, 0 };
5373         return alc_parse_auto_config(codec, alc882_ignore, alc882_ssids);
5374 }
5375
5376 /*
5377  */
5378 #ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
5379 #include "alc882_quirks.c"
5380 #endif
5381
5382 static int patch_alc882(struct hda_codec *codec)
5383 {
5384         struct alc_spec *spec;
5385         int err, board_config;
5386
5387         spec = kzalloc(sizeof(*spec), GFP_KERNEL);
5388         if (spec == NULL)
5389                 return -ENOMEM;
5390
5391         codec->spec = spec;
5392
5393         spec->mixer_nid = 0x0b;
5394
5395         switch (codec->vendor_id) {
5396         case 0x10ec0882:
5397         case 0x10ec0885:
5398                 break;
5399         default:
5400                 /* ALC883 and variants */
5401                 alc_fix_pll_init(codec, 0x20, 0x0a, 10);
5402                 break;
5403         }
5404
5405         err = alc_codec_rename_from_preset(codec);
5406         if (err < 0)
5407                 goto error;
5408
5409         board_config = alc_board_config(codec, ALC882_MODEL_LAST,
5410                                         alc882_models, NULL);
5411         if (board_config < 0)
5412                 board_config = alc_board_codec_sid_config(codec,
5413                         ALC882_MODEL_LAST, alc882_models, alc882_ssid_cfg_tbl);
5414
5415         if (board_config < 0) {
5416                 printk(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
5417                        codec->chip_name);
5418                 board_config = ALC_MODEL_AUTO;
5419         }
5420
5421         if (board_config == ALC_MODEL_AUTO) {
5422                 alc_pick_fixup(codec, NULL, alc882_fixup_tbl, alc882_fixups);
5423                 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
5424         }
5425
5426         alc_auto_parse_customize_define(codec);
5427
5428         if (board_config == ALC_MODEL_AUTO) {
5429                 /* automatic parse from the BIOS config */
5430                 err = alc882_parse_auto_config(codec);
5431                 if (err < 0)
5432                         goto error;
5433         }
5434
5435         if (board_config != ALC_MODEL_AUTO) {
5436                 setup_preset(codec, &alc882_presets[board_config]);
5437                 spec->vmaster_nid = 0x0c;
5438         }
5439
5440         if (!spec->no_analog && !spec->adc_nids) {
5441                 alc_auto_fill_adc_caps(codec);
5442                 alc_rebuild_imux_for_auto_mic(codec);
5443                 alc_remove_invalid_adc_nids(codec);
5444         }
5445
5446         if (!spec->no_analog && !spec->cap_mixer)
5447                 set_capture_mixer(codec);
5448
5449         if (!spec->no_analog && has_cdefine_beep(codec)) {
5450                 err = snd_hda_attach_beep_device(codec, 0x1);
5451                 if (err < 0)
5452                         goto error;
5453                 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
5454         }
5455
5456         codec->patch_ops = alc_patch_ops;
5457         if (board_config == ALC_MODEL_AUTO)
5458                 spec->init_hook = alc_auto_init_std;
5459         else
5460                 codec->patch_ops.build_controls = __alc_build_controls;
5461
5462 #ifdef CONFIG_SND_HDA_POWER_SAVE
5463         if (!spec->loopback.amplist)
5464                 spec->loopback.amplist = alc882_loopbacks;
5465 #endif
5466
5467         alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
5468
5469         return 0;
5470
5471  error:
5472         alc_free(codec);
5473         return err;
5474 }
5475
5476
5477 /*
5478  * ALC262 support
5479  */
5480 static int alc262_parse_auto_config(struct hda_codec *codec)
5481 {
5482         static const hda_nid_t alc262_ignore[] = { 0x1d, 0 };
5483         static const hda_nid_t alc262_ssids[] = { 0x15, 0x1b, 0x14, 0 };
5484         return alc_parse_auto_config(codec, alc262_ignore, alc262_ssids);
5485 }
5486
5487 /*
5488  * Pin config fixes
5489  */
5490 enum {
5491         ALC262_FIXUP_FSC_H270,
5492         ALC262_FIXUP_HP_Z200,
5493         ALC262_FIXUP_TYAN,
5494         ALC262_FIXUP_LENOVO_3000,
5495         ALC262_FIXUP_BENQ,
5496         ALC262_FIXUP_BENQ_T31,
5497 };
5498
5499 static const struct alc_fixup alc262_fixups[] = {
5500         [ALC262_FIXUP_FSC_H270] = {
5501                 .type = ALC_FIXUP_PINS,
5502                 .v.pins = (const struct alc_pincfg[]) {
5503                         { 0x14, 0x99130110 }, /* speaker */
5504                         { 0x15, 0x0221142f }, /* front HP */
5505                         { 0x1b, 0x0121141f }, /* rear HP */
5506                         { }
5507                 }
5508         },
5509         [ALC262_FIXUP_HP_Z200] = {
5510                 .type = ALC_FIXUP_PINS,
5511                 .v.pins = (const struct alc_pincfg[]) {
5512                         { 0x16, 0x99130120 }, /* internal speaker */
5513                         { }
5514                 }
5515         },
5516         [ALC262_FIXUP_TYAN] = {
5517                 .type = ALC_FIXUP_PINS,
5518                 .v.pins = (const struct alc_pincfg[]) {
5519                         { 0x14, 0x1993e1f0 }, /* int AUX */
5520                         { }
5521                 }
5522         },
5523         [ALC262_FIXUP_LENOVO_3000] = {
5524                 .type = ALC_FIXUP_VERBS,
5525                 .v.verbs = (const struct hda_verb[]) {
5526                         { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF50 },
5527                         {}
5528                 },
5529                 .chained = true,
5530                 .chain_id = ALC262_FIXUP_BENQ,
5531         },
5532         [ALC262_FIXUP_BENQ] = {
5533                 .type = ALC_FIXUP_VERBS,
5534                 .v.verbs = (const struct hda_verb[]) {
5535                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
5536                         { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
5537                         {}
5538                 }
5539         },
5540         [ALC262_FIXUP_BENQ_T31] = {
5541                 .type = ALC_FIXUP_VERBS,
5542                 .v.verbs = (const struct hda_verb[]) {
5543                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
5544                         { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
5545                         {}
5546                 }
5547         },
5548 };
5549
5550 static const struct snd_pci_quirk alc262_fixup_tbl[] = {
5551         SND_PCI_QUIRK(0x103c, 0x170b, "HP Z200", ALC262_FIXUP_HP_Z200),
5552         SND_PCI_QUIRK(0x10cf, 0x1397, "Fujitsu", ALC262_FIXUP_BENQ),
5553         SND_PCI_QUIRK(0x10cf, 0x142d, "Fujitsu Lifebook E8410", ALC262_FIXUP_BENQ),
5554         SND_PCI_QUIRK(0x10f1, 0x2915, "Tyan Thunder n6650W", ALC262_FIXUP_TYAN),
5555         SND_PCI_QUIRK(0x1734, 0x1147, "FSC Celsius H270", ALC262_FIXUP_FSC_H270),
5556         SND_PCI_QUIRK(0x17aa, 0x384e, "Lenovo 3000", ALC262_FIXUP_LENOVO_3000),
5557         SND_PCI_QUIRK(0x17ff, 0x0560, "Benq ED8", ALC262_FIXUP_BENQ),
5558         SND_PCI_QUIRK(0x17ff, 0x058d, "Benq T31-16", ALC262_FIXUP_BENQ_T31),
5559         {}
5560 };
5561
5562
5563 #ifdef CONFIG_SND_HDA_POWER_SAVE
5564 #define alc262_loopbacks        alc880_loopbacks
5565 #endif
5566
5567 /*
5568  */
5569 static int patch_alc262(struct hda_codec *codec)
5570 {
5571         struct alc_spec *spec;
5572         int err;
5573
5574         spec = kzalloc(sizeof(*spec), GFP_KERNEL);
5575         if (spec == NULL)
5576                 return -ENOMEM;
5577
5578         codec->spec = spec;
5579
5580         spec->mixer_nid = 0x0b;
5581
5582 #if 0
5583         /* pshou 07/11/05  set a zero PCM sample to DAC when FIFO is
5584          * under-run
5585          */
5586         {
5587         int tmp;
5588         snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_COEF_INDEX, 7);
5589         tmp = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_PROC_COEF, 0);
5590         snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_COEF_INDEX, 7);
5591         snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_PROC_COEF, tmp | 0x80);
5592         }
5593 #endif
5594         alc_auto_parse_customize_define(codec);
5595
5596         alc_fix_pll_init(codec, 0x20, 0x0a, 10);
5597
5598         alc_pick_fixup(codec, NULL, alc262_fixup_tbl, alc262_fixups);
5599         alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
5600
5601         /* automatic parse from the BIOS config */
5602         err = alc262_parse_auto_config(codec);
5603         if (err < 0)
5604                 goto error;
5605
5606         if (!spec->no_analog && !spec->adc_nids) {
5607                 alc_auto_fill_adc_caps(codec);
5608                 alc_rebuild_imux_for_auto_mic(codec);
5609                 alc_remove_invalid_adc_nids(codec);
5610         }
5611
5612         if (!spec->no_analog && !spec->cap_mixer)
5613                 set_capture_mixer(codec);
5614
5615         if (!spec->no_analog && has_cdefine_beep(codec)) {
5616                 err = snd_hda_attach_beep_device(codec, 0x1);
5617                 if (err < 0)
5618                         goto error;
5619                 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
5620         }
5621
5622         codec->patch_ops = alc_patch_ops;
5623         spec->init_hook = alc_auto_init_std;
5624         spec->shutup = alc_eapd_shutup;
5625
5626 #ifdef CONFIG_SND_HDA_POWER_SAVE
5627         if (!spec->loopback.amplist)
5628                 spec->loopback.amplist = alc262_loopbacks;
5629 #endif
5630
5631         alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
5632
5633         return 0;
5634
5635  error:
5636         alc_free(codec);
5637         return err;
5638 }
5639
5640 /*
5641  *  ALC268
5642  */
5643 /* bind Beep switches of both NID 0x0f and 0x10 */
5644 static const struct hda_bind_ctls alc268_bind_beep_sw = {
5645         .ops = &snd_hda_bind_sw,
5646         .values = {
5647                 HDA_COMPOSE_AMP_VAL(0x0f, 3, 1, HDA_INPUT),
5648                 HDA_COMPOSE_AMP_VAL(0x10, 3, 1, HDA_INPUT),
5649                 0
5650         },
5651 };
5652
5653 static const struct snd_kcontrol_new alc268_beep_mixer[] = {
5654         HDA_CODEC_VOLUME("Beep Playback Volume", 0x1d, 0x0, HDA_INPUT),
5655         HDA_BIND_SW("Beep Playback Switch", &alc268_bind_beep_sw),
5656         { }
5657 };
5658
5659 /* set PCBEEP vol = 0, mute connections */
5660 static const struct hda_verb alc268_beep_init_verbs[] = {
5661         {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5662         {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5663         {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5664         { }
5665 };
5666
5667 /*
5668  * BIOS auto configuration
5669  */
5670 static int alc268_parse_auto_config(struct hda_codec *codec)
5671 {
5672         static const hda_nid_t alc268_ssids[] = { 0x15, 0x1b, 0x14, 0 };
5673         struct alc_spec *spec = codec->spec;
5674         int err = alc_parse_auto_config(codec, NULL, alc268_ssids);
5675         if (err > 0) {
5676                 if (!spec->no_analog && spec->autocfg.speaker_pins[0] != 0x1d) {
5677                         add_mixer(spec, alc268_beep_mixer);
5678                         add_verb(spec, alc268_beep_init_verbs);
5679                 }
5680         }
5681         return err;
5682 }
5683
5684 /*
5685  */
5686 static int patch_alc268(struct hda_codec *codec)
5687 {
5688         struct alc_spec *spec;
5689         int i, has_beep, err;
5690
5691         spec = kzalloc(sizeof(*spec), GFP_KERNEL);
5692         if (spec == NULL)
5693                 return -ENOMEM;
5694
5695         codec->spec = spec;
5696
5697         /* ALC268 has no aa-loopback mixer */
5698
5699         /* automatic parse from the BIOS config */
5700         err = alc268_parse_auto_config(codec);
5701         if (err < 0)
5702                 goto error;
5703
5704         has_beep = 0;
5705         for (i = 0; i < spec->num_mixers; i++) {
5706                 if (spec->mixers[i] == alc268_beep_mixer) {
5707                         has_beep = 1;
5708                         break;
5709                 }
5710         }
5711
5712         if (has_beep) {
5713                 err = snd_hda_attach_beep_device(codec, 0x1);
5714                 if (err < 0)
5715                         goto error;
5716                 if (!query_amp_caps(codec, 0x1d, HDA_INPUT))
5717                         /* override the amp caps for beep generator */
5718                         snd_hda_override_amp_caps(codec, 0x1d, HDA_INPUT,
5719                                           (0x0c << AC_AMPCAP_OFFSET_SHIFT) |
5720                                           (0x0c << AC_AMPCAP_NUM_STEPS_SHIFT) |
5721                                           (0x07 << AC_AMPCAP_STEP_SIZE_SHIFT) |
5722                                           (0 << AC_AMPCAP_MUTE_SHIFT));
5723         }
5724
5725         if (!spec->no_analog && !spec->adc_nids) {
5726                 alc_auto_fill_adc_caps(codec);
5727                 alc_rebuild_imux_for_auto_mic(codec);
5728                 alc_remove_invalid_adc_nids(codec);
5729         }
5730
5731         if (!spec->no_analog && !spec->cap_mixer)
5732                 set_capture_mixer(codec);
5733
5734         codec->patch_ops = alc_patch_ops;
5735         spec->init_hook = alc_auto_init_std;
5736         spec->shutup = alc_eapd_shutup;
5737
5738         return 0;
5739
5740  error:
5741         alc_free(codec);
5742         return err;
5743 }
5744
5745 /*
5746  * ALC269
5747  */
5748 #ifdef CONFIG_SND_HDA_POWER_SAVE
5749 #define alc269_loopbacks        alc880_loopbacks
5750 #endif
5751
5752 static const struct hda_pcm_stream alc269_44k_pcm_analog_playback = {
5753         .substreams = 1,
5754         .channels_min = 2,
5755         .channels_max = 8,
5756         .rates = SNDRV_PCM_RATE_44100, /* fixed rate */
5757         /* NID is set in alc_build_pcms */
5758         .ops = {
5759                 .open = alc_playback_pcm_open,
5760                 .prepare = alc_playback_pcm_prepare,
5761                 .cleanup = alc_playback_pcm_cleanup
5762         },
5763 };
5764
5765 static const struct hda_pcm_stream alc269_44k_pcm_analog_capture = {
5766         .substreams = 1,
5767         .channels_min = 2,
5768         .channels_max = 2,
5769         .rates = SNDRV_PCM_RATE_44100, /* fixed rate */
5770         /* NID is set in alc_build_pcms */
5771 };
5772
5773 #ifdef CONFIG_SND_HDA_POWER_SAVE
5774 static int alc269_mic2_for_mute_led(struct hda_codec *codec)
5775 {
5776         switch (codec->subsystem_id) {
5777         case 0x103c1586:
5778                 return 1;
5779         }
5780         return 0;
5781 }
5782
5783 static int alc269_mic2_mute_check_ps(struct hda_codec *codec, hda_nid_t nid)
5784 {
5785         /* update mute-LED according to the speaker mute state */
5786         if (nid == 0x01 || nid == 0x14) {
5787                 int pinval;
5788                 if (snd_hda_codec_amp_read(codec, 0x14, 0, HDA_OUTPUT, 0) &
5789                     HDA_AMP_MUTE)
5790                         pinval = 0x24;
5791                 else
5792                         pinval = 0x20;
5793                 /* mic2 vref pin is used for mute LED control */
5794                 snd_hda_codec_update_cache(codec, 0x19, 0,
5795                                            AC_VERB_SET_PIN_WIDGET_CONTROL,
5796                                            pinval);
5797         }
5798         return alc_check_power_status(codec, nid);
5799 }
5800 #endif /* CONFIG_SND_HDA_POWER_SAVE */
5801
5802 /* different alc269-variants */
5803 enum {
5804         ALC269_TYPE_ALC269VA,
5805         ALC269_TYPE_ALC269VB,
5806         ALC269_TYPE_ALC269VC,
5807 };
5808
5809 /*
5810  * BIOS auto configuration
5811  */
5812 static int alc269_parse_auto_config(struct hda_codec *codec)
5813 {
5814         static const hda_nid_t alc269_ignore[] = { 0x1d, 0 };
5815         static const hda_nid_t alc269_ssids[] = { 0, 0x1b, 0x14, 0x21 };
5816         static const hda_nid_t alc269va_ssids[] = { 0x15, 0x1b, 0x14, 0 };
5817         struct alc_spec *spec = codec->spec;
5818         const hda_nid_t *ssids = spec->codec_variant == ALC269_TYPE_ALC269VA ?
5819                 alc269va_ssids : alc269_ssids;
5820
5821         return alc_parse_auto_config(codec, alc269_ignore, ssids);
5822 }
5823
5824 static void alc269_toggle_power_output(struct hda_codec *codec, int power_up)
5825 {
5826         int val = alc_read_coef_idx(codec, 0x04);
5827         if (power_up)
5828                 val |= 1 << 11;
5829         else
5830                 val &= ~(1 << 11);
5831         alc_write_coef_idx(codec, 0x04, val);
5832 }
5833
5834 static void alc269_shutup(struct hda_codec *codec)
5835 {
5836         if ((alc_get_coef0(codec) & 0x00ff) == 0x017)
5837                 alc269_toggle_power_output(codec, 0);
5838         if ((alc_get_coef0(codec) & 0x00ff) == 0x018) {
5839                 alc269_toggle_power_output(codec, 0);
5840                 msleep(150);
5841         }
5842 }
5843
5844 #ifdef CONFIG_PM
5845 static int alc269_resume(struct hda_codec *codec)
5846 {
5847         if ((alc_get_coef0(codec) & 0x00ff) == 0x018) {
5848                 alc269_toggle_power_output(codec, 0);
5849                 msleep(150);
5850         }
5851
5852         codec->patch_ops.init(codec);
5853
5854         if ((alc_get_coef0(codec) & 0x00ff) == 0x017) {
5855                 alc269_toggle_power_output(codec, 1);
5856                 msleep(200);
5857         }
5858
5859         if ((alc_get_coef0(codec) & 0x00ff) == 0x018)
5860                 alc269_toggle_power_output(codec, 1);
5861
5862         snd_hda_codec_resume_amp(codec);
5863         snd_hda_codec_resume_cache(codec);
5864         hda_call_check_power_status(codec, 0x01);
5865         return 0;
5866 }
5867 #endif /* CONFIG_PM */
5868
5869 static void alc269_fixup_hweq(struct hda_codec *codec,
5870                                const struct alc_fixup *fix, int action)
5871 {
5872         int coef;
5873
5874         if (action != ALC_FIXUP_ACT_INIT)
5875                 return;
5876         coef = alc_read_coef_idx(codec, 0x1e);
5877         alc_write_coef_idx(codec, 0x1e, coef | 0x80);
5878 }
5879
5880 static void alc271_fixup_dmic(struct hda_codec *codec,
5881                               const struct alc_fixup *fix, int action)
5882 {
5883         static const struct hda_verb verbs[] = {
5884                 {0x20, AC_VERB_SET_COEF_INDEX, 0x0d},
5885                 {0x20, AC_VERB_SET_PROC_COEF, 0x4000},
5886                 {}
5887         };
5888         unsigned int cfg;
5889
5890         if (strcmp(codec->chip_name, "ALC271X"))
5891                 return;
5892         cfg = snd_hda_codec_get_pincfg(codec, 0x12);
5893         if (get_defcfg_connect(cfg) == AC_JACK_PORT_FIXED)
5894                 snd_hda_sequence_write(codec, verbs);
5895 }
5896
5897 static void alc269_fixup_pcm_44k(struct hda_codec *codec,
5898                                  const struct alc_fixup *fix, int action)
5899 {
5900         struct alc_spec *spec = codec->spec;
5901
5902         if (action != ALC_FIXUP_ACT_PROBE)
5903                 return;
5904
5905         /* Due to a hardware problem on Lenovo Ideadpad, we need to
5906          * fix the sample rate of analog I/O to 44.1kHz
5907          */
5908         spec->stream_analog_playback = &alc269_44k_pcm_analog_playback;
5909         spec->stream_analog_capture = &alc269_44k_pcm_analog_capture;
5910 }
5911
5912 static void alc269_fixup_stereo_dmic(struct hda_codec *codec,
5913                                      const struct alc_fixup *fix, int action)
5914 {
5915         int coef;
5916
5917         if (action != ALC_FIXUP_ACT_INIT)
5918                 return;
5919         /* The digital-mic unit sends PDM (differential signal) instead of
5920          * the standard PCM, thus you can't record a valid mono stream as is.
5921          * Below is a workaround specific to ALC269 to control the dmic
5922          * signal source as mono.
5923          */
5924         coef = alc_read_coef_idx(codec, 0x07);
5925         alc_write_coef_idx(codec, 0x07, coef | 0x80);
5926 }
5927
5928 static void alc269_quanta_automute(struct hda_codec *codec)
5929 {
5930         update_outputs(codec);
5931
5932         snd_hda_codec_write(codec, 0x20, 0,
5933                         AC_VERB_SET_COEF_INDEX, 0x0c);
5934         snd_hda_codec_write(codec, 0x20, 0,
5935                         AC_VERB_SET_PROC_COEF, 0x680);
5936
5937         snd_hda_codec_write(codec, 0x20, 0,
5938                         AC_VERB_SET_COEF_INDEX, 0x0c);
5939         snd_hda_codec_write(codec, 0x20, 0,
5940                         AC_VERB_SET_PROC_COEF, 0x480);
5941 }
5942
5943 static void alc269_fixup_quanta_mute(struct hda_codec *codec,
5944                                      const struct alc_fixup *fix, int action)
5945 {
5946         struct alc_spec *spec = codec->spec;
5947         if (action != ALC_FIXUP_ACT_PROBE)
5948                 return;
5949         spec->automute_hook = alc269_quanta_automute;
5950 }
5951
5952 enum {
5953         ALC269_FIXUP_SONY_VAIO,
5954         ALC275_FIXUP_SONY_VAIO_GPIO2,
5955         ALC269_FIXUP_DELL_M101Z,
5956         ALC269_FIXUP_SKU_IGNORE,
5957         ALC269_FIXUP_ASUS_G73JW,
5958         ALC269_FIXUP_LENOVO_EAPD,
5959         ALC275_FIXUP_SONY_HWEQ,
5960         ALC271_FIXUP_DMIC,
5961         ALC269_FIXUP_PCM_44K,
5962         ALC269_FIXUP_STEREO_DMIC,
5963         ALC269_FIXUP_QUANTA_MUTE,
5964         ALC269_FIXUP_LIFEBOOK,
5965         ALC269_FIXUP_AMIC,
5966         ALC269_FIXUP_DMIC,
5967         ALC269VB_FIXUP_AMIC,
5968         ALC269VB_FIXUP_DMIC,
5969 };
5970
5971 static const struct alc_fixup alc269_fixups[] = {
5972         [ALC269_FIXUP_SONY_VAIO] = {
5973                 .type = ALC_FIXUP_VERBS,
5974                 .v.verbs = (const struct hda_verb[]) {
5975                         {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREFGRD},
5976                         {}
5977                 }
5978         },
5979         [ALC275_FIXUP_SONY_VAIO_GPIO2] = {
5980                 .type = ALC_FIXUP_VERBS,
5981                 .v.verbs = (const struct hda_verb[]) {
5982                         {0x01, AC_VERB_SET_GPIO_MASK, 0x04},
5983                         {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x04},
5984                         {0x01, AC_VERB_SET_GPIO_DATA, 0x00},
5985                         { }
5986                 },
5987                 .chained = true,
5988                 .chain_id = ALC269_FIXUP_SONY_VAIO
5989         },
5990         [ALC269_FIXUP_DELL_M101Z] = {
5991                 .type = ALC_FIXUP_VERBS,
5992                 .v.verbs = (const struct hda_verb[]) {
5993                         /* Enables internal speaker */
5994                         {0x20, AC_VERB_SET_COEF_INDEX, 13},
5995                         {0x20, AC_VERB_SET_PROC_COEF, 0x4040},
5996                         {}
5997                 }
5998         },
5999         [ALC269_FIXUP_SKU_IGNORE] = {
6000                 .type = ALC_FIXUP_SKU,
6001                 .v.sku = ALC_FIXUP_SKU_IGNORE,
6002         },
6003         [ALC269_FIXUP_ASUS_G73JW] = {
6004                 .type = ALC_FIXUP_PINS,
6005                 .v.pins = (const struct alc_pincfg[]) {
6006                         { 0x17, 0x99130111 }, /* subwoofer */
6007                         { }
6008                 }
6009         },
6010         [ALC269_FIXUP_LENOVO_EAPD] = {
6011                 .type = ALC_FIXUP_VERBS,
6012                 .v.verbs = (const struct hda_verb[]) {
6013                         {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0},
6014                         {}
6015                 }
6016         },
6017         [ALC275_FIXUP_SONY_HWEQ] = {
6018                 .type = ALC_FIXUP_FUNC,
6019                 .v.func = alc269_fixup_hweq,
6020                 .chained = true,
6021                 .chain_id = ALC275_FIXUP_SONY_VAIO_GPIO2
6022         },
6023         [ALC271_FIXUP_DMIC] = {
6024                 .type = ALC_FIXUP_FUNC,
6025                 .v.func = alc271_fixup_dmic,
6026         },
6027         [ALC269_FIXUP_PCM_44K] = {
6028                 .type = ALC_FIXUP_FUNC,
6029                 .v.func = alc269_fixup_pcm_44k,
6030         },
6031         [ALC269_FIXUP_STEREO_DMIC] = {
6032                 .type = ALC_FIXUP_FUNC,
6033                 .v.func = alc269_fixup_stereo_dmic,
6034         },
6035         [ALC269_FIXUP_QUANTA_MUTE] = {
6036                 .type = ALC_FIXUP_FUNC,
6037                 .v.func = alc269_fixup_quanta_mute,
6038         },
6039         [ALC269_FIXUP_LIFEBOOK] = {
6040                 .type = ALC_FIXUP_PINS,
6041                 .v.pins = (const struct alc_pincfg[]) {
6042                         { 0x1a, 0x2101103f }, /* dock line-out */
6043                         { 0x1b, 0x23a11040 }, /* dock mic-in */
6044                         { }
6045                 },
6046                 .chained = true,
6047                 .chain_id = ALC269_FIXUP_QUANTA_MUTE
6048         },
6049         [ALC269_FIXUP_AMIC] = {
6050                 .type = ALC_FIXUP_PINS,
6051                 .v.pins = (const struct alc_pincfg[]) {
6052                         { 0x14, 0x99130110 }, /* speaker */
6053                         { 0x15, 0x0121401f }, /* HP out */
6054                         { 0x18, 0x01a19c20 }, /* mic */
6055                         { 0x19, 0x99a3092f }, /* int-mic */
6056                         { }
6057                 },
6058         },
6059         [ALC269_FIXUP_DMIC] = {
6060                 .type = ALC_FIXUP_PINS,
6061                 .v.pins = (const struct alc_pincfg[]) {
6062                         { 0x12, 0x99a3092f }, /* int-mic */
6063                         { 0x14, 0x99130110 }, /* speaker */
6064                         { 0x15, 0x0121401f }, /* HP out */
6065                         { 0x18, 0x01a19c20 }, /* mic */
6066                         { }
6067                 },
6068         },
6069         [ALC269VB_FIXUP_AMIC] = {
6070                 .type = ALC_FIXUP_PINS,
6071                 .v.pins = (const struct alc_pincfg[]) {
6072                         { 0x14, 0x99130110 }, /* speaker */
6073                         { 0x18, 0x01a19c20 }, /* mic */
6074                         { 0x19, 0x99a3092f }, /* int-mic */
6075                         { 0x21, 0x0121401f }, /* HP out */
6076                         { }
6077                 },
6078         },
6079         [ALC269VB_FIXUP_DMIC] = {
6080                 .type = ALC_FIXUP_PINS,
6081                 .v.pins = (const struct alc_pincfg[]) {
6082                         { 0x12, 0x99a3092f }, /* int-mic */
6083                         { 0x14, 0x99130110 }, /* speaker */
6084                         { 0x18, 0x01a19c20 }, /* mic */
6085                         { 0x21, 0x0121401f }, /* HP out */
6086                         { }
6087                 },
6088         },
6089 };
6090
6091 static const struct snd_pci_quirk alc269_fixup_tbl[] = {
6092         SND_PCI_QUIRK(0x1043, 0x1a13, "Asus G73Jw", ALC269_FIXUP_ASUS_G73JW),
6093         SND_PCI_QUIRK(0x1043, 0x16e3, "ASUS UX50", ALC269_FIXUP_STEREO_DMIC),
6094         SND_PCI_QUIRK(0x1043, 0x831a, "ASUS P901", ALC269_FIXUP_STEREO_DMIC),
6095         SND_PCI_QUIRK(0x1043, 0x834a, "ASUS S101", ALC269_FIXUP_STEREO_DMIC),
6096         SND_PCI_QUIRK(0x1043, 0x8398, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC),
6097         SND_PCI_QUIRK(0x1043, 0x83ce, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC),
6098         SND_PCI_QUIRK(0x104d, 0x9073, "Sony VAIO", ALC275_FIXUP_SONY_VAIO_GPIO2),
6099         SND_PCI_QUIRK(0x104d, 0x907b, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ),
6100         SND_PCI_QUIRK(0x104d, 0x9084, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ),
6101         SND_PCI_QUIRK_VENDOR(0x104d, "Sony VAIO", ALC269_FIXUP_SONY_VAIO),
6102         SND_PCI_QUIRK(0x1028, 0x0470, "Dell M101z", ALC269_FIXUP_DELL_M101Z),
6103         SND_PCI_QUIRK_VENDOR(0x1025, "Acer Aspire", ALC271_FIXUP_DMIC),
6104         SND_PCI_QUIRK(0x10cf, 0x1475, "Lifebook", ALC269_FIXUP_LIFEBOOK),
6105         SND_PCI_QUIRK(0x17aa, 0x20f2, "Thinkpad SL410/510", ALC269_FIXUP_SKU_IGNORE),
6106         SND_PCI_QUIRK(0x17aa, 0x215e, "Thinkpad L512", ALC269_FIXUP_SKU_IGNORE),
6107         SND_PCI_QUIRK(0x17aa, 0x21b8, "Thinkpad Edge 14", ALC269_FIXUP_SKU_IGNORE),
6108         SND_PCI_QUIRK(0x17aa, 0x21ca, "Thinkpad L412", ALC269_FIXUP_SKU_IGNORE),
6109         SND_PCI_QUIRK(0x17aa, 0x21e9, "Thinkpad Edge 15", ALC269_FIXUP_SKU_IGNORE),
6110         SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_QUANTA_MUTE),
6111         SND_PCI_QUIRK(0x17aa, 0x3bf8, "Lenovo Ideapd", ALC269_FIXUP_PCM_44K),
6112         SND_PCI_QUIRK(0x17aa, 0x9e54, "LENOVO NB", ALC269_FIXUP_LENOVO_EAPD),
6113
6114 #if 0
6115         /* Below is a quirk table taken from the old code.
6116          * Basically the device should work as is without the fixup table.
6117          * If BIOS doesn't give a proper info, enable the corresponding
6118          * fixup entry.
6119          */ 
6120         SND_PCI_QUIRK(0x1043, 0x8330, "ASUS Eeepc P703 P900A",
6121                       ALC269_FIXUP_AMIC),
6122         SND_PCI_QUIRK(0x1043, 0x1013, "ASUS N61Da", ALC269_FIXUP_AMIC),
6123         SND_PCI_QUIRK(0x1043, 0x1143, "ASUS B53f", ALC269_FIXUP_AMIC),
6124         SND_PCI_QUIRK(0x1043, 0x1133, "ASUS UJ20ft", ALC269_FIXUP_AMIC),
6125         SND_PCI_QUIRK(0x1043, 0x1183, "ASUS K72DR", ALC269_FIXUP_AMIC),
6126         SND_PCI_QUIRK(0x1043, 0x11b3, "ASUS K52DR", ALC269_FIXUP_AMIC),
6127         SND_PCI_QUIRK(0x1043, 0x11e3, "ASUS U33Jc", ALC269_FIXUP_AMIC),
6128         SND_PCI_QUIRK(0x1043, 0x1273, "ASUS UL80Jt", ALC269_FIXUP_AMIC),
6129         SND_PCI_QUIRK(0x1043, 0x1283, "ASUS U53Jc", ALC269_FIXUP_AMIC),
6130         SND_PCI_QUIRK(0x1043, 0x12b3, "ASUS N82JV", ALC269_FIXUP_AMIC),
6131         SND_PCI_QUIRK(0x1043, 0x12d3, "ASUS N61Jv", ALC269_FIXUP_AMIC),
6132         SND_PCI_QUIRK(0x1043, 0x13a3, "ASUS UL30Vt", ALC269_FIXUP_AMIC),
6133         SND_PCI_QUIRK(0x1043, 0x1373, "ASUS G73JX", ALC269_FIXUP_AMIC),
6134         SND_PCI_QUIRK(0x1043, 0x1383, "ASUS UJ30Jc", ALC269_FIXUP_AMIC),
6135         SND_PCI_QUIRK(0x1043, 0x13d3, "ASUS N61JA", ALC269_FIXUP_AMIC),
6136         SND_PCI_QUIRK(0x1043, 0x1413, "ASUS UL50", ALC269_FIXUP_AMIC),
6137         SND_PCI_QUIRK(0x1043, 0x1443, "ASUS UL30", ALC269_FIXUP_AMIC),
6138         SND_PCI_QUIRK(0x1043, 0x1453, "ASUS M60Jv", ALC269_FIXUP_AMIC),
6139         SND_PCI_QUIRK(0x1043, 0x1483, "ASUS UL80", ALC269_FIXUP_AMIC),
6140         SND_PCI_QUIRK(0x1043, 0x14f3, "ASUS F83Vf", ALC269_FIXUP_AMIC),
6141         SND_PCI_QUIRK(0x1043, 0x14e3, "ASUS UL20", ALC269_FIXUP_AMIC),
6142         SND_PCI_QUIRK(0x1043, 0x1513, "ASUS UX30", ALC269_FIXUP_AMIC),
6143         SND_PCI_QUIRK(0x1043, 0x1593, "ASUS N51Vn", ALC269_FIXUP_AMIC),
6144         SND_PCI_QUIRK(0x1043, 0x15a3, "ASUS N60Jv", ALC269_FIXUP_AMIC),
6145         SND_PCI_QUIRK(0x1043, 0x15b3, "ASUS N60Dp", ALC269_FIXUP_AMIC),
6146         SND_PCI_QUIRK(0x1043, 0x15c3, "ASUS N70De", ALC269_FIXUP_AMIC),
6147         SND_PCI_QUIRK(0x1043, 0x15e3, "ASUS F83T", ALC269_FIXUP_AMIC),
6148         SND_PCI_QUIRK(0x1043, 0x1643, "ASUS M60J", ALC269_FIXUP_AMIC),
6149         SND_PCI_QUIRK(0x1043, 0x1653, "ASUS U50", ALC269_FIXUP_AMIC),
6150         SND_PCI_QUIRK(0x1043, 0x1693, "ASUS F50N", ALC269_FIXUP_AMIC),
6151         SND_PCI_QUIRK(0x1043, 0x16a3, "ASUS F5Q", ALC269_FIXUP_AMIC),
6152         SND_PCI_QUIRK(0x1043, 0x1723, "ASUS P80", ALC269_FIXUP_AMIC),
6153         SND_PCI_QUIRK(0x1043, 0x1743, "ASUS U80", ALC269_FIXUP_AMIC),
6154         SND_PCI_QUIRK(0x1043, 0x1773, "ASUS U20A", ALC269_FIXUP_AMIC),
6155         SND_PCI_QUIRK(0x1043, 0x1883, "ASUS F81Se", ALC269_FIXUP_AMIC),
6156         SND_PCI_QUIRK(0x152d, 0x1778, "Quanta ON1", ALC269_FIXUP_DMIC),
6157         SND_PCI_QUIRK(0x17aa, 0x3be9, "Quanta Wistron", ALC269_FIXUP_AMIC),
6158         SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_AMIC),
6159         SND_PCI_QUIRK(0x17ff, 0x059a, "Quanta EL3", ALC269_FIXUP_DMIC),
6160         SND_PCI_QUIRK(0x17ff, 0x059b, "Quanta JR1", ALC269_FIXUP_DMIC),
6161 #endif
6162         {}
6163 };
6164
6165 static const struct alc_model_fixup alc269_fixup_models[] = {
6166         {.id = ALC269_FIXUP_AMIC, .name = "laptop-amic"},
6167         {.id = ALC269_FIXUP_DMIC, .name = "laptop-dmic"},
6168         {}
6169 };
6170
6171
6172 static int alc269_fill_coef(struct hda_codec *codec)
6173 {
6174         int val;
6175
6176         if ((alc_get_coef0(codec) & 0x00ff) < 0x015) {
6177                 alc_write_coef_idx(codec, 0xf, 0x960b);
6178                 alc_write_coef_idx(codec, 0xe, 0x8817);
6179         }
6180
6181         if ((alc_get_coef0(codec) & 0x00ff) == 0x016) {
6182                 alc_write_coef_idx(codec, 0xf, 0x960b);
6183                 alc_write_coef_idx(codec, 0xe, 0x8814);
6184         }
6185
6186         if ((alc_get_coef0(codec) & 0x00ff) == 0x017) {
6187                 val = alc_read_coef_idx(codec, 0x04);
6188                 /* Power up output pin */
6189                 alc_write_coef_idx(codec, 0x04, val | (1<<11));
6190         }
6191
6192         if ((alc_get_coef0(codec) & 0x00ff) == 0x018) {
6193                 val = alc_read_coef_idx(codec, 0xd);
6194                 if ((val & 0x0c00) >> 10 != 0x1) {
6195                         /* Capless ramp up clock control */
6196                         alc_write_coef_idx(codec, 0xd, val | (1<<10));
6197                 }
6198                 val = alc_read_coef_idx(codec, 0x17);
6199                 if ((val & 0x01c0) >> 6 != 0x4) {
6200                         /* Class D power on reset */
6201                         alc_write_coef_idx(codec, 0x17, val | (1<<7));
6202                 }
6203         }
6204
6205         val = alc_read_coef_idx(codec, 0xd); /* Class D */
6206         alc_write_coef_idx(codec, 0xd, val | (1<<14));
6207
6208         val = alc_read_coef_idx(codec, 0x4); /* HP */
6209         alc_write_coef_idx(codec, 0x4, val | (1<<11));
6210
6211         return 0;
6212 }
6213
6214 /*
6215  */
6216 static int patch_alc269(struct hda_codec *codec)
6217 {
6218         struct alc_spec *spec;
6219         int err = 0;
6220
6221         spec = kzalloc(sizeof(*spec), GFP_KERNEL);
6222         if (spec == NULL)
6223                 return -ENOMEM;
6224
6225         codec->spec = spec;
6226
6227         spec->mixer_nid = 0x0b;
6228
6229         alc_auto_parse_customize_define(codec);
6230
6231         err = alc_codec_rename_from_preset(codec);
6232         if (err < 0)
6233                 goto error;
6234
6235         if (codec->vendor_id == 0x10ec0269) {
6236                 spec->codec_variant = ALC269_TYPE_ALC269VA;
6237                 switch (alc_get_coef0(codec) & 0x00f0) {
6238                 case 0x0010:
6239                         if (codec->bus->pci->subsystem_vendor == 0x1025 &&
6240                             spec->cdefine.platform_type == 1)
6241                                 err = alc_codec_rename(codec, "ALC271X");
6242                         spec->codec_variant = ALC269_TYPE_ALC269VB;
6243                         break;
6244                 case 0x0020:
6245                         if (codec->bus->pci->subsystem_vendor == 0x17aa &&
6246                             codec->bus->pci->subsystem_device == 0x21f3)
6247                                 err = alc_codec_rename(codec, "ALC3202");
6248                         spec->codec_variant = ALC269_TYPE_ALC269VC;
6249                         break;
6250                 default:
6251                         alc_fix_pll_init(codec, 0x20, 0x04, 15);
6252                 }
6253                 if (err < 0)
6254                         goto error;
6255                 alc269_fill_coef(codec);
6256         }
6257
6258         alc_pick_fixup(codec, alc269_fixup_models,
6259                        alc269_fixup_tbl, alc269_fixups);
6260         alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
6261
6262         /* automatic parse from the BIOS config */
6263         err = alc269_parse_auto_config(codec);
6264         if (err < 0)
6265                 goto error;
6266
6267         if (!spec->no_analog && !spec->adc_nids) {
6268                 alc_auto_fill_adc_caps(codec);
6269                 alc_rebuild_imux_for_auto_mic(codec);
6270                 alc_remove_invalid_adc_nids(codec);
6271         }
6272
6273         if (!spec->no_analog && !spec->cap_mixer)
6274                 set_capture_mixer(codec);
6275
6276         if (!spec->no_analog && has_cdefine_beep(codec)) {
6277                 err = snd_hda_attach_beep_device(codec, 0x1);
6278                 if (err < 0)
6279                         goto error;
6280                 set_beep_amp(spec, 0x0b, 0x04, HDA_INPUT);
6281         }
6282
6283         codec->patch_ops = alc_patch_ops;
6284 #ifdef CONFIG_PM
6285         codec->patch_ops.resume = alc269_resume;
6286 #endif
6287         spec->init_hook = alc_auto_init_std;
6288         spec->shutup = alc269_shutup;
6289
6290 #ifdef CONFIG_SND_HDA_POWER_SAVE
6291         if (!spec->loopback.amplist)
6292                 spec->loopback.amplist = alc269_loopbacks;
6293         if (alc269_mic2_for_mute_led(codec))
6294                 codec->patch_ops.check_power_status = alc269_mic2_mute_check_ps;
6295 #endif
6296
6297         alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
6298
6299         return 0;
6300
6301  error:
6302         alc_free(codec);
6303         return err;
6304 }
6305
6306 /*
6307  * ALC861
6308  */
6309
6310 static int alc861_parse_auto_config(struct hda_codec *codec)
6311 {
6312         static const hda_nid_t alc861_ignore[] = { 0x1d, 0 };
6313         static const hda_nid_t alc861_ssids[] = { 0x0e, 0x0f, 0x0b, 0 };
6314         return alc_parse_auto_config(codec, alc861_ignore, alc861_ssids);
6315 }
6316
6317 #ifdef CONFIG_SND_HDA_POWER_SAVE
6318 static const struct hda_amp_list alc861_loopbacks[] = {
6319         { 0x15, HDA_INPUT, 0 },
6320         { 0x15, HDA_INPUT, 1 },
6321         { 0x15, HDA_INPUT, 2 },
6322         { 0x15, HDA_INPUT, 3 },
6323         { } /* end */
6324 };
6325 #endif
6326
6327
6328 /* Pin config fixes */
6329 enum {
6330         ALC861_FIXUP_FSC_AMILO_PI1505,
6331         ALC861_FIXUP_AMP_VREF_0F,
6332         ALC861_FIXUP_NO_JACK_DETECT,
6333         ALC861_FIXUP_ASUS_A6RP,
6334 };
6335
6336 /* On some laptops, VREF of pin 0x0f is abused for controlling the main amp */
6337 static void alc861_fixup_asus_amp_vref_0f(struct hda_codec *codec,
6338                         const struct alc_fixup *fix, int action)
6339 {
6340         struct alc_spec *spec = codec->spec;
6341         unsigned int val;
6342
6343         if (action != ALC_FIXUP_ACT_INIT)
6344                 return;
6345         val = snd_hda_codec_read(codec, 0x0f, 0,
6346                                  AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
6347         if (!(val & (AC_PINCTL_IN_EN | AC_PINCTL_OUT_EN)))
6348                 val |= AC_PINCTL_IN_EN;
6349         val |= AC_PINCTL_VREF_50;
6350         snd_hda_codec_write(codec, 0x0f, 0,
6351                             AC_VERB_SET_PIN_WIDGET_CONTROL, val);
6352         spec->keep_vref_in_automute = 1;
6353 }
6354
6355 /* suppress the jack-detection */
6356 static void alc_fixup_no_jack_detect(struct hda_codec *codec,
6357                                      const struct alc_fixup *fix, int action)
6358 {
6359         if (action == ALC_FIXUP_ACT_PRE_PROBE)
6360                 codec->no_jack_detect = 1;
6361 }       
6362
6363 static const struct alc_fixup alc861_fixups[] = {
6364         [ALC861_FIXUP_FSC_AMILO_PI1505] = {
6365                 .type = ALC_FIXUP_PINS,
6366                 .v.pins = (const struct alc_pincfg[]) {
6367                         { 0x0b, 0x0221101f }, /* HP */
6368                         { 0x0f, 0x90170310 }, /* speaker */
6369                         { }
6370                 }
6371         },
6372         [ALC861_FIXUP_AMP_VREF_0F] = {
6373                 .type = ALC_FIXUP_FUNC,
6374                 .v.func = alc861_fixup_asus_amp_vref_0f,
6375         },
6376         [ALC861_FIXUP_NO_JACK_DETECT] = {
6377                 .type = ALC_FIXUP_FUNC,
6378                 .v.func = alc_fixup_no_jack_detect,
6379         },
6380         [ALC861_FIXUP_ASUS_A6RP] = {
6381                 .type = ALC_FIXUP_FUNC,
6382                 .v.func = alc861_fixup_asus_amp_vref_0f,
6383                 .chained = true,
6384                 .chain_id = ALC861_FIXUP_NO_JACK_DETECT,
6385         }
6386 };
6387
6388 static const struct snd_pci_quirk alc861_fixup_tbl[] = {
6389         SND_PCI_QUIRK(0x1043, 0x1393, "ASUS A6Rp", ALC861_FIXUP_ASUS_A6RP),
6390         SND_PCI_QUIRK_VENDOR(0x1043, "ASUS laptop", ALC861_FIXUP_AMP_VREF_0F),
6391         SND_PCI_QUIRK(0x1462, 0x7254, "HP DX2200", ALC861_FIXUP_NO_JACK_DETECT),
6392         SND_PCI_QUIRK(0x1584, 0x2b01, "Haier W18", ALC861_FIXUP_AMP_VREF_0F),
6393         SND_PCI_QUIRK(0x1584, 0x0000, "Uniwill ECS M31EI", ALC861_FIXUP_AMP_VREF_0F),
6394         SND_PCI_QUIRK(0x1734, 0x10c7, "FSC Amilo Pi1505", ALC861_FIXUP_FSC_AMILO_PI1505),
6395         {}
6396 };
6397
6398 /*
6399  */
6400 static int patch_alc861(struct hda_codec *codec)
6401 {
6402         struct alc_spec *spec;
6403         int err;
6404
6405         spec = kzalloc(sizeof(*spec), GFP_KERNEL);
6406         if (spec == NULL)
6407                 return -ENOMEM;
6408
6409         codec->spec = spec;
6410
6411         spec->mixer_nid = 0x15;
6412
6413         alc_pick_fixup(codec, NULL, alc861_fixup_tbl, alc861_fixups);
6414         alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
6415
6416         /* automatic parse from the BIOS config */
6417         err = alc861_parse_auto_config(codec);
6418         if (err < 0)
6419                 goto error;
6420
6421         if (!spec->no_analog && !spec->adc_nids) {
6422                 alc_auto_fill_adc_caps(codec);
6423                 alc_rebuild_imux_for_auto_mic(codec);
6424                 alc_remove_invalid_adc_nids(codec);
6425         }
6426
6427         if (!spec->no_analog && !spec->cap_mixer)
6428                 set_capture_mixer(codec);
6429
6430         if (!spec->no_analog) {
6431                 err = snd_hda_attach_beep_device(codec, 0x23);
6432                 if (err < 0)
6433                         goto error;
6434                 set_beep_amp(spec, 0x23, 0, HDA_OUTPUT);
6435         }
6436
6437         codec->patch_ops = alc_patch_ops;
6438         spec->init_hook = alc_auto_init_std;
6439 #ifdef CONFIG_SND_HDA_POWER_SAVE
6440         spec->power_hook = alc_power_eapd;
6441         if (!spec->loopback.amplist)
6442                 spec->loopback.amplist = alc861_loopbacks;
6443 #endif
6444
6445         alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
6446
6447         return 0;
6448
6449  error:
6450         alc_free(codec);
6451         return err;
6452 }
6453
6454 /*
6455  * ALC861-VD support
6456  *
6457  * Based on ALC882
6458  *
6459  * In addition, an independent DAC
6460  */
6461 #ifdef CONFIG_SND_HDA_POWER_SAVE
6462 #define alc861vd_loopbacks      alc880_loopbacks
6463 #endif
6464
6465 static int alc861vd_parse_auto_config(struct hda_codec *codec)
6466 {
6467         static const hda_nid_t alc861vd_ignore[] = { 0x1d, 0 };
6468         static const hda_nid_t alc861vd_ssids[] = { 0x15, 0x1b, 0x14, 0 };
6469         return alc_parse_auto_config(codec, alc861vd_ignore, alc861vd_ssids);
6470 }
6471
6472 enum {
6473         ALC660VD_FIX_ASUS_GPIO1,
6474         ALC861VD_FIX_DALLAS,
6475 };
6476
6477 /* exclude VREF80 */
6478 static void alc861vd_fixup_dallas(struct hda_codec *codec,
6479                                   const struct alc_fixup *fix, int action)
6480 {
6481         if (action == ALC_FIXUP_ACT_PRE_PROBE) {
6482                 snd_hda_override_pin_caps(codec, 0x18, 0x00001714);
6483                 snd_hda_override_pin_caps(codec, 0x19, 0x0000171c);
6484         }
6485 }
6486
6487 static const struct alc_fixup alc861vd_fixups[] = {
6488         [ALC660VD_FIX_ASUS_GPIO1] = {
6489                 .type = ALC_FIXUP_VERBS,
6490                 .v.verbs = (const struct hda_verb[]) {
6491                         /* reset GPIO1 */
6492                         {0x01, AC_VERB_SET_GPIO_MASK, 0x03},
6493                         {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
6494                         {0x01, AC_VERB_SET_GPIO_DATA, 0x01},
6495                         { }
6496                 }
6497         },
6498         [ALC861VD_FIX_DALLAS] = {
6499                 .type = ALC_FIXUP_FUNC,
6500                 .v.func = alc861vd_fixup_dallas,
6501         },
6502 };
6503
6504 static const struct snd_pci_quirk alc861vd_fixup_tbl[] = {
6505         SND_PCI_QUIRK(0x103c, 0x30bf, "HP TX1000", ALC861VD_FIX_DALLAS),
6506         SND_PCI_QUIRK(0x1043, 0x1339, "ASUS A7-K", ALC660VD_FIX_ASUS_GPIO1),
6507         SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba L30-149", ALC861VD_FIX_DALLAS),
6508         {}
6509 };
6510
6511 static const struct hda_verb alc660vd_eapd_verbs[] = {
6512         {0x14, AC_VERB_SET_EAPD_BTLENABLE, 2},
6513         {0x15, AC_VERB_SET_EAPD_BTLENABLE, 2},
6514         { }
6515 };
6516
6517 /*
6518  */
6519 static int patch_alc861vd(struct hda_codec *codec)
6520 {
6521         struct alc_spec *spec;
6522         int err;
6523
6524         spec = kzalloc(sizeof(*spec), GFP_KERNEL);
6525         if (spec == NULL)
6526                 return -ENOMEM;
6527
6528         codec->spec = spec;
6529
6530         spec->mixer_nid = 0x0b;
6531
6532         alc_pick_fixup(codec, NULL, alc861vd_fixup_tbl, alc861vd_fixups);
6533         alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
6534
6535         /* automatic parse from the BIOS config */
6536         err = alc861vd_parse_auto_config(codec);
6537         if (err < 0)
6538                 goto error;
6539
6540         if (codec->vendor_id == 0x10ec0660) {
6541                 /* always turn on EAPD */
6542                 add_verb(spec, alc660vd_eapd_verbs);
6543         }
6544
6545         if (!spec->no_analog && !spec->adc_nids) {
6546                 alc_auto_fill_adc_caps(codec);
6547                 alc_rebuild_imux_for_auto_mic(codec);
6548                 alc_remove_invalid_adc_nids(codec);
6549         }
6550
6551         if (!spec->no_analog && !spec->cap_mixer)
6552                 set_capture_mixer(codec);
6553
6554         if (!spec->no_analog) {
6555                 err = snd_hda_attach_beep_device(codec, 0x23);
6556                 if (err < 0)
6557                         goto error;
6558                 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
6559         }
6560
6561         codec->patch_ops = alc_patch_ops;
6562
6563         spec->init_hook = alc_auto_init_std;
6564         spec->shutup = alc_eapd_shutup;
6565 #ifdef CONFIG_SND_HDA_POWER_SAVE
6566         if (!spec->loopback.amplist)
6567                 spec->loopback.amplist = alc861vd_loopbacks;
6568 #endif
6569
6570         alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
6571
6572         return 0;
6573
6574  error:
6575         alc_free(codec);
6576         return err;
6577 }
6578
6579 /*
6580  * ALC662 support
6581  *
6582  * ALC662 is almost identical with ALC880 but has cleaner and more flexible
6583  * configuration.  Each pin widget can choose any input DACs and a mixer.
6584  * Each ADC is connected from a mixer of all inputs.  This makes possible
6585  * 6-channel independent captures.
6586  *
6587  * In addition, an independent DAC for the multi-playback (not used in this
6588  * driver yet).
6589  */
6590 #ifdef CONFIG_SND_HDA_POWER_SAVE
6591 #define alc662_loopbacks        alc880_loopbacks
6592 #endif
6593
6594 /*
6595  * BIOS auto configuration
6596  */
6597
6598 static int alc662_parse_auto_config(struct hda_codec *codec)
6599 {
6600         static const hda_nid_t alc662_ignore[] = { 0x1d, 0 };
6601         static const hda_nid_t alc663_ssids[] = { 0x15, 0x1b, 0x14, 0x21 };
6602         static const hda_nid_t alc662_ssids[] = { 0x15, 0x1b, 0x14, 0 };
6603         const hda_nid_t *ssids;
6604
6605         if (codec->vendor_id == 0x10ec0272 || codec->vendor_id == 0x10ec0663 ||
6606             codec->vendor_id == 0x10ec0665 || codec->vendor_id == 0x10ec0670)
6607                 ssids = alc663_ssids;
6608         else
6609                 ssids = alc662_ssids;
6610         return alc_parse_auto_config(codec, alc662_ignore, ssids);
6611 }
6612
6613 static void alc272_fixup_mario(struct hda_codec *codec,
6614                                const struct alc_fixup *fix, int action)
6615 {
6616         if (action != ALC_FIXUP_ACT_PROBE)
6617                 return;
6618         if (snd_hda_override_amp_caps(codec, 0x2, HDA_OUTPUT,
6619                                       (0x3b << AC_AMPCAP_OFFSET_SHIFT) |
6620                                       (0x3b << AC_AMPCAP_NUM_STEPS_SHIFT) |
6621                                       (0x03 << AC_AMPCAP_STEP_SIZE_SHIFT) |
6622                                       (0 << AC_AMPCAP_MUTE_SHIFT)))
6623                 printk(KERN_WARNING
6624                        "hda_codec: failed to override amp caps for NID 0x2\n");
6625 }
6626
6627 enum {
6628         ALC662_FIXUP_ASPIRE,
6629         ALC662_FIXUP_IDEAPAD,
6630         ALC272_FIXUP_MARIO,
6631         ALC662_FIXUP_CZC_P10T,
6632         ALC662_FIXUP_SKU_IGNORE,
6633         ALC662_FIXUP_HP_RP5800,
6634         ALC662_FIXUP_ASUS_MODE1,
6635         ALC662_FIXUP_ASUS_MODE2,
6636         ALC662_FIXUP_ASUS_MODE3,
6637         ALC662_FIXUP_ASUS_MODE4,
6638         ALC662_FIXUP_ASUS_MODE5,
6639         ALC662_FIXUP_ASUS_MODE6,
6640         ALC662_FIXUP_ASUS_MODE7,
6641         ALC662_FIXUP_ASUS_MODE8,
6642         ALC662_FIXUP_NO_JACK_DETECT,
6643 };
6644
6645 static const struct alc_fixup alc662_fixups[] = {
6646         [ALC662_FIXUP_ASPIRE] = {
6647                 .type = ALC_FIXUP_PINS,
6648                 .v.pins = (const struct alc_pincfg[]) {
6649                         { 0x15, 0x99130112 }, /* subwoofer */
6650                         { }
6651                 }
6652         },
6653         [ALC662_FIXUP_IDEAPAD] = {
6654                 .type = ALC_FIXUP_PINS,
6655                 .v.pins = (const struct alc_pincfg[]) {
6656                         { 0x17, 0x99130112 }, /* subwoofer */
6657                         { }
6658                 }
6659         },
6660         [ALC272_FIXUP_MARIO] = {
6661                 .type = ALC_FIXUP_FUNC,
6662                 .v.func = alc272_fixup_mario,
6663         },
6664         [ALC662_FIXUP_CZC_P10T] = {
6665                 .type = ALC_FIXUP_VERBS,
6666                 .v.verbs = (const struct hda_verb[]) {
6667                         {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0},
6668                         {}
6669                 }
6670         },
6671         [ALC662_FIXUP_SKU_IGNORE] = {
6672                 .type = ALC_FIXUP_SKU,
6673                 .v.sku = ALC_FIXUP_SKU_IGNORE,
6674         },
6675         [ALC662_FIXUP_HP_RP5800] = {
6676                 .type = ALC_FIXUP_PINS,
6677                 .v.pins = (const struct alc_pincfg[]) {
6678                         { 0x14, 0x0221201f }, /* HP out */
6679                         { }
6680                 },
6681                 .chained = true,
6682                 .chain_id = ALC662_FIXUP_SKU_IGNORE
6683         },
6684         [ALC662_FIXUP_ASUS_MODE1] = {
6685                 .type = ALC_FIXUP_PINS,
6686                 .v.pins = (const struct alc_pincfg[]) {
6687                         { 0x14, 0x99130110 }, /* speaker */
6688                         { 0x18, 0x01a19c20 }, /* mic */
6689                         { 0x19, 0x99a3092f }, /* int-mic */
6690                         { 0x21, 0x0121401f }, /* HP out */
6691                         { }
6692                 },
6693                 .chained = true,
6694                 .chain_id = ALC662_FIXUP_SKU_IGNORE
6695         },
6696         [ALC662_FIXUP_ASUS_MODE2] = {
6697                 .type = ALC_FIXUP_PINS,
6698                 .v.pins = (const struct alc_pincfg[]) {
6699                         { 0x14, 0x99130110 }, /* speaker */
6700                         { 0x18, 0x01a19820 }, /* mic */
6701                         { 0x19, 0x99a3092f }, /* int-mic */
6702                         { 0x1b, 0x0121401f }, /* HP out */
6703                         { }
6704                 },
6705                 .chained = true,
6706                 .chain_id = ALC662_FIXUP_SKU_IGNORE
6707         },
6708         [ALC662_FIXUP_ASUS_MODE3] = {
6709                 .type = ALC_FIXUP_PINS,
6710                 .v.pins = (const struct alc_pincfg[]) {
6711                         { 0x14, 0x99130110 }, /* speaker */
6712                         { 0x15, 0x0121441f }, /* HP */
6713                         { 0x18, 0x01a19840 }, /* mic */
6714                         { 0x19, 0x99a3094f }, /* int-mic */
6715                         { 0x21, 0x01211420 }, /* HP2 */
6716                         { }
6717                 },
6718                 .chained = true,
6719                 .chain_id = ALC662_FIXUP_SKU_IGNORE
6720         },
6721         [ALC662_FIXUP_ASUS_MODE4] = {
6722                 .type = ALC_FIXUP_PINS,
6723                 .v.pins = (const struct alc_pincfg[]) {
6724                         { 0x14, 0x99130110 }, /* speaker */
6725                         { 0x16, 0x99130111 }, /* speaker */
6726                         { 0x18, 0x01a19840 }, /* mic */
6727                         { 0x19, 0x99a3094f }, /* int-mic */
6728                         { 0x21, 0x0121441f }, /* HP */
6729                         { }
6730                 },
6731                 .chained = true,
6732                 .chain_id = ALC662_FIXUP_SKU_IGNORE
6733         },
6734         [ALC662_FIXUP_ASUS_MODE5] = {
6735                 .type = ALC_FIXUP_PINS,
6736                 .v.pins = (const struct alc_pincfg[]) {
6737                         { 0x14, 0x99130110 }, /* speaker */
6738                         { 0x15, 0x0121441f }, /* HP */
6739                         { 0x16, 0x99130111 }, /* speaker */
6740                         { 0x18, 0x01a19840 }, /* mic */
6741                         { 0x19, 0x99a3094f }, /* int-mic */
6742                         { }
6743                 },
6744                 .chained = true,
6745                 .chain_id = ALC662_FIXUP_SKU_IGNORE
6746         },
6747         [ALC662_FIXUP_ASUS_MODE6] = {
6748                 .type = ALC_FIXUP_PINS,
6749                 .v.pins = (const struct alc_pincfg[]) {
6750                         { 0x14, 0x99130110 }, /* speaker */
6751                         { 0x15, 0x01211420 }, /* HP2 */
6752                         { 0x18, 0x01a19840 }, /* mic */
6753                         { 0x19, 0x99a3094f }, /* int-mic */
6754                         { 0x1b, 0x0121441f }, /* HP */
6755                         { }
6756                 },
6757                 .chained = true,
6758                 .chain_id = ALC662_FIXUP_SKU_IGNORE
6759         },
6760         [ALC662_FIXUP_ASUS_MODE7] = {
6761                 .type = ALC_FIXUP_PINS,
6762                 .v.pins = (const struct alc_pincfg[]) {
6763                         { 0x14, 0x99130110 }, /* speaker */
6764                         { 0x17, 0x99130111 }, /* speaker */
6765                         { 0x18, 0x01a19840 }, /* mic */
6766                         { 0x19, 0x99a3094f }, /* int-mic */
6767                         { 0x1b, 0x01214020 }, /* HP */
6768                         { 0x21, 0x0121401f }, /* HP */
6769                         { }
6770                 },
6771                 .chained = true,
6772                 .chain_id = ALC662_FIXUP_SKU_IGNORE
6773         },
6774         [ALC662_FIXUP_ASUS_MODE8] = {
6775                 .type = ALC_FIXUP_PINS,
6776                 .v.pins = (const struct alc_pincfg[]) {
6777                         { 0x14, 0x99130110 }, /* speaker */
6778                         { 0x12, 0x99a30970 }, /* int-mic */
6779                         { 0x15, 0x01214020 }, /* HP */
6780                         { 0x17, 0x99130111 }, /* speaker */
6781                         { 0x18, 0x01a19840 }, /* mic */
6782                         { 0x21, 0x0121401f }, /* HP */
6783                         { }
6784                 },
6785                 .chained = true,
6786                 .chain_id = ALC662_FIXUP_SKU_IGNORE
6787         },
6788         [ALC662_FIXUP_NO_JACK_DETECT] = {
6789                 .type = ALC_FIXUP_FUNC,
6790                 .v.func = alc_fixup_no_jack_detect,
6791         },
6792 };
6793
6794 static const struct snd_pci_quirk alc662_fixup_tbl[] = {
6795         SND_PCI_QUIRK(0x1019, 0x9087, "ECS", ALC662_FIXUP_ASUS_MODE2),
6796         SND_PCI_QUIRK(0x1025, 0x0308, "Acer Aspire 8942G", ALC662_FIXUP_ASPIRE),
6797         SND_PCI_QUIRK(0x1025, 0x031c, "Gateway NV79", ALC662_FIXUP_SKU_IGNORE),
6798         SND_PCI_QUIRK(0x1025, 0x038b, "Acer Aspire 8943G", ALC662_FIXUP_ASPIRE),
6799         SND_PCI_QUIRK(0x103c, 0x1632, "HP RP5800", ALC662_FIXUP_HP_RP5800),
6800         SND_PCI_QUIRK(0x1043, 0x8469, "ASUS mobo", ALC662_FIXUP_NO_JACK_DETECT),
6801         SND_PCI_QUIRK(0x105b, 0x0cd6, "Foxconn", ALC662_FIXUP_ASUS_MODE2),
6802         SND_PCI_QUIRK(0x144d, 0xc051, "Samsung R720", ALC662_FIXUP_IDEAPAD),
6803         SND_PCI_QUIRK(0x17aa, 0x38af, "Lenovo Ideapad Y550P", ALC662_FIXUP_IDEAPAD),
6804         SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Ideapad Y550", ALC662_FIXUP_IDEAPAD),
6805         SND_PCI_QUIRK(0x1b35, 0x2206, "CZC P10T", ALC662_FIXUP_CZC_P10T),
6806
6807 #if 0
6808         /* Below is a quirk table taken from the old code.
6809          * Basically the device should work as is without the fixup table.
6810          * If BIOS doesn't give a proper info, enable the corresponding
6811          * fixup entry.
6812          */ 
6813         SND_PCI_QUIRK(0x1043, 0x1000, "ASUS N50Vm", ALC662_FIXUP_ASUS_MODE1),
6814         SND_PCI_QUIRK(0x1043, 0x1092, "ASUS NB", ALC662_FIXUP_ASUS_MODE3),
6815         SND_PCI_QUIRK(0x1043, 0x1173, "ASUS K73Jn", ALC662_FIXUP_ASUS_MODE1),
6816         SND_PCI_QUIRK(0x1043, 0x11c3, "ASUS M70V", ALC662_FIXUP_ASUS_MODE3),
6817         SND_PCI_QUIRK(0x1043, 0x11d3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
6818         SND_PCI_QUIRK(0x1043, 0x11f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
6819         SND_PCI_QUIRK(0x1043, 0x1203, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
6820         SND_PCI_QUIRK(0x1043, 0x1303, "ASUS G60J", ALC662_FIXUP_ASUS_MODE1),
6821         SND_PCI_QUIRK(0x1043, 0x1333, "ASUS G60Jx", ALC662_FIXUP_ASUS_MODE1),
6822         SND_PCI_QUIRK(0x1043, 0x1339, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
6823         SND_PCI_QUIRK(0x1043, 0x13e3, "ASUS N71JA", ALC662_FIXUP_ASUS_MODE7),
6824         SND_PCI_QUIRK(0x1043, 0x1463, "ASUS N71", ALC662_FIXUP_ASUS_MODE7),
6825         SND_PCI_QUIRK(0x1043, 0x14d3, "ASUS G72", ALC662_FIXUP_ASUS_MODE8),
6826         SND_PCI_QUIRK(0x1043, 0x1563, "ASUS N90", ALC662_FIXUP_ASUS_MODE3),
6827         SND_PCI_QUIRK(0x1043, 0x15d3, "ASUS N50SF F50SF", ALC662_FIXUP_ASUS_MODE1),
6828         SND_PCI_QUIRK(0x1043, 0x16c3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
6829         SND_PCI_QUIRK(0x1043, 0x16f3, "ASUS K40C K50C", ALC662_FIXUP_ASUS_MODE2),
6830         SND_PCI_QUIRK(0x1043, 0x1733, "ASUS N81De", ALC662_FIXUP_ASUS_MODE1),
6831         SND_PCI_QUIRK(0x1043, 0x1753, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
6832         SND_PCI_QUIRK(0x1043, 0x1763, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
6833         SND_PCI_QUIRK(0x1043, 0x1765, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
6834         SND_PCI_QUIRK(0x1043, 0x1783, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
6835         SND_PCI_QUIRK(0x1043, 0x1793, "ASUS F50GX", ALC662_FIXUP_ASUS_MODE1),
6836         SND_PCI_QUIRK(0x1043, 0x17b3, "ASUS F70SL", ALC662_FIXUP_ASUS_MODE3),
6837         SND_PCI_QUIRK(0x1043, 0x17f3, "ASUS X58LE", ALC662_FIXUP_ASUS_MODE2),
6838         SND_PCI_QUIRK(0x1043, 0x1813, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
6839         SND_PCI_QUIRK(0x1043, 0x1823, "ASUS NB", ALC662_FIXUP_ASUS_MODE5),
6840         SND_PCI_QUIRK(0x1043, 0x1833, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
6841         SND_PCI_QUIRK(0x1043, 0x1843, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
6842         SND_PCI_QUIRK(0x1043, 0x1853, "ASUS F50Z", ALC662_FIXUP_ASUS_MODE1),
6843         SND_PCI_QUIRK(0x1043, 0x1864, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
6844         SND_PCI_QUIRK(0x1043, 0x1876, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
6845         SND_PCI_QUIRK(0x1043, 0x1893, "ASUS M50Vm", ALC662_FIXUP_ASUS_MODE3),
6846         SND_PCI_QUIRK(0x1043, 0x1894, "ASUS X55", ALC662_FIXUP_ASUS_MODE3),
6847         SND_PCI_QUIRK(0x1043, 0x18b3, "ASUS N80Vc", ALC662_FIXUP_ASUS_MODE1),
6848         SND_PCI_QUIRK(0x1043, 0x18c3, "ASUS VX5", ALC662_FIXUP_ASUS_MODE1),
6849         SND_PCI_QUIRK(0x1043, 0x18d3, "ASUS N81Te", ALC662_FIXUP_ASUS_MODE1),
6850         SND_PCI_QUIRK(0x1043, 0x18f3, "ASUS N505Tp", ALC662_FIXUP_ASUS_MODE1),
6851         SND_PCI_QUIRK(0x1043, 0x1903, "ASUS F5GL", ALC662_FIXUP_ASUS_MODE1),
6852         SND_PCI_QUIRK(0x1043, 0x1913, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
6853         SND_PCI_QUIRK(0x1043, 0x1933, "ASUS F80Q", ALC662_FIXUP_ASUS_MODE2),
6854         SND_PCI_QUIRK(0x1043, 0x1943, "ASUS Vx3V", ALC662_FIXUP_ASUS_MODE1),
6855         SND_PCI_QUIRK(0x1043, 0x1953, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
6856         SND_PCI_QUIRK(0x1043, 0x1963, "ASUS X71C", ALC662_FIXUP_ASUS_MODE3),
6857         SND_PCI_QUIRK(0x1043, 0x1983, "ASUS N5051A", ALC662_FIXUP_ASUS_MODE1),
6858         SND_PCI_QUIRK(0x1043, 0x1993, "ASUS N20", ALC662_FIXUP_ASUS_MODE1),
6859         SND_PCI_QUIRK(0x1043, 0x19b3, "ASUS F7Z", ALC662_FIXUP_ASUS_MODE1),
6860         SND_PCI_QUIRK(0x1043, 0x19c3, "ASUS F5Z/F6x", ALC662_FIXUP_ASUS_MODE2),
6861         SND_PCI_QUIRK(0x1043, 0x19e3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
6862         SND_PCI_QUIRK(0x1043, 0x19f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE4),
6863 #endif
6864         {}
6865 };
6866
6867 static const struct alc_model_fixup alc662_fixup_models[] = {
6868         {.id = ALC272_FIXUP_MARIO, .name = "mario"},
6869         {.id = ALC662_FIXUP_ASUS_MODE1, .name = "asus-mode1"},
6870         {.id = ALC662_FIXUP_ASUS_MODE2, .name = "asus-mode2"},
6871         {.id = ALC662_FIXUP_ASUS_MODE3, .name = "asus-mode3"},
6872         {.id = ALC662_FIXUP_ASUS_MODE4, .name = "asus-mode4"},
6873         {.id = ALC662_FIXUP_ASUS_MODE5, .name = "asus-mode5"},
6874         {.id = ALC662_FIXUP_ASUS_MODE6, .name = "asus-mode6"},
6875         {.id = ALC662_FIXUP_ASUS_MODE7, .name = "asus-mode7"},
6876         {.id = ALC662_FIXUP_ASUS_MODE8, .name = "asus-mode8"},
6877         {}
6878 };
6879
6880
6881 /*
6882  */
6883 static int patch_alc662(struct hda_codec *codec)
6884 {
6885         struct alc_spec *spec;
6886         int err = 0;
6887
6888         spec = kzalloc(sizeof(*spec), GFP_KERNEL);
6889         if (!spec)
6890                 return -ENOMEM;
6891
6892         codec->spec = spec;
6893
6894         spec->mixer_nid = 0x0b;
6895
6896         /* handle multiple HPs as is */
6897         spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
6898
6899         alc_auto_parse_customize_define(codec);
6900
6901         alc_fix_pll_init(codec, 0x20, 0x04, 15);
6902
6903         err = alc_codec_rename_from_preset(codec);
6904         if (err < 0)
6905                 goto error;
6906
6907         if ((alc_get_coef0(codec) & (1 << 14)) &&
6908             codec->bus->pci->subsystem_vendor == 0x1025 &&
6909             spec->cdefine.platform_type == 1) {
6910                 if (alc_codec_rename(codec, "ALC272X") < 0)
6911                         goto error;
6912         }
6913
6914         alc_pick_fixup(codec, alc662_fixup_models,
6915                        alc662_fixup_tbl, alc662_fixups);
6916         alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
6917         /* automatic parse from the BIOS config */
6918         err = alc662_parse_auto_config(codec);
6919         if (err < 0)
6920                 goto error;
6921
6922         if (!spec->no_analog && !spec->adc_nids) {
6923                 alc_auto_fill_adc_caps(codec);
6924                 alc_rebuild_imux_for_auto_mic(codec);
6925                 alc_remove_invalid_adc_nids(codec);
6926         }
6927
6928         if (!spec->no_analog && !spec->cap_mixer)
6929                 set_capture_mixer(codec);
6930
6931         if (!spec->no_analog && has_cdefine_beep(codec)) {
6932                 err = snd_hda_attach_beep_device(codec, 0x1);
6933                 if (err < 0)
6934                         goto error;
6935                 switch (codec->vendor_id) {
6936                 case 0x10ec0662:
6937                         set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
6938                         break;
6939                 case 0x10ec0272:
6940                 case 0x10ec0663:
6941                 case 0x10ec0665:
6942                         set_beep_amp(spec, 0x0b, 0x04, HDA_INPUT);
6943                         break;
6944                 case 0x10ec0273:
6945                         set_beep_amp(spec, 0x0b, 0x03, HDA_INPUT);
6946                         break;
6947                 }
6948         }
6949
6950         codec->patch_ops = alc_patch_ops;
6951         spec->init_hook = alc_auto_init_std;
6952         spec->shutup = alc_eapd_shutup;
6953
6954 #ifdef CONFIG_SND_HDA_POWER_SAVE
6955         if (!spec->loopback.amplist)
6956                 spec->loopback.amplist = alc662_loopbacks;
6957 #endif
6958
6959         alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
6960
6961         return 0;
6962
6963  error:
6964         alc_free(codec);
6965         return err;
6966 }
6967
6968 /*
6969  * ALC680 support
6970  */
6971
6972 static int alc680_parse_auto_config(struct hda_codec *codec)
6973 {
6974         return alc_parse_auto_config(codec, NULL, NULL);
6975 }
6976
6977 /*
6978  */
6979 static int patch_alc680(struct hda_codec *codec)
6980 {
6981         struct alc_spec *spec;
6982         int err;
6983
6984         spec = kzalloc(sizeof(*spec), GFP_KERNEL);
6985         if (spec == NULL)
6986                 return -ENOMEM;
6987
6988         codec->spec = spec;
6989
6990         /* ALC680 has no aa-loopback mixer */
6991
6992         /* automatic parse from the BIOS config */
6993         err = alc680_parse_auto_config(codec);
6994         if (err < 0) {
6995                 alc_free(codec);
6996                 return err;
6997         }
6998
6999         if (!spec->no_analog && !spec->cap_mixer)
7000                 set_capture_mixer(codec);
7001
7002         codec->patch_ops = alc_patch_ops;
7003         spec->init_hook = alc_auto_init_std;
7004
7005         return 0;
7006 }
7007
7008 /*
7009  * patch entries
7010  */
7011 static const struct hda_codec_preset snd_hda_preset_realtek[] = {
7012         { .id = 0x10ec0221, .name = "ALC221", .patch = patch_alc269 },
7013         { .id = 0x10ec0260, .name = "ALC260", .patch = patch_alc260 },
7014         { .id = 0x10ec0262, .name = "ALC262", .patch = patch_alc262 },
7015         { .id = 0x10ec0267, .name = "ALC267", .patch = patch_alc268 },
7016         { .id = 0x10ec0268, .name = "ALC268", .patch = patch_alc268 },
7017         { .id = 0x10ec0269, .name = "ALC269", .patch = patch_alc269 },
7018         { .id = 0x10ec0270, .name = "ALC270", .patch = patch_alc269 },
7019         { .id = 0x10ec0272, .name = "ALC272", .patch = patch_alc662 },
7020         { .id = 0x10ec0275, .name = "ALC275", .patch = patch_alc269 },
7021         { .id = 0x10ec0276, .name = "ALC276", .patch = patch_alc269 },
7022         { .id = 0x10ec0861, .rev = 0x100340, .name = "ALC660",
7023           .patch = patch_alc861 },
7024         { .id = 0x10ec0660, .name = "ALC660-VD", .patch = patch_alc861vd },
7025         { .id = 0x10ec0861, .name = "ALC861", .patch = patch_alc861 },
7026         { .id = 0x10ec0862, .name = "ALC861-VD", .patch = patch_alc861vd },
7027         { .id = 0x10ec0662, .rev = 0x100002, .name = "ALC662 rev2",
7028           .patch = patch_alc882 },
7029         { .id = 0x10ec0662, .rev = 0x100101, .name = "ALC662 rev1",
7030           .patch = patch_alc662 },
7031         { .id = 0x10ec0662, .rev = 0x100300, .name = "ALC662 rev3",
7032           .patch = patch_alc662 },
7033         { .id = 0x10ec0663, .name = "ALC663", .patch = patch_alc662 },
7034         { .id = 0x10ec0665, .name = "ALC665", .patch = patch_alc662 },
7035         { .id = 0x10ec0670, .name = "ALC670", .patch = patch_alc662 },
7036         { .id = 0x10ec0680, .name = "ALC680", .patch = patch_alc680 },
7037         { .id = 0x10ec0880, .name = "ALC880", .patch = patch_alc880 },
7038         { .id = 0x10ec0882, .name = "ALC882", .patch = patch_alc882 },
7039         { .id = 0x10ec0883, .name = "ALC883", .patch = patch_alc882 },
7040         { .id = 0x10ec0885, .rev = 0x100101, .name = "ALC889A",
7041           .patch = patch_alc882 },
7042         { .id = 0x10ec0885, .rev = 0x100103, .name = "ALC889A",
7043           .patch = patch_alc882 },
7044         { .id = 0x10ec0885, .name = "ALC885", .patch = patch_alc882 },
7045         { .id = 0x10ec0887, .name = "ALC887", .patch = patch_alc882 },
7046         { .id = 0x10ec0888, .rev = 0x100101, .name = "ALC1200",
7047           .patch = patch_alc882 },
7048         { .id = 0x10ec0888, .name = "ALC888", .patch = patch_alc882 },
7049         { .id = 0x10ec0889, .name = "ALC889", .patch = patch_alc882 },
7050         { .id = 0x10ec0892, .name = "ALC892", .patch = patch_alc662 },
7051         { .id = 0x10ec0899, .name = "ALC898", .patch = patch_alc882 },
7052         {} /* terminator */
7053 };
7054
7055 MODULE_ALIAS("snd-hda-codec-id:10ec*");
7056
7057 MODULE_LICENSE("GPL");
7058 MODULE_DESCRIPTION("Realtek HD-audio codec");
7059
7060 static struct hda_codec_preset_list realtek_list = {
7061         .preset = snd_hda_preset_realtek,
7062         .owner = THIS_MODULE,
7063 };
7064
7065 static int __init patch_realtek_init(void)
7066 {
7067         return snd_hda_add_codec_preset(&realtek_list);
7068 }
7069
7070 static void __exit patch_realtek_exit(void)
7071 {
7072         snd_hda_delete_codec_preset(&realtek_list);
7073 }
7074
7075 module_init(patch_realtek_init)
7076 module_exit(patch_realtek_exit)