]> git.karo-electronics.de Git - mv-sheeva.git/blob - sound/pci/hda/patch_realtek.c
ALSA: hda/realtek - Rewrite ALC880 model=F1734 with auto-parser
[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_GPIO2,
4442         ALC880_FIXUP_MEDION_RIM,
4443         ALC880_FIXUP_LG,
4444         ALC880_FIXUP_W810,
4445         ALC880_FIXUP_EAPD_COEF,
4446         ALC880_FIXUP_TCL_S700,
4447         ALC880_FIXUP_VOL_KNOB,
4448         ALC880_FIXUP_FUJITSU,
4449         ALC880_FIXUP_F1734,
4450 };
4451
4452 /* enable the volume-knob widget support on NID 0x21 */
4453 static void alc880_fixup_vol_knob(struct hda_codec *codec,
4454                                   const struct alc_fixup *fix, int action)
4455 {
4456         if (action == ALC_FIXUP_ACT_PROBE)
4457                 snd_hda_jack_detect_enable(codec, 0x21, ALC_DCVOL_EVENT);
4458 }
4459
4460 static const struct alc_fixup alc880_fixups[] = {
4461         [ALC880_FIXUP_GPIO2] = {
4462                 .type = ALC_FIXUP_VERBS,
4463                 .v.verbs = alc_gpio2_init_verbs,
4464         },
4465         [ALC880_FIXUP_MEDION_RIM] = {
4466                 .type = ALC_FIXUP_VERBS,
4467                 .v.verbs = (const struct hda_verb[]) {
4468                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
4469                         { 0x20, AC_VERB_SET_PROC_COEF,  0x3060 },
4470                         { }
4471                 },
4472                 .chained = true,
4473                 .chain_id = ALC880_FIXUP_GPIO2,
4474         },
4475         [ALC880_FIXUP_LG] = {
4476                 .type = ALC_FIXUP_PINS,
4477                 .v.pins = (const struct alc_pincfg[]) {
4478                         /* disable bogus unused pins */
4479                         { 0x16, 0x411111f0 },
4480                         { 0x18, 0x411111f0 },
4481                         { 0x1a, 0x411111f0 },
4482                         { }
4483                 }
4484         },
4485         [ALC880_FIXUP_W810] = {
4486                 .type = ALC_FIXUP_PINS,
4487                 .v.pins = (const struct alc_pincfg[]) {
4488                         /* disable bogus unused pins */
4489                         { 0x17, 0x411111f0 },
4490                         { }
4491                 },
4492                 .chained = true,
4493                 .chain_id = ALC880_FIXUP_GPIO2,
4494         },
4495         [ALC880_FIXUP_EAPD_COEF] = {
4496                 .type = ALC_FIXUP_VERBS,
4497                 .v.verbs = (const struct hda_verb[]) {
4498                         /* change to EAPD mode */
4499                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
4500                         { 0x20, AC_VERB_SET_PROC_COEF,  0x3060 },
4501                         {}
4502                 },
4503         },
4504         [ALC880_FIXUP_TCL_S700] = {
4505                 .type = ALC_FIXUP_VERBS,
4506                 .v.verbs = (const struct hda_verb[]) {
4507                         /* change to EAPD mode */
4508                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
4509                         { 0x20, AC_VERB_SET_PROC_COEF,  0x3070 },
4510                         {}
4511                 },
4512                 .chained = true,
4513                 .chain_id = ALC880_FIXUP_GPIO2,
4514         },
4515         [ALC880_FIXUP_VOL_KNOB] = {
4516                 .type = ALC_FIXUP_FUNC,
4517                 .v.func = alc880_fixup_vol_knob,
4518         },
4519         [ALC880_FIXUP_FUJITSU] = {
4520                 /* override all pins as BIOS on old Amilo is broken */
4521                 .type = ALC_FIXUP_PINS,
4522                 .v.pins = (const struct alc_pincfg[]) {
4523                         { 0x14, 0x0121411f }, /* HP */
4524                         { 0x15, 0x99030120 }, /* speaker */
4525                         { 0x16, 0x99030130 }, /* bass speaker */
4526                         { 0x17, 0x411111f0 }, /* N/A */
4527                         { 0x18, 0x411111f0 }, /* N/A */
4528                         { 0x19, 0x01a19950 }, /* mic-in */
4529                         { 0x1a, 0x411111f0 }, /* N/A */
4530                         { 0x1b, 0x411111f0 }, /* N/A */
4531                         { 0x1c, 0x411111f0 }, /* N/A */
4532                         { 0x1d, 0x411111f0 }, /* N/A */
4533                         { 0x1e, 0x01454140 }, /* SPDIF out */
4534                         { }
4535                 },
4536                 .chained = true,
4537                 .chain_id = ALC880_FIXUP_VOL_KNOB,
4538         },
4539         [ALC880_FIXUP_F1734] = {
4540                 /* almost compatible with FUJITSU, but no bass and SPDIF */
4541                 .type = ALC_FIXUP_PINS,
4542                 .v.pins = (const struct alc_pincfg[]) {
4543                         { 0x14, 0x0121411f }, /* HP */
4544                         { 0x15, 0x99030120 }, /* speaker */
4545                         { 0x16, 0x411111f0 }, /* N/A */
4546                         { 0x17, 0x411111f0 }, /* N/A */
4547                         { 0x18, 0x411111f0 }, /* N/A */
4548                         { 0x19, 0x01a19950 }, /* mic-in */
4549                         { 0x1a, 0x411111f0 }, /* N/A */
4550                         { 0x1b, 0x411111f0 }, /* N/A */
4551                         { 0x1c, 0x411111f0 }, /* N/A */
4552                         { 0x1d, 0x411111f0 }, /* N/A */
4553                         { 0x1e, 0x411111f0 }, /* N/A */
4554                         { }
4555                 },
4556                 .chained = true,
4557                 .chain_id = ALC880_FIXUP_VOL_KNOB,
4558         },
4559 };
4560
4561 static const struct snd_pci_quirk alc880_fixup_tbl[] = {
4562         SND_PCI_QUIRK(0x1019, 0x0f69, "Coeus G610P", ALC880_FIXUP_W810),
4563         SND_PCI_QUIRK_VENDOR(0x1558, "Clevo", ALC880_FIXUP_EAPD_COEF),
4564         SND_PCI_QUIRK(0x1584, 0x9054, "Uniwill", ALC880_FIXUP_F1734),
4565         SND_PCI_QUIRK(0x161f, 0x203d, "W810", ALC880_FIXUP_W810),
4566         SND_PCI_QUIRK(0x161f, 0x205d, "Medion Rim 2150", ALC880_FIXUP_MEDION_RIM),
4567         SND_PCI_QUIRK(0x1734, 0x107c, "FSC F1734", ALC880_FIXUP_F1734),
4568         SND_PCI_QUIRK(0x1734, 0x1094, "FSC Amilo M1451G", ALC880_FIXUP_FUJITSU),
4569         SND_PCI_QUIRK(0x1734, 0x10ac, "FSC AMILO Xi 1526", ALC880_FIXUP_F1734),
4570         SND_PCI_QUIRK(0x1734, 0x10b0, "FSC Amilo Pi1556", ALC880_FIXUP_FUJITSU),
4571         SND_PCI_QUIRK(0x1854, 0x003b, "LG", ALC880_FIXUP_LG),
4572         SND_PCI_QUIRK(0x1854, 0x005f, "LG P1 Express", ALC880_FIXUP_LG),
4573         SND_PCI_QUIRK(0x1854, 0x0068, "LG w1", ALC880_FIXUP_LG),
4574         SND_PCI_QUIRK(0x19db, 0x4188, "TCL S700", ALC880_FIXUP_TCL_S700),
4575         {}
4576 };
4577
4578
4579 /*
4580  * board setups
4581  */
4582 #ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
4583 #define alc_board_config \
4584         snd_hda_check_board_config
4585 #define alc_board_codec_sid_config \
4586         snd_hda_check_board_codec_sid_config
4587 #include "alc_quirks.c"
4588 #else
4589 #define alc_board_config(codec, nums, models, tbl)      -1
4590 #define alc_board_codec_sid_config(codec, nums, models, tbl)    -1
4591 #define setup_preset(codec, x)  /* NOP */
4592 #endif
4593
4594 /*
4595  * OK, here we have finally the patch for ALC880
4596  */
4597 #ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
4598 #include "alc880_quirks.c"
4599 #endif
4600
4601 static int patch_alc880(struct hda_codec *codec)
4602 {
4603         struct alc_spec *spec;
4604         int board_config;
4605         int err;
4606
4607         spec = kzalloc(sizeof(*spec), GFP_KERNEL);
4608         if (spec == NULL)
4609                 return -ENOMEM;
4610
4611         codec->spec = spec;
4612
4613         spec->mixer_nid = 0x0b;
4614         spec->need_dac_fix = 1;
4615
4616         board_config = alc_board_config(codec, ALC880_MODEL_LAST,
4617                                         alc880_models, alc880_cfg_tbl);
4618         if (board_config < 0) {
4619                 printk(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
4620                        codec->chip_name);
4621                 board_config = ALC_MODEL_AUTO;
4622         }
4623
4624         if (board_config == ALC_MODEL_AUTO) {
4625                 alc_pick_fixup(codec, NULL, alc880_fixup_tbl, alc880_fixups);
4626                 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
4627         }
4628
4629         if (board_config == ALC_MODEL_AUTO) {
4630                 /* automatic parse from the BIOS config */
4631                 err = alc880_parse_auto_config(codec);
4632                 if (err < 0)
4633                         goto error;
4634 #ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
4635                 else if (!err) {
4636                         printk(KERN_INFO
4637                                "hda_codec: Cannot set up configuration "
4638                                "from BIOS.  Using 3-stack mode...\n");
4639                         board_config = ALC880_3ST;
4640                 }
4641 #endif
4642         }
4643
4644         if (board_config != ALC_MODEL_AUTO) {
4645                 spec->vmaster_nid = 0x0c;
4646                 setup_preset(codec, &alc880_presets[board_config]);
4647         }
4648
4649         if (!spec->no_analog && !spec->adc_nids) {
4650                 alc_auto_fill_adc_caps(codec);
4651                 alc_rebuild_imux_for_auto_mic(codec);
4652                 alc_remove_invalid_adc_nids(codec);
4653         }
4654
4655         if (!spec->no_analog && !spec->cap_mixer)
4656                 set_capture_mixer(codec);
4657
4658         if (!spec->no_analog) {
4659                 err = snd_hda_attach_beep_device(codec, 0x1);
4660                 if (err < 0)
4661                         goto error;
4662                 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
4663         }
4664
4665         codec->patch_ops = alc_patch_ops;
4666         if (board_config == ALC_MODEL_AUTO)
4667                 spec->init_hook = alc_auto_init_std;
4668         else
4669                 codec->patch_ops.build_controls = __alc_build_controls;
4670 #ifdef CONFIG_SND_HDA_POWER_SAVE
4671         if (!spec->loopback.amplist)
4672                 spec->loopback.amplist = alc880_loopbacks;
4673 #endif
4674
4675         alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
4676
4677         return 0;
4678
4679  error:
4680         alc_free(codec);
4681         return err;
4682 }
4683
4684
4685 /*
4686  * ALC260 support
4687  */
4688 static int alc260_parse_auto_config(struct hda_codec *codec)
4689 {
4690         static const hda_nid_t alc260_ignore[] = { 0x17, 0 };
4691         static const hda_nid_t alc260_ssids[] = { 0x10, 0x15, 0x0f, 0 };
4692         return alc_parse_auto_config(codec, alc260_ignore, alc260_ssids);
4693 }
4694
4695 #ifdef CONFIG_SND_HDA_POWER_SAVE
4696 static const struct hda_amp_list alc260_loopbacks[] = {
4697         { 0x07, HDA_INPUT, 0 },
4698         { 0x07, HDA_INPUT, 1 },
4699         { 0x07, HDA_INPUT, 2 },
4700         { 0x07, HDA_INPUT, 3 },
4701         { 0x07, HDA_INPUT, 4 },
4702         { } /* end */
4703 };
4704 #endif
4705
4706 /*
4707  * Pin config fixes
4708  */
4709 enum {
4710         ALC260_FIXUP_HP_DC5750,
4711         ALC260_FIXUP_HP_PIN_0F,
4712         ALC260_FIXUP_COEF,
4713         ALC260_FIXUP_GPIO1,
4714         ALC260_FIXUP_GPIO1_TOGGLE,
4715         ALC260_FIXUP_REPLACER,
4716         ALC260_FIXUP_HP_B1900,
4717 };
4718
4719 static void alc260_gpio1_automute(struct hda_codec *codec)
4720 {
4721         struct alc_spec *spec = codec->spec;
4722         snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_DATA,
4723                             spec->hp_jack_present);
4724 }
4725
4726 static void alc260_fixup_gpio1_toggle(struct hda_codec *codec,
4727                                       const struct alc_fixup *fix, int action)
4728 {
4729         struct alc_spec *spec = codec->spec;
4730         if (action == ALC_FIXUP_ACT_PROBE) {
4731                 /* although the machine has only one output pin, we need to
4732                  * toggle GPIO1 according to the jack state
4733                  */
4734                 spec->automute_hook = alc260_gpio1_automute;
4735                 spec->detect_hp = 1;
4736                 spec->automute_speaker = 1;
4737                 spec->autocfg.hp_pins[0] = 0x0f; /* copy it for automute */
4738                 snd_hda_jack_detect_enable(codec, 0x0f, ALC_HP_EVENT);
4739                 spec->unsol_event = alc_sku_unsol_event;
4740                 add_verb(codec->spec, alc_gpio1_init_verbs);
4741         }
4742 }
4743
4744 static const struct alc_fixup alc260_fixups[] = {
4745         [ALC260_FIXUP_HP_DC5750] = {
4746                 .type = ALC_FIXUP_PINS,
4747                 .v.pins = (const struct alc_pincfg[]) {
4748                         { 0x11, 0x90130110 }, /* speaker */
4749                         { }
4750                 }
4751         },
4752         [ALC260_FIXUP_HP_PIN_0F] = {
4753                 .type = ALC_FIXUP_PINS,
4754                 .v.pins = (const struct alc_pincfg[]) {
4755                         { 0x0f, 0x01214000 }, /* HP */
4756                         { }
4757                 }
4758         },
4759         [ALC260_FIXUP_COEF] = {
4760                 .type = ALC_FIXUP_VERBS,
4761                 .v.verbs = (const struct hda_verb[]) {
4762                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
4763                         { 0x20, AC_VERB_SET_PROC_COEF,  0x3040 },
4764                         { }
4765                 },
4766                 .chained = true,
4767                 .chain_id = ALC260_FIXUP_HP_PIN_0F,
4768         },
4769         [ALC260_FIXUP_GPIO1] = {
4770                 .type = ALC_FIXUP_VERBS,
4771                 .v.verbs = alc_gpio1_init_verbs,
4772         },
4773         [ALC260_FIXUP_GPIO1_TOGGLE] = {
4774                 .type = ALC_FIXUP_FUNC,
4775                 .v.func = alc260_fixup_gpio1_toggle,
4776                 .chained = true,
4777                 .chain_id = ALC260_FIXUP_HP_PIN_0F,
4778         },
4779         [ALC260_FIXUP_REPLACER] = {
4780                 .type = ALC_FIXUP_VERBS,
4781                 .v.verbs = (const struct hda_verb[]) {
4782                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
4783                         { 0x20, AC_VERB_SET_PROC_COEF,  0x3050 },
4784                         { }
4785                 },
4786                 .chained = true,
4787                 .chain_id = ALC260_FIXUP_GPIO1_TOGGLE,
4788         },
4789         [ALC260_FIXUP_HP_B1900] = {
4790                 .type = ALC_FIXUP_FUNC,
4791                 .v.func = alc260_fixup_gpio1_toggle,
4792                 .chained = true,
4793                 .chain_id = ALC260_FIXUP_COEF,
4794         }
4795 };
4796
4797 static const struct snd_pci_quirk alc260_fixup_tbl[] = {
4798         SND_PCI_QUIRK(0x1025, 0x007b, "Acer C20x", ALC260_FIXUP_GPIO1),
4799         SND_PCI_QUIRK(0x1025, 0x007f, "Acer Aspire 9500", ALC260_FIXUP_COEF),
4800         SND_PCI_QUIRK(0x1025, 0x008f, "Acer", ALC260_FIXUP_GPIO1),
4801         SND_PCI_QUIRK(0x103c, 0x280a, "HP dc5750", ALC260_FIXUP_HP_DC5750),
4802         SND_PCI_QUIRK(0x103c, 0x30ba, "HP Presario B1900", ALC260_FIXUP_HP_B1900),
4803         SND_PCI_QUIRK(0x1509, 0x4540, "Favorit 100XS", ALC260_FIXUP_GPIO1),
4804         SND_PCI_QUIRK(0x161f, 0x2057, "Replacer 672V", ALC260_FIXUP_REPLACER),
4805         SND_PCI_QUIRK(0x1631, 0xc017, "PB V7900", ALC260_FIXUP_COEF),
4806         {}
4807 };
4808
4809 /*
4810  */
4811 static int patch_alc260(struct hda_codec *codec)
4812 {
4813         struct alc_spec *spec;
4814         int err;
4815
4816         spec = kzalloc(sizeof(*spec), GFP_KERNEL);
4817         if (spec == NULL)
4818                 return -ENOMEM;
4819
4820         codec->spec = spec;
4821
4822         spec->mixer_nid = 0x07;
4823
4824         alc_pick_fixup(codec, NULL, alc260_fixup_tbl, alc260_fixups);
4825         alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
4826
4827         /* automatic parse from the BIOS config */
4828         err = alc260_parse_auto_config(codec);
4829         if (err < 0)
4830                 goto error;
4831
4832         if (!spec->no_analog && !spec->adc_nids) {
4833                 alc_auto_fill_adc_caps(codec);
4834                 alc_rebuild_imux_for_auto_mic(codec);
4835                 alc_remove_invalid_adc_nids(codec);
4836         }
4837
4838         if (!spec->no_analog && !spec->cap_mixer)
4839                 set_capture_mixer(codec);
4840
4841         if (!spec->no_analog) {
4842                 err = snd_hda_attach_beep_device(codec, 0x1);
4843                 if (err < 0)
4844                         goto error;
4845                 set_beep_amp(spec, 0x07, 0x05, HDA_INPUT);
4846         }
4847
4848         codec->patch_ops = alc_patch_ops;
4849         spec->init_hook = alc_auto_init_std;
4850         spec->shutup = alc_eapd_shutup;
4851 #ifdef CONFIG_SND_HDA_POWER_SAVE
4852         if (!spec->loopback.amplist)
4853                 spec->loopback.amplist = alc260_loopbacks;
4854 #endif
4855
4856         alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
4857
4858         return 0;
4859
4860  error:
4861         alc_free(codec);
4862         return err;
4863 }
4864
4865
4866 /*
4867  * ALC882/883/885/888/889 support
4868  *
4869  * ALC882 is almost identical with ALC880 but has cleaner and more flexible
4870  * configuration.  Each pin widget can choose any input DACs and a mixer.
4871  * Each ADC is connected from a mixer of all inputs.  This makes possible
4872  * 6-channel independent captures.
4873  *
4874  * In addition, an independent DAC for the multi-playback (not used in this
4875  * driver yet).
4876  */
4877 #ifdef CONFIG_SND_HDA_POWER_SAVE
4878 #define alc882_loopbacks        alc880_loopbacks
4879 #endif
4880
4881 /*
4882  * Pin config fixes
4883  */
4884 enum {
4885         ALC882_FIXUP_ABIT_AW9D_MAX,
4886         ALC882_FIXUP_LENOVO_Y530,
4887         ALC882_FIXUP_PB_M5210,
4888         ALC882_FIXUP_ACER_ASPIRE_7736,
4889         ALC882_FIXUP_ASUS_W90V,
4890         ALC889_FIXUP_VAIO_TT,
4891         ALC888_FIXUP_EEE1601,
4892         ALC882_FIXUP_EAPD,
4893         ALC883_FIXUP_EAPD,
4894         ALC883_FIXUP_ACER_EAPD,
4895         ALC882_FIXUP_GPIO3,
4896         ALC889_FIXUP_COEF,
4897         ALC882_FIXUP_ASUS_W2JC,
4898         ALC882_FIXUP_ACER_ASPIRE_4930G,
4899         ALC882_FIXUP_ACER_ASPIRE_8930G,
4900         ALC882_FIXUP_ASPIRE_8930G_VERBS,
4901         ALC885_FIXUP_MACPRO_GPIO,
4902         ALC889_FIXUP_DAC_ROUTE,
4903 };
4904
4905 static void alc889_fixup_coef(struct hda_codec *codec,
4906                               const struct alc_fixup *fix, int action)
4907 {
4908         if (action != ALC_FIXUP_ACT_INIT)
4909                 return;
4910         alc889_coef_init(codec);
4911 }
4912
4913 /* toggle speaker-output according to the hp-jack state */
4914 static void alc882_gpio_mute(struct hda_codec *codec, int pin, int muted)
4915 {
4916         unsigned int gpiostate, gpiomask, gpiodir;
4917
4918         gpiostate = snd_hda_codec_read(codec, codec->afg, 0,
4919                                        AC_VERB_GET_GPIO_DATA, 0);
4920
4921         if (!muted)
4922                 gpiostate |= (1 << pin);
4923         else
4924                 gpiostate &= ~(1 << pin);
4925
4926         gpiomask = snd_hda_codec_read(codec, codec->afg, 0,
4927                                       AC_VERB_GET_GPIO_MASK, 0);
4928         gpiomask |= (1 << pin);
4929
4930         gpiodir = snd_hda_codec_read(codec, codec->afg, 0,
4931                                      AC_VERB_GET_GPIO_DIRECTION, 0);
4932         gpiodir |= (1 << pin);
4933
4934
4935         snd_hda_codec_write(codec, codec->afg, 0,
4936                             AC_VERB_SET_GPIO_MASK, gpiomask);
4937         snd_hda_codec_write(codec, codec->afg, 0,
4938                             AC_VERB_SET_GPIO_DIRECTION, gpiodir);
4939
4940         msleep(1);
4941
4942         snd_hda_codec_write(codec, codec->afg, 0,
4943                             AC_VERB_SET_GPIO_DATA, gpiostate);
4944 }
4945
4946 /* set up GPIO at initialization */
4947 static void alc885_fixup_macpro_gpio(struct hda_codec *codec,
4948                                      const struct alc_fixup *fix, int action)
4949 {
4950         if (action != ALC_FIXUP_ACT_INIT)
4951                 return;
4952         alc882_gpio_mute(codec, 0, 0);
4953         alc882_gpio_mute(codec, 1, 0);
4954 }
4955
4956 /* Fix the connection of some pins for ALC889:
4957  * At least, Acer Aspire 5935 shows the connections to DAC3/4 don't
4958  * work correctly (bko#42740)
4959  */
4960 static void alc889_fixup_dac_route(struct hda_codec *codec,
4961                                    const struct alc_fixup *fix, int action)
4962 {
4963         if (action == ALC_FIXUP_ACT_PRE_PROBE) {
4964                 hda_nid_t conn1[2] = { 0x0c, 0x0d };
4965                 hda_nid_t conn2[2] = { 0x0e, 0x0f };
4966                 snd_hda_override_conn_list(codec, 0x14, 2, conn1);
4967                 snd_hda_override_conn_list(codec, 0x15, 2, conn1);
4968                 snd_hda_override_conn_list(codec, 0x18, 2, conn2);
4969                 snd_hda_override_conn_list(codec, 0x1a, 2, conn2);
4970         }
4971 }
4972
4973 static const struct alc_fixup alc882_fixups[] = {
4974         [ALC882_FIXUP_ABIT_AW9D_MAX] = {
4975                 .type = ALC_FIXUP_PINS,
4976                 .v.pins = (const struct alc_pincfg[]) {
4977                         { 0x15, 0x01080104 }, /* side */
4978                         { 0x16, 0x01011012 }, /* rear */
4979                         { 0x17, 0x01016011 }, /* clfe */
4980                         { }
4981                 }
4982         },
4983         [ALC882_FIXUP_LENOVO_Y530] = {
4984                 .type = ALC_FIXUP_PINS,
4985                 .v.pins = (const struct alc_pincfg[]) {
4986                         { 0x15, 0x99130112 }, /* rear int speakers */
4987                         { 0x16, 0x99130111 }, /* subwoofer */
4988                         { }
4989                 }
4990         },
4991         [ALC882_FIXUP_PB_M5210] = {
4992                 .type = ALC_FIXUP_VERBS,
4993                 .v.verbs = (const struct hda_verb[]) {
4994                         { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF50 },
4995                         {}
4996                 }
4997         },
4998         [ALC882_FIXUP_ACER_ASPIRE_7736] = {
4999                 .type = ALC_FIXUP_SKU,
5000                 .v.sku = ALC_FIXUP_SKU_IGNORE,
5001         },
5002         [ALC882_FIXUP_ASUS_W90V] = {
5003                 .type = ALC_FIXUP_PINS,
5004                 .v.pins = (const struct alc_pincfg[]) {
5005                         { 0x16, 0x99130110 }, /* fix sequence for CLFE */
5006                         { }
5007                 }
5008         },
5009         [ALC889_FIXUP_VAIO_TT] = {
5010                 .type = ALC_FIXUP_PINS,
5011                 .v.pins = (const struct alc_pincfg[]) {
5012                         { 0x17, 0x90170111 }, /* hidden surround speaker */
5013                         { }
5014                 }
5015         },
5016         [ALC888_FIXUP_EEE1601] = {
5017                 .type = ALC_FIXUP_VERBS,
5018                 .v.verbs = (const struct hda_verb[]) {
5019                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x0b },
5020                         { 0x20, AC_VERB_SET_PROC_COEF,  0x0838 },
5021                         { }
5022                 }
5023         },
5024         [ALC882_FIXUP_EAPD] = {
5025                 .type = ALC_FIXUP_VERBS,
5026                 .v.verbs = (const struct hda_verb[]) {
5027                         /* change to EAPD mode */
5028                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
5029                         { 0x20, AC_VERB_SET_PROC_COEF, 0x3060 },
5030                         { }
5031                 }
5032         },
5033         [ALC883_FIXUP_EAPD] = {
5034                 .type = ALC_FIXUP_VERBS,
5035                 .v.verbs = (const struct hda_verb[]) {
5036                         /* change to EAPD mode */
5037                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
5038                         { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
5039                         { }
5040                 }
5041         },
5042         [ALC883_FIXUP_ACER_EAPD] = {
5043                 .type = ALC_FIXUP_VERBS,
5044                 .v.verbs = (const struct hda_verb[]) {
5045                         /* eanable EAPD on Acer laptops */
5046                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
5047                         { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
5048                         { }
5049                 }
5050         },
5051         [ALC882_FIXUP_GPIO3] = {
5052                 .type = ALC_FIXUP_VERBS,
5053                 .v.verbs = alc_gpio3_init_verbs,
5054         },
5055         [ALC882_FIXUP_ASUS_W2JC] = {
5056                 .type = ALC_FIXUP_VERBS,
5057                 .v.verbs = alc_gpio1_init_verbs,
5058                 .chained = true,
5059                 .chain_id = ALC882_FIXUP_EAPD,
5060         },
5061         [ALC889_FIXUP_COEF] = {
5062                 .type = ALC_FIXUP_FUNC,
5063                 .v.func = alc889_fixup_coef,
5064         },
5065         [ALC882_FIXUP_ACER_ASPIRE_4930G] = {
5066                 .type = ALC_FIXUP_PINS,
5067                 .v.pins = (const struct alc_pincfg[]) {
5068                         { 0x16, 0x99130111 }, /* CLFE speaker */
5069                         { 0x17, 0x99130112 }, /* surround speaker */
5070                         { }
5071                 }
5072         },
5073         [ALC882_FIXUP_ACER_ASPIRE_8930G] = {
5074                 .type = ALC_FIXUP_PINS,
5075                 .v.pins = (const struct alc_pincfg[]) {
5076                         { 0x16, 0x99130111 }, /* CLFE speaker */
5077                         { 0x1b, 0x99130112 }, /* surround speaker */
5078                         { }
5079                 },
5080                 .chained = true,
5081                 .chain_id = ALC882_FIXUP_ASPIRE_8930G_VERBS,
5082         },
5083         [ALC882_FIXUP_ASPIRE_8930G_VERBS] = {
5084                 /* additional init verbs for Acer Aspire 8930G */
5085                 .type = ALC_FIXUP_VERBS,
5086                 .v.verbs = (const struct hda_verb[]) {
5087                         /* Enable all DACs */
5088                         /* DAC DISABLE/MUTE 1? */
5089                         /*  setting bits 1-5 disables DAC nids 0x02-0x06
5090                          *  apparently. Init=0x38 */
5091                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x03 },
5092                         { 0x20, AC_VERB_SET_PROC_COEF, 0x0000 },
5093                         /* DAC DISABLE/MUTE 2? */
5094                         /*  some bit here disables the other DACs.
5095                          *  Init=0x4900 */
5096                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x08 },
5097                         { 0x20, AC_VERB_SET_PROC_COEF, 0x0000 },
5098                         /* DMIC fix
5099                          * This laptop has a stereo digital microphone.
5100                          * The mics are only 1cm apart which makes the stereo
5101                          * useless. However, either the mic or the ALC889
5102                          * makes the signal become a difference/sum signal
5103                          * instead of standard stereo, which is annoying.
5104                          * So instead we flip this bit which makes the
5105                          * codec replicate the sum signal to both channels,
5106                          * turning it into a normal mono mic.
5107                          */
5108                         /* DMIC_CONTROL? Init value = 0x0001 */
5109                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x0b },
5110                         { 0x20, AC_VERB_SET_PROC_COEF, 0x0003 },
5111                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
5112                         { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
5113                         { }
5114                 }
5115         },
5116         [ALC885_FIXUP_MACPRO_GPIO] = {
5117                 .type = ALC_FIXUP_FUNC,
5118                 .v.func = alc885_fixup_macpro_gpio,
5119         },
5120         [ALC889_FIXUP_DAC_ROUTE] = {
5121                 .type = ALC_FIXUP_FUNC,
5122                 .v.func = alc889_fixup_dac_route,
5123         },
5124 };
5125
5126 static const struct snd_pci_quirk alc882_fixup_tbl[] = {
5127         SND_PCI_QUIRK(0x1025, 0x006c, "Acer Aspire 9810", ALC883_FIXUP_ACER_EAPD),
5128         SND_PCI_QUIRK(0x1025, 0x0090, "Acer Aspire", ALC883_FIXUP_ACER_EAPD),
5129         SND_PCI_QUIRK(0x1025, 0x010a, "Acer Ferrari 5000", ALC883_FIXUP_ACER_EAPD),
5130         SND_PCI_QUIRK(0x1025, 0x0110, "Acer Aspire", ALC883_FIXUP_ACER_EAPD),
5131         SND_PCI_QUIRK(0x1025, 0x0112, "Acer Aspire 9303", ALC883_FIXUP_ACER_EAPD),
5132         SND_PCI_QUIRK(0x1025, 0x0121, "Acer Aspire 5920G", ALC883_FIXUP_ACER_EAPD),
5133         SND_PCI_QUIRK(0x1025, 0x013e, "Acer Aspire 4930G",
5134                       ALC882_FIXUP_ACER_ASPIRE_4930G),
5135         SND_PCI_QUIRK(0x1025, 0x013f, "Acer Aspire 5930G",
5136                       ALC882_FIXUP_ACER_ASPIRE_4930G),
5137         SND_PCI_QUIRK(0x1025, 0x0145, "Acer Aspire 8930G",
5138                       ALC882_FIXUP_ACER_ASPIRE_8930G),
5139         SND_PCI_QUIRK(0x1025, 0x0146, "Acer Aspire 6935G",
5140                       ALC882_FIXUP_ACER_ASPIRE_8930G),
5141         SND_PCI_QUIRK(0x1025, 0x015e, "Acer Aspire 6930G",
5142                       ALC882_FIXUP_ACER_ASPIRE_4930G),
5143         SND_PCI_QUIRK(0x1025, 0x0166, "Acer Aspire 6530G",
5144                       ALC882_FIXUP_ACER_ASPIRE_4930G),
5145         SND_PCI_QUIRK(0x1025, 0x0142, "Acer Aspire 7730G",
5146                       ALC882_FIXUP_ACER_ASPIRE_4930G),
5147         SND_PCI_QUIRK(0x1025, 0x0155, "Packard-Bell M5120", ALC882_FIXUP_PB_M5210),
5148         SND_PCI_QUIRK(0x1025, 0x0259, "Acer Aspire 5935", ALC889_FIXUP_DAC_ROUTE),
5149         SND_PCI_QUIRK(0x1025, 0x0296, "Acer Aspire 7736z", ALC882_FIXUP_ACER_ASPIRE_7736),
5150         SND_PCI_QUIRK(0x1043, 0x13c2, "Asus A7M", ALC882_FIXUP_EAPD),
5151         SND_PCI_QUIRK(0x1043, 0x1873, "ASUS W90V", ALC882_FIXUP_ASUS_W90V),
5152         SND_PCI_QUIRK(0x1043, 0x1971, "Asus W2JC", ALC882_FIXUP_ASUS_W2JC),
5153         SND_PCI_QUIRK(0x1043, 0x835f, "Asus Eee 1601", ALC888_FIXUP_EEE1601),
5154         SND_PCI_QUIRK(0x104d, 0x9047, "Sony Vaio TT", ALC889_FIXUP_VAIO_TT),
5155
5156         /* All Apple entries are in codec SSIDs */
5157         SND_PCI_QUIRK(0x106b, 0x0c00, "Mac Pro", ALC885_FIXUP_MACPRO_GPIO),
5158         SND_PCI_QUIRK(0x106b, 0x1000, "iMac 24", ALC885_FIXUP_MACPRO_GPIO),
5159         SND_PCI_QUIRK(0x106b, 0x2800, "AppleTV", ALC885_FIXUP_MACPRO_GPIO),
5160         SND_PCI_QUIRK(0x106b, 0x3200, "iMac 7,1 Aluminum", ALC882_FIXUP_EAPD),
5161         SND_PCI_QUIRK(0x106b, 0x3e00, "iMac 24 Aluminum", ALC885_FIXUP_MACPRO_GPIO),
5162
5163         SND_PCI_QUIRK(0x1071, 0x8258, "Evesham Voyaeger", ALC882_FIXUP_EAPD),
5164         SND_PCI_QUIRK_VENDOR(0x1462, "MSI", ALC882_FIXUP_GPIO3),
5165         SND_PCI_QUIRK(0x147b, 0x107a, "Abit AW9D-MAX", ALC882_FIXUP_ABIT_AW9D_MAX),
5166         SND_PCI_QUIRK_VENDOR(0x1558, "Clevo laptop", ALC882_FIXUP_EAPD),
5167         SND_PCI_QUIRK(0x161f, 0x2054, "Medion laptop", ALC883_FIXUP_EAPD),
5168         SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Y530", ALC882_FIXUP_LENOVO_Y530),
5169         SND_PCI_QUIRK(0x8086, 0x0022, "DX58SO", ALC889_FIXUP_COEF),
5170         {}
5171 };
5172
5173 /*
5174  * BIOS auto configuration
5175  */
5176 /* almost identical with ALC880 parser... */
5177 static int alc882_parse_auto_config(struct hda_codec *codec)
5178 {
5179         static const hda_nid_t alc882_ignore[] = { 0x1d, 0 };
5180         static const hda_nid_t alc882_ssids[] = { 0x15, 0x1b, 0x14, 0 };
5181         return alc_parse_auto_config(codec, alc882_ignore, alc882_ssids);
5182 }
5183
5184 /*
5185  */
5186 #ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
5187 #include "alc882_quirks.c"
5188 #endif
5189
5190 static int patch_alc882(struct hda_codec *codec)
5191 {
5192         struct alc_spec *spec;
5193         int err, board_config;
5194
5195         spec = kzalloc(sizeof(*spec), GFP_KERNEL);
5196         if (spec == NULL)
5197                 return -ENOMEM;
5198
5199         codec->spec = spec;
5200
5201         spec->mixer_nid = 0x0b;
5202
5203         switch (codec->vendor_id) {
5204         case 0x10ec0882:
5205         case 0x10ec0885:
5206                 break;
5207         default:
5208                 /* ALC883 and variants */
5209                 alc_fix_pll_init(codec, 0x20, 0x0a, 10);
5210                 break;
5211         }
5212
5213         err = alc_codec_rename_from_preset(codec);
5214         if (err < 0)
5215                 goto error;
5216
5217         board_config = alc_board_config(codec, ALC882_MODEL_LAST,
5218                                         alc882_models, NULL);
5219         if (board_config < 0)
5220                 board_config = alc_board_codec_sid_config(codec,
5221                         ALC882_MODEL_LAST, alc882_models, alc882_ssid_cfg_tbl);
5222
5223         if (board_config < 0) {
5224                 printk(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
5225                        codec->chip_name);
5226                 board_config = ALC_MODEL_AUTO;
5227         }
5228
5229         if (board_config == ALC_MODEL_AUTO) {
5230                 alc_pick_fixup(codec, NULL, alc882_fixup_tbl, alc882_fixups);
5231                 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
5232         }
5233
5234         alc_auto_parse_customize_define(codec);
5235
5236         if (board_config == ALC_MODEL_AUTO) {
5237                 /* automatic parse from the BIOS config */
5238                 err = alc882_parse_auto_config(codec);
5239                 if (err < 0)
5240                         goto error;
5241         }
5242
5243         if (board_config != ALC_MODEL_AUTO) {
5244                 setup_preset(codec, &alc882_presets[board_config]);
5245                 spec->vmaster_nid = 0x0c;
5246         }
5247
5248         if (!spec->no_analog && !spec->adc_nids) {
5249                 alc_auto_fill_adc_caps(codec);
5250                 alc_rebuild_imux_for_auto_mic(codec);
5251                 alc_remove_invalid_adc_nids(codec);
5252         }
5253
5254         if (!spec->no_analog && !spec->cap_mixer)
5255                 set_capture_mixer(codec);
5256
5257         if (!spec->no_analog && has_cdefine_beep(codec)) {
5258                 err = snd_hda_attach_beep_device(codec, 0x1);
5259                 if (err < 0)
5260                         goto error;
5261                 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
5262         }
5263
5264         codec->patch_ops = alc_patch_ops;
5265         if (board_config == ALC_MODEL_AUTO)
5266                 spec->init_hook = alc_auto_init_std;
5267         else
5268                 codec->patch_ops.build_controls = __alc_build_controls;
5269
5270 #ifdef CONFIG_SND_HDA_POWER_SAVE
5271         if (!spec->loopback.amplist)
5272                 spec->loopback.amplist = alc882_loopbacks;
5273 #endif
5274
5275         alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
5276
5277         return 0;
5278
5279  error:
5280         alc_free(codec);
5281         return err;
5282 }
5283
5284
5285 /*
5286  * ALC262 support
5287  */
5288 static int alc262_parse_auto_config(struct hda_codec *codec)
5289 {
5290         static const hda_nid_t alc262_ignore[] = { 0x1d, 0 };
5291         static const hda_nid_t alc262_ssids[] = { 0x15, 0x1b, 0x14, 0 };
5292         return alc_parse_auto_config(codec, alc262_ignore, alc262_ssids);
5293 }
5294
5295 /*
5296  * Pin config fixes
5297  */
5298 enum {
5299         ALC262_FIXUP_FSC_H270,
5300         ALC262_FIXUP_HP_Z200,
5301         ALC262_FIXUP_TYAN,
5302         ALC262_FIXUP_LENOVO_3000,
5303         ALC262_FIXUP_BENQ,
5304         ALC262_FIXUP_BENQ_T31,
5305 };
5306
5307 static const struct alc_fixup alc262_fixups[] = {
5308         [ALC262_FIXUP_FSC_H270] = {
5309                 .type = ALC_FIXUP_PINS,
5310                 .v.pins = (const struct alc_pincfg[]) {
5311                         { 0x14, 0x99130110 }, /* speaker */
5312                         { 0x15, 0x0221142f }, /* front HP */
5313                         { 0x1b, 0x0121141f }, /* rear HP */
5314                         { }
5315                 }
5316         },
5317         [ALC262_FIXUP_HP_Z200] = {
5318                 .type = ALC_FIXUP_PINS,
5319                 .v.pins = (const struct alc_pincfg[]) {
5320                         { 0x16, 0x99130120 }, /* internal speaker */
5321                         { }
5322                 }
5323         },
5324         [ALC262_FIXUP_TYAN] = {
5325                 .type = ALC_FIXUP_PINS,
5326                 .v.pins = (const struct alc_pincfg[]) {
5327                         { 0x14, 0x1993e1f0 }, /* int AUX */
5328                         { }
5329                 }
5330         },
5331         [ALC262_FIXUP_LENOVO_3000] = {
5332                 .type = ALC_FIXUP_VERBS,
5333                 .v.verbs = (const struct hda_verb[]) {
5334                         { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF50 },
5335                         {}
5336                 },
5337                 .chained = true,
5338                 .chain_id = ALC262_FIXUP_BENQ,
5339         },
5340         [ALC262_FIXUP_BENQ] = {
5341                 .type = ALC_FIXUP_VERBS,
5342                 .v.verbs = (const struct hda_verb[]) {
5343                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
5344                         { 0x20, AC_VERB_SET_PROC_COEF, 0x3070 },
5345                         {}
5346                 }
5347         },
5348         [ALC262_FIXUP_BENQ_T31] = {
5349                 .type = ALC_FIXUP_VERBS,
5350                 .v.verbs = (const struct hda_verb[]) {
5351                         { 0x20, AC_VERB_SET_COEF_INDEX, 0x07 },
5352                         { 0x20, AC_VERB_SET_PROC_COEF, 0x3050 },
5353                         {}
5354                 }
5355         },
5356 };
5357
5358 static const struct snd_pci_quirk alc262_fixup_tbl[] = {
5359         SND_PCI_QUIRK(0x103c, 0x170b, "HP Z200", ALC262_FIXUP_HP_Z200),
5360         SND_PCI_QUIRK(0x10cf, 0x1397, "Fujitsu", ALC262_FIXUP_BENQ),
5361         SND_PCI_QUIRK(0x10cf, 0x142d, "Fujitsu Lifebook E8410", ALC262_FIXUP_BENQ),
5362         SND_PCI_QUIRK(0x10f1, 0x2915, "Tyan Thunder n6650W", ALC262_FIXUP_TYAN),
5363         SND_PCI_QUIRK(0x1734, 0x1147, "FSC Celsius H270", ALC262_FIXUP_FSC_H270),
5364         SND_PCI_QUIRK(0x17aa, 0x384e, "Lenovo 3000", ALC262_FIXUP_LENOVO_3000),
5365         SND_PCI_QUIRK(0x17ff, 0x0560, "Benq ED8", ALC262_FIXUP_BENQ),
5366         SND_PCI_QUIRK(0x17ff, 0x058d, "Benq T31-16", ALC262_FIXUP_BENQ_T31),
5367         {}
5368 };
5369
5370
5371 #ifdef CONFIG_SND_HDA_POWER_SAVE
5372 #define alc262_loopbacks        alc880_loopbacks
5373 #endif
5374
5375 /*
5376  */
5377 static int patch_alc262(struct hda_codec *codec)
5378 {
5379         struct alc_spec *spec;
5380         int err;
5381
5382         spec = kzalloc(sizeof(*spec), GFP_KERNEL);
5383         if (spec == NULL)
5384                 return -ENOMEM;
5385
5386         codec->spec = spec;
5387
5388         spec->mixer_nid = 0x0b;
5389
5390 #if 0
5391         /* pshou 07/11/05  set a zero PCM sample to DAC when FIFO is
5392          * under-run
5393          */
5394         {
5395         int tmp;
5396         snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_COEF_INDEX, 7);
5397         tmp = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_PROC_COEF, 0);
5398         snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_COEF_INDEX, 7);
5399         snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_PROC_COEF, tmp | 0x80);
5400         }
5401 #endif
5402         alc_auto_parse_customize_define(codec);
5403
5404         alc_fix_pll_init(codec, 0x20, 0x0a, 10);
5405
5406         alc_pick_fixup(codec, NULL, alc262_fixup_tbl, alc262_fixups);
5407         alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
5408
5409         /* automatic parse from the BIOS config */
5410         err = alc262_parse_auto_config(codec);
5411         if (err < 0)
5412                 goto error;
5413
5414         if (!spec->no_analog && !spec->adc_nids) {
5415                 alc_auto_fill_adc_caps(codec);
5416                 alc_rebuild_imux_for_auto_mic(codec);
5417                 alc_remove_invalid_adc_nids(codec);
5418         }
5419
5420         if (!spec->no_analog && !spec->cap_mixer)
5421                 set_capture_mixer(codec);
5422
5423         if (!spec->no_analog && has_cdefine_beep(codec)) {
5424                 err = snd_hda_attach_beep_device(codec, 0x1);
5425                 if (err < 0)
5426                         goto error;
5427                 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
5428         }
5429
5430         codec->patch_ops = alc_patch_ops;
5431         spec->init_hook = alc_auto_init_std;
5432         spec->shutup = alc_eapd_shutup;
5433
5434 #ifdef CONFIG_SND_HDA_POWER_SAVE
5435         if (!spec->loopback.amplist)
5436                 spec->loopback.amplist = alc262_loopbacks;
5437 #endif
5438
5439         alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
5440
5441         return 0;
5442
5443  error:
5444         alc_free(codec);
5445         return err;
5446 }
5447
5448 /*
5449  *  ALC268
5450  */
5451 /* bind Beep switches of both NID 0x0f and 0x10 */
5452 static const struct hda_bind_ctls alc268_bind_beep_sw = {
5453         .ops = &snd_hda_bind_sw,
5454         .values = {
5455                 HDA_COMPOSE_AMP_VAL(0x0f, 3, 1, HDA_INPUT),
5456                 HDA_COMPOSE_AMP_VAL(0x10, 3, 1, HDA_INPUT),
5457                 0
5458         },
5459 };
5460
5461 static const struct snd_kcontrol_new alc268_beep_mixer[] = {
5462         HDA_CODEC_VOLUME("Beep Playback Volume", 0x1d, 0x0, HDA_INPUT),
5463         HDA_BIND_SW("Beep Playback Switch", &alc268_bind_beep_sw),
5464         { }
5465 };
5466
5467 /* set PCBEEP vol = 0, mute connections */
5468 static const struct hda_verb alc268_beep_init_verbs[] = {
5469         {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5470         {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5471         {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5472         { }
5473 };
5474
5475 /*
5476  * BIOS auto configuration
5477  */
5478 static int alc268_parse_auto_config(struct hda_codec *codec)
5479 {
5480         static const hda_nid_t alc268_ssids[] = { 0x15, 0x1b, 0x14, 0 };
5481         struct alc_spec *spec = codec->spec;
5482         int err = alc_parse_auto_config(codec, NULL, alc268_ssids);
5483         if (err > 0) {
5484                 if (!spec->no_analog && spec->autocfg.speaker_pins[0] != 0x1d) {
5485                         add_mixer(spec, alc268_beep_mixer);
5486                         add_verb(spec, alc268_beep_init_verbs);
5487                 }
5488         }
5489         return err;
5490 }
5491
5492 /*
5493  */
5494 static int patch_alc268(struct hda_codec *codec)
5495 {
5496         struct alc_spec *spec;
5497         int i, has_beep, err;
5498
5499         spec = kzalloc(sizeof(*spec), GFP_KERNEL);
5500         if (spec == NULL)
5501                 return -ENOMEM;
5502
5503         codec->spec = spec;
5504
5505         /* ALC268 has no aa-loopback mixer */
5506
5507         /* automatic parse from the BIOS config */
5508         err = alc268_parse_auto_config(codec);
5509         if (err < 0)
5510                 goto error;
5511
5512         has_beep = 0;
5513         for (i = 0; i < spec->num_mixers; i++) {
5514                 if (spec->mixers[i] == alc268_beep_mixer) {
5515                         has_beep = 1;
5516                         break;
5517                 }
5518         }
5519
5520         if (has_beep) {
5521                 err = snd_hda_attach_beep_device(codec, 0x1);
5522                 if (err < 0)
5523                         goto error;
5524                 if (!query_amp_caps(codec, 0x1d, HDA_INPUT))
5525                         /* override the amp caps for beep generator */
5526                         snd_hda_override_amp_caps(codec, 0x1d, HDA_INPUT,
5527                                           (0x0c << AC_AMPCAP_OFFSET_SHIFT) |
5528                                           (0x0c << AC_AMPCAP_NUM_STEPS_SHIFT) |
5529                                           (0x07 << AC_AMPCAP_STEP_SIZE_SHIFT) |
5530                                           (0 << AC_AMPCAP_MUTE_SHIFT));
5531         }
5532
5533         if (!spec->no_analog && !spec->adc_nids) {
5534                 alc_auto_fill_adc_caps(codec);
5535                 alc_rebuild_imux_for_auto_mic(codec);
5536                 alc_remove_invalid_adc_nids(codec);
5537         }
5538
5539         if (!spec->no_analog && !spec->cap_mixer)
5540                 set_capture_mixer(codec);
5541
5542         codec->patch_ops = alc_patch_ops;
5543         spec->init_hook = alc_auto_init_std;
5544         spec->shutup = alc_eapd_shutup;
5545
5546         return 0;
5547
5548  error:
5549         alc_free(codec);
5550         return err;
5551 }
5552
5553 /*
5554  * ALC269
5555  */
5556 #ifdef CONFIG_SND_HDA_POWER_SAVE
5557 #define alc269_loopbacks        alc880_loopbacks
5558 #endif
5559
5560 static const struct hda_pcm_stream alc269_44k_pcm_analog_playback = {
5561         .substreams = 1,
5562         .channels_min = 2,
5563         .channels_max = 8,
5564         .rates = SNDRV_PCM_RATE_44100, /* fixed rate */
5565         /* NID is set in alc_build_pcms */
5566         .ops = {
5567                 .open = alc_playback_pcm_open,
5568                 .prepare = alc_playback_pcm_prepare,
5569                 .cleanup = alc_playback_pcm_cleanup
5570         },
5571 };
5572
5573 static const struct hda_pcm_stream alc269_44k_pcm_analog_capture = {
5574         .substreams = 1,
5575         .channels_min = 2,
5576         .channels_max = 2,
5577         .rates = SNDRV_PCM_RATE_44100, /* fixed rate */
5578         /* NID is set in alc_build_pcms */
5579 };
5580
5581 #ifdef CONFIG_SND_HDA_POWER_SAVE
5582 static int alc269_mic2_for_mute_led(struct hda_codec *codec)
5583 {
5584         switch (codec->subsystem_id) {
5585         case 0x103c1586:
5586                 return 1;
5587         }
5588         return 0;
5589 }
5590
5591 static int alc269_mic2_mute_check_ps(struct hda_codec *codec, hda_nid_t nid)
5592 {
5593         /* update mute-LED according to the speaker mute state */
5594         if (nid == 0x01 || nid == 0x14) {
5595                 int pinval;
5596                 if (snd_hda_codec_amp_read(codec, 0x14, 0, HDA_OUTPUT, 0) &
5597                     HDA_AMP_MUTE)
5598                         pinval = 0x24;
5599                 else
5600                         pinval = 0x20;
5601                 /* mic2 vref pin is used for mute LED control */
5602                 snd_hda_codec_update_cache(codec, 0x19, 0,
5603                                            AC_VERB_SET_PIN_WIDGET_CONTROL,
5604                                            pinval);
5605         }
5606         return alc_check_power_status(codec, nid);
5607 }
5608 #endif /* CONFIG_SND_HDA_POWER_SAVE */
5609
5610 /* different alc269-variants */
5611 enum {
5612         ALC269_TYPE_ALC269VA,
5613         ALC269_TYPE_ALC269VB,
5614         ALC269_TYPE_ALC269VC,
5615 };
5616
5617 /*
5618  * BIOS auto configuration
5619  */
5620 static int alc269_parse_auto_config(struct hda_codec *codec)
5621 {
5622         static const hda_nid_t alc269_ignore[] = { 0x1d, 0 };
5623         static const hda_nid_t alc269_ssids[] = { 0, 0x1b, 0x14, 0x21 };
5624         static const hda_nid_t alc269va_ssids[] = { 0x15, 0x1b, 0x14, 0 };
5625         struct alc_spec *spec = codec->spec;
5626         const hda_nid_t *ssids = spec->codec_variant == ALC269_TYPE_ALC269VA ?
5627                 alc269va_ssids : alc269_ssids;
5628
5629         return alc_parse_auto_config(codec, alc269_ignore, ssids);
5630 }
5631
5632 static void alc269_toggle_power_output(struct hda_codec *codec, int power_up)
5633 {
5634         int val = alc_read_coef_idx(codec, 0x04);
5635         if (power_up)
5636                 val |= 1 << 11;
5637         else
5638                 val &= ~(1 << 11);
5639         alc_write_coef_idx(codec, 0x04, val);
5640 }
5641
5642 static void alc269_shutup(struct hda_codec *codec)
5643 {
5644         if ((alc_get_coef0(codec) & 0x00ff) == 0x017)
5645                 alc269_toggle_power_output(codec, 0);
5646         if ((alc_get_coef0(codec) & 0x00ff) == 0x018) {
5647                 alc269_toggle_power_output(codec, 0);
5648                 msleep(150);
5649         }
5650 }
5651
5652 #ifdef CONFIG_PM
5653 static int alc269_resume(struct hda_codec *codec)
5654 {
5655         if ((alc_get_coef0(codec) & 0x00ff) == 0x018) {
5656                 alc269_toggle_power_output(codec, 0);
5657                 msleep(150);
5658         }
5659
5660         codec->patch_ops.init(codec);
5661
5662         if ((alc_get_coef0(codec) & 0x00ff) == 0x017) {
5663                 alc269_toggle_power_output(codec, 1);
5664                 msleep(200);
5665         }
5666
5667         if ((alc_get_coef0(codec) & 0x00ff) == 0x018)
5668                 alc269_toggle_power_output(codec, 1);
5669
5670         snd_hda_codec_resume_amp(codec);
5671         snd_hda_codec_resume_cache(codec);
5672         hda_call_check_power_status(codec, 0x01);
5673         return 0;
5674 }
5675 #endif /* CONFIG_PM */
5676
5677 static void alc269_fixup_hweq(struct hda_codec *codec,
5678                                const struct alc_fixup *fix, int action)
5679 {
5680         int coef;
5681
5682         if (action != ALC_FIXUP_ACT_INIT)
5683                 return;
5684         coef = alc_read_coef_idx(codec, 0x1e);
5685         alc_write_coef_idx(codec, 0x1e, coef | 0x80);
5686 }
5687
5688 static void alc271_fixup_dmic(struct hda_codec *codec,
5689                               const struct alc_fixup *fix, int action)
5690 {
5691         static const struct hda_verb verbs[] = {
5692                 {0x20, AC_VERB_SET_COEF_INDEX, 0x0d},
5693                 {0x20, AC_VERB_SET_PROC_COEF, 0x4000},
5694                 {}
5695         };
5696         unsigned int cfg;
5697
5698         if (strcmp(codec->chip_name, "ALC271X"))
5699                 return;
5700         cfg = snd_hda_codec_get_pincfg(codec, 0x12);
5701         if (get_defcfg_connect(cfg) == AC_JACK_PORT_FIXED)
5702                 snd_hda_sequence_write(codec, verbs);
5703 }
5704
5705 static void alc269_fixup_pcm_44k(struct hda_codec *codec,
5706                                  const struct alc_fixup *fix, int action)
5707 {
5708         struct alc_spec *spec = codec->spec;
5709
5710         if (action != ALC_FIXUP_ACT_PROBE)
5711                 return;
5712
5713         /* Due to a hardware problem on Lenovo Ideadpad, we need to
5714          * fix the sample rate of analog I/O to 44.1kHz
5715          */
5716         spec->stream_analog_playback = &alc269_44k_pcm_analog_playback;
5717         spec->stream_analog_capture = &alc269_44k_pcm_analog_capture;
5718 }
5719
5720 static void alc269_fixup_stereo_dmic(struct hda_codec *codec,
5721                                      const struct alc_fixup *fix, int action)
5722 {
5723         int coef;
5724
5725         if (action != ALC_FIXUP_ACT_INIT)
5726                 return;
5727         /* The digital-mic unit sends PDM (differential signal) instead of
5728          * the standard PCM, thus you can't record a valid mono stream as is.
5729          * Below is a workaround specific to ALC269 to control the dmic
5730          * signal source as mono.
5731          */
5732         coef = alc_read_coef_idx(codec, 0x07);
5733         alc_write_coef_idx(codec, 0x07, coef | 0x80);
5734 }
5735
5736 static void alc269_quanta_automute(struct hda_codec *codec)
5737 {
5738         update_outputs(codec);
5739
5740         snd_hda_codec_write(codec, 0x20, 0,
5741                         AC_VERB_SET_COEF_INDEX, 0x0c);
5742         snd_hda_codec_write(codec, 0x20, 0,
5743                         AC_VERB_SET_PROC_COEF, 0x680);
5744
5745         snd_hda_codec_write(codec, 0x20, 0,
5746                         AC_VERB_SET_COEF_INDEX, 0x0c);
5747         snd_hda_codec_write(codec, 0x20, 0,
5748                         AC_VERB_SET_PROC_COEF, 0x480);
5749 }
5750
5751 static void alc269_fixup_quanta_mute(struct hda_codec *codec,
5752                                      const struct alc_fixup *fix, int action)
5753 {
5754         struct alc_spec *spec = codec->spec;
5755         if (action != ALC_FIXUP_ACT_PROBE)
5756                 return;
5757         spec->automute_hook = alc269_quanta_automute;
5758 }
5759
5760 enum {
5761         ALC269_FIXUP_SONY_VAIO,
5762         ALC275_FIXUP_SONY_VAIO_GPIO2,
5763         ALC269_FIXUP_DELL_M101Z,
5764         ALC269_FIXUP_SKU_IGNORE,
5765         ALC269_FIXUP_ASUS_G73JW,
5766         ALC269_FIXUP_LENOVO_EAPD,
5767         ALC275_FIXUP_SONY_HWEQ,
5768         ALC271_FIXUP_DMIC,
5769         ALC269_FIXUP_PCM_44K,
5770         ALC269_FIXUP_STEREO_DMIC,
5771         ALC269_FIXUP_QUANTA_MUTE,
5772         ALC269_FIXUP_LIFEBOOK,
5773         ALC269_FIXUP_AMIC,
5774         ALC269_FIXUP_DMIC,
5775         ALC269VB_FIXUP_AMIC,
5776         ALC269VB_FIXUP_DMIC,
5777 };
5778
5779 static const struct alc_fixup alc269_fixups[] = {
5780         [ALC269_FIXUP_SONY_VAIO] = {
5781                 .type = ALC_FIXUP_VERBS,
5782                 .v.verbs = (const struct hda_verb[]) {
5783                         {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREFGRD},
5784                         {}
5785                 }
5786         },
5787         [ALC275_FIXUP_SONY_VAIO_GPIO2] = {
5788                 .type = ALC_FIXUP_VERBS,
5789                 .v.verbs = (const struct hda_verb[]) {
5790                         {0x01, AC_VERB_SET_GPIO_MASK, 0x04},
5791                         {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x04},
5792                         {0x01, AC_VERB_SET_GPIO_DATA, 0x00},
5793                         { }
5794                 },
5795                 .chained = true,
5796                 .chain_id = ALC269_FIXUP_SONY_VAIO
5797         },
5798         [ALC269_FIXUP_DELL_M101Z] = {
5799                 .type = ALC_FIXUP_VERBS,
5800                 .v.verbs = (const struct hda_verb[]) {
5801                         /* Enables internal speaker */
5802                         {0x20, AC_VERB_SET_COEF_INDEX, 13},
5803                         {0x20, AC_VERB_SET_PROC_COEF, 0x4040},
5804                         {}
5805                 }
5806         },
5807         [ALC269_FIXUP_SKU_IGNORE] = {
5808                 .type = ALC_FIXUP_SKU,
5809                 .v.sku = ALC_FIXUP_SKU_IGNORE,
5810         },
5811         [ALC269_FIXUP_ASUS_G73JW] = {
5812                 .type = ALC_FIXUP_PINS,
5813                 .v.pins = (const struct alc_pincfg[]) {
5814                         { 0x17, 0x99130111 }, /* subwoofer */
5815                         { }
5816                 }
5817         },
5818         [ALC269_FIXUP_LENOVO_EAPD] = {
5819                 .type = ALC_FIXUP_VERBS,
5820                 .v.verbs = (const struct hda_verb[]) {
5821                         {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0},
5822                         {}
5823                 }
5824         },
5825         [ALC275_FIXUP_SONY_HWEQ] = {
5826                 .type = ALC_FIXUP_FUNC,
5827                 .v.func = alc269_fixup_hweq,
5828                 .chained = true,
5829                 .chain_id = ALC275_FIXUP_SONY_VAIO_GPIO2
5830         },
5831         [ALC271_FIXUP_DMIC] = {
5832                 .type = ALC_FIXUP_FUNC,
5833                 .v.func = alc271_fixup_dmic,
5834         },
5835         [ALC269_FIXUP_PCM_44K] = {
5836                 .type = ALC_FIXUP_FUNC,
5837                 .v.func = alc269_fixup_pcm_44k,
5838         },
5839         [ALC269_FIXUP_STEREO_DMIC] = {
5840                 .type = ALC_FIXUP_FUNC,
5841                 .v.func = alc269_fixup_stereo_dmic,
5842         },
5843         [ALC269_FIXUP_QUANTA_MUTE] = {
5844                 .type = ALC_FIXUP_FUNC,
5845                 .v.func = alc269_fixup_quanta_mute,
5846         },
5847         [ALC269_FIXUP_LIFEBOOK] = {
5848                 .type = ALC_FIXUP_PINS,
5849                 .v.pins = (const struct alc_pincfg[]) {
5850                         { 0x1a, 0x2101103f }, /* dock line-out */
5851                         { 0x1b, 0x23a11040 }, /* dock mic-in */
5852                         { }
5853                 },
5854                 .chained = true,
5855                 .chain_id = ALC269_FIXUP_QUANTA_MUTE
5856         },
5857         [ALC269_FIXUP_AMIC] = {
5858                 .type = ALC_FIXUP_PINS,
5859                 .v.pins = (const struct alc_pincfg[]) {
5860                         { 0x14, 0x99130110 }, /* speaker */
5861                         { 0x15, 0x0121401f }, /* HP out */
5862                         { 0x18, 0x01a19c20 }, /* mic */
5863                         { 0x19, 0x99a3092f }, /* int-mic */
5864                         { }
5865                 },
5866         },
5867         [ALC269_FIXUP_DMIC] = {
5868                 .type = ALC_FIXUP_PINS,
5869                 .v.pins = (const struct alc_pincfg[]) {
5870                         { 0x12, 0x99a3092f }, /* int-mic */
5871                         { 0x14, 0x99130110 }, /* speaker */
5872                         { 0x15, 0x0121401f }, /* HP out */
5873                         { 0x18, 0x01a19c20 }, /* mic */
5874                         { }
5875                 },
5876         },
5877         [ALC269VB_FIXUP_AMIC] = {
5878                 .type = ALC_FIXUP_PINS,
5879                 .v.pins = (const struct alc_pincfg[]) {
5880                         { 0x14, 0x99130110 }, /* speaker */
5881                         { 0x18, 0x01a19c20 }, /* mic */
5882                         { 0x19, 0x99a3092f }, /* int-mic */
5883                         { 0x21, 0x0121401f }, /* HP out */
5884                         { }
5885                 },
5886         },
5887         [ALC269VB_FIXUP_DMIC] = {
5888                 .type = ALC_FIXUP_PINS,
5889                 .v.pins = (const struct alc_pincfg[]) {
5890                         { 0x12, 0x99a3092f }, /* int-mic */
5891                         { 0x14, 0x99130110 }, /* speaker */
5892                         { 0x18, 0x01a19c20 }, /* mic */
5893                         { 0x21, 0x0121401f }, /* HP out */
5894                         { }
5895                 },
5896         },
5897 };
5898
5899 static const struct snd_pci_quirk alc269_fixup_tbl[] = {
5900         SND_PCI_QUIRK(0x1043, 0x1a13, "Asus G73Jw", ALC269_FIXUP_ASUS_G73JW),
5901         SND_PCI_QUIRK(0x1043, 0x16e3, "ASUS UX50", ALC269_FIXUP_STEREO_DMIC),
5902         SND_PCI_QUIRK(0x1043, 0x831a, "ASUS P901", ALC269_FIXUP_STEREO_DMIC),
5903         SND_PCI_QUIRK(0x1043, 0x834a, "ASUS S101", ALC269_FIXUP_STEREO_DMIC),
5904         SND_PCI_QUIRK(0x1043, 0x8398, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC),
5905         SND_PCI_QUIRK(0x1043, 0x83ce, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC),
5906         SND_PCI_QUIRK(0x104d, 0x9073, "Sony VAIO", ALC275_FIXUP_SONY_VAIO_GPIO2),
5907         SND_PCI_QUIRK(0x104d, 0x907b, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ),
5908         SND_PCI_QUIRK(0x104d, 0x9084, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ),
5909         SND_PCI_QUIRK_VENDOR(0x104d, "Sony VAIO", ALC269_FIXUP_SONY_VAIO),
5910         SND_PCI_QUIRK(0x1028, 0x0470, "Dell M101z", ALC269_FIXUP_DELL_M101Z),
5911         SND_PCI_QUIRK_VENDOR(0x1025, "Acer Aspire", ALC271_FIXUP_DMIC),
5912         SND_PCI_QUIRK(0x10cf, 0x1475, "Lifebook", ALC269_FIXUP_LIFEBOOK),
5913         SND_PCI_QUIRK(0x17aa, 0x20f2, "Thinkpad SL410/510", ALC269_FIXUP_SKU_IGNORE),
5914         SND_PCI_QUIRK(0x17aa, 0x215e, "Thinkpad L512", ALC269_FIXUP_SKU_IGNORE),
5915         SND_PCI_QUIRK(0x17aa, 0x21b8, "Thinkpad Edge 14", ALC269_FIXUP_SKU_IGNORE),
5916         SND_PCI_QUIRK(0x17aa, 0x21ca, "Thinkpad L412", ALC269_FIXUP_SKU_IGNORE),
5917         SND_PCI_QUIRK(0x17aa, 0x21e9, "Thinkpad Edge 15", ALC269_FIXUP_SKU_IGNORE),
5918         SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_QUANTA_MUTE),
5919         SND_PCI_QUIRK(0x17aa, 0x3bf8, "Lenovo Ideapd", ALC269_FIXUP_PCM_44K),
5920         SND_PCI_QUIRK(0x17aa, 0x9e54, "LENOVO NB", ALC269_FIXUP_LENOVO_EAPD),
5921
5922 #if 0
5923         /* Below is a quirk table taken from the old code.
5924          * Basically the device should work as is without the fixup table.
5925          * If BIOS doesn't give a proper info, enable the corresponding
5926          * fixup entry.
5927          */ 
5928         SND_PCI_QUIRK(0x1043, 0x8330, "ASUS Eeepc P703 P900A",
5929                       ALC269_FIXUP_AMIC),
5930         SND_PCI_QUIRK(0x1043, 0x1013, "ASUS N61Da", ALC269_FIXUP_AMIC),
5931         SND_PCI_QUIRK(0x1043, 0x1143, "ASUS B53f", ALC269_FIXUP_AMIC),
5932         SND_PCI_QUIRK(0x1043, 0x1133, "ASUS UJ20ft", ALC269_FIXUP_AMIC),
5933         SND_PCI_QUIRK(0x1043, 0x1183, "ASUS K72DR", ALC269_FIXUP_AMIC),
5934         SND_PCI_QUIRK(0x1043, 0x11b3, "ASUS K52DR", ALC269_FIXUP_AMIC),
5935         SND_PCI_QUIRK(0x1043, 0x11e3, "ASUS U33Jc", ALC269_FIXUP_AMIC),
5936         SND_PCI_QUIRK(0x1043, 0x1273, "ASUS UL80Jt", ALC269_FIXUP_AMIC),
5937         SND_PCI_QUIRK(0x1043, 0x1283, "ASUS U53Jc", ALC269_FIXUP_AMIC),
5938         SND_PCI_QUIRK(0x1043, 0x12b3, "ASUS N82JV", ALC269_FIXUP_AMIC),
5939         SND_PCI_QUIRK(0x1043, 0x12d3, "ASUS N61Jv", ALC269_FIXUP_AMIC),
5940         SND_PCI_QUIRK(0x1043, 0x13a3, "ASUS UL30Vt", ALC269_FIXUP_AMIC),
5941         SND_PCI_QUIRK(0x1043, 0x1373, "ASUS G73JX", ALC269_FIXUP_AMIC),
5942         SND_PCI_QUIRK(0x1043, 0x1383, "ASUS UJ30Jc", ALC269_FIXUP_AMIC),
5943         SND_PCI_QUIRK(0x1043, 0x13d3, "ASUS N61JA", ALC269_FIXUP_AMIC),
5944         SND_PCI_QUIRK(0x1043, 0x1413, "ASUS UL50", ALC269_FIXUP_AMIC),
5945         SND_PCI_QUIRK(0x1043, 0x1443, "ASUS UL30", ALC269_FIXUP_AMIC),
5946         SND_PCI_QUIRK(0x1043, 0x1453, "ASUS M60Jv", ALC269_FIXUP_AMIC),
5947         SND_PCI_QUIRK(0x1043, 0x1483, "ASUS UL80", ALC269_FIXUP_AMIC),
5948         SND_PCI_QUIRK(0x1043, 0x14f3, "ASUS F83Vf", ALC269_FIXUP_AMIC),
5949         SND_PCI_QUIRK(0x1043, 0x14e3, "ASUS UL20", ALC269_FIXUP_AMIC),
5950         SND_PCI_QUIRK(0x1043, 0x1513, "ASUS UX30", ALC269_FIXUP_AMIC),
5951         SND_PCI_QUIRK(0x1043, 0x1593, "ASUS N51Vn", ALC269_FIXUP_AMIC),
5952         SND_PCI_QUIRK(0x1043, 0x15a3, "ASUS N60Jv", ALC269_FIXUP_AMIC),
5953         SND_PCI_QUIRK(0x1043, 0x15b3, "ASUS N60Dp", ALC269_FIXUP_AMIC),
5954         SND_PCI_QUIRK(0x1043, 0x15c3, "ASUS N70De", ALC269_FIXUP_AMIC),
5955         SND_PCI_QUIRK(0x1043, 0x15e3, "ASUS F83T", ALC269_FIXUP_AMIC),
5956         SND_PCI_QUIRK(0x1043, 0x1643, "ASUS M60J", ALC269_FIXUP_AMIC),
5957         SND_PCI_QUIRK(0x1043, 0x1653, "ASUS U50", ALC269_FIXUP_AMIC),
5958         SND_PCI_QUIRK(0x1043, 0x1693, "ASUS F50N", ALC269_FIXUP_AMIC),
5959         SND_PCI_QUIRK(0x1043, 0x16a3, "ASUS F5Q", ALC269_FIXUP_AMIC),
5960         SND_PCI_QUIRK(0x1043, 0x1723, "ASUS P80", ALC269_FIXUP_AMIC),
5961         SND_PCI_QUIRK(0x1043, 0x1743, "ASUS U80", ALC269_FIXUP_AMIC),
5962         SND_PCI_QUIRK(0x1043, 0x1773, "ASUS U20A", ALC269_FIXUP_AMIC),
5963         SND_PCI_QUIRK(0x1043, 0x1883, "ASUS F81Se", ALC269_FIXUP_AMIC),
5964         SND_PCI_QUIRK(0x152d, 0x1778, "Quanta ON1", ALC269_FIXUP_DMIC),
5965         SND_PCI_QUIRK(0x17aa, 0x3be9, "Quanta Wistron", ALC269_FIXUP_AMIC),
5966         SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_AMIC),
5967         SND_PCI_QUIRK(0x17ff, 0x059a, "Quanta EL3", ALC269_FIXUP_DMIC),
5968         SND_PCI_QUIRK(0x17ff, 0x059b, "Quanta JR1", ALC269_FIXUP_DMIC),
5969 #endif
5970         {}
5971 };
5972
5973 static const struct alc_model_fixup alc269_fixup_models[] = {
5974         {.id = ALC269_FIXUP_AMIC, .name = "laptop-amic"},
5975         {.id = ALC269_FIXUP_DMIC, .name = "laptop-dmic"},
5976         {}
5977 };
5978
5979
5980 static int alc269_fill_coef(struct hda_codec *codec)
5981 {
5982         int val;
5983
5984         if ((alc_get_coef0(codec) & 0x00ff) < 0x015) {
5985                 alc_write_coef_idx(codec, 0xf, 0x960b);
5986                 alc_write_coef_idx(codec, 0xe, 0x8817);
5987         }
5988
5989         if ((alc_get_coef0(codec) & 0x00ff) == 0x016) {
5990                 alc_write_coef_idx(codec, 0xf, 0x960b);
5991                 alc_write_coef_idx(codec, 0xe, 0x8814);
5992         }
5993
5994         if ((alc_get_coef0(codec) & 0x00ff) == 0x017) {
5995                 val = alc_read_coef_idx(codec, 0x04);
5996                 /* Power up output pin */
5997                 alc_write_coef_idx(codec, 0x04, val | (1<<11));
5998         }
5999
6000         if ((alc_get_coef0(codec) & 0x00ff) == 0x018) {
6001                 val = alc_read_coef_idx(codec, 0xd);
6002                 if ((val & 0x0c00) >> 10 != 0x1) {
6003                         /* Capless ramp up clock control */
6004                         alc_write_coef_idx(codec, 0xd, val | (1<<10));
6005                 }
6006                 val = alc_read_coef_idx(codec, 0x17);
6007                 if ((val & 0x01c0) >> 6 != 0x4) {
6008                         /* Class D power on reset */
6009                         alc_write_coef_idx(codec, 0x17, val | (1<<7));
6010                 }
6011         }
6012
6013         val = alc_read_coef_idx(codec, 0xd); /* Class D */
6014         alc_write_coef_idx(codec, 0xd, val | (1<<14));
6015
6016         val = alc_read_coef_idx(codec, 0x4); /* HP */
6017         alc_write_coef_idx(codec, 0x4, val | (1<<11));
6018
6019         return 0;
6020 }
6021
6022 /*
6023  */
6024 static int patch_alc269(struct hda_codec *codec)
6025 {
6026         struct alc_spec *spec;
6027         int err = 0;
6028
6029         spec = kzalloc(sizeof(*spec), GFP_KERNEL);
6030         if (spec == NULL)
6031                 return -ENOMEM;
6032
6033         codec->spec = spec;
6034
6035         spec->mixer_nid = 0x0b;
6036
6037         alc_auto_parse_customize_define(codec);
6038
6039         err = alc_codec_rename_from_preset(codec);
6040         if (err < 0)
6041                 goto error;
6042
6043         if (codec->vendor_id == 0x10ec0269) {
6044                 spec->codec_variant = ALC269_TYPE_ALC269VA;
6045                 switch (alc_get_coef0(codec) & 0x00f0) {
6046                 case 0x0010:
6047                         if (codec->bus->pci->subsystem_vendor == 0x1025 &&
6048                             spec->cdefine.platform_type == 1)
6049                                 err = alc_codec_rename(codec, "ALC271X");
6050                         spec->codec_variant = ALC269_TYPE_ALC269VB;
6051                         break;
6052                 case 0x0020:
6053                         if (codec->bus->pci->subsystem_vendor == 0x17aa &&
6054                             codec->bus->pci->subsystem_device == 0x21f3)
6055                                 err = alc_codec_rename(codec, "ALC3202");
6056                         spec->codec_variant = ALC269_TYPE_ALC269VC;
6057                         break;
6058                 default:
6059                         alc_fix_pll_init(codec, 0x20, 0x04, 15);
6060                 }
6061                 if (err < 0)
6062                         goto error;
6063                 alc269_fill_coef(codec);
6064         }
6065
6066         alc_pick_fixup(codec, alc269_fixup_models,
6067                        alc269_fixup_tbl, alc269_fixups);
6068         alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
6069
6070         /* automatic parse from the BIOS config */
6071         err = alc269_parse_auto_config(codec);
6072         if (err < 0)
6073                 goto error;
6074
6075         if (!spec->no_analog && !spec->adc_nids) {
6076                 alc_auto_fill_adc_caps(codec);
6077                 alc_rebuild_imux_for_auto_mic(codec);
6078                 alc_remove_invalid_adc_nids(codec);
6079         }
6080
6081         if (!spec->no_analog && !spec->cap_mixer)
6082                 set_capture_mixer(codec);
6083
6084         if (!spec->no_analog && has_cdefine_beep(codec)) {
6085                 err = snd_hda_attach_beep_device(codec, 0x1);
6086                 if (err < 0)
6087                         goto error;
6088                 set_beep_amp(spec, 0x0b, 0x04, HDA_INPUT);
6089         }
6090
6091         codec->patch_ops = alc_patch_ops;
6092 #ifdef CONFIG_PM
6093         codec->patch_ops.resume = alc269_resume;
6094 #endif
6095         spec->init_hook = alc_auto_init_std;
6096         spec->shutup = alc269_shutup;
6097
6098 #ifdef CONFIG_SND_HDA_POWER_SAVE
6099         if (!spec->loopback.amplist)
6100                 spec->loopback.amplist = alc269_loopbacks;
6101         if (alc269_mic2_for_mute_led(codec))
6102                 codec->patch_ops.check_power_status = alc269_mic2_mute_check_ps;
6103 #endif
6104
6105         alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
6106
6107         return 0;
6108
6109  error:
6110         alc_free(codec);
6111         return err;
6112 }
6113
6114 /*
6115  * ALC861
6116  */
6117
6118 static int alc861_parse_auto_config(struct hda_codec *codec)
6119 {
6120         static const hda_nid_t alc861_ignore[] = { 0x1d, 0 };
6121         static const hda_nid_t alc861_ssids[] = { 0x0e, 0x0f, 0x0b, 0 };
6122         return alc_parse_auto_config(codec, alc861_ignore, alc861_ssids);
6123 }
6124
6125 #ifdef CONFIG_SND_HDA_POWER_SAVE
6126 static const struct hda_amp_list alc861_loopbacks[] = {
6127         { 0x15, HDA_INPUT, 0 },
6128         { 0x15, HDA_INPUT, 1 },
6129         { 0x15, HDA_INPUT, 2 },
6130         { 0x15, HDA_INPUT, 3 },
6131         { } /* end */
6132 };
6133 #endif
6134
6135
6136 /* Pin config fixes */
6137 enum {
6138         ALC861_FIXUP_FSC_AMILO_PI1505,
6139         ALC861_FIXUP_AMP_VREF_0F,
6140         ALC861_FIXUP_NO_JACK_DETECT,
6141         ALC861_FIXUP_ASUS_A6RP,
6142 };
6143
6144 /* On some laptops, VREF of pin 0x0f is abused for controlling the main amp */
6145 static void alc861_fixup_asus_amp_vref_0f(struct hda_codec *codec,
6146                         const struct alc_fixup *fix, int action)
6147 {
6148         struct alc_spec *spec = codec->spec;
6149         unsigned int val;
6150
6151         if (action != ALC_FIXUP_ACT_INIT)
6152                 return;
6153         val = snd_hda_codec_read(codec, 0x0f, 0,
6154                                  AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
6155         if (!(val & (AC_PINCTL_IN_EN | AC_PINCTL_OUT_EN)))
6156                 val |= AC_PINCTL_IN_EN;
6157         val |= AC_PINCTL_VREF_50;
6158         snd_hda_codec_write(codec, 0x0f, 0,
6159                             AC_VERB_SET_PIN_WIDGET_CONTROL, val);
6160         spec->keep_vref_in_automute = 1;
6161 }
6162
6163 /* suppress the jack-detection */
6164 static void alc_fixup_no_jack_detect(struct hda_codec *codec,
6165                                      const struct alc_fixup *fix, int action)
6166 {
6167         if (action == ALC_FIXUP_ACT_PRE_PROBE)
6168                 codec->no_jack_detect = 1;
6169 }       
6170
6171 static const struct alc_fixup alc861_fixups[] = {
6172         [ALC861_FIXUP_FSC_AMILO_PI1505] = {
6173                 .type = ALC_FIXUP_PINS,
6174                 .v.pins = (const struct alc_pincfg[]) {
6175                         { 0x0b, 0x0221101f }, /* HP */
6176                         { 0x0f, 0x90170310 }, /* speaker */
6177                         { }
6178                 }
6179         },
6180         [ALC861_FIXUP_AMP_VREF_0F] = {
6181                 .type = ALC_FIXUP_FUNC,
6182                 .v.func = alc861_fixup_asus_amp_vref_0f,
6183         },
6184         [ALC861_FIXUP_NO_JACK_DETECT] = {
6185                 .type = ALC_FIXUP_FUNC,
6186                 .v.func = alc_fixup_no_jack_detect,
6187         },
6188         [ALC861_FIXUP_ASUS_A6RP] = {
6189                 .type = ALC_FIXUP_FUNC,
6190                 .v.func = alc861_fixup_asus_amp_vref_0f,
6191                 .chained = true,
6192                 .chain_id = ALC861_FIXUP_NO_JACK_DETECT,
6193         }
6194 };
6195
6196 static const struct snd_pci_quirk alc861_fixup_tbl[] = {
6197         SND_PCI_QUIRK(0x1043, 0x1393, "ASUS A6Rp", ALC861_FIXUP_ASUS_A6RP),
6198         SND_PCI_QUIRK_VENDOR(0x1043, "ASUS laptop", ALC861_FIXUP_AMP_VREF_0F),
6199         SND_PCI_QUIRK(0x1462, 0x7254, "HP DX2200", ALC861_FIXUP_NO_JACK_DETECT),
6200         SND_PCI_QUIRK(0x1584, 0x2b01, "Haier W18", ALC861_FIXUP_AMP_VREF_0F),
6201         SND_PCI_QUIRK(0x1584, 0x0000, "Uniwill ECS M31EI", ALC861_FIXUP_AMP_VREF_0F),
6202         SND_PCI_QUIRK(0x1734, 0x10c7, "FSC Amilo Pi1505", ALC861_FIXUP_FSC_AMILO_PI1505),
6203         {}
6204 };
6205
6206 /*
6207  */
6208 static int patch_alc861(struct hda_codec *codec)
6209 {
6210         struct alc_spec *spec;
6211         int err;
6212
6213         spec = kzalloc(sizeof(*spec), GFP_KERNEL);
6214         if (spec == NULL)
6215                 return -ENOMEM;
6216
6217         codec->spec = spec;
6218
6219         spec->mixer_nid = 0x15;
6220
6221         alc_pick_fixup(codec, NULL, alc861_fixup_tbl, alc861_fixups);
6222         alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
6223
6224         /* automatic parse from the BIOS config */
6225         err = alc861_parse_auto_config(codec);
6226         if (err < 0)
6227                 goto error;
6228
6229         if (!spec->no_analog && !spec->adc_nids) {
6230                 alc_auto_fill_adc_caps(codec);
6231                 alc_rebuild_imux_for_auto_mic(codec);
6232                 alc_remove_invalid_adc_nids(codec);
6233         }
6234
6235         if (!spec->no_analog && !spec->cap_mixer)
6236                 set_capture_mixer(codec);
6237
6238         if (!spec->no_analog) {
6239                 err = snd_hda_attach_beep_device(codec, 0x23);
6240                 if (err < 0)
6241                         goto error;
6242                 set_beep_amp(spec, 0x23, 0, HDA_OUTPUT);
6243         }
6244
6245         codec->patch_ops = alc_patch_ops;
6246         spec->init_hook = alc_auto_init_std;
6247 #ifdef CONFIG_SND_HDA_POWER_SAVE
6248         spec->power_hook = alc_power_eapd;
6249         if (!spec->loopback.amplist)
6250                 spec->loopback.amplist = alc861_loopbacks;
6251 #endif
6252
6253         alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
6254
6255         return 0;
6256
6257  error:
6258         alc_free(codec);
6259         return err;
6260 }
6261
6262 /*
6263  * ALC861-VD support
6264  *
6265  * Based on ALC882
6266  *
6267  * In addition, an independent DAC
6268  */
6269 #ifdef CONFIG_SND_HDA_POWER_SAVE
6270 #define alc861vd_loopbacks      alc880_loopbacks
6271 #endif
6272
6273 static int alc861vd_parse_auto_config(struct hda_codec *codec)
6274 {
6275         static const hda_nid_t alc861vd_ignore[] = { 0x1d, 0 };
6276         static const hda_nid_t alc861vd_ssids[] = { 0x15, 0x1b, 0x14, 0 };
6277         return alc_parse_auto_config(codec, alc861vd_ignore, alc861vd_ssids);
6278 }
6279
6280 enum {
6281         ALC660VD_FIX_ASUS_GPIO1,
6282         ALC861VD_FIX_DALLAS,
6283 };
6284
6285 /* exclude VREF80 */
6286 static void alc861vd_fixup_dallas(struct hda_codec *codec,
6287                                   const struct alc_fixup *fix, int action)
6288 {
6289         if (action == ALC_FIXUP_ACT_PRE_PROBE) {
6290                 snd_hda_override_pin_caps(codec, 0x18, 0x00001714);
6291                 snd_hda_override_pin_caps(codec, 0x19, 0x0000171c);
6292         }
6293 }
6294
6295 static const struct alc_fixup alc861vd_fixups[] = {
6296         [ALC660VD_FIX_ASUS_GPIO1] = {
6297                 .type = ALC_FIXUP_VERBS,
6298                 .v.verbs = (const struct hda_verb[]) {
6299                         /* reset GPIO1 */
6300                         {0x01, AC_VERB_SET_GPIO_MASK, 0x03},
6301                         {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
6302                         {0x01, AC_VERB_SET_GPIO_DATA, 0x01},
6303                         { }
6304                 }
6305         },
6306         [ALC861VD_FIX_DALLAS] = {
6307                 .type = ALC_FIXUP_FUNC,
6308                 .v.func = alc861vd_fixup_dallas,
6309         },
6310 };
6311
6312 static const struct snd_pci_quirk alc861vd_fixup_tbl[] = {
6313         SND_PCI_QUIRK(0x103c, 0x30bf, "HP TX1000", ALC861VD_FIX_DALLAS),
6314         SND_PCI_QUIRK(0x1043, 0x1339, "ASUS A7-K", ALC660VD_FIX_ASUS_GPIO1),
6315         SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba L30-149", ALC861VD_FIX_DALLAS),
6316         {}
6317 };
6318
6319 static const struct hda_verb alc660vd_eapd_verbs[] = {
6320         {0x14, AC_VERB_SET_EAPD_BTLENABLE, 2},
6321         {0x15, AC_VERB_SET_EAPD_BTLENABLE, 2},
6322         { }
6323 };
6324
6325 /*
6326  */
6327 static int patch_alc861vd(struct hda_codec *codec)
6328 {
6329         struct alc_spec *spec;
6330         int err;
6331
6332         spec = kzalloc(sizeof(*spec), GFP_KERNEL);
6333         if (spec == NULL)
6334                 return -ENOMEM;
6335
6336         codec->spec = spec;
6337
6338         spec->mixer_nid = 0x0b;
6339
6340         alc_pick_fixup(codec, NULL, alc861vd_fixup_tbl, alc861vd_fixups);
6341         alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
6342
6343         /* automatic parse from the BIOS config */
6344         err = alc861vd_parse_auto_config(codec);
6345         if (err < 0)
6346                 goto error;
6347
6348         if (codec->vendor_id == 0x10ec0660) {
6349                 /* always turn on EAPD */
6350                 add_verb(spec, alc660vd_eapd_verbs);
6351         }
6352
6353         if (!spec->no_analog && !spec->adc_nids) {
6354                 alc_auto_fill_adc_caps(codec);
6355                 alc_rebuild_imux_for_auto_mic(codec);
6356                 alc_remove_invalid_adc_nids(codec);
6357         }
6358
6359         if (!spec->no_analog && !spec->cap_mixer)
6360                 set_capture_mixer(codec);
6361
6362         if (!spec->no_analog) {
6363                 err = snd_hda_attach_beep_device(codec, 0x23);
6364                 if (err < 0)
6365                         goto error;
6366                 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
6367         }
6368
6369         codec->patch_ops = alc_patch_ops;
6370
6371         spec->init_hook = alc_auto_init_std;
6372         spec->shutup = alc_eapd_shutup;
6373 #ifdef CONFIG_SND_HDA_POWER_SAVE
6374         if (!spec->loopback.amplist)
6375                 spec->loopback.amplist = alc861vd_loopbacks;
6376 #endif
6377
6378         alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
6379
6380         return 0;
6381
6382  error:
6383         alc_free(codec);
6384         return err;
6385 }
6386
6387 /*
6388  * ALC662 support
6389  *
6390  * ALC662 is almost identical with ALC880 but has cleaner and more flexible
6391  * configuration.  Each pin widget can choose any input DACs and a mixer.
6392  * Each ADC is connected from a mixer of all inputs.  This makes possible
6393  * 6-channel independent captures.
6394  *
6395  * In addition, an independent DAC for the multi-playback (not used in this
6396  * driver yet).
6397  */
6398 #ifdef CONFIG_SND_HDA_POWER_SAVE
6399 #define alc662_loopbacks        alc880_loopbacks
6400 #endif
6401
6402 /*
6403  * BIOS auto configuration
6404  */
6405
6406 static int alc662_parse_auto_config(struct hda_codec *codec)
6407 {
6408         static const hda_nid_t alc662_ignore[] = { 0x1d, 0 };
6409         static const hda_nid_t alc663_ssids[] = { 0x15, 0x1b, 0x14, 0x21 };
6410         static const hda_nid_t alc662_ssids[] = { 0x15, 0x1b, 0x14, 0 };
6411         const hda_nid_t *ssids;
6412
6413         if (codec->vendor_id == 0x10ec0272 || codec->vendor_id == 0x10ec0663 ||
6414             codec->vendor_id == 0x10ec0665 || codec->vendor_id == 0x10ec0670)
6415                 ssids = alc663_ssids;
6416         else
6417                 ssids = alc662_ssids;
6418         return alc_parse_auto_config(codec, alc662_ignore, ssids);
6419 }
6420
6421 static void alc272_fixup_mario(struct hda_codec *codec,
6422                                const struct alc_fixup *fix, int action)
6423 {
6424         if (action != ALC_FIXUP_ACT_PROBE)
6425                 return;
6426         if (snd_hda_override_amp_caps(codec, 0x2, HDA_OUTPUT,
6427                                       (0x3b << AC_AMPCAP_OFFSET_SHIFT) |
6428                                       (0x3b << AC_AMPCAP_NUM_STEPS_SHIFT) |
6429                                       (0x03 << AC_AMPCAP_STEP_SIZE_SHIFT) |
6430                                       (0 << AC_AMPCAP_MUTE_SHIFT)))
6431                 printk(KERN_WARNING
6432                        "hda_codec: failed to override amp caps for NID 0x2\n");
6433 }
6434
6435 enum {
6436         ALC662_FIXUP_ASPIRE,
6437         ALC662_FIXUP_IDEAPAD,
6438         ALC272_FIXUP_MARIO,
6439         ALC662_FIXUP_CZC_P10T,
6440         ALC662_FIXUP_SKU_IGNORE,
6441         ALC662_FIXUP_HP_RP5800,
6442         ALC662_FIXUP_ASUS_MODE1,
6443         ALC662_FIXUP_ASUS_MODE2,
6444         ALC662_FIXUP_ASUS_MODE3,
6445         ALC662_FIXUP_ASUS_MODE4,
6446         ALC662_FIXUP_ASUS_MODE5,
6447         ALC662_FIXUP_ASUS_MODE6,
6448         ALC662_FIXUP_ASUS_MODE7,
6449         ALC662_FIXUP_ASUS_MODE8,
6450         ALC662_FIXUP_NO_JACK_DETECT,
6451 };
6452
6453 static const struct alc_fixup alc662_fixups[] = {
6454         [ALC662_FIXUP_ASPIRE] = {
6455                 .type = ALC_FIXUP_PINS,
6456                 .v.pins = (const struct alc_pincfg[]) {
6457                         { 0x15, 0x99130112 }, /* subwoofer */
6458                         { }
6459                 }
6460         },
6461         [ALC662_FIXUP_IDEAPAD] = {
6462                 .type = ALC_FIXUP_PINS,
6463                 .v.pins = (const struct alc_pincfg[]) {
6464                         { 0x17, 0x99130112 }, /* subwoofer */
6465                         { }
6466                 }
6467         },
6468         [ALC272_FIXUP_MARIO] = {
6469                 .type = ALC_FIXUP_FUNC,
6470                 .v.func = alc272_fixup_mario,
6471         },
6472         [ALC662_FIXUP_CZC_P10T] = {
6473                 .type = ALC_FIXUP_VERBS,
6474                 .v.verbs = (const struct hda_verb[]) {
6475                         {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0},
6476                         {}
6477                 }
6478         },
6479         [ALC662_FIXUP_SKU_IGNORE] = {
6480                 .type = ALC_FIXUP_SKU,
6481                 .v.sku = ALC_FIXUP_SKU_IGNORE,
6482         },
6483         [ALC662_FIXUP_HP_RP5800] = {
6484                 .type = ALC_FIXUP_PINS,
6485                 .v.pins = (const struct alc_pincfg[]) {
6486                         { 0x14, 0x0221201f }, /* HP out */
6487                         { }
6488                 },
6489                 .chained = true,
6490                 .chain_id = ALC662_FIXUP_SKU_IGNORE
6491         },
6492         [ALC662_FIXUP_ASUS_MODE1] = {
6493                 .type = ALC_FIXUP_PINS,
6494                 .v.pins = (const struct alc_pincfg[]) {
6495                         { 0x14, 0x99130110 }, /* speaker */
6496                         { 0x18, 0x01a19c20 }, /* mic */
6497                         { 0x19, 0x99a3092f }, /* int-mic */
6498                         { 0x21, 0x0121401f }, /* HP out */
6499                         { }
6500                 },
6501                 .chained = true,
6502                 .chain_id = ALC662_FIXUP_SKU_IGNORE
6503         },
6504         [ALC662_FIXUP_ASUS_MODE2] = {
6505                 .type = ALC_FIXUP_PINS,
6506                 .v.pins = (const struct alc_pincfg[]) {
6507                         { 0x14, 0x99130110 }, /* speaker */
6508                         { 0x18, 0x01a19820 }, /* mic */
6509                         { 0x19, 0x99a3092f }, /* int-mic */
6510                         { 0x1b, 0x0121401f }, /* HP out */
6511                         { }
6512                 },
6513                 .chained = true,
6514                 .chain_id = ALC662_FIXUP_SKU_IGNORE
6515         },
6516         [ALC662_FIXUP_ASUS_MODE3] = {
6517                 .type = ALC_FIXUP_PINS,
6518                 .v.pins = (const struct alc_pincfg[]) {
6519                         { 0x14, 0x99130110 }, /* speaker */
6520                         { 0x15, 0x0121441f }, /* HP */
6521                         { 0x18, 0x01a19840 }, /* mic */
6522                         { 0x19, 0x99a3094f }, /* int-mic */
6523                         { 0x21, 0x01211420 }, /* HP2 */
6524                         { }
6525                 },
6526                 .chained = true,
6527                 .chain_id = ALC662_FIXUP_SKU_IGNORE
6528         },
6529         [ALC662_FIXUP_ASUS_MODE4] = {
6530                 .type = ALC_FIXUP_PINS,
6531                 .v.pins = (const struct alc_pincfg[]) {
6532                         { 0x14, 0x99130110 }, /* speaker */
6533                         { 0x16, 0x99130111 }, /* speaker */
6534                         { 0x18, 0x01a19840 }, /* mic */
6535                         { 0x19, 0x99a3094f }, /* int-mic */
6536                         { 0x21, 0x0121441f }, /* HP */
6537                         { }
6538                 },
6539                 .chained = true,
6540                 .chain_id = ALC662_FIXUP_SKU_IGNORE
6541         },
6542         [ALC662_FIXUP_ASUS_MODE5] = {
6543                 .type = ALC_FIXUP_PINS,
6544                 .v.pins = (const struct alc_pincfg[]) {
6545                         { 0x14, 0x99130110 }, /* speaker */
6546                         { 0x15, 0x0121441f }, /* HP */
6547                         { 0x16, 0x99130111 }, /* speaker */
6548                         { 0x18, 0x01a19840 }, /* mic */
6549                         { 0x19, 0x99a3094f }, /* int-mic */
6550                         { }
6551                 },
6552                 .chained = true,
6553                 .chain_id = ALC662_FIXUP_SKU_IGNORE
6554         },
6555         [ALC662_FIXUP_ASUS_MODE6] = {
6556                 .type = ALC_FIXUP_PINS,
6557                 .v.pins = (const struct alc_pincfg[]) {
6558                         { 0x14, 0x99130110 }, /* speaker */
6559                         { 0x15, 0x01211420 }, /* HP2 */
6560                         { 0x18, 0x01a19840 }, /* mic */
6561                         { 0x19, 0x99a3094f }, /* int-mic */
6562                         { 0x1b, 0x0121441f }, /* HP */
6563                         { }
6564                 },
6565                 .chained = true,
6566                 .chain_id = ALC662_FIXUP_SKU_IGNORE
6567         },
6568         [ALC662_FIXUP_ASUS_MODE7] = {
6569                 .type = ALC_FIXUP_PINS,
6570                 .v.pins = (const struct alc_pincfg[]) {
6571                         { 0x14, 0x99130110 }, /* speaker */
6572                         { 0x17, 0x99130111 }, /* speaker */
6573                         { 0x18, 0x01a19840 }, /* mic */
6574                         { 0x19, 0x99a3094f }, /* int-mic */
6575                         { 0x1b, 0x01214020 }, /* HP */
6576                         { 0x21, 0x0121401f }, /* HP */
6577                         { }
6578                 },
6579                 .chained = true,
6580                 .chain_id = ALC662_FIXUP_SKU_IGNORE
6581         },
6582         [ALC662_FIXUP_ASUS_MODE8] = {
6583                 .type = ALC_FIXUP_PINS,
6584                 .v.pins = (const struct alc_pincfg[]) {
6585                         { 0x14, 0x99130110 }, /* speaker */
6586                         { 0x12, 0x99a30970 }, /* int-mic */
6587                         { 0x15, 0x01214020 }, /* HP */
6588                         { 0x17, 0x99130111 }, /* speaker */
6589                         { 0x18, 0x01a19840 }, /* mic */
6590                         { 0x21, 0x0121401f }, /* HP */
6591                         { }
6592                 },
6593                 .chained = true,
6594                 .chain_id = ALC662_FIXUP_SKU_IGNORE
6595         },
6596         [ALC662_FIXUP_NO_JACK_DETECT] = {
6597                 .type = ALC_FIXUP_FUNC,
6598                 .v.func = alc_fixup_no_jack_detect,
6599         },
6600 };
6601
6602 static const struct snd_pci_quirk alc662_fixup_tbl[] = {
6603         SND_PCI_QUIRK(0x1019, 0x9087, "ECS", ALC662_FIXUP_ASUS_MODE2),
6604         SND_PCI_QUIRK(0x1025, 0x0308, "Acer Aspire 8942G", ALC662_FIXUP_ASPIRE),
6605         SND_PCI_QUIRK(0x1025, 0x031c, "Gateway NV79", ALC662_FIXUP_SKU_IGNORE),
6606         SND_PCI_QUIRK(0x1025, 0x038b, "Acer Aspire 8943G", ALC662_FIXUP_ASPIRE),
6607         SND_PCI_QUIRK(0x103c, 0x1632, "HP RP5800", ALC662_FIXUP_HP_RP5800),
6608         SND_PCI_QUIRK(0x1043, 0x8469, "ASUS mobo", ALC662_FIXUP_NO_JACK_DETECT),
6609         SND_PCI_QUIRK(0x105b, 0x0cd6, "Foxconn", ALC662_FIXUP_ASUS_MODE2),
6610         SND_PCI_QUIRK(0x144d, 0xc051, "Samsung R720", ALC662_FIXUP_IDEAPAD),
6611         SND_PCI_QUIRK(0x17aa, 0x38af, "Lenovo Ideapad Y550P", ALC662_FIXUP_IDEAPAD),
6612         SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Ideapad Y550", ALC662_FIXUP_IDEAPAD),
6613         SND_PCI_QUIRK(0x1b35, 0x2206, "CZC P10T", ALC662_FIXUP_CZC_P10T),
6614
6615 #if 0
6616         /* Below is a quirk table taken from the old code.
6617          * Basically the device should work as is without the fixup table.
6618          * If BIOS doesn't give a proper info, enable the corresponding
6619          * fixup entry.
6620          */ 
6621         SND_PCI_QUIRK(0x1043, 0x1000, "ASUS N50Vm", ALC662_FIXUP_ASUS_MODE1),
6622         SND_PCI_QUIRK(0x1043, 0x1092, "ASUS NB", ALC662_FIXUP_ASUS_MODE3),
6623         SND_PCI_QUIRK(0x1043, 0x1173, "ASUS K73Jn", ALC662_FIXUP_ASUS_MODE1),
6624         SND_PCI_QUIRK(0x1043, 0x11c3, "ASUS M70V", ALC662_FIXUP_ASUS_MODE3),
6625         SND_PCI_QUIRK(0x1043, 0x11d3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
6626         SND_PCI_QUIRK(0x1043, 0x11f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
6627         SND_PCI_QUIRK(0x1043, 0x1203, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
6628         SND_PCI_QUIRK(0x1043, 0x1303, "ASUS G60J", ALC662_FIXUP_ASUS_MODE1),
6629         SND_PCI_QUIRK(0x1043, 0x1333, "ASUS G60Jx", ALC662_FIXUP_ASUS_MODE1),
6630         SND_PCI_QUIRK(0x1043, 0x1339, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
6631         SND_PCI_QUIRK(0x1043, 0x13e3, "ASUS N71JA", ALC662_FIXUP_ASUS_MODE7),
6632         SND_PCI_QUIRK(0x1043, 0x1463, "ASUS N71", ALC662_FIXUP_ASUS_MODE7),
6633         SND_PCI_QUIRK(0x1043, 0x14d3, "ASUS G72", ALC662_FIXUP_ASUS_MODE8),
6634         SND_PCI_QUIRK(0x1043, 0x1563, "ASUS N90", ALC662_FIXUP_ASUS_MODE3),
6635         SND_PCI_QUIRK(0x1043, 0x15d3, "ASUS N50SF F50SF", ALC662_FIXUP_ASUS_MODE1),
6636         SND_PCI_QUIRK(0x1043, 0x16c3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
6637         SND_PCI_QUIRK(0x1043, 0x16f3, "ASUS K40C K50C", ALC662_FIXUP_ASUS_MODE2),
6638         SND_PCI_QUIRK(0x1043, 0x1733, "ASUS N81De", ALC662_FIXUP_ASUS_MODE1),
6639         SND_PCI_QUIRK(0x1043, 0x1753, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
6640         SND_PCI_QUIRK(0x1043, 0x1763, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
6641         SND_PCI_QUIRK(0x1043, 0x1765, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
6642         SND_PCI_QUIRK(0x1043, 0x1783, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
6643         SND_PCI_QUIRK(0x1043, 0x1793, "ASUS F50GX", ALC662_FIXUP_ASUS_MODE1),
6644         SND_PCI_QUIRK(0x1043, 0x17b3, "ASUS F70SL", ALC662_FIXUP_ASUS_MODE3),
6645         SND_PCI_QUIRK(0x1043, 0x17f3, "ASUS X58LE", ALC662_FIXUP_ASUS_MODE2),
6646         SND_PCI_QUIRK(0x1043, 0x1813, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
6647         SND_PCI_QUIRK(0x1043, 0x1823, "ASUS NB", ALC662_FIXUP_ASUS_MODE5),
6648         SND_PCI_QUIRK(0x1043, 0x1833, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
6649         SND_PCI_QUIRK(0x1043, 0x1843, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
6650         SND_PCI_QUIRK(0x1043, 0x1853, "ASUS F50Z", ALC662_FIXUP_ASUS_MODE1),
6651         SND_PCI_QUIRK(0x1043, 0x1864, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
6652         SND_PCI_QUIRK(0x1043, 0x1876, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
6653         SND_PCI_QUIRK(0x1043, 0x1893, "ASUS M50Vm", ALC662_FIXUP_ASUS_MODE3),
6654         SND_PCI_QUIRK(0x1043, 0x1894, "ASUS X55", ALC662_FIXUP_ASUS_MODE3),
6655         SND_PCI_QUIRK(0x1043, 0x18b3, "ASUS N80Vc", ALC662_FIXUP_ASUS_MODE1),
6656         SND_PCI_QUIRK(0x1043, 0x18c3, "ASUS VX5", ALC662_FIXUP_ASUS_MODE1),
6657         SND_PCI_QUIRK(0x1043, 0x18d3, "ASUS N81Te", ALC662_FIXUP_ASUS_MODE1),
6658         SND_PCI_QUIRK(0x1043, 0x18f3, "ASUS N505Tp", ALC662_FIXUP_ASUS_MODE1),
6659         SND_PCI_QUIRK(0x1043, 0x1903, "ASUS F5GL", ALC662_FIXUP_ASUS_MODE1),
6660         SND_PCI_QUIRK(0x1043, 0x1913, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
6661         SND_PCI_QUIRK(0x1043, 0x1933, "ASUS F80Q", ALC662_FIXUP_ASUS_MODE2),
6662         SND_PCI_QUIRK(0x1043, 0x1943, "ASUS Vx3V", ALC662_FIXUP_ASUS_MODE1),
6663         SND_PCI_QUIRK(0x1043, 0x1953, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
6664         SND_PCI_QUIRK(0x1043, 0x1963, "ASUS X71C", ALC662_FIXUP_ASUS_MODE3),
6665         SND_PCI_QUIRK(0x1043, 0x1983, "ASUS N5051A", ALC662_FIXUP_ASUS_MODE1),
6666         SND_PCI_QUIRK(0x1043, 0x1993, "ASUS N20", ALC662_FIXUP_ASUS_MODE1),
6667         SND_PCI_QUIRK(0x1043, 0x19b3, "ASUS F7Z", ALC662_FIXUP_ASUS_MODE1),
6668         SND_PCI_QUIRK(0x1043, 0x19c3, "ASUS F5Z/F6x", ALC662_FIXUP_ASUS_MODE2),
6669         SND_PCI_QUIRK(0x1043, 0x19e3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
6670         SND_PCI_QUIRK(0x1043, 0x19f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE4),
6671 #endif
6672         {}
6673 };
6674
6675 static const struct alc_model_fixup alc662_fixup_models[] = {
6676         {.id = ALC272_FIXUP_MARIO, .name = "mario"},
6677         {.id = ALC662_FIXUP_ASUS_MODE1, .name = "asus-mode1"},
6678         {.id = ALC662_FIXUP_ASUS_MODE2, .name = "asus-mode2"},
6679         {.id = ALC662_FIXUP_ASUS_MODE3, .name = "asus-mode3"},
6680         {.id = ALC662_FIXUP_ASUS_MODE4, .name = "asus-mode4"},
6681         {.id = ALC662_FIXUP_ASUS_MODE5, .name = "asus-mode5"},
6682         {.id = ALC662_FIXUP_ASUS_MODE6, .name = "asus-mode6"},
6683         {.id = ALC662_FIXUP_ASUS_MODE7, .name = "asus-mode7"},
6684         {.id = ALC662_FIXUP_ASUS_MODE8, .name = "asus-mode8"},
6685         {}
6686 };
6687
6688
6689 /*
6690  */
6691 static int patch_alc662(struct hda_codec *codec)
6692 {
6693         struct alc_spec *spec;
6694         int err = 0;
6695
6696         spec = kzalloc(sizeof(*spec), GFP_KERNEL);
6697         if (!spec)
6698                 return -ENOMEM;
6699
6700         codec->spec = spec;
6701
6702         spec->mixer_nid = 0x0b;
6703
6704         /* handle multiple HPs as is */
6705         spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
6706
6707         alc_auto_parse_customize_define(codec);
6708
6709         alc_fix_pll_init(codec, 0x20, 0x04, 15);
6710
6711         err = alc_codec_rename_from_preset(codec);
6712         if (err < 0)
6713                 goto error;
6714
6715         if ((alc_get_coef0(codec) & (1 << 14)) &&
6716             codec->bus->pci->subsystem_vendor == 0x1025 &&
6717             spec->cdefine.platform_type == 1) {
6718                 if (alc_codec_rename(codec, "ALC272X") < 0)
6719                         goto error;
6720         }
6721
6722         alc_pick_fixup(codec, alc662_fixup_models,
6723                        alc662_fixup_tbl, alc662_fixups);
6724         alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
6725         /* automatic parse from the BIOS config */
6726         err = alc662_parse_auto_config(codec);
6727         if (err < 0)
6728                 goto error;
6729
6730         if (!spec->no_analog && !spec->adc_nids) {
6731                 alc_auto_fill_adc_caps(codec);
6732                 alc_rebuild_imux_for_auto_mic(codec);
6733                 alc_remove_invalid_adc_nids(codec);
6734         }
6735
6736         if (!spec->no_analog && !spec->cap_mixer)
6737                 set_capture_mixer(codec);
6738
6739         if (!spec->no_analog && has_cdefine_beep(codec)) {
6740                 err = snd_hda_attach_beep_device(codec, 0x1);
6741                 if (err < 0)
6742                         goto error;
6743                 switch (codec->vendor_id) {
6744                 case 0x10ec0662:
6745                         set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
6746                         break;
6747                 case 0x10ec0272:
6748                 case 0x10ec0663:
6749                 case 0x10ec0665:
6750                         set_beep_amp(spec, 0x0b, 0x04, HDA_INPUT);
6751                         break;
6752                 case 0x10ec0273:
6753                         set_beep_amp(spec, 0x0b, 0x03, HDA_INPUT);
6754                         break;
6755                 }
6756         }
6757
6758         codec->patch_ops = alc_patch_ops;
6759         spec->init_hook = alc_auto_init_std;
6760         spec->shutup = alc_eapd_shutup;
6761
6762 #ifdef CONFIG_SND_HDA_POWER_SAVE
6763         if (!spec->loopback.amplist)
6764                 spec->loopback.amplist = alc662_loopbacks;
6765 #endif
6766
6767         alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
6768
6769         return 0;
6770
6771  error:
6772         alc_free(codec);
6773         return err;
6774 }
6775
6776 /*
6777  * ALC680 support
6778  */
6779
6780 static int alc680_parse_auto_config(struct hda_codec *codec)
6781 {
6782         return alc_parse_auto_config(codec, NULL, NULL);
6783 }
6784
6785 /*
6786  */
6787 static int patch_alc680(struct hda_codec *codec)
6788 {
6789         struct alc_spec *spec;
6790         int err;
6791
6792         spec = kzalloc(sizeof(*spec), GFP_KERNEL);
6793         if (spec == NULL)
6794                 return -ENOMEM;
6795
6796         codec->spec = spec;
6797
6798         /* ALC680 has no aa-loopback mixer */
6799
6800         /* automatic parse from the BIOS config */
6801         err = alc680_parse_auto_config(codec);
6802         if (err < 0) {
6803                 alc_free(codec);
6804                 return err;
6805         }
6806
6807         if (!spec->no_analog && !spec->cap_mixer)
6808                 set_capture_mixer(codec);
6809
6810         codec->patch_ops = alc_patch_ops;
6811         spec->init_hook = alc_auto_init_std;
6812
6813         return 0;
6814 }
6815
6816 /*
6817  * patch entries
6818  */
6819 static const struct hda_codec_preset snd_hda_preset_realtek[] = {
6820         { .id = 0x10ec0221, .name = "ALC221", .patch = patch_alc269 },
6821         { .id = 0x10ec0260, .name = "ALC260", .patch = patch_alc260 },
6822         { .id = 0x10ec0262, .name = "ALC262", .patch = patch_alc262 },
6823         { .id = 0x10ec0267, .name = "ALC267", .patch = patch_alc268 },
6824         { .id = 0x10ec0268, .name = "ALC268", .patch = patch_alc268 },
6825         { .id = 0x10ec0269, .name = "ALC269", .patch = patch_alc269 },
6826         { .id = 0x10ec0270, .name = "ALC270", .patch = patch_alc269 },
6827         { .id = 0x10ec0272, .name = "ALC272", .patch = patch_alc662 },
6828         { .id = 0x10ec0275, .name = "ALC275", .patch = patch_alc269 },
6829         { .id = 0x10ec0276, .name = "ALC276", .patch = patch_alc269 },
6830         { .id = 0x10ec0861, .rev = 0x100340, .name = "ALC660",
6831           .patch = patch_alc861 },
6832         { .id = 0x10ec0660, .name = "ALC660-VD", .patch = patch_alc861vd },
6833         { .id = 0x10ec0861, .name = "ALC861", .patch = patch_alc861 },
6834         { .id = 0x10ec0862, .name = "ALC861-VD", .patch = patch_alc861vd },
6835         { .id = 0x10ec0662, .rev = 0x100002, .name = "ALC662 rev2",
6836           .patch = patch_alc882 },
6837         { .id = 0x10ec0662, .rev = 0x100101, .name = "ALC662 rev1",
6838           .patch = patch_alc662 },
6839         { .id = 0x10ec0662, .rev = 0x100300, .name = "ALC662 rev3",
6840           .patch = patch_alc662 },
6841         { .id = 0x10ec0663, .name = "ALC663", .patch = patch_alc662 },
6842         { .id = 0x10ec0665, .name = "ALC665", .patch = patch_alc662 },
6843         { .id = 0x10ec0670, .name = "ALC670", .patch = patch_alc662 },
6844         { .id = 0x10ec0680, .name = "ALC680", .patch = patch_alc680 },
6845         { .id = 0x10ec0880, .name = "ALC880", .patch = patch_alc880 },
6846         { .id = 0x10ec0882, .name = "ALC882", .patch = patch_alc882 },
6847         { .id = 0x10ec0883, .name = "ALC883", .patch = patch_alc882 },
6848         { .id = 0x10ec0885, .rev = 0x100101, .name = "ALC889A",
6849           .patch = patch_alc882 },
6850         { .id = 0x10ec0885, .rev = 0x100103, .name = "ALC889A",
6851           .patch = patch_alc882 },
6852         { .id = 0x10ec0885, .name = "ALC885", .patch = patch_alc882 },
6853         { .id = 0x10ec0887, .name = "ALC887", .patch = patch_alc882 },
6854         { .id = 0x10ec0888, .rev = 0x100101, .name = "ALC1200",
6855           .patch = patch_alc882 },
6856         { .id = 0x10ec0888, .name = "ALC888", .patch = patch_alc882 },
6857         { .id = 0x10ec0889, .name = "ALC889", .patch = patch_alc882 },
6858         { .id = 0x10ec0892, .name = "ALC892", .patch = patch_alc662 },
6859         { .id = 0x10ec0899, .name = "ALC898", .patch = patch_alc882 },
6860         {} /* terminator */
6861 };
6862
6863 MODULE_ALIAS("snd-hda-codec-id:10ec*");
6864
6865 MODULE_LICENSE("GPL");
6866 MODULE_DESCRIPTION("Realtek HD-audio codec");
6867
6868 static struct hda_codec_preset_list realtek_list = {
6869         .preset = snd_hda_preset_realtek,
6870         .owner = THIS_MODULE,
6871 };
6872
6873 static int __init patch_realtek_init(void)
6874 {
6875         return snd_hda_add_codec_preset(&realtek_list);
6876 }
6877
6878 static void __exit patch_realtek_exit(void)
6879 {
6880         snd_hda_delete_codec_preset(&realtek_list);
6881 }
6882
6883 module_init(patch_realtek_init)
6884 module_exit(patch_realtek_exit)