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