]> git.ipfire.org Git - thirdparty/kernel/stable.git/blame - sound/pci/hda/patch_realtek.c
Merge branch 'topic/hda' into for-linus
[thirdparty/kernel/stable.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>
7cf51e48 9 * Jonathan Woithe <jwoithe@physics.adelaide.edu.au>
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>
30#include <sound/core.h>
9ad0e496 31#include <sound/jack.h>
1da177e4
LT
32#include "hda_codec.h"
33#include "hda_local.h"
680cd536 34#include "hda_beep.h"
1da177e4 35
1d045db9
TI
36/* unsol event tags */
37#define ALC_FRONT_EVENT 0x01
38#define ALC_DCVOL_EVENT 0x02
39#define ALC_HP_EVENT 0x04
40#define ALC_MIC_EVENT 0x08
d4a86d81 41
df694daa
KY
42/* for GPIO Poll */
43#define GPIO_MASK 0x03
44
4a79ba34
TI
45/* extra amp-initialization sequence types */
46enum {
47 ALC_INIT_NONE,
48 ALC_INIT_DEFAULT,
49 ALC_INIT_GPIO1,
50 ALC_INIT_GPIO2,
51 ALC_INIT_GPIO3,
52};
53
da00c244
KY
54struct alc_customize_define {
55 unsigned int sku_cfg;
56 unsigned char port_connectivity;
57 unsigned char check_sum;
58 unsigned char customization;
59 unsigned char external_amp;
60 unsigned int enable_pcbeep:1;
61 unsigned int platform_type:1;
62 unsigned int swap:1;
63 unsigned int override:1;
90622917 64 unsigned int fixup:1; /* Means that this sku is set by driver, not read from hw */
da00c244
KY
65};
66
b5bfbc67
TI
67struct alc_fixup;
68
ce764ab2
TI
69struct alc_multi_io {
70 hda_nid_t pin; /* multi-io widget pin NID */
71 hda_nid_t dac; /* DAC to be connected */
72 unsigned int ctl_in; /* cached input-pin control value */
73};
74
d922b51d 75enum {
3b8510ce
TI
76 ALC_AUTOMUTE_PIN, /* change the pin control */
77 ALC_AUTOMUTE_AMP, /* mute/unmute the pin AMP */
78 ALC_AUTOMUTE_MIXER, /* mute/unmute mixer widget AMP */
d922b51d
TI
79};
80
1da177e4
LT
81struct alc_spec {
82 /* codec parameterization */
a9111321 83 const struct snd_kcontrol_new *mixers[5]; /* mixer arrays */
1da177e4 84 unsigned int num_mixers;
a9111321 85 const struct snd_kcontrol_new *cap_mixer; /* capture mixer */
45bdd1c1 86 unsigned int beep_amp; /* beep amp value, set via set_beep_amp() */
1da177e4 87
2d9c6482 88 const struct hda_verb *init_verbs[10]; /* initialization verbs
9c7f852e
TI
89 * don't forget NULL
90 * termination!
e9edcee0
TI
91 */
92 unsigned int num_init_verbs;
1da177e4 93
aa563af7 94 char stream_name_analog[32]; /* analog PCM stream */
a9111321
TI
95 const struct hda_pcm_stream *stream_analog_playback;
96 const struct hda_pcm_stream *stream_analog_capture;
97 const struct hda_pcm_stream *stream_analog_alt_playback;
98 const struct hda_pcm_stream *stream_analog_alt_capture;
1da177e4 99
aa563af7 100 char stream_name_digital[32]; /* digital PCM stream */
a9111321
TI
101 const struct hda_pcm_stream *stream_digital_playback;
102 const struct hda_pcm_stream *stream_digital_capture;
1da177e4
LT
103
104 /* playback */
16ded525
TI
105 struct hda_multi_out multiout; /* playback set-up
106 * max_channels, dacs must be set
107 * dig_out_nid and hp_nid are optional
108 */
6330079f 109 hda_nid_t alt_dac_nid;
6a05ac4a 110 hda_nid_t slave_dig_outs[3]; /* optional - for auto-parsing */
8c441982 111 int dig_out_type;
1da177e4
LT
112
113 /* capture */
114 unsigned int num_adc_nids;
4c6d72d1
TI
115 const hda_nid_t *adc_nids;
116 const hda_nid_t *capsrc_nids;
16ded525 117 hda_nid_t dig_in_nid; /* digital-in NID; optional */
1f0f4b80 118 hda_nid_t mixer_nid; /* analog-mixer NID */
1da177e4 119
840b64c0 120 /* capture setup for dynamic dual-adc switch */
840b64c0
TI
121 hda_nid_t cur_adc;
122 unsigned int cur_adc_stream_tag;
123 unsigned int cur_adc_format;
124
1da177e4 125 /* capture source */
a1e8d2da 126 unsigned int num_mux_defs;
1da177e4
LT
127 const struct hda_input_mux *input_mux;
128 unsigned int cur_mux[3];
21268961
TI
129 hda_nid_t ext_mic_pin;
130 hda_nid_t dock_mic_pin;
131 hda_nid_t int_mic_pin;
1da177e4
LT
132
133 /* channel model */
d2a6d7dc 134 const struct hda_channel_mode *channel_mode;
1da177e4 135 int num_channel_mode;
4e195a7b 136 int need_dac_fix;
3b315d70
HM
137 int const_channel_count;
138 int ext_channel_count;
1da177e4
LT
139
140 /* PCM information */
4c5186ed 141 struct hda_pcm pcm_rec[3]; /* used in alc_build_pcms() */
41e41f1f 142
e9edcee0
TI
143 /* dynamic controls, init_verbs and input_mux */
144 struct auto_pin_cfg autocfg;
da00c244 145 struct alc_customize_define cdefine;
603c4019 146 struct snd_array kctls;
61b9b9b1 147 struct hda_input_mux private_imux[3];
41923e44 148 hda_nid_t private_dac_nids[AUTO_CFG_MAX_OUTS];
4953550a
TI
149 hda_nid_t private_adc_nids[AUTO_CFG_MAX_OUTS];
150 hda_nid_t private_capsrc_nids[AUTO_CFG_MAX_OUTS];
21268961
TI
151 hda_nid_t imux_pins[HDA_MAX_NUM_INPUTS];
152 unsigned int dyn_adc_idx[HDA_MAX_NUM_INPUTS];
153 int int_mic_idx, ext_mic_idx, dock_mic_idx; /* for auto-mic */
834be88d 154
ae6b813a
TI
155 /* hooks */
156 void (*init_hook)(struct hda_codec *codec);
157 void (*unsol_event)(struct hda_codec *codec, unsigned int res);
f5de24b0 158#ifdef CONFIG_SND_HDA_POWER_SAVE
c97259df 159 void (*power_hook)(struct hda_codec *codec);
f5de24b0 160#endif
1c716153 161 void (*shutup)(struct hda_codec *codec);
ae6b813a 162
834be88d 163 /* for pin sensing */
834be88d 164 unsigned int jack_present: 1;
e6a5e1b7 165 unsigned int line_jack_present:1;
e9427969 166 unsigned int master_mute:1;
6c819492 167 unsigned int auto_mic:1;
21268961 168 unsigned int auto_mic_valid_imux:1; /* valid imux for auto-mic */
d922b51d 169 unsigned int automute:1; /* HP automute enabled */
e6a5e1b7
TI
170 unsigned int detect_line:1; /* Line-out detection enabled */
171 unsigned int automute_lines:1; /* automute line-out as well */
ae8a60a5 172 unsigned int automute_hp_lo:1; /* both HP and LO available */
cb53c626 173
e64f14f4
TI
174 /* other flags */
175 unsigned int no_analog :1; /* digital I/O only */
21268961 176 unsigned int dyn_adc_switch:1; /* switch ADCs (for ALC275) */
584c0c4c 177 unsigned int single_input_src:1;
d6cc9fab 178 unsigned int vol_in_capsrc:1; /* use capsrc volume (ADC has no vol) */
d922b51d
TI
179
180 /* auto-mute control */
181 int automute_mode;
3b8510ce 182 hda_nid_t automute_mixer_nid[AUTO_CFG_MAX_OUTS];
d922b51d 183
4a79ba34 184 int init_amp;
d433a678 185 int codec_variant; /* flag for other variants */
e64f14f4 186
2134ea4f
TI
187 /* for virtual master */
188 hda_nid_t vmaster_nid;
cb53c626
TI
189#ifdef CONFIG_SND_HDA_POWER_SAVE
190 struct hda_loopback_check loopback;
191#endif
2c3bf9ab
TI
192
193 /* for PLL fix */
194 hda_nid_t pll_nid;
195 unsigned int pll_coef_idx, pll_coef_bit;
b5bfbc67
TI
196
197 /* fix-up list */
198 int fixup_id;
199 const struct alc_fixup *fixup_list;
200 const char *fixup_name;
ce764ab2
TI
201
202 /* multi-io */
203 int multi_ios;
204 struct alc_multi_io multi_io[4];
df694daa
KY
205};
206
1d045db9 207#define ALC_MODEL_AUTO 0 /* common for all chips */
1da177e4 208
44c02400
TI
209static bool check_amp_caps(struct hda_codec *codec, hda_nid_t nid,
210 int dir, unsigned int bits)
211{
212 if (!nid)
213 return false;
214 if (get_wcaps(codec, nid) & (1 << (dir + 1)))
215 if (query_amp_caps(codec, nid, dir) & bits)
216 return true;
217 return false;
218}
219
220#define nid_has_mute(codec, nid, dir) \
221 check_amp_caps(codec, nid, dir, AC_AMPCAP_MUTE)
222#define nid_has_volume(codec, nid, dir) \
223 check_amp_caps(codec, nid, dir, AC_AMPCAP_NUM_STEPS)
224
1da177e4
LT
225/*
226 * input MUX handling
227 */
9c7f852e
TI
228static int alc_mux_enum_info(struct snd_kcontrol *kcontrol,
229 struct snd_ctl_elem_info *uinfo)
1da177e4
LT
230{
231 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
232 struct alc_spec *spec = codec->spec;
a1e8d2da
JW
233 unsigned int mux_idx = snd_ctl_get_ioffidx(kcontrol, &uinfo->id);
234 if (mux_idx >= spec->num_mux_defs)
235 mux_idx = 0;
5311114d
TI
236 if (!spec->input_mux[mux_idx].num_items && mux_idx > 0)
237 mux_idx = 0;
a1e8d2da 238 return snd_hda_input_mux_info(&spec->input_mux[mux_idx], uinfo);
1da177e4
LT
239}
240
9c7f852e
TI
241static int alc_mux_enum_get(struct snd_kcontrol *kcontrol,
242 struct snd_ctl_elem_value *ucontrol)
1da177e4
LT
243{
244 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
245 struct alc_spec *spec = codec->spec;
246 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
247
248 ucontrol->value.enumerated.item[0] = spec->cur_mux[adc_idx];
249 return 0;
250}
251
21268961
TI
252static bool alc_dyn_adc_pcm_resetup(struct hda_codec *codec, int cur)
253{
254 struct alc_spec *spec = codec->spec;
255 hda_nid_t new_adc = spec->adc_nids[spec->dyn_adc_idx[cur]];
256
257 if (spec->cur_adc && spec->cur_adc != new_adc) {
258 /* stream is running, let's swap the current ADC */
259 __snd_hda_codec_cleanup_stream(codec, spec->cur_adc, 1);
260 spec->cur_adc = new_adc;
261 snd_hda_codec_setup_stream(codec, new_adc,
262 spec->cur_adc_stream_tag, 0,
263 spec->cur_adc_format);
264 return true;
265 }
266 return false;
267}
268
269/* select the given imux item; either unmute exclusively or select the route */
270static int alc_mux_select(struct hda_codec *codec, unsigned int adc_idx,
271 unsigned int idx, bool force)
1da177e4 272{
1da177e4 273 struct alc_spec *spec = codec->spec;
cd896c33 274 const struct hda_input_mux *imux;
cd896c33 275 unsigned int mux_idx;
21268961
TI
276 int i, type;
277 hda_nid_t nid;
1da177e4 278
cd896c33
TI
279 mux_idx = adc_idx >= spec->num_mux_defs ? 0 : adc_idx;
280 imux = &spec->input_mux[mux_idx];
5311114d
TI
281 if (!imux->num_items && mux_idx > 0)
282 imux = &spec->input_mux[0];
cd896c33 283
21268961
TI
284 if (idx >= imux->num_items)
285 idx = imux->num_items - 1;
286 if (spec->cur_mux[adc_idx] == idx && !force)
287 return 0;
288 spec->cur_mux[adc_idx] = idx;
289
290 if (spec->dyn_adc_switch) {
291 alc_dyn_adc_pcm_resetup(codec, idx);
292 adc_idx = spec->dyn_adc_idx[idx];
293 }
294
295 nid = spec->capsrc_nids ?
296 spec->capsrc_nids[adc_idx] : spec->adc_nids[adc_idx];
297
298 /* no selection? */
299 if (snd_hda_get_conn_list(codec, nid, NULL) <= 1)
300 return 1;
301
a22d543a 302 type = get_wcaps_type(get_wcaps(codec, nid));
0169b6b3 303 if (type == AC_WID_AUD_MIX) {
54cbc9ab 304 /* Matrix-mixer style (e.g. ALC882) */
54cbc9ab
TI
305 for (i = 0; i < imux->num_items; i++) {
306 unsigned int v = (i == idx) ? 0 : HDA_AMP_MUTE;
307 snd_hda_codec_amp_stereo(codec, nid, HDA_INPUT,
308 imux->items[i].index,
309 HDA_AMP_MUTE, v);
310 }
54cbc9ab
TI
311 } else {
312 /* MUX style (e.g. ALC880) */
21268961
TI
313 snd_hda_codec_write_cache(codec, nid, 0,
314 AC_VERB_SET_CONNECT_SEL,
315 imux->items[idx].index);
54cbc9ab 316 }
21268961
TI
317 return 1;
318}
319
320static int alc_mux_enum_put(struct snd_kcontrol *kcontrol,
321 struct snd_ctl_elem_value *ucontrol)
322{
323 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
324 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
325 return alc_mux_select(codec, adc_idx,
326 ucontrol->value.enumerated.item[0], false);
54cbc9ab 327}
e9edcee0 328
23f0c048
TI
329/*
330 * set up the input pin config (depending on the given auto-pin type)
331 */
332static void alc_set_input_pin(struct hda_codec *codec, hda_nid_t nid,
333 int auto_pin_type)
334{
335 unsigned int val = PIN_IN;
336
86e2959a 337 if (auto_pin_type == AUTO_PIN_MIC) {
23f0c048 338 unsigned int pincap;
954a29c8
TI
339 unsigned int oldval;
340 oldval = snd_hda_codec_read(codec, nid, 0,
341 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
1327a32b 342 pincap = snd_hda_query_pin_caps(codec, nid);
23f0c048 343 pincap = (pincap & AC_PINCAP_VREF) >> AC_PINCAP_VREF_SHIFT;
954a29c8
TI
344 /* if the default pin setup is vref50, we give it priority */
345 if ((pincap & AC_PINCAP_VREF_80) && oldval != PIN_VREF50)
23f0c048 346 val = PIN_VREF80;
461c6c3a
TI
347 else if (pincap & AC_PINCAP_VREF_50)
348 val = PIN_VREF50;
349 else if (pincap & AC_PINCAP_VREF_100)
350 val = PIN_VREF100;
351 else if (pincap & AC_PINCAP_VREF_GRD)
352 val = PIN_VREFGRD;
23f0c048
TI
353 }
354 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, val);
355}
356
d88897ea 357/*
1d045db9
TI
358 * Append the given mixer and verb elements for the later use
359 * The mixer array is referred in build_controls(), and init_verbs are
360 * called in init().
d88897ea 361 */
a9111321 362static void add_mixer(struct alc_spec *spec, const struct snd_kcontrol_new *mix)
d88897ea
TI
363{
364 if (snd_BUG_ON(spec->num_mixers >= ARRAY_SIZE(spec->mixers)))
365 return;
366 spec->mixers[spec->num_mixers++] = mix;
367}
368
369static void add_verb(struct alc_spec *spec, const struct hda_verb *verb)
370{
371 if (snd_BUG_ON(spec->num_init_verbs >= ARRAY_SIZE(spec->init_verbs)))
372 return;
373 spec->init_verbs[spec->num_init_verbs++] = verb;
374}
375
df694daa 376/*
1d045db9 377 * GPIO setup tables, used in initialization
df694daa 378 */
bc9f98a9 379/* Enable GPIO mask and set output */
a9111321 380static const struct hda_verb alc_gpio1_init_verbs[] = {
bc9f98a9
KY
381 {0x01, AC_VERB_SET_GPIO_MASK, 0x01},
382 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
383 {0x01, AC_VERB_SET_GPIO_DATA, 0x01},
384 { }
385};
386
a9111321 387static const struct hda_verb alc_gpio2_init_verbs[] = {
bc9f98a9
KY
388 {0x01, AC_VERB_SET_GPIO_MASK, 0x02},
389 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x02},
390 {0x01, AC_VERB_SET_GPIO_DATA, 0x02},
391 { }
392};
393
a9111321 394static const struct hda_verb alc_gpio3_init_verbs[] = {
bdd148a3
KY
395 {0x01, AC_VERB_SET_GPIO_MASK, 0x03},
396 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x03},
397 {0x01, AC_VERB_SET_GPIO_DATA, 0x03},
398 { }
399};
400
2c3bf9ab
TI
401/*
402 * Fix hardware PLL issue
403 * On some codecs, the analog PLL gating control must be off while
404 * the default value is 1.
405 */
406static void alc_fix_pll(struct hda_codec *codec)
407{
408 struct alc_spec *spec = codec->spec;
409 unsigned int val;
410
411 if (!spec->pll_nid)
412 return;
413 snd_hda_codec_write(codec, spec->pll_nid, 0, AC_VERB_SET_COEF_INDEX,
414 spec->pll_coef_idx);
415 val = snd_hda_codec_read(codec, spec->pll_nid, 0,
416 AC_VERB_GET_PROC_COEF, 0);
417 snd_hda_codec_write(codec, spec->pll_nid, 0, AC_VERB_SET_COEF_INDEX,
418 spec->pll_coef_idx);
419 snd_hda_codec_write(codec, spec->pll_nid, 0, AC_VERB_SET_PROC_COEF,
420 val & ~(1 << spec->pll_coef_bit));
421}
422
423static void alc_fix_pll_init(struct hda_codec *codec, hda_nid_t nid,
424 unsigned int coef_idx, unsigned int coef_bit)
425{
426 struct alc_spec *spec = codec->spec;
427 spec->pll_nid = nid;
428 spec->pll_coef_idx = coef_idx;
429 spec->pll_coef_bit = coef_bit;
430 alc_fix_pll(codec);
431}
432
1d045db9
TI
433/*
434 * Jack-reporting via input-jack layer
435 */
436
437/* initialization of jacks; currently checks only a few known pins */
9ad0e496
KY
438static int alc_init_jacks(struct hda_codec *codec)
439{
cd372fb3 440#ifdef CONFIG_SND_HDA_INPUT_JACK
9ad0e496
KY
441 struct alc_spec *spec = codec->spec;
442 int err;
443 unsigned int hp_nid = spec->autocfg.hp_pins[0];
21268961
TI
444 unsigned int mic_nid = spec->ext_mic_pin;
445 unsigned int dock_nid = spec->dock_mic_pin;
9ad0e496 446
265a0247 447 if (hp_nid) {
cd372fb3
TI
448 err = snd_hda_input_jack_add(codec, hp_nid,
449 SND_JACK_HEADPHONE, NULL);
265a0247
TI
450 if (err < 0)
451 return err;
cd372fb3 452 snd_hda_input_jack_report(codec, hp_nid);
265a0247 453 }
9ad0e496 454
265a0247 455 if (mic_nid) {
cd372fb3
TI
456 err = snd_hda_input_jack_add(codec, mic_nid,
457 SND_JACK_MICROPHONE, NULL);
265a0247
TI
458 if (err < 0)
459 return err;
cd372fb3 460 snd_hda_input_jack_report(codec, mic_nid);
265a0247 461 }
8ed99d97
TI
462 if (dock_nid) {
463 err = snd_hda_input_jack_add(codec, dock_nid,
464 SND_JACK_MICROPHONE, NULL);
465 if (err < 0)
466 return err;
467 snd_hda_input_jack_report(codec, dock_nid);
468 }
cd372fb3 469#endif /* CONFIG_SND_HDA_INPUT_JACK */
9ad0e496
KY
470 return 0;
471}
9ad0e496 472
1d045db9
TI
473/*
474 * Jack detections for HP auto-mute and mic-switch
475 */
476
477/* check each pin in the given array; returns true if any of them is plugged */
478static bool detect_jacks(struct hda_codec *codec, int num_pins, hda_nid_t *pins)
c9b58006 479{
e6a5e1b7 480 int i, present = 0;
c9b58006 481
e6a5e1b7
TI
482 for (i = 0; i < num_pins; i++) {
483 hda_nid_t nid = pins[i];
bb35febd
TI
484 if (!nid)
485 break;
cd372fb3 486 snd_hda_input_jack_report(codec, nid);
e6a5e1b7 487 present |= snd_hda_jack_detect(codec, nid);
bb35febd 488 }
e6a5e1b7
TI
489 return present;
490}
bb35febd 491
1d045db9 492/* standard HP/line-out auto-mute helper */
e6a5e1b7 493static void do_automute(struct hda_codec *codec, int num_pins, hda_nid_t *pins,
e9427969 494 bool mute, bool hp_out)
e6a5e1b7
TI
495{
496 struct alc_spec *spec = codec->spec;
497 unsigned int mute_bits = mute ? HDA_AMP_MUTE : 0;
e9427969 498 unsigned int pin_bits = mute ? 0 : (hp_out ? PIN_HP : PIN_OUT);
e6a5e1b7
TI
499 int i;
500
501 for (i = 0; i < num_pins; i++) {
502 hda_nid_t nid = pins[i];
a9fd4f3f
TI
503 if (!nid)
504 break;
3b8510ce
TI
505 switch (spec->automute_mode) {
506 case ALC_AUTOMUTE_PIN:
bb35febd 507 snd_hda_codec_write(codec, nid, 0,
e6a5e1b7
TI
508 AC_VERB_SET_PIN_WIDGET_CONTROL,
509 pin_bits);
3b8510ce
TI
510 break;
511 case ALC_AUTOMUTE_AMP:
bb35febd 512 snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
e6a5e1b7 513 HDA_AMP_MUTE, mute_bits);
3b8510ce
TI
514 break;
515 case ALC_AUTOMUTE_MIXER:
516 nid = spec->automute_mixer_nid[i];
517 if (!nid)
518 break;
519 snd_hda_codec_amp_stereo(codec, nid, HDA_INPUT, 0,
e6a5e1b7 520 HDA_AMP_MUTE, mute_bits);
3b8510ce 521 snd_hda_codec_amp_stereo(codec, nid, HDA_INPUT, 1,
e6a5e1b7 522 HDA_AMP_MUTE, mute_bits);
3b8510ce 523 break;
bb35febd 524 }
a9fd4f3f 525 }
c9b58006
KY
526}
527
e6a5e1b7
TI
528/* Toggle internal speakers muting */
529static void update_speakers(struct hda_codec *codec)
530{
531 struct alc_spec *spec = codec->spec;
1a1455de 532 int on;
e6a5e1b7 533
c0a20263
TI
534 /* Control HP pins/amps depending on master_mute state;
535 * in general, HP pins/amps control should be enabled in all cases,
536 * but currently set only for master_mute, just to be safe
537 */
538 do_automute(codec, ARRAY_SIZE(spec->autocfg.hp_pins),
539 spec->autocfg.hp_pins, spec->master_mute, true);
540
1a1455de
TI
541 if (!spec->automute)
542 on = 0;
543 else
544 on = spec->jack_present | spec->line_jack_present;
545 on |= spec->master_mute;
e6a5e1b7 546 do_automute(codec, ARRAY_SIZE(spec->autocfg.speaker_pins),
1a1455de 547 spec->autocfg.speaker_pins, on, false);
e6a5e1b7
TI
548
549 /* toggle line-out mutes if needed, too */
1a1455de
TI
550 /* if LO is a copy of either HP or Speaker, don't need to handle it */
551 if (spec->autocfg.line_out_pins[0] == spec->autocfg.hp_pins[0] ||
552 spec->autocfg.line_out_pins[0] == spec->autocfg.speaker_pins[0])
e6a5e1b7 553 return;
1a1455de
TI
554 if (!spec->automute_lines || !spec->automute)
555 on = 0;
556 else
557 on = spec->jack_present;
558 on |= spec->master_mute;
e6a5e1b7 559 do_automute(codec, ARRAY_SIZE(spec->autocfg.line_out_pins),
1a1455de 560 spec->autocfg.line_out_pins, on, false);
e6a5e1b7
TI
561}
562
1d045db9 563/* standard HP-automute helper */
e6a5e1b7
TI
564static void alc_hp_automute(struct hda_codec *codec)
565{
566 struct alc_spec *spec = codec->spec;
567
568 if (!spec->automute)
569 return;
570 spec->jack_present =
571 detect_jacks(codec, ARRAY_SIZE(spec->autocfg.hp_pins),
572 spec->autocfg.hp_pins);
573 update_speakers(codec);
574}
575
1d045db9 576/* standard line-out-automute helper */
e6a5e1b7
TI
577static void alc_line_automute(struct hda_codec *codec)
578{
579 struct alc_spec *spec = codec->spec;
580
581 if (!spec->automute || !spec->detect_line)
582 return;
583 spec->line_jack_present =
584 detect_jacks(codec, ARRAY_SIZE(spec->autocfg.line_out_pins),
585 spec->autocfg.line_out_pins);
586 update_speakers(codec);
587}
588
8d087c76
TI
589#define get_connection_index(codec, mux, nid) \
590 snd_hda_get_conn_index(codec, mux, nid, 0)
6c819492 591
1d045db9 592/* standard mic auto-switch helper */
7fb0d78f
KY
593static void alc_mic_automute(struct hda_codec *codec)
594{
595 struct alc_spec *spec = codec->spec;
21268961 596 hda_nid_t *pins = spec->imux_pins;
6c819492 597
21268961 598 if (!spec->auto_mic || !spec->auto_mic_valid_imux)
6c819492
TI
599 return;
600 if (snd_BUG_ON(!spec->adc_nids))
601 return;
21268961 602 if (snd_BUG_ON(spec->int_mic_idx < 0 || spec->ext_mic_idx < 0))
840b64c0 603 return;
6c819492 604
21268961
TI
605 if (snd_hda_jack_detect(codec, pins[spec->ext_mic_idx]))
606 alc_mux_select(codec, 0, spec->ext_mic_idx, false);
607 else if (spec->dock_mic_idx >= 0 &&
608 snd_hda_jack_detect(codec, pins[spec->dock_mic_idx]))
609 alc_mux_select(codec, 0, spec->dock_mic_idx, false);
610 else
611 alc_mux_select(codec, 0, spec->int_mic_idx, false);
6c819492 612
21268961
TI
613 snd_hda_input_jack_report(codec, pins[spec->ext_mic_idx]);
614 if (spec->dock_mic_idx >= 0)
615 snd_hda_input_jack_report(codec, pins[spec->dock_mic_idx]);
7fb0d78f
KY
616}
617
c9b58006
KY
618/* unsolicited event for HP jack sensing */
619static void alc_sku_unsol_event(struct hda_codec *codec, unsigned int res)
620{
621 if (codec->vendor_id == 0x10ec0880)
622 res >>= 28;
623 else
624 res >>= 26;
a9fd4f3f 625 switch (res) {
1d045db9 626 case ALC_HP_EVENT:
d922b51d 627 alc_hp_automute(codec);
a9fd4f3f 628 break;
1d045db9 629 case ALC_FRONT_EVENT:
e6a5e1b7
TI
630 alc_line_automute(codec);
631 break;
1d045db9 632 case ALC_MIC_EVENT:
7fb0d78f 633 alc_mic_automute(codec);
a9fd4f3f
TI
634 break;
635 }
7fb0d78f
KY
636}
637
1d045db9 638/* call init functions of standard auto-mute helpers */
7fb0d78f
KY
639static void alc_inithook(struct hda_codec *codec)
640{
d922b51d 641 alc_hp_automute(codec);
e6a5e1b7 642 alc_line_automute(codec);
7fb0d78f 643 alc_mic_automute(codec);
c9b58006
KY
644}
645
f9423e7a
KY
646/* additional initialization for ALC888 variants */
647static void alc888_coef_init(struct hda_codec *codec)
648{
649 unsigned int tmp;
650
651 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 0);
652 tmp = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_PROC_COEF, 0);
653 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 7);
37db623a 654 if ((tmp & 0xf0) == 0x20)
f9423e7a
KY
655 /* alc888S-VC */
656 snd_hda_codec_read(codec, 0x20, 0,
657 AC_VERB_SET_PROC_COEF, 0x830);
658 else
659 /* alc888-VB */
660 snd_hda_codec_read(codec, 0x20, 0,
661 AC_VERB_SET_PROC_COEF, 0x3030);
662}
663
1d045db9 664/* additional initialization for ALC889 variants */
87a8c370
JK
665static void alc889_coef_init(struct hda_codec *codec)
666{
667 unsigned int tmp;
668
669 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 7);
670 tmp = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_PROC_COEF, 0);
671 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 7);
672 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_PROC_COEF, tmp|0x2010);
673}
674
3fb4a508
TI
675/* turn on/off EAPD control (only if available) */
676static void set_eapd(struct hda_codec *codec, hda_nid_t nid, int on)
677{
678 if (get_wcaps_type(get_wcaps(codec, nid)) != AC_WID_PIN)
679 return;
680 if (snd_hda_query_pin_caps(codec, nid) & AC_PINCAP_EAPD)
681 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_EAPD_BTLENABLE,
682 on ? 2 : 0);
683}
684
691f1fcc
TI
685/* turn on/off EAPD controls of the codec */
686static void alc_auto_setup_eapd(struct hda_codec *codec, bool on)
687{
688 /* We currently only handle front, HP */
39fa84e9
TI
689 static hda_nid_t pins[] = {
690 0x0f, 0x10, 0x14, 0x15, 0
691 };
692 hda_nid_t *p;
693 for (p = pins; *p; p++)
694 set_eapd(codec, *p, on);
691f1fcc
TI
695}
696
1c716153
TI
697/* generic shutup callback;
698 * just turning off EPAD and a little pause for avoiding pop-noise
699 */
700static void alc_eapd_shutup(struct hda_codec *codec)
701{
702 alc_auto_setup_eapd(codec, false);
703 msleep(200);
704}
705
1d045db9 706/* generic EAPD initialization */
4a79ba34 707static void alc_auto_init_amp(struct hda_codec *codec, int type)
bc9f98a9 708{
4a79ba34 709 unsigned int tmp;
bc9f98a9 710
39fa84e9 711 alc_auto_setup_eapd(codec, true);
4a79ba34
TI
712 switch (type) {
713 case ALC_INIT_GPIO1:
bc9f98a9
KY
714 snd_hda_sequence_write(codec, alc_gpio1_init_verbs);
715 break;
4a79ba34 716 case ALC_INIT_GPIO2:
bc9f98a9
KY
717 snd_hda_sequence_write(codec, alc_gpio2_init_verbs);
718 break;
4a79ba34 719 case ALC_INIT_GPIO3:
bdd148a3
KY
720 snd_hda_sequence_write(codec, alc_gpio3_init_verbs);
721 break;
4a79ba34 722 case ALC_INIT_DEFAULT:
c9b58006
KY
723 switch (codec->vendor_id) {
724 case 0x10ec0260:
725 snd_hda_codec_write(codec, 0x1a, 0,
726 AC_VERB_SET_COEF_INDEX, 7);
727 tmp = snd_hda_codec_read(codec, 0x1a, 0,
728 AC_VERB_GET_PROC_COEF, 0);
729 snd_hda_codec_write(codec, 0x1a, 0,
730 AC_VERB_SET_COEF_INDEX, 7);
731 snd_hda_codec_write(codec, 0x1a, 0,
732 AC_VERB_SET_PROC_COEF,
733 tmp | 0x2010);
734 break;
735 case 0x10ec0262:
736 case 0x10ec0880:
737 case 0x10ec0882:
738 case 0x10ec0883:
739 case 0x10ec0885:
4a5a4c56 740 case 0x10ec0887:
20b67ddd 741 /*case 0x10ec0889:*/ /* this causes an SPDIF problem */
87a8c370 742 alc889_coef_init(codec);
c9b58006 743 break;
f9423e7a 744 case 0x10ec0888:
4a79ba34 745 alc888_coef_init(codec);
f9423e7a 746 break;
0aea778e 747#if 0 /* XXX: This may cause the silent output on speaker on some machines */
c9b58006
KY
748 case 0x10ec0267:
749 case 0x10ec0268:
750 snd_hda_codec_write(codec, 0x20, 0,
751 AC_VERB_SET_COEF_INDEX, 7);
752 tmp = snd_hda_codec_read(codec, 0x20, 0,
753 AC_VERB_GET_PROC_COEF, 0);
754 snd_hda_codec_write(codec, 0x20, 0,
ea1fb29a 755 AC_VERB_SET_COEF_INDEX, 7);
c9b58006
KY
756 snd_hda_codec_write(codec, 0x20, 0,
757 AC_VERB_SET_PROC_COEF,
758 tmp | 0x3000);
759 break;
0aea778e 760#endif /* XXX */
bc9f98a9 761 }
4a79ba34
TI
762 break;
763 }
764}
765
1d045db9
TI
766/*
767 * Auto-Mute mode mixer enum support
768 */
1a1455de
TI
769static int alc_automute_mode_info(struct snd_kcontrol *kcontrol,
770 struct snd_ctl_elem_info *uinfo)
771{
ae8a60a5
TI
772 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
773 struct alc_spec *spec = codec->spec;
774 static const char * const texts2[] = {
775 "Disabled", "Enabled"
776 };
777 static const char * const texts3[] = {
1a1455de
TI
778 "Disabled", "Speaker Only", "Line-Out+Speaker"
779 };
ae8a60a5 780 const char * const *texts;
1a1455de
TI
781
782 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
783 uinfo->count = 1;
ae8a60a5
TI
784 if (spec->automute_hp_lo) {
785 uinfo->value.enumerated.items = 3;
786 texts = texts3;
787 } else {
788 uinfo->value.enumerated.items = 2;
789 texts = texts2;
790 }
791 if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items)
792 uinfo->value.enumerated.item = uinfo->value.enumerated.items - 1;
1a1455de
TI
793 strcpy(uinfo->value.enumerated.name,
794 texts[uinfo->value.enumerated.item]);
795 return 0;
796}
797
798static int alc_automute_mode_get(struct snd_kcontrol *kcontrol,
799 struct snd_ctl_elem_value *ucontrol)
800{
801 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
802 struct alc_spec *spec = codec->spec;
803 unsigned int val;
804 if (!spec->automute)
805 val = 0;
806 else if (!spec->automute_lines)
807 val = 1;
808 else
809 val = 2;
810 ucontrol->value.enumerated.item[0] = val;
811 return 0;
812}
813
814static int alc_automute_mode_put(struct snd_kcontrol *kcontrol,
815 struct snd_ctl_elem_value *ucontrol)
816{
817 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
818 struct alc_spec *spec = codec->spec;
819
820 switch (ucontrol->value.enumerated.item[0]) {
821 case 0:
822 if (!spec->automute)
823 return 0;
824 spec->automute = 0;
825 break;
826 case 1:
827 if (spec->automute && !spec->automute_lines)
828 return 0;
829 spec->automute = 1;
830 spec->automute_lines = 0;
831 break;
832 case 2:
ae8a60a5
TI
833 if (!spec->automute_hp_lo)
834 return -EINVAL;
1a1455de
TI
835 if (spec->automute && spec->automute_lines)
836 return 0;
837 spec->automute = 1;
838 spec->automute_lines = 1;
839 break;
840 default:
841 return -EINVAL;
842 }
843 update_speakers(codec);
844 return 1;
845}
846
a9111321 847static const struct snd_kcontrol_new alc_automute_mode_enum = {
1a1455de
TI
848 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
849 .name = "Auto-Mute Mode",
850 .info = alc_automute_mode_info,
851 .get = alc_automute_mode_get,
852 .put = alc_automute_mode_put,
853};
854
1d045db9
TI
855static struct snd_kcontrol_new *alc_kcontrol_new(struct alc_spec *spec)
856{
857 snd_array_init(&spec->kctls, sizeof(struct snd_kcontrol_new), 32);
858 return snd_array_new(&spec->kctls);
859}
1a1455de
TI
860
861static int alc_add_automute_mode_enum(struct hda_codec *codec)
862{
863 struct alc_spec *spec = codec->spec;
864 struct snd_kcontrol_new *knew;
865
866 knew = alc_kcontrol_new(spec);
867 if (!knew)
868 return -ENOMEM;
869 *knew = alc_automute_mode_enum;
870 knew->name = kstrdup("Auto-Mute Mode", GFP_KERNEL);
871 if (!knew->name)
872 return -ENOMEM;
873 return 0;
874}
875
1d045db9
TI
876/*
877 * Check the availability of HP/line-out auto-mute;
878 * Set up appropriately if really supported
879 */
4a79ba34
TI
880static void alc_init_auto_hp(struct hda_codec *codec)
881{
882 struct alc_spec *spec = codec->spec;
bb35febd 883 struct auto_pin_cfg *cfg = &spec->autocfg;
1daf5f46 884 int present = 0;
bb35febd 885 int i;
4a79ba34 886
1daf5f46
TI
887 if (cfg->hp_pins[0])
888 present++;
889 if (cfg->line_out_pins[0])
890 present++;
891 if (cfg->speaker_pins[0])
892 present++;
893 if (present < 2) /* need two different output types */
894 return;
ae8a60a5
TI
895 if (present == 3)
896 spec->automute_hp_lo = 1; /* both HP and LO automute */
4a79ba34 897
bb35febd 898 if (!cfg->speaker_pins[0]) {
bb35febd
TI
899 memcpy(cfg->speaker_pins, cfg->line_out_pins,
900 sizeof(cfg->speaker_pins));
901 cfg->speaker_outs = cfg->line_outs;
902 }
903
904 if (!cfg->hp_pins[0]) {
905 memcpy(cfg->hp_pins, cfg->line_out_pins,
906 sizeof(cfg->hp_pins));
907 cfg->hp_outs = cfg->line_outs;
4a79ba34
TI
908 }
909
bb35febd 910 for (i = 0; i < cfg->hp_outs; i++) {
1a1455de 911 hda_nid_t nid = cfg->hp_pins[i];
06dec228 912 if (!is_jack_detectable(codec, nid))
1a1455de 913 continue;
bb35febd 914 snd_printdd("realtek: Enable HP auto-muting on NID 0x%x\n",
1a1455de
TI
915 nid);
916 snd_hda_codec_write_cache(codec, nid, 0,
4a79ba34 917 AC_VERB_SET_UNSOLICITED_ENABLE,
1d045db9 918 AC_USRSP_EN | ALC_HP_EVENT);
d922b51d
TI
919 spec->automute = 1;
920 spec->automute_mode = ALC_AUTOMUTE_PIN;
bb35febd 921 }
1a1455de
TI
922 if (spec->automute && cfg->line_out_pins[0] &&
923 cfg->line_out_pins[0] != cfg->hp_pins[0] &&
924 cfg->line_out_pins[0] != cfg->speaker_pins[0]) {
925 for (i = 0; i < cfg->line_outs; i++) {
926 hda_nid_t nid = cfg->line_out_pins[i];
06dec228 927 if (!is_jack_detectable(codec, nid))
1a1455de
TI
928 continue;
929 snd_printdd("realtek: Enable Line-Out auto-muting "
930 "on NID 0x%x\n", nid);
931 snd_hda_codec_write_cache(codec, nid, 0,
932 AC_VERB_SET_UNSOLICITED_ENABLE,
1d045db9 933 AC_USRSP_EN | ALC_FRONT_EVENT);
1a1455de
TI
934 spec->detect_line = 1;
935 }
52d3cb88 936 spec->automute_lines = spec->detect_line;
ae8a60a5
TI
937 }
938
939 if (spec->automute) {
1a1455de
TI
940 /* create a control for automute mode */
941 alc_add_automute_mode_enum(codec);
ae8a60a5 942 spec->unsol_event = alc_sku_unsol_event;
1a1455de 943 }
4a79ba34
TI
944}
945
1d045db9 946/* return the position of NID in the list, or -1 if not found */
21268961
TI
947static int find_idx_in_nid_list(hda_nid_t nid, const hda_nid_t *list, int nums)
948{
949 int i;
950 for (i = 0; i < nums; i++)
951 if (list[i] == nid)
952 return i;
953 return -1;
954}
955
1d045db9
TI
956/* check whether dynamic ADC-switching is available */
957static bool alc_check_dyn_adc_switch(struct hda_codec *codec)
958{
959 struct alc_spec *spec = codec->spec;
960 struct hda_input_mux *imux = &spec->private_imux[0];
961 int i, n, idx;
962 hda_nid_t cap, pin;
963
964 if (imux != spec->input_mux) /* no dynamic imux? */
965 return false;
966
967 for (n = 0; n < spec->num_adc_nids; n++) {
968 cap = spec->private_capsrc_nids[n];
969 for (i = 0; i < imux->num_items; i++) {
970 pin = spec->imux_pins[i];
971 if (!pin)
972 return false;
973 if (get_connection_index(codec, cap, pin) < 0)
974 break;
975 }
976 if (i >= imux->num_items)
268ff6fb 977 return true; /* no ADC-switch is needed */
1d045db9
TI
978 }
979
980 for (i = 0; i < imux->num_items; i++) {
981 pin = spec->imux_pins[i];
982 for (n = 0; n < spec->num_adc_nids; n++) {
983 cap = spec->private_capsrc_nids[n];
984 idx = get_connection_index(codec, cap, pin);
985 if (idx >= 0) {
986 imux->items[i].index = idx;
987 spec->dyn_adc_idx[i] = n;
988 break;
989 }
990 }
991 }
992
993 snd_printdd("realtek: enabling ADC switching\n");
994 spec->dyn_adc_switch = 1;
995 return true;
996}
21268961
TI
997
998/* rebuild imux for matching with the given auto-mic pins (if not yet) */
999static bool alc_rebuild_imux_for_auto_mic(struct hda_codec *codec)
1000{
1001 struct alc_spec *spec = codec->spec;
1002 struct hda_input_mux *imux;
1003 static char * const texts[3] = {
1004 "Mic", "Internal Mic", "Dock Mic"
1005 };
1006 int i;
1007
1008 if (!spec->auto_mic)
1009 return false;
1010 imux = &spec->private_imux[0];
1011 if (spec->input_mux == imux)
1012 return true;
1013 spec->imux_pins[0] = spec->ext_mic_pin;
1014 spec->imux_pins[1] = spec->int_mic_pin;
1015 spec->imux_pins[2] = spec->dock_mic_pin;
1016 for (i = 0; i < 3; i++) {
1017 strcpy(imux->items[i].label, texts[i]);
1018 if (spec->imux_pins[i])
1019 imux->num_items = i + 1;
1020 }
1021 spec->num_mux_defs = 1;
1022 spec->input_mux = imux;
1023 return true;
1024}
1025
1026/* check whether all auto-mic pins are valid; setup indices if OK */
1027static bool alc_auto_mic_check_imux(struct hda_codec *codec)
1028{
1029 struct alc_spec *spec = codec->spec;
1030 const struct hda_input_mux *imux;
1031
1032 if (!spec->auto_mic)
1033 return false;
1034 if (spec->auto_mic_valid_imux)
1035 return true; /* already checked */
1036
1037 /* fill up imux indices */
1038 if (!alc_check_dyn_adc_switch(codec)) {
1039 spec->auto_mic = 0;
1040 return false;
1041 }
1042
1043 imux = spec->input_mux;
1044 spec->ext_mic_idx = find_idx_in_nid_list(spec->ext_mic_pin,
1045 spec->imux_pins, imux->num_items);
1046 spec->int_mic_idx = find_idx_in_nid_list(spec->int_mic_pin,
1047 spec->imux_pins, imux->num_items);
1048 spec->dock_mic_idx = find_idx_in_nid_list(spec->dock_mic_pin,
1049 spec->imux_pins, imux->num_items);
1050 if (spec->ext_mic_idx < 0 || spec->int_mic_idx < 0) {
1051 spec->auto_mic = 0;
1052 return false; /* no corresponding imux */
1053 }
1054
1055 snd_hda_codec_write_cache(codec, spec->ext_mic_pin, 0,
1056 AC_VERB_SET_UNSOLICITED_ENABLE,
1d045db9 1057 AC_USRSP_EN | ALC_MIC_EVENT);
21268961
TI
1058 if (spec->dock_mic_pin)
1059 snd_hda_codec_write_cache(codec, spec->dock_mic_pin, 0,
1060 AC_VERB_SET_UNSOLICITED_ENABLE,
1d045db9 1061 AC_USRSP_EN | ALC_MIC_EVENT);
21268961
TI
1062
1063 spec->auto_mic_valid_imux = 1;
1064 spec->auto_mic = 1;
1065 return true;
1066}
1067
1d045db9
TI
1068/*
1069 * Check the availability of auto-mic switch;
1070 * Set up if really supported
1071 */
6c819492
TI
1072static void alc_init_auto_mic(struct hda_codec *codec)
1073{
1074 struct alc_spec *spec = codec->spec;
1075 struct auto_pin_cfg *cfg = &spec->autocfg;
8ed99d97 1076 hda_nid_t fixed, ext, dock;
6c819492
TI
1077 int i;
1078
21268961
TI
1079 spec->ext_mic_idx = spec->int_mic_idx = spec->dock_mic_idx = -1;
1080
8ed99d97 1081 fixed = ext = dock = 0;
66ceeb6b
TI
1082 for (i = 0; i < cfg->num_inputs; i++) {
1083 hda_nid_t nid = cfg->inputs[i].pin;
6c819492 1084 unsigned int defcfg;
6c819492 1085 defcfg = snd_hda_codec_get_pincfg(codec, nid);
99ae28be
TI
1086 switch (snd_hda_get_input_pin_attr(defcfg)) {
1087 case INPUT_PIN_ATTR_INT:
6c819492
TI
1088 if (fixed)
1089 return; /* already occupied */
8ed99d97
TI
1090 if (cfg->inputs[i].type != AUTO_PIN_MIC)
1091 return; /* invalid type */
6c819492
TI
1092 fixed = nid;
1093 break;
99ae28be
TI
1094 case INPUT_PIN_ATTR_UNUSED:
1095 return; /* invalid entry */
8ed99d97
TI
1096 case INPUT_PIN_ATTR_DOCK:
1097 if (dock)
1098 return; /* already occupied */
1099 if (cfg->inputs[i].type > AUTO_PIN_LINE_IN)
1100 return; /* invalid type */
1101 dock = nid;
1102 break;
99ae28be 1103 default:
6c819492
TI
1104 if (ext)
1105 return; /* already occupied */
8ed99d97
TI
1106 if (cfg->inputs[i].type != AUTO_PIN_MIC)
1107 return; /* invalid type */
6c819492
TI
1108 ext = nid;
1109 break;
6c819492
TI
1110 }
1111 }
8ed99d97
TI
1112 if (!ext && dock) {
1113 ext = dock;
1114 dock = 0;
1115 }
eaa9b3a7
TI
1116 if (!ext || !fixed)
1117 return;
e35d9d6a 1118 if (!is_jack_detectable(codec, ext))
6c819492 1119 return; /* no unsol support */
8ed99d97
TI
1120 if (dock && !is_jack_detectable(codec, dock))
1121 return; /* no unsol support */
21268961
TI
1122
1123 /* check imux indices */
1124 spec->ext_mic_pin = ext;
1125 spec->int_mic_pin = fixed;
1126 spec->dock_mic_pin = dock;
1127
1128 spec->auto_mic = 1;
1129 if (!alc_auto_mic_check_imux(codec))
1130 return;
1131
8ed99d97
TI
1132 snd_printdd("realtek: Enable auto-mic switch on NID 0x%x/0x%x/0x%x\n",
1133 ext, fixed, dock);
6c819492
TI
1134 spec->unsol_event = alc_sku_unsol_event;
1135}
1136
1d045db9
TI
1137/* check the availabilities of auto-mute and auto-mic switches */
1138static void alc_auto_check_switches(struct hda_codec *codec)
1139{
1140 alc_init_auto_hp(codec);
1141 alc_init_auto_mic(codec);
1142}
1143
1144/*
1145 * Realtek SSID verification
1146 */
1147
90622917
DH
1148/* Could be any non-zero and even value. When used as fixup, tells
1149 * the driver to ignore any present sku defines.
1150 */
1151#define ALC_FIXUP_SKU_IGNORE (2)
1152
da00c244
KY
1153static int alc_auto_parse_customize_define(struct hda_codec *codec)
1154{
1155 unsigned int ass, tmp, i;
7fb56223 1156 unsigned nid = 0;
da00c244
KY
1157 struct alc_spec *spec = codec->spec;
1158
b6cbe517
TI
1159 spec->cdefine.enable_pcbeep = 1; /* assume always enabled */
1160
90622917
DH
1161 if (spec->cdefine.fixup) {
1162 ass = spec->cdefine.sku_cfg;
1163 if (ass == ALC_FIXUP_SKU_IGNORE)
1164 return -1;
1165 goto do_sku;
1166 }
1167
da00c244 1168 ass = codec->subsystem_id & 0xffff;
b6cbe517 1169 if (ass != codec->bus->pci->subsystem_device && (ass & 1))
da00c244
KY
1170 goto do_sku;
1171
1172 nid = 0x1d;
1173 if (codec->vendor_id == 0x10ec0260)
1174 nid = 0x17;
1175 ass = snd_hda_codec_get_pincfg(codec, nid);
1176
1177 if (!(ass & 1)) {
1178 printk(KERN_INFO "hda_codec: %s: SKU not ready 0x%08x\n",
1179 codec->chip_name, ass);
1180 return -1;
1181 }
1182
1183 /* check sum */
1184 tmp = 0;
1185 for (i = 1; i < 16; i++) {
1186 if ((ass >> i) & 1)
1187 tmp++;
1188 }
1189 if (((ass >> 16) & 0xf) != tmp)
1190 return -1;
1191
1192 spec->cdefine.port_connectivity = ass >> 30;
1193 spec->cdefine.enable_pcbeep = (ass & 0x100000) >> 20;
1194 spec->cdefine.check_sum = (ass >> 16) & 0xf;
1195 spec->cdefine.customization = ass >> 8;
1196do_sku:
1197 spec->cdefine.sku_cfg = ass;
1198 spec->cdefine.external_amp = (ass & 0x38) >> 3;
1199 spec->cdefine.platform_type = (ass & 0x4) >> 2;
1200 spec->cdefine.swap = (ass & 0x2) >> 1;
1201 spec->cdefine.override = ass & 0x1;
1202
1203 snd_printd("SKU: Nid=0x%x sku_cfg=0x%08x\n",
1204 nid, spec->cdefine.sku_cfg);
1205 snd_printd("SKU: port_connectivity=0x%x\n",
1206 spec->cdefine.port_connectivity);
1207 snd_printd("SKU: enable_pcbeep=0x%x\n", spec->cdefine.enable_pcbeep);
1208 snd_printd("SKU: check_sum=0x%08x\n", spec->cdefine.check_sum);
1209 snd_printd("SKU: customization=0x%08x\n", spec->cdefine.customization);
1210 snd_printd("SKU: external_amp=0x%x\n", spec->cdefine.external_amp);
1211 snd_printd("SKU: platform_type=0x%x\n", spec->cdefine.platform_type);
1212 snd_printd("SKU: swap=0x%x\n", spec->cdefine.swap);
1213 snd_printd("SKU: override=0x%x\n", spec->cdefine.override);
1214
1215 return 0;
1216}
1217
1d045db9 1218/* return true if the given NID is found in the list */
3af9ee6b
TI
1219static bool found_in_nid_list(hda_nid_t nid, const hda_nid_t *list, int nums)
1220{
21268961 1221 return find_idx_in_nid_list(nid, list, nums) >= 0;
3af9ee6b
TI
1222}
1223
4a79ba34
TI
1224/* check subsystem ID and set up device-specific initialization;
1225 * return 1 if initialized, 0 if invalid SSID
1226 */
1227/* 32-bit subsystem ID for BIOS loading in HD Audio codec.
1228 * 31 ~ 16 : Manufacture ID
1229 * 15 ~ 8 : SKU ID
1230 * 7 ~ 0 : Assembly ID
1231 * port-A --> pin 39/41, port-E --> pin 14/15, port-D --> pin 35/36
1232 */
1233static int alc_subsystem_id(struct hda_codec *codec,
1234 hda_nid_t porta, hda_nid_t porte,
6227cdce 1235 hda_nid_t portd, hda_nid_t porti)
4a79ba34
TI
1236{
1237 unsigned int ass, tmp, i;
1238 unsigned nid;
1239 struct alc_spec *spec = codec->spec;
1240
90622917
DH
1241 if (spec->cdefine.fixup) {
1242 ass = spec->cdefine.sku_cfg;
1243 if (ass == ALC_FIXUP_SKU_IGNORE)
1244 return 0;
1245 goto do_sku;
1246 }
1247
4a79ba34
TI
1248 ass = codec->subsystem_id & 0xffff;
1249 if ((ass != codec->bus->pci->subsystem_device) && (ass & 1))
1250 goto do_sku;
1251
1252 /* invalid SSID, check the special NID pin defcfg instead */
1253 /*
def319f9 1254 * 31~30 : port connectivity
4a79ba34
TI
1255 * 29~21 : reserve
1256 * 20 : PCBEEP input
1257 * 19~16 : Check sum (15:1)
1258 * 15~1 : Custom
1259 * 0 : override
1260 */
1261 nid = 0x1d;
1262 if (codec->vendor_id == 0x10ec0260)
1263 nid = 0x17;
1264 ass = snd_hda_codec_get_pincfg(codec, nid);
1265 snd_printd("realtek: No valid SSID, "
1266 "checking pincfg 0x%08x for NID 0x%x\n",
cb6605c1 1267 ass, nid);
6227cdce 1268 if (!(ass & 1))
4a79ba34
TI
1269 return 0;
1270 if ((ass >> 30) != 1) /* no physical connection */
1271 return 0;
1272
1273 /* check sum */
1274 tmp = 0;
1275 for (i = 1; i < 16; i++) {
1276 if ((ass >> i) & 1)
1277 tmp++;
1278 }
1279 if (((ass >> 16) & 0xf) != tmp)
1280 return 0;
1281do_sku:
1282 snd_printd("realtek: Enabling init ASM_ID=0x%04x CODEC_ID=%08x\n",
1283 ass & 0xffff, codec->vendor_id);
1284 /*
1285 * 0 : override
1286 * 1 : Swap Jack
1287 * 2 : 0 --> Desktop, 1 --> Laptop
1288 * 3~5 : External Amplifier control
1289 * 7~6 : Reserved
1290 */
1291 tmp = (ass & 0x38) >> 3; /* external Amp control */
1292 switch (tmp) {
1293 case 1:
1294 spec->init_amp = ALC_INIT_GPIO1;
1295 break;
1296 case 3:
1297 spec->init_amp = ALC_INIT_GPIO2;
1298 break;
1299 case 7:
1300 spec->init_amp = ALC_INIT_GPIO3;
1301 break;
1302 case 5:
5a8cfb4e 1303 default:
4a79ba34 1304 spec->init_amp = ALC_INIT_DEFAULT;
bc9f98a9
KY
1305 break;
1306 }
ea1fb29a 1307
8c427226 1308 /* is laptop or Desktop and enable the function "Mute internal speaker
c9b58006
KY
1309 * when the external headphone out jack is plugged"
1310 */
8c427226 1311 if (!(ass & 0x8000))
4a79ba34 1312 return 1;
c9b58006
KY
1313 /*
1314 * 10~8 : Jack location
1315 * 12~11: Headphone out -> 00: PortA, 01: PortE, 02: PortD, 03: Resvered
1316 * 14~13: Resvered
1317 * 15 : 1 --> enable the function "Mute internal speaker
1318 * when the external headphone out jack is plugged"
1319 */
c9b58006 1320 if (!spec->autocfg.hp_pins[0]) {
01d4825d 1321 hda_nid_t nid;
c9b58006
KY
1322 tmp = (ass >> 11) & 0x3; /* HP to chassis */
1323 if (tmp == 0)
01d4825d 1324 nid = porta;
c9b58006 1325 else if (tmp == 1)
01d4825d 1326 nid = porte;
c9b58006 1327 else if (tmp == 2)
01d4825d 1328 nid = portd;
6227cdce
KY
1329 else if (tmp == 3)
1330 nid = porti;
c9b58006 1331 else
4a79ba34 1332 return 1;
3af9ee6b
TI
1333 if (found_in_nid_list(nid, spec->autocfg.line_out_pins,
1334 spec->autocfg.line_outs))
1335 return 1;
01d4825d 1336 spec->autocfg.hp_pins[0] = nid;
c9b58006 1337 }
4a79ba34
TI
1338 return 1;
1339}
ea1fb29a 1340
3e6179b8
TI
1341/* Check the validity of ALC subsystem-id
1342 * ports contains an array of 4 pin NIDs for port-A, E, D and I */
1343static void alc_ssid_check(struct hda_codec *codec, const hda_nid_t *ports)
4a79ba34 1344{
3e6179b8 1345 if (!alc_subsystem_id(codec, ports[0], ports[1], ports[2], ports[3])) {
4a79ba34
TI
1346 struct alc_spec *spec = codec->spec;
1347 snd_printd("realtek: "
1348 "Enable default setup for auto mode as fallback\n");
1349 spec->init_amp = ALC_INIT_DEFAULT;
4a79ba34 1350 }
21268961 1351}
1a1455de 1352
f95474ec 1353/*
f8f25ba3 1354 * Fix-up pin default configurations and add default verbs
f95474ec
TI
1355 */
1356
1357struct alc_pincfg {
1358 hda_nid_t nid;
1359 u32 val;
1360};
1361
e1eb5f10
TB
1362struct alc_model_fixup {
1363 const int id;
1364 const char *name;
1365};
1366
f8f25ba3 1367struct alc_fixup {
b5bfbc67 1368 int type;
361fe6e9
TI
1369 bool chained;
1370 int chain_id;
b5bfbc67
TI
1371 union {
1372 unsigned int sku;
1373 const struct alc_pincfg *pins;
1374 const struct hda_verb *verbs;
1375 void (*func)(struct hda_codec *codec,
1376 const struct alc_fixup *fix,
1377 int action);
1378 } v;
f8f25ba3
TI
1379};
1380
b5bfbc67
TI
1381enum {
1382 ALC_FIXUP_INVALID,
1383 ALC_FIXUP_SKU,
1384 ALC_FIXUP_PINS,
1385 ALC_FIXUP_VERBS,
1386 ALC_FIXUP_FUNC,
1387};
1388
1389enum {
1390 ALC_FIXUP_ACT_PRE_PROBE,
1391 ALC_FIXUP_ACT_PROBE,
58701120 1392 ALC_FIXUP_ACT_INIT,
b5bfbc67
TI
1393};
1394
1395static void alc_apply_fixup(struct hda_codec *codec, int action)
f95474ec 1396{
b5bfbc67
TI
1397 struct alc_spec *spec = codec->spec;
1398 int id = spec->fixup_id;
aa1d0c52 1399#ifdef CONFIG_SND_DEBUG_VERBOSE
b5bfbc67 1400 const char *modelname = spec->fixup_name;
aa1d0c52 1401#endif
b5bfbc67 1402 int depth = 0;
f95474ec 1403
b5bfbc67
TI
1404 if (!spec->fixup_list)
1405 return;
1406
1407 while (id >= 0) {
1408 const struct alc_fixup *fix = spec->fixup_list + id;
1409 const struct alc_pincfg *cfg;
1410
1411 switch (fix->type) {
1412 case ALC_FIXUP_SKU:
1413 if (action != ALC_FIXUP_ACT_PRE_PROBE || !fix->v.sku)
1414 break;;
1415 snd_printdd(KERN_INFO "hda_codec: %s: "
1416 "Apply sku override for %s\n",
1417 codec->chip_name, modelname);
1418 spec->cdefine.sku_cfg = fix->v.sku;
1419 spec->cdefine.fixup = 1;
1420 break;
1421 case ALC_FIXUP_PINS:
1422 cfg = fix->v.pins;
1423 if (action != ALC_FIXUP_ACT_PRE_PROBE || !cfg)
1424 break;
1425 snd_printdd(KERN_INFO "hda_codec: %s: "
1426 "Apply pincfg for %s\n",
1427 codec->chip_name, modelname);
1428 for (; cfg->nid; cfg++)
1429 snd_hda_codec_set_pincfg(codec, cfg->nid,
1430 cfg->val);
1431 break;
1432 case ALC_FIXUP_VERBS:
1433 if (action != ALC_FIXUP_ACT_PROBE || !fix->v.verbs)
1434 break;
1435 snd_printdd(KERN_INFO "hda_codec: %s: "
1436 "Apply fix-verbs for %s\n",
1437 codec->chip_name, modelname);
1438 add_verb(codec->spec, fix->v.verbs);
1439 break;
1440 case ALC_FIXUP_FUNC:
1441 if (!fix->v.func)
1442 break;
1443 snd_printdd(KERN_INFO "hda_codec: %s: "
1444 "Apply fix-func for %s\n",
1445 codec->chip_name, modelname);
1446 fix->v.func(codec, fix, action);
1447 break;
1448 default:
1449 snd_printk(KERN_ERR "hda_codec: %s: "
1450 "Invalid fixup type %d\n",
1451 codec->chip_name, fix->type);
1452 break;
1453 }
24af2b1c 1454 if (!fix->chained)
b5bfbc67
TI
1455 break;
1456 if (++depth > 10)
1457 break;
24af2b1c 1458 id = fix->chain_id;
9d57883f 1459 }
f95474ec
TI
1460}
1461
e1eb5f10 1462static void alc_pick_fixup(struct hda_codec *codec,
b5bfbc67
TI
1463 const struct alc_model_fixup *models,
1464 const struct snd_pci_quirk *quirk,
1465 const struct alc_fixup *fixlist)
e1eb5f10 1466{
b5bfbc67
TI
1467 struct alc_spec *spec = codec->spec;
1468 int id = -1;
1469 const char *name = NULL;
e1eb5f10 1470
e1eb5f10
TB
1471 if (codec->modelname && models) {
1472 while (models->name) {
1473 if (!strcmp(codec->modelname, models->name)) {
b5bfbc67
TI
1474 id = models->id;
1475 name = models->name;
e1eb5f10
TB
1476 break;
1477 }
1478 models++;
1479 }
b5bfbc67
TI
1480 }
1481 if (id < 0) {
1482 quirk = snd_pci_quirk_lookup(codec->bus->pci, quirk);
1483 if (quirk) {
1484 id = quirk->value;
1485#ifdef CONFIG_SND_DEBUG_VERBOSE
1486 name = quirk->name;
1487#endif
1488 }
1489 }
1490
1491 spec->fixup_id = id;
1492 if (id >= 0) {
1493 spec->fixup_list = fixlist;
1494 spec->fixup_name = name;
e1eb5f10 1495 }
f95474ec
TI
1496}
1497
1d045db9
TI
1498/*
1499 * COEF access helper functions
1500 */
274693f3
KY
1501static int alc_read_coef_idx(struct hda_codec *codec,
1502 unsigned int coef_idx)
1503{
1504 unsigned int val;
1505 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX,
1506 coef_idx);
1507 val = snd_hda_codec_read(codec, 0x20, 0,
1508 AC_VERB_GET_PROC_COEF, 0);
1509 return val;
1510}
1511
977ddd6b
KY
1512static void alc_write_coef_idx(struct hda_codec *codec, unsigned int coef_idx,
1513 unsigned int coef_val)
1514{
1515 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX,
1516 coef_idx);
1517 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_PROC_COEF,
1518 coef_val);
1519}
1520
1d045db9
TI
1521/*
1522 * Digital I/O handling
1523 */
1524
757899ac
TI
1525/* set right pin controls for digital I/O */
1526static void alc_auto_init_digital(struct hda_codec *codec)
1527{
1528 struct alc_spec *spec = codec->spec;
1529 int i;
1f0f4b80 1530 hda_nid_t pin, dac;
757899ac
TI
1531
1532 for (i = 0; i < spec->autocfg.dig_outs; i++) {
1533 pin = spec->autocfg.dig_out_pins[i];
1f0f4b80
TI
1534 if (!pin)
1535 continue;
1536 snd_hda_codec_write(codec, pin, 0,
1537 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
1538 if (!i)
1539 dac = spec->multiout.dig_out_nid;
1540 else
1541 dac = spec->slave_dig_outs[i - 1];
1542 if (!dac || !(get_wcaps(codec, dac) & AC_WCAP_OUT_AMP))
1543 continue;
1544 snd_hda_codec_write(codec, dac, 0,
1545 AC_VERB_SET_AMP_GAIN_MUTE,
1546 AMP_OUT_UNMUTE);
757899ac
TI
1547 }
1548 pin = spec->autocfg.dig_in_pin;
1549 if (pin)
1550 snd_hda_codec_write(codec, pin, 0,
1551 AC_VERB_SET_PIN_WIDGET_CONTROL,
1552 PIN_IN);
1553}
1554
1555/* parse digital I/Os and set up NIDs in BIOS auto-parse mode */
1556static void alc_auto_parse_digital(struct hda_codec *codec)
1557{
1558 struct alc_spec *spec = codec->spec;
1559 int i, err;
1560 hda_nid_t dig_nid;
1561
1562 /* support multiple SPDIFs; the secondary is set up as a slave */
1563 for (i = 0; i < spec->autocfg.dig_outs; i++) {
a926757f 1564 hda_nid_t conn[4];
757899ac
TI
1565 err = snd_hda_get_connections(codec,
1566 spec->autocfg.dig_out_pins[i],
a926757f 1567 conn, ARRAY_SIZE(conn));
757899ac
TI
1568 if (err < 0)
1569 continue;
a926757f 1570 dig_nid = conn[0]; /* assume the first element is audio-out */
757899ac
TI
1571 if (!i) {
1572 spec->multiout.dig_out_nid = dig_nid;
1573 spec->dig_out_type = spec->autocfg.dig_out_type[0];
1574 } else {
1575 spec->multiout.slave_dig_outs = spec->slave_dig_outs;
1576 if (i >= ARRAY_SIZE(spec->slave_dig_outs) - 1)
1577 break;
1578 spec->slave_dig_outs[i - 1] = dig_nid;
1579 }
1580 }
1581
1582 if (spec->autocfg.dig_in_pin) {
01fdf180
TI
1583 dig_nid = codec->start_nid;
1584 for (i = 0; i < codec->num_nodes; i++, dig_nid++) {
1585 unsigned int wcaps = get_wcaps(codec, dig_nid);
1586 if (get_wcaps_type(wcaps) != AC_WID_AUD_IN)
1587 continue;
1588 if (!(wcaps & AC_WCAP_DIGITAL))
1589 continue;
1590 if (!(wcaps & AC_WCAP_CONN_LIST))
1591 continue;
1592 err = get_connection_index(codec, dig_nid,
1593 spec->autocfg.dig_in_pin);
1594 if (err >= 0) {
1595 spec->dig_in_nid = dig_nid;
1596 break;
1597 }
1598 }
757899ac
TI
1599 }
1600}
1601
ef8ef5fb 1602/*
1d045db9 1603 * capture mixer elements
ef8ef5fb 1604 */
f9e336f6
TI
1605static int alc_cap_vol_info(struct snd_kcontrol *kcontrol,
1606 struct snd_ctl_elem_info *uinfo)
1607{
1608 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1609 struct alc_spec *spec = codec->spec;
d6cc9fab 1610 unsigned long val;
f9e336f6 1611 int err;
1da177e4 1612
5a9e02e9 1613 mutex_lock(&codec->control_mutex);
d6cc9fab
TI
1614 if (spec->vol_in_capsrc)
1615 val = HDA_COMPOSE_AMP_VAL(spec->capsrc_nids[0], 3, 0, HDA_OUTPUT);
1616 else
1617 val = HDA_COMPOSE_AMP_VAL(spec->adc_nids[0], 3, 0, HDA_INPUT);
1618 kcontrol->private_value = val;
f9e336f6 1619 err = snd_hda_mixer_amp_volume_info(kcontrol, uinfo);
5a9e02e9 1620 mutex_unlock(&codec->control_mutex);
f9e336f6
TI
1621 return err;
1622}
1623
1624static int alc_cap_vol_tlv(struct snd_kcontrol *kcontrol, int op_flag,
1625 unsigned int size, unsigned int __user *tlv)
1626{
1627 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1628 struct alc_spec *spec = codec->spec;
d6cc9fab 1629 unsigned long val;
f9e336f6 1630 int err;
1da177e4 1631
5a9e02e9 1632 mutex_lock(&codec->control_mutex);
d6cc9fab
TI
1633 if (spec->vol_in_capsrc)
1634 val = HDA_COMPOSE_AMP_VAL(spec->capsrc_nids[0], 3, 0, HDA_OUTPUT);
1635 else
1636 val = HDA_COMPOSE_AMP_VAL(spec->adc_nids[0], 3, 0, HDA_INPUT);
1637 kcontrol->private_value = val;
f9e336f6 1638 err = snd_hda_mixer_amp_tlv(kcontrol, op_flag, size, tlv);
5a9e02e9 1639 mutex_unlock(&codec->control_mutex);
f9e336f6
TI
1640 return err;
1641}
1642
1643typedef int (*getput_call_t)(struct snd_kcontrol *kcontrol,
1644 struct snd_ctl_elem_value *ucontrol);
1645
1646static int alc_cap_getput_caller(struct snd_kcontrol *kcontrol,
1647 struct snd_ctl_elem_value *ucontrol,
9c7a083d 1648 getput_call_t func, bool check_adc_switch)
f9e336f6
TI
1649{
1650 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1651 struct alc_spec *spec = codec->spec;
21268961 1652 int i, err = 0;
f9e336f6 1653
5a9e02e9 1654 mutex_lock(&codec->control_mutex);
21268961 1655 if (check_adc_switch && spec->dyn_adc_switch) {
9c7a083d
TI
1656 for (i = 0; i < spec->num_adc_nids; i++) {
1657 kcontrol->private_value =
1658 HDA_COMPOSE_AMP_VAL(spec->adc_nids[i],
1659 3, 0, HDA_INPUT);
1660 err = func(kcontrol, ucontrol);
1661 if (err < 0)
1662 goto error;
1663 }
1664 } else {
1665 i = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
d6cc9fab
TI
1666 if (spec->vol_in_capsrc)
1667 kcontrol->private_value =
1668 HDA_COMPOSE_AMP_VAL(spec->capsrc_nids[i],
1669 3, 0, HDA_OUTPUT);
1670 else
1671 kcontrol->private_value =
21268961
TI
1672 HDA_COMPOSE_AMP_VAL(spec->adc_nids[i],
1673 3, 0, HDA_INPUT);
9c7a083d
TI
1674 err = func(kcontrol, ucontrol);
1675 }
1676 error:
5a9e02e9 1677 mutex_unlock(&codec->control_mutex);
f9e336f6
TI
1678 return err;
1679}
1680
1681static int alc_cap_vol_get(struct snd_kcontrol *kcontrol,
1682 struct snd_ctl_elem_value *ucontrol)
1683{
1684 return alc_cap_getput_caller(kcontrol, ucontrol,
9c7a083d 1685 snd_hda_mixer_amp_volume_get, false);
f9e336f6
TI
1686}
1687
1688static int alc_cap_vol_put(struct snd_kcontrol *kcontrol,
1689 struct snd_ctl_elem_value *ucontrol)
1690{
1691 return alc_cap_getput_caller(kcontrol, ucontrol,
9c7a083d 1692 snd_hda_mixer_amp_volume_put, true);
f9e336f6
TI
1693}
1694
1695/* capture mixer elements */
1696#define alc_cap_sw_info snd_ctl_boolean_stereo_info
1697
1698static int alc_cap_sw_get(struct snd_kcontrol *kcontrol,
1699 struct snd_ctl_elem_value *ucontrol)
1700{
1701 return alc_cap_getput_caller(kcontrol, ucontrol,
9c7a083d 1702 snd_hda_mixer_amp_switch_get, false);
f9e336f6
TI
1703}
1704
1705static int alc_cap_sw_put(struct snd_kcontrol *kcontrol,
1706 struct snd_ctl_elem_value *ucontrol)
1707{
1708 return alc_cap_getput_caller(kcontrol, ucontrol,
9c7a083d 1709 snd_hda_mixer_amp_switch_put, true);
f9e336f6
TI
1710}
1711
a23b688f 1712#define _DEFINE_CAPMIX(num) \
f9e336f6
TI
1713 { \
1714 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1715 .name = "Capture Switch", \
1716 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE, \
1717 .count = num, \
1718 .info = alc_cap_sw_info, \
1719 .get = alc_cap_sw_get, \
1720 .put = alc_cap_sw_put, \
1721 }, \
1722 { \
1723 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1724 .name = "Capture Volume", \
1725 .access = (SNDRV_CTL_ELEM_ACCESS_READWRITE | \
1726 SNDRV_CTL_ELEM_ACCESS_TLV_READ | \
1727 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK), \
1728 .count = num, \
1729 .info = alc_cap_vol_info, \
1730 .get = alc_cap_vol_get, \
1731 .put = alc_cap_vol_put, \
1732 .tlv = { .c = alc_cap_vol_tlv }, \
a23b688f
TI
1733 }
1734
1735#define _DEFINE_CAPSRC(num) \
3c3e9892
TI
1736 { \
1737 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1738 /* .name = "Capture Source", */ \
1739 .name = "Input Source", \
1740 .count = num, \
1741 .info = alc_mux_enum_info, \
1742 .get = alc_mux_enum_get, \
1743 .put = alc_mux_enum_put, \
a23b688f
TI
1744 }
1745
1746#define DEFINE_CAPMIX(num) \
a9111321 1747static const struct snd_kcontrol_new alc_capture_mixer ## num[] = { \
a23b688f
TI
1748 _DEFINE_CAPMIX(num), \
1749 _DEFINE_CAPSRC(num), \
1750 { } /* end */ \
1751}
1752
1753#define DEFINE_CAPMIX_NOSRC(num) \
a9111321 1754static const struct snd_kcontrol_new alc_capture_mixer_nosrc ## num[] = { \
a23b688f
TI
1755 _DEFINE_CAPMIX(num), \
1756 { } /* end */ \
f9e336f6
TI
1757}
1758
1759/* up to three ADCs */
1760DEFINE_CAPMIX(1);
1761DEFINE_CAPMIX(2);
1762DEFINE_CAPMIX(3);
a23b688f
TI
1763DEFINE_CAPMIX_NOSRC(1);
1764DEFINE_CAPMIX_NOSRC(2);
1765DEFINE_CAPMIX_NOSRC(3);
e9edcee0
TI
1766
1767/*
1d045db9 1768 * virtual master controls
e9edcee0
TI
1769 */
1770
e9edcee0 1771/*
1d045db9 1772 * slave controls for virtual master
e9edcee0 1773 */
1d045db9
TI
1774static const char * const alc_slave_vols[] = {
1775 "Front Playback Volume",
1776 "Surround Playback Volume",
1777 "Center Playback Volume",
1778 "LFE Playback Volume",
1779 "Side Playback Volume",
1780 "Headphone Playback Volume",
1781 "Speaker Playback Volume",
1782 "Mono Playback Volume",
1783 "Line-Out Playback Volume",
1784 NULL,
e9edcee0
TI
1785};
1786
1d045db9
TI
1787static const char * const alc_slave_sws[] = {
1788 "Front Playback Switch",
1789 "Surround Playback Switch",
1790 "Center Playback Switch",
1791 "LFE Playback Switch",
1792 "Side Playback Switch",
1793 "Headphone Playback Switch",
1794 "Speaker Playback Switch",
1795 "Mono Playback Switch",
1796 "IEC958 Playback Switch",
1797 "Line-Out Playback Switch",
1798 NULL,
16ded525
TI
1799};
1800
e9edcee0 1801/*
1d045db9 1802 * build control elements
e9edcee0
TI
1803 */
1804
1d045db9 1805#define NID_MAPPING (-1)
e9edcee0 1806
1d045db9
TI
1807#define SUBDEV_SPEAKER_ (0 << 6)
1808#define SUBDEV_HP_ (1 << 6)
1809#define SUBDEV_LINE_ (2 << 6)
1810#define SUBDEV_SPEAKER(x) (SUBDEV_SPEAKER_ | ((x) & 0x3f))
1811#define SUBDEV_HP(x) (SUBDEV_HP_ | ((x) & 0x3f))
1812#define SUBDEV_LINE(x) (SUBDEV_LINE_ | ((x) & 0x3f))
e9edcee0 1813
1d045db9 1814static void alc_free_kctls(struct hda_codec *codec);
e9edcee0 1815
1d045db9
TI
1816#ifdef CONFIG_SND_HDA_INPUT_BEEP
1817/* additional beep mixers; the actual parameters are overwritten at build */
1818static const struct snd_kcontrol_new alc_beep_mixer[] = {
1819 HDA_CODEC_VOLUME("Beep Playback Volume", 0, 0, HDA_INPUT),
1820 HDA_CODEC_MUTE_BEEP("Beep Playback Switch", 0, 0, HDA_INPUT),
16ded525
TI
1821 { } /* end */
1822};
1d045db9 1823#endif
16ded525 1824
1d045db9
TI
1825static int alc_build_controls(struct hda_codec *codec)
1826{
1827 struct alc_spec *spec = codec->spec;
1828 struct snd_kcontrol *kctl = NULL;
1829 const struct snd_kcontrol_new *knew;
1830 int i, j, err;
1831 unsigned int u;
1832 hda_nid_t nid;
1da177e4
LT
1833
1834 for (i = 0; i < spec->num_mixers; i++) {
1835 err = snd_hda_add_new_ctls(codec, spec->mixers[i]);
1836 if (err < 0)
1837 return err;
1838 }
f9e336f6
TI
1839 if (spec->cap_mixer) {
1840 err = snd_hda_add_new_ctls(codec, spec->cap_mixer);
1841 if (err < 0)
1842 return err;
1843 }
1da177e4 1844 if (spec->multiout.dig_out_nid) {
9c7f852e 1845 err = snd_hda_create_spdif_out_ctls(codec,
74b654c9 1846 spec->multiout.dig_out_nid,
9c7f852e 1847 spec->multiout.dig_out_nid);
1da177e4
LT
1848 if (err < 0)
1849 return err;
e64f14f4
TI
1850 if (!spec->no_analog) {
1851 err = snd_hda_create_spdif_share_sw(codec,
1852 &spec->multiout);
1853 if (err < 0)
1854 return err;
1855 spec->multiout.share_spdif = 1;
1856 }
1da177e4
LT
1857 }
1858 if (spec->dig_in_nid) {
1859 err = snd_hda_create_spdif_in_ctls(codec, spec->dig_in_nid);
1860 if (err < 0)
1861 return err;
1862 }
2134ea4f 1863
67d634c0 1864#ifdef CONFIG_SND_HDA_INPUT_BEEP
45bdd1c1
TI
1865 /* create beep controls if needed */
1866 if (spec->beep_amp) {
a9111321 1867 const struct snd_kcontrol_new *knew;
45bdd1c1
TI
1868 for (knew = alc_beep_mixer; knew->name; knew++) {
1869 struct snd_kcontrol *kctl;
1870 kctl = snd_ctl_new1(knew, codec);
1871 if (!kctl)
1872 return -ENOMEM;
1873 kctl->private_value = spec->beep_amp;
5e26dfd0 1874 err = snd_hda_ctl_add(codec, 0, kctl);
45bdd1c1
TI
1875 if (err < 0)
1876 return err;
1877 }
1878 }
67d634c0 1879#endif
45bdd1c1 1880
2134ea4f 1881 /* if we have no master control, let's create it */
e64f14f4
TI
1882 if (!spec->no_analog &&
1883 !snd_hda_find_mixer_ctl(codec, "Master Playback Volume")) {
1c82ed1b 1884 unsigned int vmaster_tlv[4];
2134ea4f 1885 snd_hda_set_vmaster_tlv(codec, spec->vmaster_nid,
1c82ed1b 1886 HDA_OUTPUT, vmaster_tlv);
2134ea4f 1887 err = snd_hda_add_vmaster(codec, "Master Playback Volume",
1c82ed1b 1888 vmaster_tlv, alc_slave_vols);
2134ea4f
TI
1889 if (err < 0)
1890 return err;
1891 }
e64f14f4
TI
1892 if (!spec->no_analog &&
1893 !snd_hda_find_mixer_ctl(codec, "Master Playback Switch")) {
2134ea4f
TI
1894 err = snd_hda_add_vmaster(codec, "Master Playback Switch",
1895 NULL, alc_slave_sws);
1896 if (err < 0)
1897 return err;
1898 }
1899
5b0cb1d8 1900 /* assign Capture Source enums to NID */
fbe618f2
TI
1901 if (spec->capsrc_nids || spec->adc_nids) {
1902 kctl = snd_hda_find_mixer_ctl(codec, "Capture Source");
1903 if (!kctl)
1904 kctl = snd_hda_find_mixer_ctl(codec, "Input Source");
1905 for (i = 0; kctl && i < kctl->count; i++) {
4c6d72d1 1906 const hda_nid_t *nids = spec->capsrc_nids;
fbe618f2
TI
1907 if (!nids)
1908 nids = spec->adc_nids;
1909 err = snd_hda_add_nid(codec, kctl, i, nids[i]);
1910 if (err < 0)
1911 return err;
1912 }
5b0cb1d8
JK
1913 }
1914 if (spec->cap_mixer) {
1915 const char *kname = kctl ? kctl->id.name : NULL;
1916 for (knew = spec->cap_mixer; knew->name; knew++) {
1917 if (kname && strcmp(knew->name, kname) == 0)
1918 continue;
1919 kctl = snd_hda_find_mixer_ctl(codec, knew->name);
1920 for (i = 0; kctl && i < kctl->count; i++) {
1921 err = snd_hda_add_nid(codec, kctl, i,
1922 spec->adc_nids[i]);
1923 if (err < 0)
1924 return err;
1925 }
1926 }
1927 }
1928
1929 /* other nid->control mapping */
1930 for (i = 0; i < spec->num_mixers; i++) {
1931 for (knew = spec->mixers[i]; knew->name; knew++) {
1932 if (knew->iface != NID_MAPPING)
1933 continue;
1934 kctl = snd_hda_find_mixer_ctl(codec, knew->name);
1935 if (kctl == NULL)
1936 continue;
1937 u = knew->subdevice;
1938 for (j = 0; j < 4; j++, u >>= 8) {
1939 nid = u & 0x3f;
1940 if (nid == 0)
1941 continue;
1942 switch (u & 0xc0) {
1943 case SUBDEV_SPEAKER_:
1944 nid = spec->autocfg.speaker_pins[nid];
1945 break;
1946 case SUBDEV_LINE_:
1947 nid = spec->autocfg.line_out_pins[nid];
1948 break;
1949 case SUBDEV_HP_:
1950 nid = spec->autocfg.hp_pins[nid];
1951 break;
1952 default:
1953 continue;
1954 }
1955 err = snd_hda_add_nid(codec, kctl, 0, nid);
1956 if (err < 0)
1957 return err;
1958 }
1959 u = knew->private_value;
1960 for (j = 0; j < 4; j++, u >>= 8) {
1961 nid = u & 0xff;
1962 if (nid == 0)
1963 continue;
1964 err = snd_hda_add_nid(codec, kctl, 0, nid);
1965 if (err < 0)
1966 return err;
1967 }
1968 }
1969 }
bae84e70
TI
1970
1971 alc_free_kctls(codec); /* no longer needed */
1972
1da177e4
LT
1973 return 0;
1974}
1975
e9edcee0 1976
1da177e4 1977/*
1d045db9 1978 * Common callbacks
e9edcee0 1979 */
1da177e4 1980
1d045db9 1981static void alc_init_special_input_src(struct hda_codec *codec);
1da177e4 1982
1d045db9
TI
1983static int alc_init(struct hda_codec *codec)
1984{
1985 struct alc_spec *spec = codec->spec;
1986 unsigned int i;
1da177e4 1987
1d045db9
TI
1988 alc_fix_pll(codec);
1989 alc_auto_init_amp(codec, spec->init_amp);
1da177e4 1990
1d045db9
TI
1991 for (i = 0; i < spec->num_init_verbs; i++)
1992 snd_hda_sequence_write(codec, spec->init_verbs[i]);
1993 alc_init_special_input_src(codec);
dfc0ff62 1994
1d045db9
TI
1995 if (spec->init_hook)
1996 spec->init_hook(codec);
16ded525 1997
1d045db9 1998 alc_apply_fixup(codec, ALC_FIXUP_ACT_INIT);
16ded525 1999
1d045db9
TI
2000 hda_call_check_power_status(codec, 0x01);
2001 return 0;
2002}
ea1fb29a 2003
1d045db9
TI
2004static void alc_unsol_event(struct hda_codec *codec, unsigned int res)
2005{
2006 struct alc_spec *spec = codec->spec;
e9edcee0 2007
1d045db9
TI
2008 if (spec->unsol_event)
2009 spec->unsol_event(codec, res);
2010}
ccc656ce 2011
1d045db9
TI
2012#ifdef CONFIG_SND_HDA_POWER_SAVE
2013static int alc_check_power_status(struct hda_codec *codec, hda_nid_t nid)
2014{
2015 struct alc_spec *spec = codec->spec;
2016 return snd_hda_check_amp_list_power(codec, &spec->loopback, nid);
2017}
2018#endif
ccc656ce
KY
2019
2020/*
1d045db9 2021 * Analog playback callbacks
ccc656ce 2022 */
1d045db9
TI
2023static int alc_playback_pcm_open(struct hda_pcm_stream *hinfo,
2024 struct hda_codec *codec,
2025 struct snd_pcm_substream *substream)
458a4fab 2026{
1d045db9
TI
2027 struct alc_spec *spec = codec->spec;
2028 return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream,
2029 hinfo);
458a4fab
TI
2030}
2031
1d045db9
TI
2032static int alc_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
2033 struct hda_codec *codec,
2034 unsigned int stream_tag,
2035 unsigned int format,
2036 struct snd_pcm_substream *substream)
458a4fab 2037{
a9fd4f3f 2038 struct alc_spec *spec = codec->spec;
1d045db9
TI
2039 return snd_hda_multi_out_analog_prepare(codec, &spec->multiout,
2040 stream_tag, format, substream);
4f5d1706
TI
2041}
2042
1d045db9
TI
2043static int alc_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
2044 struct hda_codec *codec,
2045 struct snd_pcm_substream *substream)
4f5d1706 2046{
1d045db9
TI
2047 struct alc_spec *spec = codec->spec;
2048 return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout);
ccc656ce
KY
2049}
2050
1d045db9
TI
2051/*
2052 * Digital out
2053 */
2054static int alc_dig_playback_pcm_open(struct hda_pcm_stream *hinfo,
2055 struct hda_codec *codec,
2056 struct snd_pcm_substream *substream)
ccc656ce 2057{
1d045db9
TI
2058 struct alc_spec *spec = codec->spec;
2059 return snd_hda_multi_out_dig_open(codec, &spec->multiout);
ccc656ce
KY
2060}
2061
1d045db9
TI
2062static int alc_dig_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
2063 struct hda_codec *codec,
2064 unsigned int stream_tag,
2065 unsigned int format,
2066 struct snd_pcm_substream *substream)
ccc656ce 2067{
a9fd4f3f 2068 struct alc_spec *spec = codec->spec;
1d045db9
TI
2069 return snd_hda_multi_out_dig_prepare(codec, &spec->multiout,
2070 stream_tag, format, substream);
ccc656ce
KY
2071}
2072
1d045db9
TI
2073static int alc_dig_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
2074 struct hda_codec *codec,
2075 struct snd_pcm_substream *substream)
ccc656ce 2076{
1d045db9
TI
2077 struct alc_spec *spec = codec->spec;
2078 return snd_hda_multi_out_dig_cleanup(codec, &spec->multiout);
ccc656ce 2079}
47fd830a 2080
1d045db9
TI
2081static int alc_dig_playback_pcm_close(struct hda_pcm_stream *hinfo,
2082 struct hda_codec *codec,
2083 struct snd_pcm_substream *substream)
ccc656ce 2084{
1d045db9
TI
2085 struct alc_spec *spec = codec->spec;
2086 return snd_hda_multi_out_dig_close(codec, &spec->multiout);
ccc656ce
KY
2087}
2088
e9edcee0 2089/*
1d045db9 2090 * Analog capture
e9edcee0 2091 */
1d045db9
TI
2092static int alc_alt_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
2093 struct hda_codec *codec,
2094 unsigned int stream_tag,
2095 unsigned int format,
2096 struct snd_pcm_substream *substream)
2097{
2098 struct alc_spec *spec = codec->spec;
1da177e4 2099
6330079f 2100 snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number + 1],
1da177e4
LT
2101 stream_tag, 0, format);
2102 return 0;
2103}
2104
c2d986b0 2105static int alc_alt_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
1da177e4 2106 struct hda_codec *codec,
c8b6bf9b 2107 struct snd_pcm_substream *substream)
1da177e4
LT
2108{
2109 struct alc_spec *spec = codec->spec;
2110
888afa15
TI
2111 snd_hda_codec_cleanup_stream(codec,
2112 spec->adc_nids[substream->number + 1]);
1da177e4
LT
2113 return 0;
2114}
2115
840b64c0 2116/* analog capture with dynamic dual-adc changes */
21268961 2117static int dyn_adc_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
840b64c0
TI
2118 struct hda_codec *codec,
2119 unsigned int stream_tag,
2120 unsigned int format,
2121 struct snd_pcm_substream *substream)
2122{
2123 struct alc_spec *spec = codec->spec;
21268961 2124 spec->cur_adc = spec->adc_nids[spec->dyn_adc_idx[spec->cur_mux[0]]];
840b64c0
TI
2125 spec->cur_adc_stream_tag = stream_tag;
2126 spec->cur_adc_format = format;
2127 snd_hda_codec_setup_stream(codec, spec->cur_adc, stream_tag, 0, format);
2128 return 0;
2129}
2130
21268961 2131static int dyn_adc_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
840b64c0
TI
2132 struct hda_codec *codec,
2133 struct snd_pcm_substream *substream)
2134{
2135 struct alc_spec *spec = codec->spec;
2136 snd_hda_codec_cleanup_stream(codec, spec->cur_adc);
2137 spec->cur_adc = 0;
2138 return 0;
2139}
2140
21268961 2141static const struct hda_pcm_stream dyn_adc_pcm_analog_capture = {
840b64c0
TI
2142 .substreams = 1,
2143 .channels_min = 2,
2144 .channels_max = 2,
2145 .nid = 0, /* fill later */
2146 .ops = {
21268961
TI
2147 .prepare = dyn_adc_capture_pcm_prepare,
2148 .cleanup = dyn_adc_capture_pcm_cleanup
840b64c0
TI
2149 },
2150};
1da177e4
LT
2151
2152/*
2153 */
c2d986b0 2154static const struct hda_pcm_stream alc_pcm_analog_playback = {
1da177e4
LT
2155 .substreams = 1,
2156 .channels_min = 2,
2157 .channels_max = 8,
e9edcee0 2158 /* NID is set in alc_build_pcms */
1da177e4 2159 .ops = {
c2d986b0
TI
2160 .open = alc_playback_pcm_open,
2161 .prepare = alc_playback_pcm_prepare,
2162 .cleanup = alc_playback_pcm_cleanup
1da177e4
LT
2163 },
2164};
2165
c2d986b0 2166static const struct hda_pcm_stream alc_pcm_analog_capture = {
6330079f
TI
2167 .substreams = 1,
2168 .channels_min = 2,
2169 .channels_max = 2,
2170 /* NID is set in alc_build_pcms */
2171};
2172
c2d986b0 2173static const struct hda_pcm_stream alc_pcm_analog_alt_playback = {
6330079f
TI
2174 .substreams = 1,
2175 .channels_min = 2,
2176 .channels_max = 2,
2177 /* NID is set in alc_build_pcms */
2178};
2179
c2d986b0 2180static const struct hda_pcm_stream alc_pcm_analog_alt_capture = {
6330079f 2181 .substreams = 2, /* can be overridden */
1da177e4
LT
2182 .channels_min = 2,
2183 .channels_max = 2,
e9edcee0 2184 /* NID is set in alc_build_pcms */
1da177e4 2185 .ops = {
c2d986b0
TI
2186 .prepare = alc_alt_capture_pcm_prepare,
2187 .cleanup = alc_alt_capture_pcm_cleanup
1da177e4
LT
2188 },
2189};
2190
c2d986b0 2191static const struct hda_pcm_stream alc_pcm_digital_playback = {
1da177e4
LT
2192 .substreams = 1,
2193 .channels_min = 2,
2194 .channels_max = 2,
2195 /* NID is set in alc_build_pcms */
2196 .ops = {
c2d986b0
TI
2197 .open = alc_dig_playback_pcm_open,
2198 .close = alc_dig_playback_pcm_close,
2199 .prepare = alc_dig_playback_pcm_prepare,
2200 .cleanup = alc_dig_playback_pcm_cleanup
1da177e4
LT
2201 },
2202};
2203
c2d986b0 2204static const struct hda_pcm_stream alc_pcm_digital_capture = {
1da177e4
LT
2205 .substreams = 1,
2206 .channels_min = 2,
2207 .channels_max = 2,
2208 /* NID is set in alc_build_pcms */
2209};
2210
4c5186ed 2211/* Used by alc_build_pcms to flag that a PCM has no playback stream */
a9111321 2212static const struct hda_pcm_stream alc_pcm_null_stream = {
4c5186ed
JW
2213 .substreams = 0,
2214 .channels_min = 0,
2215 .channels_max = 0,
2216};
2217
1da177e4
LT
2218static int alc_build_pcms(struct hda_codec *codec)
2219{
2220 struct alc_spec *spec = codec->spec;
2221 struct hda_pcm *info = spec->pcm_rec;
c2d986b0 2222 const struct hda_pcm_stream *p;
1da177e4
LT
2223 int i;
2224
2225 codec->num_pcms = 1;
2226 codec->pcm_info = info;
2227
e64f14f4
TI
2228 if (spec->no_analog)
2229 goto skip_analog;
2230
812a2cca
TI
2231 snprintf(spec->stream_name_analog, sizeof(spec->stream_name_analog),
2232 "%s Analog", codec->chip_name);
1da177e4 2233 info->name = spec->stream_name_analog;
274693f3 2234
c2d986b0
TI
2235 if (spec->multiout.dac_nids > 0) {
2236 p = spec->stream_analog_playback;
2237 if (!p)
2238 p = &alc_pcm_analog_playback;
2239 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = *p;
4a471b7d
TI
2240 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dac_nids[0];
2241 }
c2d986b0
TI
2242 if (spec->adc_nids) {
2243 p = spec->stream_analog_capture;
21268961
TI
2244 if (!p) {
2245 if (spec->dyn_adc_switch)
2246 p = &dyn_adc_pcm_analog_capture;
2247 else
2248 p = &alc_pcm_analog_capture;
2249 }
c2d986b0 2250 info->stream[SNDRV_PCM_STREAM_CAPTURE] = *p;
4a471b7d
TI
2251 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[0];
2252 }
2253
2254 if (spec->channel_mode) {
2255 info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max = 0;
2256 for (i = 0; i < spec->num_channel_mode; i++) {
2257 if (spec->channel_mode[i].channels > info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max) {
2258 info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max = spec->channel_mode[i].channels;
2259 }
1da177e4
LT
2260 }
2261 }
2262
e64f14f4 2263 skip_analog:
e08a007d 2264 /* SPDIF for stream index #1 */
1da177e4 2265 if (spec->multiout.dig_out_nid || spec->dig_in_nid) {
812a2cca
TI
2266 snprintf(spec->stream_name_digital,
2267 sizeof(spec->stream_name_digital),
2268 "%s Digital", codec->chip_name);
e08a007d 2269 codec->num_pcms = 2;
b25c9da1 2270 codec->slave_dig_outs = spec->multiout.slave_dig_outs;
c06134d7 2271 info = spec->pcm_rec + 1;
1da177e4 2272 info->name = spec->stream_name_digital;
8c441982
TI
2273 if (spec->dig_out_type)
2274 info->pcm_type = spec->dig_out_type;
2275 else
2276 info->pcm_type = HDA_PCM_TYPE_SPDIF;
c2d986b0
TI
2277 if (spec->multiout.dig_out_nid) {
2278 p = spec->stream_digital_playback;
2279 if (!p)
2280 p = &alc_pcm_digital_playback;
2281 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = *p;
1da177e4
LT
2282 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dig_out_nid;
2283 }
c2d986b0
TI
2284 if (spec->dig_in_nid) {
2285 p = spec->stream_digital_capture;
2286 if (!p)
2287 p = &alc_pcm_digital_capture;
2288 info->stream[SNDRV_PCM_STREAM_CAPTURE] = *p;
1da177e4
LT
2289 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->dig_in_nid;
2290 }
963f803f
TI
2291 /* FIXME: do we need this for all Realtek codec models? */
2292 codec->spdif_status_reset = 1;
1da177e4
LT
2293 }
2294
e64f14f4
TI
2295 if (spec->no_analog)
2296 return 0;
2297
e08a007d
TI
2298 /* If the use of more than one ADC is requested for the current
2299 * model, configure a second analog capture-only PCM.
2300 */
2301 /* Additional Analaog capture for index #2 */
c2d986b0 2302 if (spec->alt_dac_nid || spec->num_adc_nids > 1) {
e08a007d 2303 codec->num_pcms = 3;
c06134d7 2304 info = spec->pcm_rec + 2;
e08a007d 2305 info->name = spec->stream_name_analog;
6330079f 2306 if (spec->alt_dac_nid) {
c2d986b0
TI
2307 p = spec->stream_analog_alt_playback;
2308 if (!p)
2309 p = &alc_pcm_analog_alt_playback;
2310 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = *p;
6330079f
TI
2311 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid =
2312 spec->alt_dac_nid;
2313 } else {
2314 info->stream[SNDRV_PCM_STREAM_PLAYBACK] =
2315 alc_pcm_null_stream;
2316 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = 0;
2317 }
c2d986b0
TI
2318 if (spec->num_adc_nids > 1) {
2319 p = spec->stream_analog_alt_capture;
2320 if (!p)
2321 p = &alc_pcm_analog_alt_capture;
2322 info->stream[SNDRV_PCM_STREAM_CAPTURE] = *p;
6330079f
TI
2323 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid =
2324 spec->adc_nids[1];
2325 info->stream[SNDRV_PCM_STREAM_CAPTURE].substreams =
2326 spec->num_adc_nids - 1;
2327 } else {
2328 info->stream[SNDRV_PCM_STREAM_CAPTURE] =
2329 alc_pcm_null_stream;
2330 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = 0;
e08a007d
TI
2331 }
2332 }
2333
1da177e4
LT
2334 return 0;
2335}
2336
a4e09aa3
TI
2337static inline void alc_shutup(struct hda_codec *codec)
2338{
1c716153
TI
2339 struct alc_spec *spec = codec->spec;
2340
2341 if (spec && spec->shutup)
2342 spec->shutup(codec);
a4e09aa3
TI
2343 snd_hda_shutup_pins(codec);
2344}
2345
603c4019
TI
2346static void alc_free_kctls(struct hda_codec *codec)
2347{
2348 struct alc_spec *spec = codec->spec;
2349
2350 if (spec->kctls.list) {
2351 struct snd_kcontrol_new *kctl = spec->kctls.list;
2352 int i;
2353 for (i = 0; i < spec->kctls.used; i++)
2354 kfree(kctl[i].name);
2355 }
2356 snd_array_free(&spec->kctls);
2357}
2358
1da177e4
LT
2359static void alc_free(struct hda_codec *codec)
2360{
e9edcee0 2361 struct alc_spec *spec = codec->spec;
e9edcee0 2362
f12ab1e0 2363 if (!spec)
e9edcee0
TI
2364 return;
2365
a4e09aa3 2366 alc_shutup(codec);
cd372fb3 2367 snd_hda_input_jack_free(codec);
603c4019 2368 alc_free_kctls(codec);
e9edcee0 2369 kfree(spec);
680cd536 2370 snd_hda_detach_beep_device(codec);
1da177e4
LT
2371}
2372
f5de24b0 2373#ifdef CONFIG_SND_HDA_POWER_SAVE
c97259df
DC
2374static void alc_power_eapd(struct hda_codec *codec)
2375{
691f1fcc 2376 alc_auto_setup_eapd(codec, false);
c97259df
DC
2377}
2378
f5de24b0
HM
2379static int alc_suspend(struct hda_codec *codec, pm_message_t state)
2380{
2381 struct alc_spec *spec = codec->spec;
a4e09aa3 2382 alc_shutup(codec);
f5de24b0 2383 if (spec && spec->power_hook)
c97259df 2384 spec->power_hook(codec);
f5de24b0
HM
2385 return 0;
2386}
2387#endif
2388
e044c39a 2389#ifdef SND_HDA_NEEDS_RESUME
e044c39a
TI
2390static int alc_resume(struct hda_codec *codec)
2391{
1c716153 2392 msleep(150); /* to avoid pop noise */
e044c39a
TI
2393 codec->patch_ops.init(codec);
2394 snd_hda_codec_resume_amp(codec);
2395 snd_hda_codec_resume_cache(codec);
9e5341b9 2396 hda_call_check_power_status(codec, 0x01);
e044c39a
TI
2397 return 0;
2398}
e044c39a
TI
2399#endif
2400
1da177e4
LT
2401/*
2402 */
a9111321 2403static const struct hda_codec_ops alc_patch_ops = {
1da177e4
LT
2404 .build_controls = alc_build_controls,
2405 .build_pcms = alc_build_pcms,
2406 .init = alc_init,
2407 .free = alc_free,
ae6b813a 2408 .unsol_event = alc_unsol_event,
e044c39a
TI
2409#ifdef SND_HDA_NEEDS_RESUME
2410 .resume = alc_resume,
2411#endif
cb53c626 2412#ifdef CONFIG_SND_HDA_POWER_SAVE
f5de24b0 2413 .suspend = alc_suspend,
cb53c626
TI
2414 .check_power_status = alc_check_power_status,
2415#endif
c97259df 2416 .reboot_notify = alc_shutup,
1da177e4
LT
2417};
2418
c027ddcd
KY
2419/* replace the codec chip_name with the given string */
2420static int alc_codec_rename(struct hda_codec *codec, const char *name)
2421{
2422 kfree(codec->chip_name);
2423 codec->chip_name = kstrdup(name, GFP_KERNEL);
2424 if (!codec->chip_name) {
2425 alc_free(codec);
2426 return -ENOMEM;
2427 }
2428 return 0;
2429}
2430
2fa522be 2431/*
1d045db9 2432 * Automatic parse of I/O pins from the BIOS configuration
2fa522be 2433 */
2fa522be 2434
1d045db9
TI
2435enum {
2436 ALC_CTL_WIDGET_VOL,
2437 ALC_CTL_WIDGET_MUTE,
2438 ALC_CTL_BIND_MUTE,
2fa522be 2439};
1d045db9
TI
2440static const struct snd_kcontrol_new alc_control_templates[] = {
2441 HDA_CODEC_VOLUME(NULL, 0, 0, 0),
2442 HDA_CODEC_MUTE(NULL, 0, 0, 0),
2443 HDA_BIND_MUTE(NULL, 0, 0, 0),
2fa522be
TI
2444};
2445
1d045db9
TI
2446/* add dynamic controls */
2447static int add_control(struct alc_spec *spec, int type, const char *name,
2448 int cidx, unsigned long val)
e9edcee0 2449{
c8b6bf9b 2450 struct snd_kcontrol_new *knew;
e9edcee0 2451
ce764ab2 2452 knew = alc_kcontrol_new(spec);
603c4019
TI
2453 if (!knew)
2454 return -ENOMEM;
1d045db9 2455 *knew = alc_control_templates[type];
543537bd 2456 knew->name = kstrdup(name, GFP_KERNEL);
f12ab1e0 2457 if (!knew->name)
e9edcee0 2458 return -ENOMEM;
66ceeb6b 2459 knew->index = cidx;
4d02d1b6 2460 if (get_amp_nid_(val))
5e26dfd0 2461 knew->subdevice = HDA_SUBDEV_AMP_FLAG;
e9edcee0 2462 knew->private_value = val;
e9edcee0
TI
2463 return 0;
2464}
2465
0afe5f89
TI
2466static int add_control_with_pfx(struct alc_spec *spec, int type,
2467 const char *pfx, const char *dir,
66ceeb6b 2468 const char *sfx, int cidx, unsigned long val)
0afe5f89
TI
2469{
2470 char name[32];
2471 snprintf(name, sizeof(name), "%s %s %s", pfx, dir, sfx);
66ceeb6b 2472 return add_control(spec, type, name, cidx, val);
0afe5f89
TI
2473}
2474
66ceeb6b
TI
2475#define add_pb_vol_ctrl(spec, type, pfx, val) \
2476 add_control_with_pfx(spec, type, pfx, "Playback", "Volume", 0, val)
2477#define add_pb_sw_ctrl(spec, type, pfx, val) \
2478 add_control_with_pfx(spec, type, pfx, "Playback", "Switch", 0, val)
2479#define __add_pb_vol_ctrl(spec, type, pfx, cidx, val) \
2480 add_control_with_pfx(spec, type, pfx, "Playback", "Volume", cidx, val)
2481#define __add_pb_sw_ctrl(spec, type, pfx, cidx, val) \
2482 add_control_with_pfx(spec, type, pfx, "Playback", "Switch", cidx, val)
0afe5f89 2483
6843ca16
TI
2484static const char *alc_get_line_out_pfx(struct alc_spec *spec, int ch,
2485 bool can_be_master, int *index)
bcb2f0f5 2486{
ce764ab2 2487 struct auto_pin_cfg *cfg = &spec->autocfg;
6843ca16
TI
2488 static const char * const chname[4] = {
2489 "Front", "Surround", NULL /*CLFE*/, "Side"
2490 };
ce764ab2 2491
6843ca16 2492 *index = 0;
ce764ab2
TI
2493 if (cfg->line_outs == 1 && !spec->multi_ios &&
2494 !cfg->hp_outs && !cfg->speaker_outs && can_be_master)
bcb2f0f5
TI
2495 return "Master";
2496
2497 switch (cfg->line_out_type) {
2498 case AUTO_PIN_SPEAKER_OUT:
ebbeb3d6
DH
2499 if (cfg->line_outs == 1)
2500 return "Speaker";
2501 break;
bcb2f0f5 2502 case AUTO_PIN_HP_OUT:
6843ca16
TI
2503 /* for multi-io case, only the primary out */
2504 if (ch && spec->multi_ios)
2505 break;
2506 *index = ch;
bcb2f0f5
TI
2507 return "Headphone";
2508 default:
ce764ab2 2509 if (cfg->line_outs == 1 && !spec->multi_ios)
bcb2f0f5
TI
2510 return "PCM";
2511 break;
2512 }
6843ca16 2513 return chname[ch];
bcb2f0f5
TI
2514}
2515
e9edcee0 2516/* create input playback/capture controls for the given pin */
f12ab1e0 2517static int new_analog_input(struct alc_spec *spec, hda_nid_t pin,
66ceeb6b 2518 const char *ctlname, int ctlidx,
df694daa 2519 int idx, hda_nid_t mix_nid)
e9edcee0 2520{
df694daa 2521 int err;
e9edcee0 2522
66ceeb6b 2523 err = __add_pb_vol_ctrl(spec, ALC_CTL_WIDGET_VOL, ctlname, ctlidx,
f12ab1e0
TI
2524 HDA_COMPOSE_AMP_VAL(mix_nid, 3, idx, HDA_INPUT));
2525 if (err < 0)
e9edcee0 2526 return err;
66ceeb6b 2527 err = __add_pb_sw_ctrl(spec, ALC_CTL_WIDGET_MUTE, ctlname, ctlidx,
f12ab1e0
TI
2528 HDA_COMPOSE_AMP_VAL(mix_nid, 3, idx, HDA_INPUT));
2529 if (err < 0)
e9edcee0
TI
2530 return err;
2531 return 0;
2532}
2533
05f5f477
TI
2534static int alc_is_input_pin(struct hda_codec *codec, hda_nid_t nid)
2535{
2536 unsigned int pincap = snd_hda_query_pin_caps(codec, nid);
2537 return (pincap & AC_PINCAP_IN) != 0;
2538}
2539
1d045db9 2540/* Parse the codec tree and retrieve ADCs and corresponding capsrc MUXs */
d6cc9fab 2541static int alc_auto_fill_adc_caps(struct hda_codec *codec)
b7821709 2542{
d6cc9fab 2543 struct alc_spec *spec = codec->spec;
b7821709 2544 hda_nid_t nid;
d6cc9fab
TI
2545 hda_nid_t *adc_nids = spec->private_adc_nids;
2546 hda_nid_t *cap_nids = spec->private_capsrc_nids;
2547 int max_nums = ARRAY_SIZE(spec->private_adc_nids);
2548 bool indep_capsrc = false;
b7821709
TI
2549 int i, nums = 0;
2550
2551 nid = codec->start_nid;
2552 for (i = 0; i < codec->num_nodes; i++, nid++) {
2553 hda_nid_t src;
2554 const hda_nid_t *list;
2555 unsigned int caps = get_wcaps(codec, nid);
2556 int type = get_wcaps_type(caps);
2557
2558 if (type != AC_WID_AUD_IN || (caps & AC_WCAP_DIGITAL))
2559 continue;
2560 adc_nids[nums] = nid;
2561 cap_nids[nums] = nid;
2562 src = nid;
2563 for (;;) {
2564 int n;
2565 type = get_wcaps_type(get_wcaps(codec, src));
2566 if (type == AC_WID_PIN)
2567 break;
2568 if (type == AC_WID_AUD_SEL) {
2569 cap_nids[nums] = src;
d6cc9fab 2570 indep_capsrc = true;
b7821709
TI
2571 break;
2572 }
2573 n = snd_hda_get_conn_list(codec, src, &list);
2574 if (n > 1) {
2575 cap_nids[nums] = src;
d6cc9fab 2576 indep_capsrc = true;
b7821709
TI
2577 break;
2578 } else if (n != 1)
2579 break;
2580 src = *list;
2581 }
2582 if (++nums >= max_nums)
2583 break;
2584 }
d6cc9fab 2585 spec->adc_nids = spec->private_adc_nids;
21268961 2586 spec->capsrc_nids = spec->private_capsrc_nids;
d6cc9fab 2587 spec->num_adc_nids = nums;
b7821709
TI
2588 return nums;
2589}
2590
e9edcee0 2591/* create playback/capture controls for input pins */
b7821709 2592static int alc_auto_create_input_ctls(struct hda_codec *codec)
e9edcee0 2593{
05f5f477 2594 struct alc_spec *spec = codec->spec;
b7821709
TI
2595 const struct auto_pin_cfg *cfg = &spec->autocfg;
2596 hda_nid_t mixer = spec->mixer_nid;
61b9b9b1 2597 struct hda_input_mux *imux = &spec->private_imux[0];
b7821709 2598 int num_adcs;
b7821709 2599 int i, c, err, idx, type_idx = 0;
5322bf27 2600 const char *prev_label = NULL;
e9edcee0 2601
d6cc9fab 2602 num_adcs = alc_auto_fill_adc_caps(codec);
b7821709
TI
2603 if (num_adcs < 0)
2604 return 0;
2605
66ceeb6b 2606 for (i = 0; i < cfg->num_inputs; i++) {
05f5f477 2607 hda_nid_t pin;
10a20af7 2608 const char *label;
05f5f477 2609
66ceeb6b 2610 pin = cfg->inputs[i].pin;
05f5f477
TI
2611 if (!alc_is_input_pin(codec, pin))
2612 continue;
2613
5322bf27
DH
2614 label = hda_get_autocfg_input_label(codec, cfg, i);
2615 if (prev_label && !strcmp(label, prev_label))
66ceeb6b
TI
2616 type_idx++;
2617 else
2618 type_idx = 0;
5322bf27
DH
2619 prev_label = label;
2620
05f5f477
TI
2621 if (mixer) {
2622 idx = get_connection_index(codec, mixer, pin);
2623 if (idx >= 0) {
2624 err = new_analog_input(spec, pin,
10a20af7
TI
2625 label, type_idx,
2626 idx, mixer);
05f5f477
TI
2627 if (err < 0)
2628 return err;
2629 }
2630 }
2631
b7821709 2632 for (c = 0; c < num_adcs; c++) {
d6cc9fab
TI
2633 hda_nid_t cap = spec->capsrc_nids ?
2634 spec->capsrc_nids[c] : spec->adc_nids[c];
2635 idx = get_connection_index(codec, cap, pin);
b7821709 2636 if (idx >= 0) {
21268961 2637 spec->imux_pins[imux->num_items] = pin;
b7821709
TI
2638 snd_hda_add_imux_item(imux, label, idx, NULL);
2639 break;
2640 }
2641 }
e9edcee0 2642 }
21268961
TI
2643
2644 spec->num_mux_defs = 1;
2645 spec->input_mux = imux;
2646
e9edcee0
TI
2647 return 0;
2648}
2649
f6c7e546
TI
2650static void alc_set_pin_output(struct hda_codec *codec, hda_nid_t nid,
2651 unsigned int pin_type)
2652{
2653 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
2654 pin_type);
2655 /* unmute pin */
44c02400
TI
2656 if (nid_has_mute(codec, nid, HDA_OUTPUT))
2657 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
d260cdf6 2658 AMP_OUT_UNMUTE);
f6c7e546
TI
2659}
2660
baba8ee9
TI
2661static int get_pin_type(int line_out_type)
2662{
2663 if (line_out_type == AUTO_PIN_HP_OUT)
2664 return PIN_HP;
2665 else
2666 return PIN_OUT;
2667}
2668
0a7f5320 2669static void alc_auto_init_analog_input(struct hda_codec *codec)
e9edcee0
TI
2670{
2671 struct alc_spec *spec = codec->spec;
66ceeb6b 2672 struct auto_pin_cfg *cfg = &spec->autocfg;
e9edcee0
TI
2673 int i;
2674
66ceeb6b
TI
2675 for (i = 0; i < cfg->num_inputs; i++) {
2676 hda_nid_t nid = cfg->inputs[i].pin;
05f5f477 2677 if (alc_is_input_pin(codec, nid)) {
30ea098f 2678 alc_set_input_pin(codec, nid, cfg->inputs[i].type);
1f0f4b80 2679 if (get_wcaps(codec, nid) & AC_WCAP_OUT_AMP)
f12ab1e0
TI
2680 snd_hda_codec_write(codec, nid, 0,
2681 AC_VERB_SET_AMP_GAIN_MUTE,
e9edcee0
TI
2682 AMP_OUT_MUTE);
2683 }
2684 }
1f0f4b80
TI
2685
2686 /* mute all loopback inputs */
2687 if (spec->mixer_nid) {
2688 int nums = snd_hda_get_conn_list(codec, spec->mixer_nid, NULL);
2689 for (i = 0; i < nums; i++)
2690 snd_hda_codec_write(codec, spec->mixer_nid, 0,
2691 AC_VERB_SET_AMP_GAIN_MUTE,
2692 AMP_IN_MUTE(i));
2693 }
e9edcee0
TI
2694}
2695
1d045db9
TI
2696/* convert from MIX nid to DAC */
2697static hda_nid_t alc_auto_mix_to_dac(struct hda_codec *codec, hda_nid_t nid)
e9edcee0 2698{
1d045db9
TI
2699 hda_nid_t list[5];
2700 int i, num;
4a79ba34 2701
afcd5515
TI
2702 if (get_wcaps_type(get_wcaps(codec, nid)) == AC_WID_AUD_OUT)
2703 return nid;
1d045db9
TI
2704 num = snd_hda_get_connections(codec, nid, list, ARRAY_SIZE(list));
2705 for (i = 0; i < num; i++) {
2706 if (get_wcaps_type(get_wcaps(codec, list[i])) == AC_WID_AUD_OUT)
2707 return list[i];
2708 }
2709 return 0;
e9edcee0
TI
2710}
2711
1d045db9
TI
2712/* go down to the selector widget before the mixer */
2713static hda_nid_t alc_go_down_to_selector(struct hda_codec *codec, hda_nid_t pin)
e9edcee0 2714{
1d045db9
TI
2715 hda_nid_t srcs[5];
2716 int num = snd_hda_get_connections(codec, pin, srcs,
2717 ARRAY_SIZE(srcs));
2718 if (num != 1 ||
2719 get_wcaps_type(get_wcaps(codec, srcs[0])) != AC_WID_AUD_SEL)
2720 return pin;
2721 return srcs[0];
e9edcee0
TI
2722}
2723
1d045db9
TI
2724/* get MIX nid connected to the given pin targeted to DAC */
2725static hda_nid_t alc_auto_dac_to_mix(struct hda_codec *codec, hda_nid_t pin,
2726 hda_nid_t dac)
748cce43 2727{
1d045db9
TI
2728 hda_nid_t mix[5];
2729 int i, num;
2730
2731 pin = alc_go_down_to_selector(codec, pin);
2732 num = snd_hda_get_connections(codec, pin, mix, ARRAY_SIZE(mix));
2733 for (i = 0; i < num; i++) {
2734 if (alc_auto_mix_to_dac(codec, mix[i]) == dac)
2735 return mix[i];
748cce43 2736 }
1d045db9 2737 return 0;
748cce43
TI
2738}
2739
1d045db9
TI
2740/* select the connection from pin to DAC if needed */
2741static int alc_auto_select_dac(struct hda_codec *codec, hda_nid_t pin,
2742 hda_nid_t dac)
eaa9b3a7 2743{
1d045db9
TI
2744 hda_nid_t mix[5];
2745 int i, num;
eaa9b3a7 2746
1d045db9
TI
2747 pin = alc_go_down_to_selector(codec, pin);
2748 num = snd_hda_get_connections(codec, pin, mix, ARRAY_SIZE(mix));
2749 if (num < 2)
8ed99d97 2750 return 0;
1d045db9
TI
2751 for (i = 0; i < num; i++) {
2752 if (alc_auto_mix_to_dac(codec, mix[i]) == dac) {
2753 snd_hda_codec_update_cache(codec, pin, 0,
2754 AC_VERB_SET_CONNECT_SEL, i);
2755 return 0;
2756 }
840b64c0 2757 }
1d045db9 2758 return 0;
840b64c0
TI
2759}
2760
1d045db9
TI
2761/* look for an empty DAC slot */
2762static hda_nid_t alc_auto_look_for_dac(struct hda_codec *codec, hda_nid_t pin)
584c0c4c
TI
2763{
2764 struct alc_spec *spec = codec->spec;
1d045db9
TI
2765 hda_nid_t srcs[5];
2766 int i, num;
21268961 2767
1d045db9
TI
2768 pin = alc_go_down_to_selector(codec, pin);
2769 num = snd_hda_get_connections(codec, pin, srcs, ARRAY_SIZE(srcs));
2770 for (i = 0; i < num; i++) {
2771 hda_nid_t nid = alc_auto_mix_to_dac(codec, srcs[i]);
2772 if (!nid)
2773 continue;
2774 if (found_in_nid_list(nid, spec->multiout.dac_nids,
2775 spec->multiout.num_dacs))
2776 continue;
2777 if (spec->multiout.hp_nid == nid)
2778 continue;
2779 if (found_in_nid_list(nid, spec->multiout.extra_out_nid,
2780 ARRAY_SIZE(spec->multiout.extra_out_nid)))
2781 continue;
2782 return nid;
2783 }
2784 return 0;
584c0c4c
TI
2785}
2786
1d045db9 2787static hda_nid_t get_dac_if_single(struct hda_codec *codec, hda_nid_t pin)
f9e336f6 2788{
1d045db9
TI
2789 hda_nid_t sel = alc_go_down_to_selector(codec, pin);
2790 if (snd_hda_get_conn_list(codec, sel, NULL) == 1)
2791 return alc_auto_look_for_dac(codec, pin);
2792 return 0;
f9e336f6
TI
2793}
2794
1d045db9
TI
2795/* fill in the dac_nids table from the parsed pin configuration */
2796static int alc_auto_fill_dac_nids(struct hda_codec *codec)
21268961
TI
2797{
2798 struct alc_spec *spec = codec->spec;
1d045db9
TI
2799 const struct auto_pin_cfg *cfg = &spec->autocfg;
2800 bool redone = false;
2801 int i;
21268961 2802
1d045db9
TI
2803 again:
2804 spec->multiout.num_dacs = 0;
2805 spec->multiout.hp_nid = 0;
2806 spec->multiout.extra_out_nid[0] = 0;
2807 memset(spec->private_dac_nids, 0, sizeof(spec->private_dac_nids));
2808 spec->multiout.dac_nids = spec->private_dac_nids;
21268961 2809
1d045db9
TI
2810 /* fill hard-wired DACs first */
2811 if (!redone) {
2812 for (i = 0; i < cfg->line_outs; i++)
2813 spec->private_dac_nids[i] =
2814 get_dac_if_single(codec, cfg->line_out_pins[i]);
2815 if (cfg->hp_outs)
2816 spec->multiout.hp_nid =
2817 get_dac_if_single(codec, cfg->hp_pins[0]);
2818 if (cfg->speaker_outs)
2819 spec->multiout.extra_out_nid[0] =
2820 get_dac_if_single(codec, cfg->speaker_pins[0]);
21268961
TI
2821 }
2822
1d045db9
TI
2823 for (i = 0; i < cfg->line_outs; i++) {
2824 hda_nid_t pin = cfg->line_out_pins[i];
2825 if (spec->private_dac_nids[i])
2826 continue;
2827 spec->private_dac_nids[i] = alc_auto_look_for_dac(codec, pin);
2828 if (!spec->private_dac_nids[i] && !redone) {
2829 /* if we can't find primary DACs, re-probe without
2830 * checking the hard-wired DACs
2831 */
2832 redone = true;
2833 goto again;
21268961
TI
2834 }
2835 }
2836
1d045db9
TI
2837 for (i = 0; i < cfg->line_outs; i++) {
2838 if (spec->private_dac_nids[i])
2839 spec->multiout.num_dacs++;
2840 else
2841 memmove(spec->private_dac_nids + i,
2842 spec->private_dac_nids + i + 1,
2843 sizeof(hda_nid_t) * (cfg->line_outs - i - 1));
2844 }
2845
2846 if (cfg->hp_outs && !spec->multiout.hp_nid)
2847 spec->multiout.hp_nid =
2848 alc_auto_look_for_dac(codec, cfg->hp_pins[0]);
2849 if (cfg->speaker_outs && !spec->multiout.extra_out_nid[0])
2850 spec->multiout.extra_out_nid[0] =
2851 alc_auto_look_for_dac(codec, cfg->speaker_pins[0]);
2852
2853 return 0;
21268961
TI
2854}
2855
1d045db9
TI
2856static int alc_auto_add_vol_ctl(struct hda_codec *codec,
2857 const char *pfx, int cidx,
2858 hda_nid_t nid, unsigned int chs)
6694635d 2859{
afcd5515
TI
2860 if (!nid)
2861 return 0;
1d045db9
TI
2862 return __add_pb_vol_ctrl(codec->spec, ALC_CTL_WIDGET_VOL, pfx, cidx,
2863 HDA_COMPOSE_AMP_VAL(nid, chs, 0, HDA_OUTPUT));
2864}
6694635d 2865
1d045db9
TI
2866#define alc_auto_add_stereo_vol(codec, pfx, cidx, nid) \
2867 alc_auto_add_vol_ctl(codec, pfx, cidx, nid, 3)
21268961 2868
1d045db9
TI
2869/* create a mute-switch for the given mixer widget;
2870 * if it has multiple sources (e.g. DAC and loopback), create a bind-mute
2871 */
2872static int alc_auto_add_sw_ctl(struct hda_codec *codec,
2873 const char *pfx, int cidx,
2874 hda_nid_t nid, unsigned int chs)
2875{
afcd5515 2876 int wid_type;
1d045db9
TI
2877 int type;
2878 unsigned long val;
afcd5515
TI
2879 if (!nid)
2880 return 0;
2881 wid_type = get_wcaps_type(get_wcaps(codec, nid));
2882 if (wid_type == AC_WID_PIN || wid_type == AC_WID_AUD_OUT) {
2883 type = ALC_CTL_WIDGET_MUTE;
2884 val = HDA_COMPOSE_AMP_VAL(nid, chs, 0, HDA_OUTPUT);
2885 } else if (snd_hda_get_conn_list(codec, nid, NULL) == 1) {
1d045db9
TI
2886 type = ALC_CTL_WIDGET_MUTE;
2887 val = HDA_COMPOSE_AMP_VAL(nid, chs, 0, HDA_INPUT);
2888 } else {
2889 type = ALC_CTL_BIND_MUTE;
2890 val = HDA_COMPOSE_AMP_VAL(nid, chs, 2, HDA_INPUT);
6694635d 2891 }
1d045db9 2892 return __add_pb_sw_ctrl(codec->spec, type, pfx, cidx, val);
6694635d
TI
2893}
2894
1d045db9
TI
2895#define alc_auto_add_stereo_sw(codec, pfx, cidx, nid) \
2896 alc_auto_add_sw_ctl(codec, pfx, cidx, nid, 3)
dc1eae25 2897
afcd5515
TI
2898static hda_nid_t alc_look_for_out_mute_nid(struct hda_codec *codec,
2899 hda_nid_t pin, hda_nid_t dac)
2900{
2901 hda_nid_t mix = alc_auto_dac_to_mix(codec, pin, dac);
2902 if (nid_has_mute(codec, pin, HDA_OUTPUT))
2903 return pin;
2904 else if (mix && nid_has_mute(codec, mix, HDA_INPUT))
2905 return mix;
2906 else if (nid_has_mute(codec, dac, HDA_OUTPUT))
2907 return dac;
2908 return 0;
2909}
2910
2911static hda_nid_t alc_look_for_out_vol_nid(struct hda_codec *codec,
2912 hda_nid_t pin, hda_nid_t dac)
2913{
2914 hda_nid_t mix = alc_auto_dac_to_mix(codec, pin, dac);
2915 if (nid_has_volume(codec, dac, HDA_OUTPUT))
2916 return dac;
2917 else if (nid_has_volume(codec, mix, HDA_OUTPUT))
2918 return mix;
2919 else if (nid_has_volume(codec, pin, HDA_OUTPUT))
2920 return pin;
2921 return 0;
2922}
2923
1d045db9
TI
2924/* add playback controls from the parsed DAC table */
2925static int alc_auto_create_multi_out_ctls(struct hda_codec *codec,
2926 const struct auto_pin_cfg *cfg)
dc1eae25
TI
2927{
2928 struct alc_spec *spec = codec->spec;
1d045db9 2929 int i, err, noutputs;
1f0f4b80 2930
1d045db9
TI
2931 noutputs = cfg->line_outs;
2932 if (spec->multi_ios > 0)
2933 noutputs += spec->multi_ios;
1da177e4 2934
1d045db9
TI
2935 for (i = 0; i < noutputs; i++) {
2936 const char *name;
2937 int index;
afcd5515
TI
2938 hda_nid_t dac, pin;
2939 hda_nid_t sw, vol;
2940
2941 dac = spec->multiout.dac_nids[i];
2942 if (!dac)
1d045db9
TI
2943 continue;
2944 if (i >= cfg->line_outs)
2945 pin = spec->multi_io[i - 1].pin;
2946 else
2947 pin = cfg->line_out_pins[i];
afcd5515
TI
2948
2949 sw = alc_look_for_out_mute_nid(codec, pin, dac);
2950 vol = alc_look_for_out_vol_nid(codec, pin, dac);
1d045db9
TI
2951 name = alc_get_line_out_pfx(spec, i, true, &index);
2952 if (!name) {
2953 /* Center/LFE */
afcd5515 2954 err = alc_auto_add_vol_ctl(codec, "Center", 0, vol, 1);
1d045db9
TI
2955 if (err < 0)
2956 return err;
afcd5515 2957 err = alc_auto_add_vol_ctl(codec, "LFE", 0, vol, 2);
1d045db9
TI
2958 if (err < 0)
2959 return err;
afcd5515 2960 err = alc_auto_add_sw_ctl(codec, "Center", 0, sw, 1);
1d045db9
TI
2961 if (err < 0)
2962 return err;
afcd5515 2963 err = alc_auto_add_sw_ctl(codec, "LFE", 0, sw, 2);
1d045db9
TI
2964 if (err < 0)
2965 return err;
2966 } else {
afcd5515 2967 err = alc_auto_add_stereo_vol(codec, name, index, vol);
1d045db9
TI
2968 if (err < 0)
2969 return err;
afcd5515 2970 err = alc_auto_add_stereo_sw(codec, name, index, sw);
1d045db9
TI
2971 if (err < 0)
2972 return err;
e9edcee0 2973 }
1da177e4 2974 }
1d045db9
TI
2975 return 0;
2976}
1da177e4 2977
1d045db9
TI
2978/* add playback controls for speaker and HP outputs */
2979static int alc_auto_create_extra_out(struct hda_codec *codec, hda_nid_t pin,
2980 hda_nid_t dac, const char *pfx)
2981{
2982 struct alc_spec *spec = codec->spec;
afcd5515 2983 hda_nid_t sw, vol;
1d045db9 2984 int err;
1da177e4 2985
1d045db9
TI
2986 if (!pin)
2987 return 0;
2988 if (!dac) {
2989 /* the corresponding DAC is already occupied */
2990 if (!(get_wcaps(codec, pin) & AC_WCAP_OUT_AMP))
2991 return 0; /* no way */
2992 /* create a switch only */
2993 return add_pb_sw_ctrl(spec, ALC_CTL_WIDGET_MUTE, pfx,
2994 HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_OUTPUT));
e9edcee0 2995 }
1da177e4 2996
afcd5515
TI
2997 sw = alc_look_for_out_mute_nid(codec, pin, dac);
2998 vol = alc_look_for_out_vol_nid(codec, pin, dac);
2999 err = alc_auto_add_stereo_vol(codec, pfx, 0, vol);
1d045db9
TI
3000 if (err < 0)
3001 return err;
afcd5515 3002 err = alc_auto_add_stereo_sw(codec, pfx, 0, sw);
1d045db9
TI
3003 if (err < 0)
3004 return err;
1da177e4
LT
3005 return 0;
3006}
3007
1d045db9 3008static int alc_auto_create_hp_out(struct hda_codec *codec)
bec15c3a 3009{
1d045db9
TI
3010 struct alc_spec *spec = codec->spec;
3011 return alc_auto_create_extra_out(codec, spec->autocfg.hp_pins[0],
3012 spec->multiout.hp_nid,
3013 "Headphone");
bec15c3a
TI
3014}
3015
1d045db9 3016static int alc_auto_create_speaker_out(struct hda_codec *codec)
bec15c3a 3017{
bec15c3a 3018 struct alc_spec *spec = codec->spec;
1d045db9
TI
3019 return alc_auto_create_extra_out(codec, spec->autocfg.speaker_pins[0],
3020 spec->multiout.extra_out_nid[0],
3021 "Speaker");
bec15c3a
TI
3022}
3023
1d045db9 3024static void alc_auto_set_output_and_unmute(struct hda_codec *codec,
afcd5515 3025 hda_nid_t pin, int pin_type,
1d045db9 3026 hda_nid_t dac)
bec15c3a 3027{
1d045db9 3028 int i, num;
afcd5515 3029 hda_nid_t nid, mix = 0;
1d045db9 3030 hda_nid_t srcs[HDA_MAX_CONNECTIONS];
bec15c3a 3031
afcd5515
TI
3032 alc_set_pin_output(codec, pin, pin_type);
3033 nid = alc_go_down_to_selector(codec, pin);
1d045db9
TI
3034 num = snd_hda_get_connections(codec, nid, srcs, ARRAY_SIZE(srcs));
3035 for (i = 0; i < num; i++) {
3036 if (alc_auto_mix_to_dac(codec, srcs[i]) != dac)
3037 continue;
3038 mix = srcs[i];
3039 break;
3040 }
3041 if (!mix)
3042 return;
bec15c3a 3043
1d045db9
TI
3044 /* need the manual connection? */
3045 if (num > 1)
3046 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CONNECT_SEL, i);
3047 /* unmute mixer widget inputs */
afcd5515
TI
3048 if (nid_has_mute(codec, mix, HDA_INPUT)) {
3049 snd_hda_codec_write(codec, mix, 0, AC_VERB_SET_AMP_GAIN_MUTE,
1d045db9 3050 AMP_IN_UNMUTE(0));
afcd5515 3051 snd_hda_codec_write(codec, mix, 0, AC_VERB_SET_AMP_GAIN_MUTE,
1d045db9 3052 AMP_IN_UNMUTE(1));
afcd5515 3053 }
1d045db9 3054 /* initialize volume */
afcd5515
TI
3055 nid = alc_look_for_out_vol_nid(codec, pin, dac);
3056 if (nid)
3057 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
3058 AMP_OUT_ZERO);
1d045db9 3059}
bec15c3a 3060
1d045db9 3061static void alc_auto_init_multi_out(struct hda_codec *codec)
bec15c3a
TI
3062{
3063 struct alc_spec *spec = codec->spec;
1d045db9
TI
3064 int pin_type = get_pin_type(spec->autocfg.line_out_type);
3065 int i;
bec15c3a 3066
1d045db9
TI
3067 for (i = 0; i <= HDA_SIDE; i++) {
3068 hda_nid_t nid = spec->autocfg.line_out_pins[i];
3069 if (nid)
3070 alc_auto_set_output_and_unmute(codec, nid, pin_type,
3071 spec->multiout.dac_nids[i]);
3072 }
bec15c3a
TI
3073}
3074
1d045db9 3075static void alc_auto_init_extra_out(struct hda_codec *codec)
e9427969
TI
3076{
3077 struct alc_spec *spec = codec->spec;
1d045db9 3078 hda_nid_t pin;
e9427969 3079
1d045db9
TI
3080 pin = spec->autocfg.hp_pins[0];
3081 if (pin)
3082 alc_auto_set_output_and_unmute(codec, pin, PIN_HP,
3083 spec->multiout.hp_nid);
3084 pin = spec->autocfg.speaker_pins[0];
3085 if (pin)
3086 alc_auto_set_output_and_unmute(codec, pin, PIN_OUT,
3087 spec->multiout.extra_out_nid[0]);
bc9f98a9
KY
3088}
3089
df694daa 3090/*
1d045db9 3091 * multi-io helper
df694daa 3092 */
1d045db9
TI
3093static int alc_auto_fill_multi_ios(struct hda_codec *codec,
3094 unsigned int location)
df694daa 3095{
1d045db9
TI
3096 struct alc_spec *spec = codec->spec;
3097 struct auto_pin_cfg *cfg = &spec->autocfg;
3098 int type, i, num_pins = 0;
ea1fb29a 3099
1d045db9
TI
3100 for (type = AUTO_PIN_LINE_IN; type >= AUTO_PIN_MIC; type--) {
3101 for (i = 0; i < cfg->num_inputs; i++) {
3102 hda_nid_t nid = cfg->inputs[i].pin;
3103 hda_nid_t dac;
3104 unsigned int defcfg, caps;
3105 if (cfg->inputs[i].type != type)
3106 continue;
3107 defcfg = snd_hda_codec_get_pincfg(codec, nid);
3108 if (get_defcfg_connect(defcfg) != AC_JACK_PORT_COMPLEX)
3109 continue;
3110 if (location && get_defcfg_location(defcfg) != location)
3111 continue;
3112 caps = snd_hda_query_pin_caps(codec, nid);
3113 if (!(caps & AC_PINCAP_OUT))
3114 continue;
3115 dac = alc_auto_look_for_dac(codec, nid);
3116 if (!dac)
3117 continue;
3118 spec->multi_io[num_pins].pin = nid;
3119 spec->multi_io[num_pins].dac = dac;
3120 num_pins++;
3121 spec->private_dac_nids[spec->multiout.num_dacs++] = dac;
3122 }
863b4518 3123 }
df694daa 3124 spec->multiout.num_dacs = 1;
1d045db9
TI
3125 if (num_pins < 2)
3126 return 0;
3127 return num_pins;
a361d84b
KY
3128}
3129
1d045db9
TI
3130static int alc_auto_ch_mode_info(struct snd_kcontrol *kcontrol,
3131 struct snd_ctl_elem_info *uinfo)
a361d84b 3132{
1d045db9 3133 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
a361d84b 3134 struct alc_spec *spec = codec->spec;
a361d84b 3135
1d045db9
TI
3136 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
3137 uinfo->count = 1;
3138 uinfo->value.enumerated.items = spec->multi_ios + 1;
3139 if (uinfo->value.enumerated.item > spec->multi_ios)
3140 uinfo->value.enumerated.item = spec->multi_ios;
3141 sprintf(uinfo->value.enumerated.name, "%dch",
3142 (uinfo->value.enumerated.item + 1) * 2);
3143 return 0;
3144}
a361d84b 3145
1d045db9
TI
3146static int alc_auto_ch_mode_get(struct snd_kcontrol *kcontrol,
3147 struct snd_ctl_elem_value *ucontrol)
3148{
3149 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3150 struct alc_spec *spec = codec->spec;
3151 ucontrol->value.enumerated.item[0] = (spec->ext_channel_count - 1) / 2;
3152 return 0;
3153}
a361d84b 3154
1d045db9
TI
3155static int alc_set_multi_io(struct hda_codec *codec, int idx, bool output)
3156{
3157 struct alc_spec *spec = codec->spec;
3158 hda_nid_t nid = spec->multi_io[idx].pin;
a361d84b 3159
1d045db9
TI
3160 if (!spec->multi_io[idx].ctl_in)
3161 spec->multi_io[idx].ctl_in =
3162 snd_hda_codec_read(codec, nid, 0,
3163 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
3164 if (output) {
3165 snd_hda_codec_update_cache(codec, nid, 0,
3166 AC_VERB_SET_PIN_WIDGET_CONTROL,
3167 PIN_OUT);
3168 if (get_wcaps(codec, nid) & AC_WCAP_OUT_AMP)
3169 snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
3170 HDA_AMP_MUTE, 0);
3171 alc_auto_select_dac(codec, nid, spec->multi_io[idx].dac);
3172 } else {
3173 if (get_wcaps(codec, nid) & AC_WCAP_OUT_AMP)
3174 snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
3175 HDA_AMP_MUTE, HDA_AMP_MUTE);
3176 snd_hda_codec_update_cache(codec, nid, 0,
3177 AC_VERB_SET_PIN_WIDGET_CONTROL,
3178 spec->multi_io[idx].ctl_in);
4f574b7b 3179 }
1d045db9 3180 return 0;
a361d84b
KY
3181}
3182
1d045db9
TI
3183static int alc_auto_ch_mode_put(struct snd_kcontrol *kcontrol,
3184 struct snd_ctl_elem_value *ucontrol)
a361d84b 3185{
1d045db9 3186 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
f6c7e546 3187 struct alc_spec *spec = codec->spec;
1d045db9 3188 int i, ch;
a361d84b 3189
1d045db9
TI
3190 ch = ucontrol->value.enumerated.item[0];
3191 if (ch < 0 || ch > spec->multi_ios)
3192 return -EINVAL;
3193 if (ch == (spec->ext_channel_count - 1) / 2)
3194 return 0;
3195 spec->ext_channel_count = (ch + 1) * 2;
3196 for (i = 0; i < spec->multi_ios; i++)
3197 alc_set_multi_io(codec, i, i < ch);
3198 spec->multiout.max_channels = spec->ext_channel_count;
7b1655f5
TI
3199 if (spec->need_dac_fix && !spec->const_channel_count)
3200 spec->multiout.num_dacs = spec->multiout.max_channels / 2;
1d045db9
TI
3201 return 1;
3202}
3abf2f36 3203
1d045db9
TI
3204static const struct snd_kcontrol_new alc_auto_channel_mode_enum = {
3205 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
3206 .name = "Channel Mode",
3207 .info = alc_auto_ch_mode_info,
3208 .get = alc_auto_ch_mode_get,
3209 .put = alc_auto_ch_mode_put,
a361d84b
KY
3210};
3211
1d045db9
TI
3212static int alc_auto_add_multi_channel_mode(struct hda_codec *codec,
3213 int (*fill_dac)(struct hda_codec *))
a361d84b 3214{
1d045db9
TI
3215 struct alc_spec *spec = codec->spec;
3216 struct auto_pin_cfg *cfg = &spec->autocfg;
3217 unsigned int location, defcfg;
3218 int num_pins;
a361d84b 3219
1d045db9
TI
3220 if (cfg->line_out_type == AUTO_PIN_SPEAKER_OUT && cfg->hp_outs == 1) {
3221 /* use HP as primary out */
3222 cfg->speaker_outs = cfg->line_outs;
3223 memcpy(cfg->speaker_pins, cfg->line_out_pins,
3224 sizeof(cfg->speaker_pins));
3225 cfg->line_outs = cfg->hp_outs;
3226 memcpy(cfg->line_out_pins, cfg->hp_pins, sizeof(cfg->hp_pins));
3227 cfg->hp_outs = 0;
3228 memset(cfg->hp_pins, 0, sizeof(cfg->hp_pins));
3229 cfg->line_out_type = AUTO_PIN_HP_OUT;
3230 if (fill_dac)
3231 fill_dac(codec);
3232 }
3233 if (cfg->line_outs != 1 ||
3234 cfg->line_out_type == AUTO_PIN_SPEAKER_OUT)
3235 return 0;
a361d84b 3236
1d045db9
TI
3237 defcfg = snd_hda_codec_get_pincfg(codec, cfg->line_out_pins[0]);
3238 location = get_defcfg_location(defcfg);
1f0f4b80 3239
1d045db9
TI
3240 num_pins = alc_auto_fill_multi_ios(codec, location);
3241 if (num_pins > 0) {
3242 struct snd_kcontrol_new *knew;
a361d84b 3243
1d045db9
TI
3244 knew = alc_kcontrol_new(spec);
3245 if (!knew)
3246 return -ENOMEM;
3247 *knew = alc_auto_channel_mode_enum;
3248 knew->name = kstrdup("Channel Mode", GFP_KERNEL);
3249 if (!knew->name)
3250 return -ENOMEM;
3abf2f36 3251
1d045db9
TI
3252 spec->multi_ios = num_pins;
3253 spec->ext_channel_count = 2;
3254 spec->multiout.num_dacs = num_pins + 1;
a361d84b 3255 }
1d045db9
TI
3256 return 0;
3257}
a361d84b 3258
1d045db9
TI
3259/* filter out invalid adc_nids (and capsrc_nids) that don't give all
3260 * active input pins
3261 */
3262static void alc_remove_invalid_adc_nids(struct hda_codec *codec)
3263{
3264 struct alc_spec *spec = codec->spec;
3265 const struct hda_input_mux *imux;
3266 hda_nid_t adc_nids[ARRAY_SIZE(spec->private_adc_nids)];
3267 hda_nid_t capsrc_nids[ARRAY_SIZE(spec->private_adc_nids)];
3268 int i, n, nums;
a361d84b 3269
1d045db9
TI
3270 imux = spec->input_mux;
3271 if (!imux)
3272 return;
3273 if (spec->dyn_adc_switch)
3274 return;
a361d84b 3275
1d045db9
TI
3276 nums = 0;
3277 for (n = 0; n < spec->num_adc_nids; n++) {
3278 hda_nid_t cap = spec->private_capsrc_nids[n];
3279 int num_conns = snd_hda_get_conn_list(codec, cap, NULL);
3280 for (i = 0; i < imux->num_items; i++) {
3281 hda_nid_t pin = spec->imux_pins[i];
3282 if (pin) {
3283 if (get_connection_index(codec, cap, pin) < 0)
3284 break;
3285 } else if (num_conns <= imux->items[i].index)
3286 break;
3287 }
3288 if (i >= imux->num_items) {
3289 adc_nids[nums] = spec->private_adc_nids[n];
3290 capsrc_nids[nums++] = cap;
22971e3a
TI
3291 }
3292 }
1d045db9
TI
3293 if (!nums) {
3294 /* check whether ADC-switch is possible */
3295 if (!alc_check_dyn_adc_switch(codec)) {
3296 printk(KERN_WARNING "hda_codec: %s: no valid ADC found;"
3297 " using fallback 0x%x\n",
3298 codec->chip_name, spec->private_adc_nids[0]);
3299 spec->num_adc_nids = 1;
3300 spec->auto_mic = 0;
3301 return;
22971e3a 3302 }
1d045db9
TI
3303 } else if (nums != spec->num_adc_nids) {
3304 memcpy(spec->private_adc_nids, adc_nids,
3305 nums * sizeof(hda_nid_t));
3306 memcpy(spec->private_capsrc_nids, capsrc_nids,
3307 nums * sizeof(hda_nid_t));
3308 spec->num_adc_nids = nums;
22971e3a 3309 }
aef9d318 3310
1d045db9
TI
3311 if (spec->auto_mic)
3312 alc_auto_mic_check_imux(codec); /* check auto-mic setups */
3313 else if (spec->input_mux->num_items == 1)
3314 spec->num_adc_nids = 1; /* reduce to a single ADC */
3315}
3316
3317/*
3318 * initialize ADC paths
3319 */
3320static void alc_auto_init_adc(struct hda_codec *codec, int adc_idx)
3321{
3322 struct alc_spec *spec = codec->spec;
3323 hda_nid_t nid;
3324
3325 nid = spec->adc_nids[adc_idx];
3326 /* mute ADC */
44c02400 3327 if (nid_has_mute(codec, nid, HDA_INPUT)) {
1d045db9
TI
3328 snd_hda_codec_write(codec, nid, 0,
3329 AC_VERB_SET_AMP_GAIN_MUTE,
3330 AMP_IN_MUTE(0));
3331 return;
a361d84b 3332 }
1d045db9
TI
3333 if (!spec->capsrc_nids)
3334 return;
3335 nid = spec->capsrc_nids[adc_idx];
44c02400 3336 if (nid_has_mute(codec, nid, HDA_OUTPUT))
1d045db9
TI
3337 snd_hda_codec_write(codec, nid, 0,
3338 AC_VERB_SET_AMP_GAIN_MUTE,
3339 AMP_OUT_MUTE);
3340}
2134ea4f 3341
1d045db9
TI
3342static void alc_auto_init_input_src(struct hda_codec *codec)
3343{
3344 struct alc_spec *spec = codec->spec;
3345 int c, nums;
d6cc9fab 3346
1d045db9
TI
3347 for (c = 0; c < spec->num_adc_nids; c++)
3348 alc_auto_init_adc(codec, c);
3349 if (spec->dyn_adc_switch)
3350 nums = 1;
3351 else
3352 nums = spec->num_adc_nids;
3353 for (c = 0; c < nums; c++)
3354 alc_mux_select(codec, 0, spec->cur_mux[c], true);
3355}
2134ea4f 3356
1d045db9
TI
3357/* add mic boosts if needed */
3358static int alc_auto_add_mic_boost(struct hda_codec *codec)
3359{
3360 struct alc_spec *spec = codec->spec;
3361 struct auto_pin_cfg *cfg = &spec->autocfg;
3362 int i, err;
3363 int type_idx = 0;
3364 hda_nid_t nid;
3365 const char *prev_label = NULL;
ea1fb29a 3366
1d045db9
TI
3367 for (i = 0; i < cfg->num_inputs; i++) {
3368 if (cfg->inputs[i].type > AUTO_PIN_MIC)
3369 break;
3370 nid = cfg->inputs[i].pin;
3371 if (get_wcaps(codec, nid) & AC_WCAP_IN_AMP) {
3372 const char *label;
3373 char boost_label[32];
3374
3375 label = hda_get_autocfg_input_label(codec, cfg, i);
3376 if (prev_label && !strcmp(label, prev_label))
3377 type_idx++;
3378 else
3379 type_idx = 0;
3380 prev_label = label;
bf1b0225 3381
1d045db9
TI
3382 snprintf(boost_label, sizeof(boost_label),
3383 "%s Boost Volume", label);
3384 err = add_control(spec, ALC_CTL_WIDGET_VOL,
3385 boost_label, type_idx,
3386 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_INPUT));
3387 if (err < 0)
3388 return err;
3389 }
3390 }
a361d84b
KY
3391 return 0;
3392}
3393
1d045db9
TI
3394/* select or unmute the given capsrc route */
3395static void select_or_unmute_capsrc(struct hda_codec *codec, hda_nid_t cap,
3396 int idx)
3397{
3398 if (get_wcaps_type(get_wcaps(codec, cap)) == AC_WID_AUD_MIX) {
3399 snd_hda_codec_amp_stereo(codec, cap, HDA_INPUT, idx,
3400 HDA_AMP_MUTE, 0);
3401 } else if (snd_hda_get_conn_list(codec, cap, NULL) > 1) {
3402 snd_hda_codec_write_cache(codec, cap, 0,
3403 AC_VERB_SET_CONNECT_SEL, idx);
3404 }
3405}
f6a92248 3406
1d045db9
TI
3407/* set the default connection to that pin */
3408static int init_capsrc_for_pin(struct hda_codec *codec, hda_nid_t pin)
3409{
3410 struct alc_spec *spec = codec->spec;
3411 int i;
f6a92248 3412
1d045db9
TI
3413 if (!pin)
3414 return 0;
3415 for (i = 0; i < spec->num_adc_nids; i++) {
3416 hda_nid_t cap = spec->capsrc_nids ?
3417 spec->capsrc_nids[i] : spec->adc_nids[i];
3418 int idx;
f53281e6 3419
1d045db9
TI
3420 idx = get_connection_index(codec, cap, pin);
3421 if (idx < 0)
3422 continue;
3423 select_or_unmute_capsrc(codec, cap, idx);
3424 return i; /* return the found index */
3425 }
3426 return -1; /* not found */
3427}
e01bf509 3428
1d045db9
TI
3429/* initialize some special cases for input sources */
3430static void alc_init_special_input_src(struct hda_codec *codec)
3431{
3432 struct alc_spec *spec = codec->spec;
3433 int i;
84898e87 3434
1d045db9
TI
3435 for (i = 0; i < spec->autocfg.num_inputs; i++)
3436 init_capsrc_for_pin(codec, spec->autocfg.inputs[i].pin);
3437}
84898e87 3438
1d045db9
TI
3439/* assign appropriate capture mixers */
3440static void set_capture_mixer(struct hda_codec *codec)
3441{
3442 struct alc_spec *spec = codec->spec;
3443 static const struct snd_kcontrol_new *caps[2][3] = {
3444 { alc_capture_mixer_nosrc1,
3445 alc_capture_mixer_nosrc2,
3446 alc_capture_mixer_nosrc3 },
3447 { alc_capture_mixer1,
3448 alc_capture_mixer2,
3449 alc_capture_mixer3 },
3450 };
f6a92248 3451
1d045db9 3452 /* check whether either of ADC or MUX has a volume control */
44c02400 3453 if (!nid_has_volume(codec, spec->adc_nids[0], HDA_INPUT)) {
1d045db9
TI
3454 if (!spec->capsrc_nids)
3455 return; /* no volume */
44c02400 3456 if (!nid_has_volume(codec, spec->capsrc_nids[0], HDA_OUTPUT))
1d045db9
TI
3457 return; /* no volume in capsrc, too */
3458 spec->vol_in_capsrc = 1;
3459 }
60db6b53 3460
1d045db9
TI
3461 if (spec->num_adc_nids > 0) {
3462 int mux = 0;
3463 int num_adcs = 0;
64154835 3464
1d045db9
TI
3465 if (spec->input_mux && spec->input_mux->num_items > 1)
3466 mux = 1;
3467 if (spec->auto_mic) {
3468 num_adcs = 1;
3469 mux = 0;
3470 } else if (spec->dyn_adc_switch)
3471 num_adcs = 1;
3472 if (!num_adcs) {
3473 if (spec->num_adc_nids > 3)
3474 spec->num_adc_nids = 3;
3475 else if (!spec->num_adc_nids)
3476 return;
3477 num_adcs = spec->num_adc_nids;
3478 }
3479 spec->cap_mixer = caps[mux][num_adcs - 1];
3480 }
3481}
f53281e6 3482
e4770629
TI
3483/*
3484 * standard auto-parser initializations
3485 */
3486static void alc_auto_init_std(struct hda_codec *codec)
3487{
3488 struct alc_spec *spec = codec->spec;
3489 alc_auto_init_multi_out(codec);
3490 alc_auto_init_extra_out(codec);
3491 alc_auto_init_analog_input(codec);
3492 alc_auto_init_input_src(codec);
3493 alc_auto_init_digital(codec);
3494 if (spec->unsol_event)
3495 alc_inithook(codec);
3496}
3497
1d045db9
TI
3498/*
3499 * Digital-beep handlers
3500 */
3501#ifdef CONFIG_SND_HDA_INPUT_BEEP
3502#define set_beep_amp(spec, nid, idx, dir) \
3503 ((spec)->beep_amp = HDA_COMPOSE_AMP_VAL(nid, 3, idx, dir))
84898e87 3504
1d045db9
TI
3505static const struct snd_pci_quirk beep_white_list[] = {
3506 SND_PCI_QUIRK(0x1043, 0x829f, "ASUS", 1),
3507 SND_PCI_QUIRK(0x1043, 0x83ce, "EeePC", 1),
3508 SND_PCI_QUIRK(0x1043, 0x831a, "EeePC", 1),
3509 SND_PCI_QUIRK(0x1043, 0x834a, "EeePC", 1),
3510 SND_PCI_QUIRK(0x8086, 0xd613, "Intel", 1),
3511 {}
fe3eb0a7
KY
3512};
3513
1d045db9
TI
3514static inline int has_cdefine_beep(struct hda_codec *codec)
3515{
3516 struct alc_spec *spec = codec->spec;
3517 const struct snd_pci_quirk *q;
3518 q = snd_pci_quirk_lookup(codec->bus->pci, beep_white_list);
3519 if (q)
3520 return q->value;
3521 return spec->cdefine.enable_pcbeep;
3522}
3523#else
3524#define set_beep_amp(spec, nid, idx, dir) /* NOP */
3525#define has_cdefine_beep(codec) 0
3526#endif
84898e87 3527
1d045db9
TI
3528/* parse the BIOS configuration and set up the alc_spec */
3529/* return 1 if successful, 0 if the proper config is not found,
3530 * or a negative error code
3531 */
3e6179b8
TI
3532static int alc_parse_auto_config(struct hda_codec *codec,
3533 const hda_nid_t *ignore_nids,
3534 const hda_nid_t *ssid_nids)
1d045db9
TI
3535{
3536 struct alc_spec *spec = codec->spec;
3537 int err;
26f5df26 3538
1d045db9 3539 err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
3e6179b8 3540 ignore_nids);
1d045db9
TI
3541 if (err < 0)
3542 return err;
3e6179b8
TI
3543 if (!spec->autocfg.line_outs) {
3544 if (spec->autocfg.dig_outs || spec->autocfg.dig_in_pin) {
3545 spec->multiout.max_channels = 2;
3546 spec->no_analog = 1;
3547 goto dig_only;
3548 }
1d045db9 3549 return 0; /* can't find valid BIOS pin config */
3e6179b8 3550 }
1d045db9 3551 err = alc_auto_fill_dac_nids(codec);
3e6179b8
TI
3552 if (err < 0)
3553 return err;
3554 err = alc_auto_add_multi_channel_mode(codec, alc_auto_fill_dac_nids);
1d045db9
TI
3555 if (err < 0)
3556 return err;
3557 err = alc_auto_create_multi_out_ctls(codec, &spec->autocfg);
3558 if (err < 0)
3559 return err;
3560 err = alc_auto_create_hp_out(codec);
3561 if (err < 0)
3562 return err;
3563 err = alc_auto_create_speaker_out(codec);
3564 if (err < 0)
3565 return err;
3566 err = alc_auto_create_input_ctls(codec);
3567 if (err < 0)
3568 return err;
84898e87 3569
1d045db9 3570 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
f53281e6 3571
3e6179b8 3572 dig_only:
1d045db9 3573 alc_auto_parse_digital(codec);
f6a92248 3574
3e6179b8
TI
3575 if (!spec->no_analog)
3576 alc_remove_invalid_adc_nids(codec);
3577
3578 if (ssid_nids)
3579 alc_ssid_check(codec, ssid_nids);
64154835 3580
3e6179b8
TI
3581 if (!spec->no_analog) {
3582 alc_auto_check_switches(codec);
3583 err = alc_auto_add_mic_boost(codec);
3584 if (err < 0)
3585 return err;
3586 }
f6a92248 3587
3e6179b8
TI
3588 if (spec->kctls.list)
3589 add_mixer(spec, spec->kctls.list);
f6a92248 3590
1d045db9 3591 return 1;
60db6b53 3592}
f6a92248 3593
3e6179b8
TI
3594static int alc880_parse_auto_config(struct hda_codec *codec)
3595{
3596 static const hda_nid_t alc880_ignore[] = { 0x1d, 0 };
3597 static const hda_nid_t alc880_ssids[] = { 0x15, 0x1b, 0x14, 0 };
3598 return alc_parse_auto_config(codec, alc880_ignore, alc880_ssids);
3599}
3600
1d045db9
TI
3601#ifdef CONFIG_SND_HDA_POWER_SAVE
3602static const struct hda_amp_list alc880_loopbacks[] = {
3603 { 0x0b, HDA_INPUT, 0 },
3604 { 0x0b, HDA_INPUT, 1 },
3605 { 0x0b, HDA_INPUT, 2 },
3606 { 0x0b, HDA_INPUT, 3 },
3607 { 0x0b, HDA_INPUT, 4 },
3608 { } /* end */
3609};
3610#endif
f6a92248 3611
1d045db9
TI
3612/*
3613 * board setups
3614 */
3615#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
3616#define alc_board_config \
3617 snd_hda_check_board_config
3618#define alc_board_codec_sid_config \
3619 snd_hda_check_board_codec_sid_config
3620#include "alc_quirks.c"
3621#else
3622#define alc_board_config(codec, nums, models, tbl) -1
3623#define alc_board_codec_sid_config(codec, nums, models, tbl) -1
3624#define setup_preset(codec, x) /* NOP */
3625#endif
64154835 3626
1d045db9
TI
3627/*
3628 * OK, here we have finally the patch for ALC880
3629 */
3630#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
3631#include "alc880_quirks.c"
3632#endif
4f5d1706 3633
1d045db9 3634static int patch_alc880(struct hda_codec *codec)
60db6b53 3635{
1d045db9
TI
3636 struct alc_spec *spec;
3637 int board_config;
3638 int err;
f6a92248 3639
1d045db9
TI
3640 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
3641 if (spec == NULL)
3642 return -ENOMEM;
3b8510ce 3643
1d045db9 3644 codec->spec = spec;
64154835 3645
1d045db9 3646 spec->mixer_nid = 0x0b;
7b1655f5 3647 spec->need_dac_fix = 1;
f53281e6 3648
1d045db9
TI
3649 board_config = alc_board_config(codec, ALC880_MODEL_LAST,
3650 alc880_models, alc880_cfg_tbl);
3651 if (board_config < 0) {
3652 printk(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
3653 codec->chip_name);
3654 board_config = ALC_MODEL_AUTO;
3655 }
f53281e6 3656
1d045db9
TI
3657 if (board_config == ALC_MODEL_AUTO) {
3658 /* automatic parse from the BIOS config */
3659 err = alc880_parse_auto_config(codec);
3660 if (err < 0) {
3661 alc_free(codec);
3662 return err;
3663 }
3664#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
3665 else if (!err) {
3666 printk(KERN_INFO
3667 "hda_codec: Cannot set up configuration "
3668 "from BIOS. Using 3-stack mode...\n");
3669 board_config = ALC880_3ST;
3670 }
3671#endif
3672 }
84898e87 3673
1d045db9
TI
3674 if (board_config != ALC_MODEL_AUTO)
3675 setup_preset(codec, &alc880_presets[board_config]);
fe3eb0a7 3676
3e6179b8 3677 if (!spec->no_analog && !spec->adc_nids && spec->input_mux) {
1d045db9
TI
3678 alc_auto_fill_adc_caps(codec);
3679 alc_rebuild_imux_for_auto_mic(codec);
3680 alc_remove_invalid_adc_nids(codec);
3681 }
3e6179b8
TI
3682
3683 if (!spec->no_analog && !spec->cap_mixer)
3684 set_capture_mixer(codec);
3685
3686 if (!spec->no_analog) {
3687 err = snd_hda_attach_beep_device(codec, 0x1);
3688 if (err < 0) {
3689 alc_free(codec);
3690 return err;
3691 }
3692 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
3693 }
f53281e6 3694
1d045db9 3695 spec->vmaster_nid = 0x0c;
84898e87 3696
1d045db9
TI
3697 codec->patch_ops = alc_patch_ops;
3698 if (board_config == ALC_MODEL_AUTO)
e4770629 3699 spec->init_hook = alc_auto_init_std;
1d045db9
TI
3700#ifdef CONFIG_SND_HDA_POWER_SAVE
3701 if (!spec->loopback.amplist)
3702 spec->loopback.amplist = alc880_loopbacks;
3703#endif
f53281e6 3704
1d045db9 3705 return 0;
226b1ec8
KY
3706}
3707
1d045db9 3708
60db6b53 3709/*
1d045db9 3710 * ALC260 support
60db6b53 3711 */
1d045db9 3712static int alc260_parse_auto_config(struct hda_codec *codec)
f6a92248 3713{
1d045db9 3714 static const hda_nid_t alc260_ignore[] = { 0x17, 0 };
3e6179b8
TI
3715 static const hda_nid_t alc260_ssids[] = { 0x10, 0x15, 0x0f, 0 };
3716 return alc_parse_auto_config(codec, alc260_ignore, alc260_ssids);
f6a92248
KY
3717}
3718
1d045db9
TI
3719#ifdef CONFIG_SND_HDA_POWER_SAVE
3720static const struct hda_amp_list alc260_loopbacks[] = {
3721 { 0x07, HDA_INPUT, 0 },
3722 { 0x07, HDA_INPUT, 1 },
3723 { 0x07, HDA_INPUT, 2 },
3724 { 0x07, HDA_INPUT, 3 },
3725 { 0x07, HDA_INPUT, 4 },
3726 { } /* end */
3727};
3728#endif
0ec33d1f 3729
1d045db9
TI
3730/*
3731 * Pin config fixes
3732 */
3733enum {
3734 PINFIX_HP_DC5750,
3735};
3736
3737static const struct alc_fixup alc260_fixups[] = {
3738 [PINFIX_HP_DC5750] = {
3739 .type = ALC_FIXUP_PINS,
3740 .v.pins = (const struct alc_pincfg[]) {
3741 { 0x11, 0x90130110 }, /* speaker */
3742 { }
3743 }
3744 },
3745};
3746
3747static const struct snd_pci_quirk alc260_fixup_tbl[] = {
3748 SND_PCI_QUIRK(0x103c, 0x280a, "HP dc5750", PINFIX_HP_DC5750),
3749 {}
3750};
3751
3752/*
3753 */
3754#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
3755#include "alc260_quirks.c"
3756#endif
3757
3758static int patch_alc260(struct hda_codec *codec)
977ddd6b 3759{
1d045db9
TI
3760 struct alc_spec *spec;
3761 int err, board_config;
3762
3763 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
3764 if (spec == NULL)
3765 return -ENOMEM;
3766
3767 codec->spec = spec;
3768
3769 spec->mixer_nid = 0x07;
3770
3771 board_config = alc_board_config(codec, ALC260_MODEL_LAST,
3772 alc260_models, alc260_cfg_tbl);
3773 if (board_config < 0) {
3774 snd_printd(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
3775 codec->chip_name);
3776 board_config = ALC_MODEL_AUTO;
977ddd6b 3777 }
0ec33d1f 3778
1d045db9
TI
3779 if (board_config == ALC_MODEL_AUTO) {
3780 alc_pick_fixup(codec, NULL, alc260_fixup_tbl, alc260_fixups);
3781 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
977ddd6b
KY
3782 }
3783
1d045db9
TI
3784 if (board_config == ALC_MODEL_AUTO) {
3785 /* automatic parse from the BIOS config */
3786 err = alc260_parse_auto_config(codec);
3787 if (err < 0) {
3788 alc_free(codec);
3789 return err;
3790 }
3791#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
3792 else if (!err) {
3793 printk(KERN_INFO
3794 "hda_codec: Cannot set up configuration "
3795 "from BIOS. Using base mode...\n");
3796 board_config = ALC260_BASIC;
3797 }
3798#endif
3799 }
977ddd6b 3800
1d045db9
TI
3801 if (board_config != ALC_MODEL_AUTO)
3802 setup_preset(codec, &alc260_presets[board_config]);
977ddd6b 3803
3e6179b8 3804 if (!spec->no_analog && !spec->adc_nids && spec->input_mux) {
1d045db9
TI
3805 alc_auto_fill_adc_caps(codec);
3806 alc_rebuild_imux_for_auto_mic(codec);
3807 alc_remove_invalid_adc_nids(codec);
3808 }
3e6179b8
TI
3809
3810 if (!spec->no_analog && !spec->cap_mixer)
3811 set_capture_mixer(codec);
3812
3813 if (!spec->no_analog) {
3814 err = snd_hda_attach_beep_device(codec, 0x1);
3815 if (err < 0) {
3816 alc_free(codec);
3817 return err;
3818 }
3819 set_beep_amp(spec, 0x07, 0x05, HDA_INPUT);
3820 }
977ddd6b 3821
1d045db9 3822 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
1a99d4a4 3823
1d045db9 3824 spec->vmaster_nid = 0x08;
1a99d4a4 3825
1d045db9
TI
3826 codec->patch_ops = alc_patch_ops;
3827 if (board_config == ALC_MODEL_AUTO)
8452a982 3828 spec->init_hook = alc_auto_init_std;
1d045db9
TI
3829 spec->shutup = alc_eapd_shutup;
3830#ifdef CONFIG_SND_HDA_POWER_SAVE
3831 if (!spec->loopback.amplist)
3832 spec->loopback.amplist = alc260_loopbacks;
3833#endif
6981d184 3834
1d045db9 3835 return 0;
6981d184
TI
3836}
3837
1d045db9
TI
3838
3839/*
3840 * ALC882/883/885/888/889 support
3841 *
3842 * ALC882 is almost identical with ALC880 but has cleaner and more flexible
3843 * configuration. Each pin widget can choose any input DACs and a mixer.
3844 * Each ADC is connected from a mixer of all inputs. This makes possible
3845 * 6-channel independent captures.
3846 *
3847 * In addition, an independent DAC for the multi-playback (not used in this
3848 * driver yet).
3849 */
3850#ifdef CONFIG_SND_HDA_POWER_SAVE
3851#define alc882_loopbacks alc880_loopbacks
3852#endif
3853
3854/*
3855 * Pin config fixes
3856 */
ff818c24 3857enum {
1d045db9
TI
3858 PINFIX_ABIT_AW9D_MAX,
3859 PINFIX_LENOVO_Y530,
3860 PINFIX_PB_M5210,
3861 PINFIX_ACER_ASPIRE_7736,
ff818c24
TI
3862};
3863
1d045db9
TI
3864static const struct alc_fixup alc882_fixups[] = {
3865 [PINFIX_ABIT_AW9D_MAX] = {
3866 .type = ALC_FIXUP_PINS,
3867 .v.pins = (const struct alc_pincfg[]) {
3868 { 0x15, 0x01080104 }, /* side */
3869 { 0x16, 0x01011012 }, /* rear */
3870 { 0x17, 0x01016011 }, /* clfe */
2785591a 3871 { }
145a902b
DH
3872 }
3873 },
1d045db9 3874 [PINFIX_LENOVO_Y530] = {
b5bfbc67
TI
3875 .type = ALC_FIXUP_PINS,
3876 .v.pins = (const struct alc_pincfg[]) {
1d045db9
TI
3877 { 0x15, 0x99130112 }, /* rear int speakers */
3878 { 0x16, 0x99130111 }, /* subwoofer */
ac612407
DH
3879 { }
3880 }
3881 },
1d045db9 3882 [PINFIX_PB_M5210] = {
b5bfbc67
TI
3883 .type = ALC_FIXUP_VERBS,
3884 .v.verbs = (const struct hda_verb[]) {
1d045db9 3885 { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF50 },
357f915e
KY
3886 {}
3887 }
3888 },
1d045db9
TI
3889 [PINFIX_ACER_ASPIRE_7736] = {
3890 .type = ALC_FIXUP_SKU,
3891 .v.sku = ALC_FIXUP_SKU_IGNORE,
6981d184 3892 },
ff818c24
TI
3893};
3894
1d045db9
TI
3895static const struct snd_pci_quirk alc882_fixup_tbl[] = {
3896 SND_PCI_QUIRK(0x1025, 0x0155, "Packard-Bell M5120", PINFIX_PB_M5210),
3897 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Y530", PINFIX_LENOVO_Y530),
3898 SND_PCI_QUIRK(0x147b, 0x107a, "Abit AW9D-MAX", PINFIX_ABIT_AW9D_MAX),
3899 SND_PCI_QUIRK(0x1025, 0x0296, "Acer Aspire 7736z", PINFIX_ACER_ASPIRE_7736),
ff818c24
TI
3900 {}
3901};
3902
f6a92248 3903/*
1d045db9 3904 * BIOS auto configuration
f6a92248 3905 */
1d045db9
TI
3906/* almost identical with ALC880 parser... */
3907static int alc882_parse_auto_config(struct hda_codec *codec)
3908{
1d045db9 3909 static const hda_nid_t alc882_ignore[] = { 0x1d, 0 };
3e6179b8
TI
3910 static const hda_nid_t alc882_ssids[] = { 0x15, 0x1b, 0x14, 0 };
3911 return alc_parse_auto_config(codec, alc882_ignore, alc882_ssids);
1d045db9 3912}
b896b4eb 3913
1d045db9
TI
3914/*
3915 */
3916#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
3917#include "alc882_quirks.c"
3918#endif
3919
3920static int patch_alc882(struct hda_codec *codec)
f6a92248
KY
3921{
3922 struct alc_spec *spec;
1d045db9 3923 int err, board_config;
f6a92248
KY
3924
3925 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
3926 if (spec == NULL)
3927 return -ENOMEM;
3928
3929 codec->spec = spec;
3930
1f0f4b80
TI
3931 spec->mixer_nid = 0x0b;
3932
1d045db9
TI
3933 switch (codec->vendor_id) {
3934 case 0x10ec0882:
3935 case 0x10ec0885:
3936 break;
3937 default:
3938 /* ALC883 and variants */
3939 alc_fix_pll_init(codec, 0x20, 0x0a, 10);
3940 break;
c793bec5 3941 }
977ddd6b 3942
1d045db9
TI
3943 board_config = alc_board_config(codec, ALC882_MODEL_LAST,
3944 alc882_models, alc882_cfg_tbl);
3945
3946 if (board_config < 0)
3947 board_config = alc_board_codec_sid_config(codec,
3948 ALC882_MODEL_LAST, alc882_models, alc882_ssid_cfg_tbl);
f6a92248
KY
3949
3950 if (board_config < 0) {
9a11f1aa
TI
3951 printk(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
3952 codec->chip_name);
1d045db9 3953 board_config = ALC_MODEL_AUTO;
f6a92248
KY
3954 }
3955
1d045db9
TI
3956 if (board_config == ALC_MODEL_AUTO) {
3957 alc_pick_fixup(codec, NULL, alc882_fixup_tbl, alc882_fixups);
b5bfbc67
TI
3958 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
3959 }
ff818c24 3960
1d045db9
TI
3961 alc_auto_parse_customize_define(codec);
3962
3963 if (board_config == ALC_MODEL_AUTO) {
f6a92248 3964 /* automatic parse from the BIOS config */
1d045db9 3965 err = alc882_parse_auto_config(codec);
f6a92248
KY
3966 if (err < 0) {
3967 alc_free(codec);
3968 return err;
1d045db9
TI
3969 }
3970#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
3971 else if (!err) {
f6a92248
KY
3972 printk(KERN_INFO
3973 "hda_codec: Cannot set up configuration "
3974 "from BIOS. Using base mode...\n");
1d045db9 3975 board_config = ALC882_3ST_DIG;
f6a92248 3976 }
1d045db9 3977#endif
f6a92248
KY
3978 }
3979
1d045db9
TI
3980 if (board_config != ALC_MODEL_AUTO)
3981 setup_preset(codec, &alc882_presets[board_config]);
f6a92248 3982
3e6179b8 3983 if (!spec->no_analog && !spec->adc_nids && spec->input_mux) {
d6cc9fab 3984 alc_auto_fill_adc_caps(codec);
21268961 3985 alc_rebuild_imux_for_auto_mic(codec);
d6cc9fab 3986 alc_remove_invalid_adc_nids(codec);
84898e87
KY
3987 }
3988
3e6179b8
TI
3989 if (!spec->no_analog && !spec->cap_mixer)
3990 set_capture_mixer(codec);
1d045db9 3991
3e6179b8
TI
3992 if (!spec->no_analog && has_cdefine_beep(codec)) {
3993 err = snd_hda_attach_beep_device(codec, 0x1);
3994 if (err < 0) {
3995 alc_free(codec);
3996 return err;
3997 }
1d045db9 3998 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
3e6179b8 3999 }
f6a92248 4000
b5bfbc67 4001 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
ff818c24 4002
1d045db9 4003 spec->vmaster_nid = 0x0c;
100d5eb3 4004
f6a92248 4005 codec->patch_ops = alc_patch_ops;
1d045db9 4006 if (board_config == ALC_MODEL_AUTO)
e4770629 4007 spec->init_hook = alc_auto_init_std;
bf1b0225
KY
4008
4009 alc_init_jacks(codec);
f6a92248
KY
4010#ifdef CONFIG_SND_HDA_POWER_SAVE
4011 if (!spec->loopback.amplist)
1d045db9 4012 spec->loopback.amplist = alc882_loopbacks;
f6a92248
KY
4013#endif
4014
4015 return 0;
4016}
4017
df694daa 4018
df694daa 4019/*
1d045db9 4020 * ALC262 support
df694daa 4021 */
1d045db9 4022static int alc262_parse_auto_config(struct hda_codec *codec)
df694daa 4023{
1d045db9 4024 static const hda_nid_t alc262_ignore[] = { 0x1d, 0 };
3e6179b8
TI
4025 static const hda_nid_t alc262_ssids[] = { 0x15, 0x1b, 0x14, 0 };
4026 return alc_parse_auto_config(codec, alc262_ignore, alc262_ssids);
df694daa
KY
4027}
4028
df694daa 4029/*
1d045db9 4030 * Pin config fixes
df694daa 4031 */
cfc9b06f 4032enum {
1d045db9
TI
4033 PINFIX_FSC_H270,
4034 PINFIX_HP_Z200,
cfc9b06f
TI
4035};
4036
1d045db9
TI
4037static const struct alc_fixup alc262_fixups[] = {
4038 [PINFIX_FSC_H270] = {
b5bfbc67
TI
4039 .type = ALC_FIXUP_PINS,
4040 .v.pins = (const struct alc_pincfg[]) {
1d045db9
TI
4041 { 0x14, 0x99130110 }, /* speaker */
4042 { 0x15, 0x0221142f }, /* front HP */
4043 { 0x1b, 0x0121141f }, /* rear HP */
4044 { }
4045 }
4046 },
4047 [PINFIX_HP_Z200] = {
4048 .type = ALC_FIXUP_PINS,
4049 .v.pins = (const struct alc_pincfg[]) {
4050 { 0x16, 0x99130120 }, /* internal speaker */
73413b12
TI
4051 { }
4052 }
cfc9b06f
TI
4053 },
4054};
4055
1d045db9
TI
4056static const struct snd_pci_quirk alc262_fixup_tbl[] = {
4057 SND_PCI_QUIRK(0x103c, 0x170b, "HP Z200", PINFIX_HP_Z200),
4058 SND_PCI_QUIRK(0x1734, 0x1147, "FSC Celsius H270", PINFIX_FSC_H270),
cfc9b06f
TI
4059 {}
4060};
df694daa 4061
1d045db9
TI
4062
4063#ifdef CONFIG_SND_HDA_POWER_SAVE
4064#define alc262_loopbacks alc880_loopbacks
4065#endif
4066
1d045db9
TI
4067/*
4068 */
4069#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
4070#include "alc262_quirks.c"
4071#endif
4072
4073static int patch_alc262(struct hda_codec *codec)
df694daa
KY
4074{
4075 struct alc_spec *spec;
4076 int board_config;
4077 int err;
4078
dc041e0b 4079 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
df694daa
KY
4080 if (spec == NULL)
4081 return -ENOMEM;
4082
f12ab1e0 4083 codec->spec = spec;
df694daa 4084
1d045db9
TI
4085 spec->mixer_nid = 0x0b;
4086
4087#if 0
4088 /* pshou 07/11/05 set a zero PCM sample to DAC when FIFO is
4089 * under-run
4090 */
4091 {
4092 int tmp;
4093 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_COEF_INDEX, 7);
4094 tmp = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_PROC_COEF, 0);
4095 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_COEF_INDEX, 7);
4096 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_PROC_COEF, tmp | 0x80);
4097 }
4098#endif
4099 alc_auto_parse_customize_define(codec);
1f0f4b80 4100
1d045db9
TI
4101 alc_fix_pll_init(codec, 0x20, 0x0a, 10);
4102
4103 board_config = alc_board_config(codec, ALC262_MODEL_LAST,
4104 alc262_models, alc262_cfg_tbl);
9c7f852e 4105
f5fcc13c 4106 if (board_config < 0) {
9a11f1aa
TI
4107 printk(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
4108 codec->chip_name);
1d045db9 4109 board_config = ALC_MODEL_AUTO;
df694daa
KY
4110 }
4111
1d045db9
TI
4112 if (board_config == ALC_MODEL_AUTO) {
4113 alc_pick_fixup(codec, NULL, alc262_fixup_tbl, alc262_fixups);
b5bfbc67
TI
4114 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
4115 }
cfc9b06f 4116
1d045db9 4117 if (board_config == ALC_MODEL_AUTO) {
df694daa 4118 /* automatic parse from the BIOS config */
1d045db9 4119 err = alc262_parse_auto_config(codec);
df694daa
KY
4120 if (err < 0) {
4121 alc_free(codec);
4122 return err;
1d045db9
TI
4123 }
4124#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
4125 else if (!err) {
9c7f852e
TI
4126 printk(KERN_INFO
4127 "hda_codec: Cannot set up configuration "
4128 "from BIOS. Using base mode...\n");
1d045db9 4129 board_config = ALC262_BASIC;
df694daa 4130 }
1d045db9 4131#endif
df694daa
KY
4132 }
4133
1d045db9
TI
4134 if (board_config != ALC_MODEL_AUTO)
4135 setup_preset(codec, &alc262_presets[board_config]);
df694daa 4136
3e6179b8 4137 if (!spec->no_analog && !spec->adc_nids && spec->input_mux) {
21268961
TI
4138 alc_auto_fill_adc_caps(codec);
4139 alc_rebuild_imux_for_auto_mic(codec);
4140 alc_remove_invalid_adc_nids(codec);
4141 }
3e6179b8
TI
4142
4143 if (!spec->no_analog && !spec->cap_mixer)
c7a8eb10 4144 set_capture_mixer(codec);
3e6179b8
TI
4145
4146 if (!spec->no_analog && has_cdefine_beep(codec)) {
4147 err = snd_hda_attach_beep_device(codec, 0x1);
4148 if (err < 0) {
4149 alc_free(codec);
4150 return err;
4151 }
1d045db9 4152 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
3e6179b8 4153 }
2134ea4f 4154
b5bfbc67 4155 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
7fa90e87 4156
1d045db9
TI
4157 spec->vmaster_nid = 0x0c;
4158
df694daa 4159 codec->patch_ops = alc_patch_ops;
1d045db9 4160 if (board_config == ALC_MODEL_AUTO)
e4770629 4161 spec->init_hook = alc_auto_init_std;
1d045db9
TI
4162 spec->shutup = alc_eapd_shutup;
4163
4164 alc_init_jacks(codec);
cb53c626
TI
4165#ifdef CONFIG_SND_HDA_POWER_SAVE
4166 if (!spec->loopback.amplist)
1d045db9 4167 spec->loopback.amplist = alc262_loopbacks;
cb53c626 4168#endif
ea1fb29a 4169
1da177e4
LT
4170 return 0;
4171}
4172
f32610ed 4173/*
1d045db9 4174 * ALC268
f32610ed 4175 */
1d045db9
TI
4176/* bind Beep switches of both NID 0x0f and 0x10 */
4177static const struct hda_bind_ctls alc268_bind_beep_sw = {
4178 .ops = &snd_hda_bind_sw,
4179 .values = {
4180 HDA_COMPOSE_AMP_VAL(0x0f, 3, 1, HDA_INPUT),
4181 HDA_COMPOSE_AMP_VAL(0x10, 3, 1, HDA_INPUT),
4182 0
4183 },
f32610ed
JS
4184};
4185
1d045db9
TI
4186static const struct snd_kcontrol_new alc268_beep_mixer[] = {
4187 HDA_CODEC_VOLUME("Beep Playback Volume", 0x1d, 0x0, HDA_INPUT),
4188 HDA_BIND_SW("Beep Playback Switch", &alc268_bind_beep_sw),
4189 { }
f32610ed
JS
4190};
4191
1d045db9
TI
4192/* set PCBEEP vol = 0, mute connections */
4193static const struct hda_verb alc268_beep_init_verbs[] = {
4194 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4195 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4196 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4197 { }
f32610ed
JS
4198};
4199
4200/*
4201 * BIOS auto configuration
4202 */
1d045db9 4203static int alc268_parse_auto_config(struct hda_codec *codec)
f32610ed 4204{
3e6179b8 4205 static const hda_nid_t alc268_ssids[] = { 0x15, 0x1b, 0x14, 0 };
f32610ed 4206 struct alc_spec *spec = codec->spec;
3e6179b8
TI
4207 int err = alc_parse_auto_config(codec, NULL, alc268_ssids);
4208 if (err > 0) {
4209 if (!spec->no_analog && spec->autocfg.speaker_pins[0] != 0x1d) {
4210 add_mixer(spec, alc268_beep_mixer);
4211 add_verb(spec, alc268_beep_init_verbs);
1d045db9 4212 }
1d045db9 4213 }
3e6179b8 4214 return err;
f32610ed
JS
4215}
4216
1d045db9
TI
4217/*
4218 */
4219#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
4220#include "alc268_quirks.c"
4221#endif
f8f25ba3 4222
1d045db9 4223static int patch_alc268(struct hda_codec *codec)
f32610ed
JS
4224{
4225 struct alc_spec *spec;
1d045db9
TI
4226 int board_config;
4227 int i, has_beep, err;
f32610ed
JS
4228
4229 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
4230 if (spec == NULL)
4231 return -ENOMEM;
4232
4233 codec->spec = spec;
4234
1d045db9 4235 /* ALC268 has no aa-loopback mixer */
1f0f4b80 4236
1d045db9
TI
4237 board_config = alc_board_config(codec, ALC268_MODEL_LAST,
4238 alc268_models, alc268_cfg_tbl);
f32610ed 4239
1d045db9
TI
4240 if (board_config < 0)
4241 board_config = alc_board_codec_sid_config(codec,
4242 ALC268_MODEL_LAST, alc268_models, alc268_ssid_cfg_tbl);
4243
4244 if (board_config < 0) {
9a11f1aa
TI
4245 printk(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
4246 codec->chip_name);
1d045db9 4247 board_config = ALC_MODEL_AUTO;
b5bfbc67 4248 }
f8f25ba3 4249
1d045db9 4250 if (board_config == ALC_MODEL_AUTO) {
f32610ed 4251 /* automatic parse from the BIOS config */
1d045db9 4252 err = alc268_parse_auto_config(codec);
f32610ed
JS
4253 if (err < 0) {
4254 alc_free(codec);
4255 return err;
1d045db9
TI
4256 }
4257#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
4258 else if (!err) {
f32610ed
JS
4259 printk(KERN_INFO
4260 "hda_codec: Cannot set up configuration "
4261 "from BIOS. Using base mode...\n");
1d045db9 4262 board_config = ALC268_3ST;
f32610ed 4263 }
1d045db9 4264#endif
f32610ed
JS
4265 }
4266
1d045db9
TI
4267 if (board_config != ALC_MODEL_AUTO)
4268 setup_preset(codec, &alc268_presets[board_config]);
680cd536 4269
1d045db9
TI
4270 has_beep = 0;
4271 for (i = 0; i < spec->num_mixers; i++) {
4272 if (spec->mixers[i] == alc268_beep_mixer) {
4273 has_beep = 1;
4274 break;
4275 }
4276 }
f32610ed 4277
1d045db9
TI
4278 if (has_beep) {
4279 err = snd_hda_attach_beep_device(codec, 0x1);
4280 if (err < 0) {
4281 alc_free(codec);
4282 return err;
4283 }
4284 if (!query_amp_caps(codec, 0x1d, HDA_INPUT))
4285 /* override the amp caps for beep generator */
4286 snd_hda_override_amp_caps(codec, 0x1d, HDA_INPUT,
4287 (0x0c << AC_AMPCAP_OFFSET_SHIFT) |
4288 (0x0c << AC_AMPCAP_NUM_STEPS_SHIFT) |
4289 (0x07 << AC_AMPCAP_STEP_SIZE_SHIFT) |
4290 (0 << AC_AMPCAP_MUTE_SHIFT));
2f893286
KY
4291 }
4292
1d045db9 4293 if (!spec->no_analog && !spec->adc_nids && spec->input_mux) {
d6cc9fab 4294 alc_auto_fill_adc_caps(codec);
21268961 4295 alc_rebuild_imux_for_auto_mic(codec);
d6cc9fab 4296 alc_remove_invalid_adc_nids(codec);
dd704698 4297 }
f32610ed 4298
3e6179b8 4299 if (!spec->no_analog && !spec->cap_mixer)
1d045db9 4300 set_capture_mixer(codec);
f32610ed 4301
2134ea4f
TI
4302 spec->vmaster_nid = 0x02;
4303
f32610ed 4304 codec->patch_ops = alc_patch_ops;
1d045db9 4305 if (board_config == ALC_MODEL_AUTO)
be9bc37b 4306 spec->init_hook = alc_auto_init_std;
1c716153 4307 spec->shutup = alc_eapd_shutup;
1d045db9
TI
4308
4309 alc_init_jacks(codec);
f32610ed
JS
4310
4311 return 0;
4312}
4313
bc9f98a9 4314/*
1d045db9 4315 * ALC269
bc9f98a9 4316 */
1d045db9
TI
4317#ifdef CONFIG_SND_HDA_POWER_SAVE
4318#define alc269_loopbacks alc880_loopbacks
4319#endif
e1406348 4320
1d045db9
TI
4321static const struct hda_pcm_stream alc269_44k_pcm_analog_playback = {
4322 .substreams = 1,
4323 .channels_min = 2,
4324 .channels_max = 8,
4325 .rates = SNDRV_PCM_RATE_44100, /* fixed rate */
4326 /* NID is set in alc_build_pcms */
4327 .ops = {
4328 .open = alc_playback_pcm_open,
4329 .prepare = alc_playback_pcm_prepare,
4330 .cleanup = alc_playback_pcm_cleanup
bc9f98a9
KY
4331 },
4332};
4333
1d045db9
TI
4334static const struct hda_pcm_stream alc269_44k_pcm_analog_capture = {
4335 .substreams = 1,
4336 .channels_min = 2,
4337 .channels_max = 2,
4338 .rates = SNDRV_PCM_RATE_44100, /* fixed rate */
4339 /* NID is set in alc_build_pcms */
bc9f98a9 4340};
291702f0 4341
1d045db9
TI
4342#ifdef CONFIG_SND_HDA_POWER_SAVE
4343static int alc269_mic2_for_mute_led(struct hda_codec *codec)
4344{
4345 switch (codec->subsystem_id) {
4346 case 0x103c1586:
4347 return 1;
4348 }
4349 return 0;
4350}
6dda9f4a 4351
1d045db9
TI
4352static int alc269_mic2_mute_check_ps(struct hda_codec *codec, hda_nid_t nid)
4353{
4354 /* update mute-LED according to the speaker mute state */
4355 if (nid == 0x01 || nid == 0x14) {
4356 int pinval;
4357 if (snd_hda_codec_amp_read(codec, 0x14, 0, HDA_OUTPUT, 0) &
4358 HDA_AMP_MUTE)
4359 pinval = 0x24;
4360 else
4361 pinval = 0x20;
4362 /* mic2 vref pin is used for mute LED control */
4363 snd_hda_codec_update_cache(codec, 0x19, 0,
4364 AC_VERB_SET_PIN_WIDGET_CONTROL,
4365 pinval);
4366 }
4367 return alc_check_power_status(codec, nid);
4368}
4369#endif /* CONFIG_SND_HDA_POWER_SAVE */
9541ba1d 4370
1d045db9
TI
4371/* different alc269-variants */
4372enum {
4373 ALC269_TYPE_ALC269VA,
4374 ALC269_TYPE_ALC269VB,
4375 ALC269_TYPE_ALC269VC,
bc9f98a9
KY
4376};
4377
4378/*
1d045db9 4379 * BIOS auto configuration
bc9f98a9 4380 */
1d045db9
TI
4381static int alc269_parse_auto_config(struct hda_codec *codec)
4382{
1d045db9 4383 static const hda_nid_t alc269_ignore[] = { 0x1d, 0 };
3e6179b8
TI
4384 static const hda_nid_t alc269_ssids[] = { 0, 0x1b, 0x14, 0x21 };
4385 static const hda_nid_t alc269va_ssids[] = { 0x15, 0x1b, 0x14, 0 };
4386 struct alc_spec *spec = codec->spec;
4387 const hda_nid_t *ssids = spec->codec_variant == ALC269_TYPE_ALC269VA ?
4388 alc269va_ssids : alc269_ssids;
bc9f98a9 4389
3e6179b8 4390 return alc_parse_auto_config(codec, alc269_ignore, ssids);
1d045db9 4391}
bc9f98a9 4392
1d045db9
TI
4393static void alc269_toggle_power_output(struct hda_codec *codec, int power_up)
4394{
4395 int val = alc_read_coef_idx(codec, 0x04);
4396 if (power_up)
4397 val |= 1 << 11;
4398 else
4399 val &= ~(1 << 11);
4400 alc_write_coef_idx(codec, 0x04, val);
4401}
291702f0 4402
1d045db9
TI
4403static void alc269_shutup(struct hda_codec *codec)
4404{
4405 if ((alc_read_coef_idx(codec, 0) & 0x00ff) == 0x017)
4406 alc269_toggle_power_output(codec, 0);
4407 if ((alc_read_coef_idx(codec, 0) & 0x00ff) == 0x018) {
4408 alc269_toggle_power_output(codec, 0);
4409 msleep(150);
4410 }
4411}
291702f0 4412
1d045db9
TI
4413#ifdef SND_HDA_NEEDS_RESUME
4414static int alc269_resume(struct hda_codec *codec)
4415{
4416 if ((alc_read_coef_idx(codec, 0) & 0x00ff) == 0x018) {
4417 alc269_toggle_power_output(codec, 0);
4418 msleep(150);
4419 }
8c427226 4420
1d045db9 4421 codec->patch_ops.init(codec);
f1d4e28b 4422
1d045db9
TI
4423 if ((alc_read_coef_idx(codec, 0) & 0x00ff) == 0x017) {
4424 alc269_toggle_power_output(codec, 1);
4425 msleep(200);
4426 }
f1d4e28b 4427
1d045db9
TI
4428 if ((alc_read_coef_idx(codec, 0) & 0x00ff) == 0x018)
4429 alc269_toggle_power_output(codec, 1);
f1d4e28b 4430
1d045db9
TI
4431 snd_hda_codec_resume_amp(codec);
4432 snd_hda_codec_resume_cache(codec);
4433 hda_call_check_power_status(codec, 0x01);
4434 return 0;
4435}
4436#endif /* SND_HDA_NEEDS_RESUME */
f1d4e28b 4437
1d045db9
TI
4438static void alc269_fixup_hweq(struct hda_codec *codec,
4439 const struct alc_fixup *fix, int action)
4440{
4441 int coef;
f1d4e28b 4442
1d045db9
TI
4443 if (action != ALC_FIXUP_ACT_INIT)
4444 return;
4445 coef = alc_read_coef_idx(codec, 0x1e);
4446 alc_write_coef_idx(codec, 0x1e, coef | 0x80);
4447}
f1d4e28b 4448
1d045db9
TI
4449static void alc271_fixup_dmic(struct hda_codec *codec,
4450 const struct alc_fixup *fix, int action)
4451{
4452 static const struct hda_verb verbs[] = {
4453 {0x20, AC_VERB_SET_COEF_INDEX, 0x0d},
4454 {0x20, AC_VERB_SET_PROC_COEF, 0x4000},
4455 {}
4456 };
4457 unsigned int cfg;
f1d4e28b 4458
1d045db9
TI
4459 if (strcmp(codec->chip_name, "ALC271X"))
4460 return;
4461 cfg = snd_hda_codec_get_pincfg(codec, 0x12);
4462 if (get_defcfg_connect(cfg) == AC_JACK_PORT_FIXED)
4463 snd_hda_sequence_write(codec, verbs);
4464}
f1d4e28b 4465
017f2a10
TI
4466static void alc269_fixup_pcm_44k(struct hda_codec *codec,
4467 const struct alc_fixup *fix, int action)
4468{
4469 struct alc_spec *spec = codec->spec;
4470
4471 if (action != ALC_FIXUP_ACT_PROBE)
4472 return;
4473
4474 /* Due to a hardware problem on Lenovo Ideadpad, we need to
4475 * fix the sample rate of analog I/O to 44.1kHz
4476 */
4477 spec->stream_analog_playback = &alc269_44k_pcm_analog_playback;
4478 spec->stream_analog_capture = &alc269_44k_pcm_analog_capture;
4479}
4480
1d045db9
TI
4481enum {
4482 ALC269_FIXUP_SONY_VAIO,
4483 ALC275_FIXUP_SONY_VAIO_GPIO2,
4484 ALC269_FIXUP_DELL_M101Z,
4485 ALC269_FIXUP_SKU_IGNORE,
4486 ALC269_FIXUP_ASUS_G73JW,
4487 ALC269_FIXUP_LENOVO_EAPD,
4488 ALC275_FIXUP_SONY_HWEQ,
4489 ALC271_FIXUP_DMIC,
017f2a10 4490 ALC269_FIXUP_PCM_44K,
f1d4e28b
KY
4491};
4492
1d045db9
TI
4493static const struct alc_fixup alc269_fixups[] = {
4494 [ALC269_FIXUP_SONY_VAIO] = {
4495 .type = ALC_FIXUP_VERBS,
4496 .v.verbs = (const struct hda_verb[]) {
4497 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREFGRD},
4498 {}
4499 }
f1d4e28b 4500 },
1d045db9
TI
4501 [ALC275_FIXUP_SONY_VAIO_GPIO2] = {
4502 .type = ALC_FIXUP_VERBS,
4503 .v.verbs = (const struct hda_verb[]) {
4504 {0x01, AC_VERB_SET_GPIO_MASK, 0x04},
4505 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x04},
4506 {0x01, AC_VERB_SET_GPIO_DATA, 0x00},
4507 { }
4508 },
4509 .chained = true,
4510 .chain_id = ALC269_FIXUP_SONY_VAIO
4511 },
4512 [ALC269_FIXUP_DELL_M101Z] = {
4513 .type = ALC_FIXUP_VERBS,
4514 .v.verbs = (const struct hda_verb[]) {
4515 /* Enables internal speaker */
4516 {0x20, AC_VERB_SET_COEF_INDEX, 13},
4517 {0x20, AC_VERB_SET_PROC_COEF, 0x4040},
4518 {}
4519 }
4520 },
4521 [ALC269_FIXUP_SKU_IGNORE] = {
4522 .type = ALC_FIXUP_SKU,
4523 .v.sku = ALC_FIXUP_SKU_IGNORE,
4524 },
4525 [ALC269_FIXUP_ASUS_G73JW] = {
4526 .type = ALC_FIXUP_PINS,
4527 .v.pins = (const struct alc_pincfg[]) {
4528 { 0x17, 0x99130111 }, /* subwoofer */
4529 { }
4530 }
4531 },
4532 [ALC269_FIXUP_LENOVO_EAPD] = {
4533 .type = ALC_FIXUP_VERBS,
4534 .v.verbs = (const struct hda_verb[]) {
4535 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0},
4536 {}
4537 }
4538 },
4539 [ALC275_FIXUP_SONY_HWEQ] = {
4540 .type = ALC_FIXUP_FUNC,
4541 .v.func = alc269_fixup_hweq,
4542 .chained = true,
4543 .chain_id = ALC275_FIXUP_SONY_VAIO_GPIO2
4544 },
4545 [ALC271_FIXUP_DMIC] = {
4546 .type = ALC_FIXUP_FUNC,
4547 .v.func = alc271_fixup_dmic,
f1d4e28b 4548 },
017f2a10
TI
4549 [ALC269_FIXUP_PCM_44K] = {
4550 .type = ALC_FIXUP_FUNC,
4551 .v.func = alc269_fixup_pcm_44k,
4552 },
f1d4e28b
KY
4553};
4554
1d045db9 4555static const struct snd_pci_quirk alc269_fixup_tbl[] = {
017f2a10 4556 SND_PCI_QUIRK(0x1043, 0x1a13, "Asus G73Jw", ALC269_FIXUP_ASUS_G73JW),
1d045db9
TI
4557 SND_PCI_QUIRK(0x104d, 0x9073, "Sony VAIO", ALC275_FIXUP_SONY_VAIO_GPIO2),
4558 SND_PCI_QUIRK(0x104d, 0x907b, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ),
4559 SND_PCI_QUIRK(0x104d, 0x9084, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ),
4560 SND_PCI_QUIRK_VENDOR(0x104d, "Sony VAIO", ALC269_FIXUP_SONY_VAIO),
4561 SND_PCI_QUIRK(0x1028, 0x0470, "Dell M101z", ALC269_FIXUP_DELL_M101Z),
4562 SND_PCI_QUIRK_VENDOR(0x1025, "Acer Aspire", ALC271_FIXUP_DMIC),
4563 SND_PCI_QUIRK(0x17aa, 0x20f2, "Thinkpad SL410/510", ALC269_FIXUP_SKU_IGNORE),
4564 SND_PCI_QUIRK(0x17aa, 0x215e, "Thinkpad L512", ALC269_FIXUP_SKU_IGNORE),
4565 SND_PCI_QUIRK(0x17aa, 0x21b8, "Thinkpad Edge 14", ALC269_FIXUP_SKU_IGNORE),
4566 SND_PCI_QUIRK(0x17aa, 0x21ca, "Thinkpad L412", ALC269_FIXUP_SKU_IGNORE),
4567 SND_PCI_QUIRK(0x17aa, 0x21e9, "Thinkpad Edge 15", ALC269_FIXUP_SKU_IGNORE),
017f2a10 4568 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Lenovo Ideapd", ALC269_FIXUP_PCM_44K),
1d045db9
TI
4569 SND_PCI_QUIRK(0x17aa, 0x9e54, "LENOVO NB", ALC269_FIXUP_LENOVO_EAPD),
4570 {}
6dda9f4a
KY
4571};
4572
6dda9f4a 4573
1d045db9
TI
4574static int alc269_fill_coef(struct hda_codec *codec)
4575{
4576 int val;
ebb83eeb 4577
1d045db9
TI
4578 if ((alc_read_coef_idx(codec, 0) & 0x00ff) < 0x015) {
4579 alc_write_coef_idx(codec, 0xf, 0x960b);
4580 alc_write_coef_idx(codec, 0xe, 0x8817);
4581 }
ebb83eeb 4582
1d045db9
TI
4583 if ((alc_read_coef_idx(codec, 0) & 0x00ff) == 0x016) {
4584 alc_write_coef_idx(codec, 0xf, 0x960b);
4585 alc_write_coef_idx(codec, 0xe, 0x8814);
4586 }
ebb83eeb 4587
1d045db9
TI
4588 if ((alc_read_coef_idx(codec, 0) & 0x00ff) == 0x017) {
4589 val = alc_read_coef_idx(codec, 0x04);
4590 /* Power up output pin */
4591 alc_write_coef_idx(codec, 0x04, val | (1<<11));
4592 }
ebb83eeb 4593
1d045db9
TI
4594 if ((alc_read_coef_idx(codec, 0) & 0x00ff) == 0x018) {
4595 val = alc_read_coef_idx(codec, 0xd);
4596 if ((val & 0x0c00) >> 10 != 0x1) {
4597 /* Capless ramp up clock control */
4598 alc_write_coef_idx(codec, 0xd, val | (1<<10));
4599 }
4600 val = alc_read_coef_idx(codec, 0x17);
4601 if ((val & 0x01c0) >> 6 != 0x4) {
4602 /* Class D power on reset */
4603 alc_write_coef_idx(codec, 0x17, val | (1<<7));
4604 }
4605 }
ebb83eeb 4606
1d045db9
TI
4607 val = alc_read_coef_idx(codec, 0xd); /* Class D */
4608 alc_write_coef_idx(codec, 0xd, val | (1<<14));
bc9f98a9 4609
1d045db9
TI
4610 val = alc_read_coef_idx(codec, 0x4); /* HP */
4611 alc_write_coef_idx(codec, 0x4, val | (1<<11));
6dda9f4a 4612
1d045db9
TI
4613 return 0;
4614}
a7f2371f 4615
1d045db9
TI
4616/*
4617 */
4618#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
4619#include "alc269_quirks.c"
4620#endif
bc9f98a9 4621
1d045db9
TI
4622static int patch_alc269(struct hda_codec *codec)
4623{
4624 struct alc_spec *spec;
4625 int board_config, coef;
4626 int err;
291702f0 4627
1d045db9
TI
4628 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
4629 if (spec == NULL)
4630 return -ENOMEM;
bc9f98a9 4631
1d045db9 4632 codec->spec = spec;
8c427226 4633
1d045db9 4634 spec->mixer_nid = 0x0b;
f1d4e28b 4635
1d045db9 4636 alc_auto_parse_customize_define(codec);
f1d4e28b 4637
1d045db9
TI
4638 if (codec->vendor_id == 0x10ec0269) {
4639 spec->codec_variant = ALC269_TYPE_ALC269VA;
4640 coef = alc_read_coef_idx(codec, 0);
4641 if ((coef & 0x00f0) == 0x0010) {
4642 if (codec->bus->pci->subsystem_vendor == 0x1025 &&
4643 spec->cdefine.platform_type == 1) {
4644 alc_codec_rename(codec, "ALC271X");
4645 } else if ((coef & 0xf000) == 0x2000) {
4646 alc_codec_rename(codec, "ALC259");
4647 } else if ((coef & 0xf000) == 0x3000) {
4648 alc_codec_rename(codec, "ALC258");
4649 } else if ((coef & 0xfff0) == 0x3010) {
4650 alc_codec_rename(codec, "ALC277");
4651 } else {
4652 alc_codec_rename(codec, "ALC269VB");
4653 }
4654 spec->codec_variant = ALC269_TYPE_ALC269VB;
4655 } else if ((coef & 0x00f0) == 0x0020) {
4656 if (coef == 0xa023)
4657 alc_codec_rename(codec, "ALC259");
4658 else if (coef == 0x6023)
4659 alc_codec_rename(codec, "ALC281X");
4660 else if (codec->bus->pci->subsystem_vendor == 0x17aa &&
4661 codec->bus->pci->subsystem_device == 0x21f3)
4662 alc_codec_rename(codec, "ALC3202");
4663 else
4664 alc_codec_rename(codec, "ALC269VC");
4665 spec->codec_variant = ALC269_TYPE_ALC269VC;
4666 } else
4667 alc_fix_pll_init(codec, 0x20, 0x04, 15);
4668 alc269_fill_coef(codec);
4669 }
6dda9f4a 4670
1d045db9
TI
4671 board_config = alc_board_config(codec, ALC269_MODEL_LAST,
4672 alc269_models, alc269_cfg_tbl);
6dda9f4a 4673
1d045db9
TI
4674 if (board_config < 0) {
4675 printk(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
4676 codec->chip_name);
4677 board_config = ALC_MODEL_AUTO;
4678 }
f1d4e28b 4679
1d045db9
TI
4680 if (board_config == ALC_MODEL_AUTO) {
4681 alc_pick_fixup(codec, NULL, alc269_fixup_tbl, alc269_fixups);
4682 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
4683 }
6dda9f4a 4684
1d045db9
TI
4685 if (board_config == ALC_MODEL_AUTO) {
4686 /* automatic parse from the BIOS config */
4687 err = alc269_parse_auto_config(codec);
4688 if (err < 0) {
4689 alc_free(codec);
4690 return err;
4691 }
4692#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
4693 else if (!err) {
4694 printk(KERN_INFO
4695 "hda_codec: Cannot set up configuration "
4696 "from BIOS. Using base mode...\n");
4697 board_config = ALC269_BASIC;
4698 }
4699#endif
4700 }
6dda9f4a 4701
1d045db9
TI
4702 if (board_config != ALC_MODEL_AUTO)
4703 setup_preset(codec, &alc269_presets[board_config]);
6dda9f4a 4704
3e6179b8 4705 if (!spec->no_analog && !spec->adc_nids && spec->input_mux) {
1d045db9
TI
4706 alc_auto_fill_adc_caps(codec);
4707 alc_rebuild_imux_for_auto_mic(codec);
4708 alc_remove_invalid_adc_nids(codec);
4709 }
6dda9f4a 4710
3e6179b8 4711 if (!spec->no_analog && !spec->cap_mixer)
1d045db9 4712 set_capture_mixer(codec);
3e6179b8
TI
4713
4714 if (!spec->no_analog && has_cdefine_beep(codec)) {
4715 err = snd_hda_attach_beep_device(codec, 0x1);
4716 if (err < 0) {
4717 alc_free(codec);
4718 return err;
4719 }
1d045db9 4720 set_beep_amp(spec, 0x0b, 0x04, HDA_INPUT);
3e6179b8 4721 }
f1d4e28b 4722
1d045db9 4723 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
622e84cd 4724
1d045db9 4725 spec->vmaster_nid = 0x02;
622e84cd 4726
1d045db9
TI
4727 codec->patch_ops = alc_patch_ops;
4728#ifdef SND_HDA_NEEDS_RESUME
4729 codec->patch_ops.resume = alc269_resume;
4730#endif
4731 if (board_config == ALC_MODEL_AUTO)
be9bc37b 4732 spec->init_hook = alc_auto_init_std;
1d045db9 4733 spec->shutup = alc269_shutup;
ebb83eeb 4734
1d045db9
TI
4735 alc_init_jacks(codec);
4736#ifdef CONFIG_SND_HDA_POWER_SAVE
4737 if (!spec->loopback.amplist)
4738 spec->loopback.amplist = alc269_loopbacks;
4739 if (alc269_mic2_for_mute_led(codec))
4740 codec->patch_ops.check_power_status = alc269_mic2_mute_check_ps;
4741#endif
ebb83eeb 4742
1d045db9
TI
4743 return 0;
4744}
f1d4e28b 4745
1d045db9
TI
4746/*
4747 * ALC861
4748 */
622e84cd 4749
1d045db9 4750static int alc861_parse_auto_config(struct hda_codec *codec)
6dda9f4a 4751{
1d045db9 4752 static const hda_nid_t alc861_ignore[] = { 0x1d, 0 };
3e6179b8
TI
4753 static const hda_nid_t alc861_ssids[] = { 0x0e, 0x0f, 0x0b, 0 };
4754 return alc_parse_auto_config(codec, alc861_ignore, alc861_ssids);
604401a9
TI
4755}
4756
1d045db9
TI
4757#ifdef CONFIG_SND_HDA_POWER_SAVE
4758static const struct hda_amp_list alc861_loopbacks[] = {
4759 { 0x15, HDA_INPUT, 0 },
4760 { 0x15, HDA_INPUT, 1 },
4761 { 0x15, HDA_INPUT, 2 },
4762 { 0x15, HDA_INPUT, 3 },
4763 { } /* end */
4764};
4765#endif
ce764ab2 4766
ce764ab2 4767
1d045db9
TI
4768/* Pin config fixes */
4769enum {
4770 PINFIX_FSC_AMILO_PI1505,
4771};
7085ec12 4772
1d045db9
TI
4773static const struct alc_fixup alc861_fixups[] = {
4774 [PINFIX_FSC_AMILO_PI1505] = {
4775 .type = ALC_FIXUP_PINS,
4776 .v.pins = (const struct alc_pincfg[]) {
4777 { 0x0b, 0x0221101f }, /* HP */
4778 { 0x0f, 0x90170310 }, /* speaker */
4779 { }
4780 }
4781 },
4782};
7085ec12 4783
1d045db9
TI
4784static const struct snd_pci_quirk alc861_fixup_tbl[] = {
4785 SND_PCI_QUIRK(0x1734, 0x10c7, "FSC Amilo Pi1505", PINFIX_FSC_AMILO_PI1505),
4786 {}
4787};
3af9ee6b 4788
1d045db9
TI
4789/*
4790 */
4791#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
4792#include "alc861_quirks.c"
4793#endif
4794
4795static int patch_alc861(struct hda_codec *codec)
7085ec12 4796{
1d045db9
TI
4797 struct alc_spec *spec;
4798 int board_config;
4799 int err;
7085ec12 4800
1d045db9
TI
4801 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
4802 if (spec == NULL)
4803 return -ENOMEM;
3af9ee6b 4804
1d045db9
TI
4805 codec->spec = spec;
4806
4807 spec->mixer_nid = 0x15;
4808
4809 board_config = alc_board_config(codec, ALC861_MODEL_LAST,
4810 alc861_models, alc861_cfg_tbl);
4811
4812 if (board_config < 0) {
4813 printk(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
4814 codec->chip_name);
4815 board_config = ALC_MODEL_AUTO;
3af9ee6b
TI
4816 }
4817
1d045db9
TI
4818 if (board_config == ALC_MODEL_AUTO) {
4819 alc_pick_fixup(codec, NULL, alc861_fixup_tbl, alc861_fixups);
4820 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
4821 }
4822
4823 if (board_config == ALC_MODEL_AUTO) {
4824 /* automatic parse from the BIOS config */
4825 err = alc861_parse_auto_config(codec);
4826 if (err < 0) {
4827 alc_free(codec);
4828 return err;
4829 }
4830#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
4831 else if (!err) {
4832 printk(KERN_INFO
4833 "hda_codec: Cannot set up configuration "
4834 "from BIOS. Using base mode...\n");
4835 board_config = ALC861_3ST_DIG;
3af9ee6b 4836 }
1d045db9 4837#endif
3af9ee6b
TI
4838 }
4839
1d045db9
TI
4840 if (board_config != ALC_MODEL_AUTO)
4841 setup_preset(codec, &alc861_presets[board_config]);
bb8bf4d4 4842
3e6179b8 4843 if (!spec->no_analog && !spec->adc_nids && spec->input_mux) {
1d045db9
TI
4844 alc_auto_fill_adc_caps(codec);
4845 alc_rebuild_imux_for_auto_mic(codec);
4846 alc_remove_invalid_adc_nids(codec);
4847 }
7085ec12 4848
3e6179b8 4849 if (!spec->no_analog && !spec->cap_mixer)
1d045db9 4850 set_capture_mixer(codec);
3e6179b8
TI
4851
4852 if (!spec->no_analog) {
4853 err = snd_hda_attach_beep_device(codec, 0x23);
4854 if (err < 0) {
4855 alc_free(codec);
4856 return err;
4857 }
4858 set_beep_amp(spec, 0x23, 0, HDA_OUTPUT);
4859 }
7085ec12 4860
1d045db9 4861 spec->vmaster_nid = 0x03;
97aaab7b 4862
1d045db9
TI
4863 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
4864
4865 codec->patch_ops = alc_patch_ops;
4866 if (board_config == ALC_MODEL_AUTO) {
72dcd8e7 4867 spec->init_hook = alc_auto_init_std;
1d045db9
TI
4868#ifdef CONFIG_SND_HDA_POWER_SAVE
4869 spec->power_hook = alc_power_eapd;
4870#endif
97aaab7b 4871 }
1d045db9
TI
4872#ifdef CONFIG_SND_HDA_POWER_SAVE
4873 if (!spec->loopback.amplist)
4874 spec->loopback.amplist = alc861_loopbacks;
4875#endif
4876
4877 return 0;
7085ec12
TI
4878}
4879
1d045db9
TI
4880/*
4881 * ALC861-VD support
4882 *
4883 * Based on ALC882
4884 *
4885 * In addition, an independent DAC
4886 */
4887#ifdef CONFIG_SND_HDA_POWER_SAVE
4888#define alc861vd_loopbacks alc880_loopbacks
4889#endif
4890
1d045db9 4891static int alc861vd_parse_auto_config(struct hda_codec *codec)
bc9f98a9 4892{
1d045db9 4893 static const hda_nid_t alc861vd_ignore[] = { 0x1d, 0 };
3e6179b8
TI
4894 static const hda_nid_t alc861vd_ssids[] = { 0x15, 0x1b, 0x14, 0 };
4895 return alc_parse_auto_config(codec, alc861vd_ignore, alc861vd_ssids);
ce764ab2
TI
4896}
4897
1d045db9
TI
4898enum {
4899 ALC660VD_FIX_ASUS_GPIO1
4900};
ce764ab2 4901
1d045db9
TI
4902/* reset GPIO1 */
4903static const struct alc_fixup alc861vd_fixups[] = {
4904 [ALC660VD_FIX_ASUS_GPIO1] = {
4905 .type = ALC_FIXUP_VERBS,
4906 .v.verbs = (const struct hda_verb[]) {
4907 {0x01, AC_VERB_SET_GPIO_MASK, 0x03},
4908 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
4909 {0x01, AC_VERB_SET_GPIO_DATA, 0x01},
4910 { }
4911 }
4912 },
4913};
ce764ab2 4914
1d045db9
TI
4915static const struct snd_pci_quirk alc861vd_fixup_tbl[] = {
4916 SND_PCI_QUIRK(0x1043, 0x1339, "ASUS A7-K", ALC660VD_FIX_ASUS_GPIO1),
4917 {}
4918};
ce764ab2 4919
1d045db9
TI
4920static const struct hda_verb alc660vd_eapd_verbs[] = {
4921 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 2},
4922 {0x15, AC_VERB_SET_EAPD_BTLENABLE, 2},
4923 { }
ce764ab2
TI
4924};
4925
1d045db9
TI
4926/*
4927 */
4928#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
4929#include "alc861vd_quirks.c"
4930#endif
4931
4932static int patch_alc861vd(struct hda_codec *codec)
ce764ab2 4933{
1d045db9
TI
4934 struct alc_spec *spec;
4935 int err, board_config;
ce764ab2 4936
1d045db9
TI
4937 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
4938 if (spec == NULL)
4939 return -ENOMEM;
4940
4941 codec->spec = spec;
4942
4943 spec->mixer_nid = 0x0b;
4944
4945 board_config = alc_board_config(codec, ALC861VD_MODEL_LAST,
4946 alc861vd_models, alc861vd_cfg_tbl);
4947
4948 if (board_config < 0) {
4949 printk(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
4950 codec->chip_name);
4951 board_config = ALC_MODEL_AUTO;
3fccdfd8 4952 }
ce764ab2 4953
1d045db9
TI
4954 if (board_config == ALC_MODEL_AUTO) {
4955 alc_pick_fixup(codec, NULL, alc861vd_fixup_tbl, alc861vd_fixups);
4956 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
4957 }
ce764ab2 4958
1d045db9
TI
4959 if (board_config == ALC_MODEL_AUTO) {
4960 /* automatic parse from the BIOS config */
4961 err = alc861vd_parse_auto_config(codec);
4962 if (err < 0) {
4963 alc_free(codec);
4964 return err;
4965 }
4966#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
4967 else if (!err) {
4968 printk(KERN_INFO
4969 "hda_codec: Cannot set up configuration "
4970 "from BIOS. Using base mode...\n");
4971 board_config = ALC861VD_3ST;
4972 }
4973#endif
4974 }
ce764ab2 4975
1d045db9
TI
4976 if (board_config != ALC_MODEL_AUTO)
4977 setup_preset(codec, &alc861vd_presets[board_config]);
4978
4979 if (codec->vendor_id == 0x10ec0660) {
4980 /* always turn on EAPD */
4981 add_verb(spec, alc660vd_eapd_verbs);
4982 }
4983
3e6179b8 4984 if (!spec->no_analog && !spec->adc_nids && spec->input_mux) {
1d045db9
TI
4985 alc_auto_fill_adc_caps(codec);
4986 alc_rebuild_imux_for_auto_mic(codec);
4987 alc_remove_invalid_adc_nids(codec);
ce764ab2 4988 }
1d045db9 4989
3e6179b8
TI
4990 if (!spec->no_analog && !spec->cap_mixer)
4991 set_capture_mixer(codec);
4992
4993 if (!spec->no_analog) {
4994 err = snd_hda_attach_beep_device(codec, 0x23);
4995 if (err < 0) {
4996 alc_free(codec);
4997 return err;
4998 }
4999 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
5000 }
1d045db9
TI
5001
5002 spec->vmaster_nid = 0x02;
5003
5004 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
5005
5006 codec->patch_ops = alc_patch_ops;
5007
5008 if (board_config == ALC_MODEL_AUTO)
e4770629 5009 spec->init_hook = alc_auto_init_std;
1d045db9
TI
5010 spec->shutup = alc_eapd_shutup;
5011#ifdef CONFIG_SND_HDA_POWER_SAVE
5012 if (!spec->loopback.amplist)
5013 spec->loopback.amplist = alc861vd_loopbacks;
5014#endif
5015
ce764ab2
TI
5016 return 0;
5017}
5018
1d045db9
TI
5019/*
5020 * ALC662 support
5021 *
5022 * ALC662 is almost identical with ALC880 but has cleaner and more flexible
5023 * configuration. Each pin widget can choose any input DACs and a mixer.
5024 * Each ADC is connected from a mixer of all inputs. This makes possible
5025 * 6-channel independent captures.
5026 *
5027 * In addition, an independent DAC for the multi-playback (not used in this
5028 * driver yet).
5029 */
5030#ifdef CONFIG_SND_HDA_POWER_SAVE
5031#define alc662_loopbacks alc880_loopbacks
5032#endif
5033
5034/*
5035 * BIOS auto configuration
5036 */
5037
bc9f98a9
KY
5038static int alc662_parse_auto_config(struct hda_codec *codec)
5039{
4c6d72d1 5040 static const hda_nid_t alc662_ignore[] = { 0x1d, 0 };
3e6179b8
TI
5041 static const hda_nid_t alc663_ssids[] = { 0x15, 0x1b, 0x14, 0x21 };
5042 static const hda_nid_t alc662_ssids[] = { 0x15, 0x1b, 0x14, 0 };
5043 const hda_nid_t *ssids;
ee979a14 5044
6227cdce
KY
5045 if (codec->vendor_id == 0x10ec0272 || codec->vendor_id == 0x10ec0663 ||
5046 codec->vendor_id == 0x10ec0665 || codec->vendor_id == 0x10ec0670)
3e6179b8 5047 ssids = alc663_ssids;
6227cdce 5048 else
3e6179b8
TI
5049 ssids = alc662_ssids;
5050 return alc_parse_auto_config(codec, alc662_ignore, ssids);
bc9f98a9
KY
5051}
5052
6be7948f 5053static void alc272_fixup_mario(struct hda_codec *codec,
b5bfbc67 5054 const struct alc_fixup *fix, int action)
6fc398cb 5055{
b5bfbc67 5056 if (action != ALC_FIXUP_ACT_PROBE)
6fc398cb 5057 return;
6be7948f
TB
5058 if (snd_hda_override_amp_caps(codec, 0x2, HDA_OUTPUT,
5059 (0x3b << AC_AMPCAP_OFFSET_SHIFT) |
5060 (0x3b << AC_AMPCAP_NUM_STEPS_SHIFT) |
5061 (0x03 << AC_AMPCAP_STEP_SIZE_SHIFT) |
5062 (0 << AC_AMPCAP_MUTE_SHIFT)))
5063 printk(KERN_WARNING
5064 "hda_codec: failed to override amp caps for NID 0x2\n");
5065}
5066
6cb3b707 5067enum {
2df03514 5068 ALC662_FIXUP_ASPIRE,
6cb3b707 5069 ALC662_FIXUP_IDEAPAD,
6be7948f 5070 ALC272_FIXUP_MARIO,
d2ebd479 5071 ALC662_FIXUP_CZC_P10T,
94024cd1 5072 ALC662_FIXUP_SKU_IGNORE,
e59ea3ed 5073 ALC662_FIXUP_HP_RP5800,
6cb3b707
DH
5074};
5075
5076static const struct alc_fixup alc662_fixups[] = {
2df03514 5077 [ALC662_FIXUP_ASPIRE] = {
b5bfbc67
TI
5078 .type = ALC_FIXUP_PINS,
5079 .v.pins = (const struct alc_pincfg[]) {
2df03514
DC
5080 { 0x15, 0x99130112 }, /* subwoofer */
5081 { }
5082 }
5083 },
6cb3b707 5084 [ALC662_FIXUP_IDEAPAD] = {
b5bfbc67
TI
5085 .type = ALC_FIXUP_PINS,
5086 .v.pins = (const struct alc_pincfg[]) {
6cb3b707
DH
5087 { 0x17, 0x99130112 }, /* subwoofer */
5088 { }
5089 }
5090 },
6be7948f 5091 [ALC272_FIXUP_MARIO] = {
b5bfbc67
TI
5092 .type = ALC_FIXUP_FUNC,
5093 .v.func = alc272_fixup_mario,
d2ebd479
AA
5094 },
5095 [ALC662_FIXUP_CZC_P10T] = {
5096 .type = ALC_FIXUP_VERBS,
5097 .v.verbs = (const struct hda_verb[]) {
5098 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0},
5099 {}
5100 }
5101 },
94024cd1
DH
5102 [ALC662_FIXUP_SKU_IGNORE] = {
5103 .type = ALC_FIXUP_SKU,
5104 .v.sku = ALC_FIXUP_SKU_IGNORE,
c6b35874 5105 },
e59ea3ed
TI
5106 [ALC662_FIXUP_HP_RP5800] = {
5107 .type = ALC_FIXUP_PINS,
5108 .v.pins = (const struct alc_pincfg[]) {
5109 { 0x14, 0x0221201f }, /* HP out */
5110 { }
5111 },
5112 .chained = true,
5113 .chain_id = ALC662_FIXUP_SKU_IGNORE
5114 },
6cb3b707
DH
5115};
5116
a9111321 5117static const struct snd_pci_quirk alc662_fixup_tbl[] = {
a6c47a85 5118 SND_PCI_QUIRK(0x1025, 0x0308, "Acer Aspire 8942G", ALC662_FIXUP_ASPIRE),
94024cd1 5119 SND_PCI_QUIRK(0x1025, 0x031c, "Gateway NV79", ALC662_FIXUP_SKU_IGNORE),
2df03514 5120 SND_PCI_QUIRK(0x1025, 0x038b, "Acer Aspire 8943G", ALC662_FIXUP_ASPIRE),
e59ea3ed 5121 SND_PCI_QUIRK(0x103c, 0x1632, "HP RP5800", ALC662_FIXUP_HP_RP5800),
a0e90acc 5122 SND_PCI_QUIRK(0x144d, 0xc051, "Samsung R720", ALC662_FIXUP_IDEAPAD),
d4118588 5123 SND_PCI_QUIRK(0x17aa, 0x38af, "Lenovo Ideapad Y550P", ALC662_FIXUP_IDEAPAD),
6cb3b707 5124 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Ideapad Y550", ALC662_FIXUP_IDEAPAD),
d2ebd479 5125 SND_PCI_QUIRK(0x1b35, 0x2206, "CZC P10T", ALC662_FIXUP_CZC_P10T),
6cb3b707
DH
5126 {}
5127};
5128
6be7948f
TB
5129static const struct alc_model_fixup alc662_fixup_models[] = {
5130 {.id = ALC272_FIXUP_MARIO, .name = "mario"},
5131 {}
5132};
6cb3b707
DH
5133
5134
1d045db9
TI
5135/*
5136 */
5137#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
5138#include "alc662_quirks.c"
5139#endif
5140
bc9f98a9
KY
5141static int patch_alc662(struct hda_codec *codec)
5142{
5143 struct alc_spec *spec;
5144 int err, board_config;
693194f3 5145 int coef;
bc9f98a9
KY
5146
5147 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
5148 if (!spec)
5149 return -ENOMEM;
5150
5151 codec->spec = spec;
5152
1f0f4b80
TI
5153 spec->mixer_nid = 0x0b;
5154
da00c244
KY
5155 alc_auto_parse_customize_define(codec);
5156
2c3bf9ab
TI
5157 alc_fix_pll_init(codec, 0x20, 0x04, 15);
5158
693194f3
KY
5159 coef = alc_read_coef_idx(codec, 0);
5160 if (coef == 0x8020 || coef == 0x8011)
c027ddcd 5161 alc_codec_rename(codec, "ALC661");
693194f3
KY
5162 else if (coef & (1 << 14) &&
5163 codec->bus->pci->subsystem_vendor == 0x1025 &&
5164 spec->cdefine.platform_type == 1)
c027ddcd 5165 alc_codec_rename(codec, "ALC272X");
693194f3
KY
5166 else if (coef == 0x4011)
5167 alc_codec_rename(codec, "ALC656");
274693f3 5168
1d045db9
TI
5169 board_config = alc_board_config(codec, ALC662_MODEL_LAST,
5170 alc662_models, alc662_cfg_tbl);
bc9f98a9 5171 if (board_config < 0) {
9a11f1aa
TI
5172 printk(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
5173 codec->chip_name);
1d045db9 5174 board_config = ALC_MODEL_AUTO;
bc9f98a9
KY
5175 }
5176
1d045db9 5177 if (board_config == ALC_MODEL_AUTO) {
b5bfbc67
TI
5178 alc_pick_fixup(codec, alc662_fixup_models,
5179 alc662_fixup_tbl, alc662_fixups);
5180 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
bc9f98a9
KY
5181 /* automatic parse from the BIOS config */
5182 err = alc662_parse_auto_config(codec);
5183 if (err < 0) {
5184 alc_free(codec);
5185 return err;
1d045db9
TI
5186 }
5187#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
5188 else if (!err) {
bc9f98a9
KY
5189 printk(KERN_INFO
5190 "hda_codec: Cannot set up configuration "
5191 "from BIOS. Using base mode...\n");
5192 board_config = ALC662_3ST_2ch_DIG;
5193 }
1d045db9 5194#endif
bc9f98a9
KY
5195 }
5196
1d045db9 5197 if (board_config != ALC_MODEL_AUTO)
e9c364c0 5198 setup_preset(codec, &alc662_presets[board_config]);
bc9f98a9 5199
3e6179b8 5200 if (!spec->no_analog && !spec->adc_nids && spec->input_mux) {
d6cc9fab 5201 alc_auto_fill_adc_caps(codec);
21268961 5202 alc_rebuild_imux_for_auto_mic(codec);
d6cc9fab 5203 alc_remove_invalid_adc_nids(codec);
dd704698 5204 }
bc9f98a9 5205
3e6179b8 5206 if (!spec->no_analog && !spec->cap_mixer)
b59bdf3b 5207 set_capture_mixer(codec);
cec27c89 5208
3e6179b8
TI
5209 if (!spec->no_analog && has_cdefine_beep(codec)) {
5210 err = snd_hda_attach_beep_device(codec, 0x1);
5211 if (err < 0) {
5212 alc_free(codec);
5213 return err;
5214 }
da00c244
KY
5215 switch (codec->vendor_id) {
5216 case 0x10ec0662:
5217 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
5218 break;
5219 case 0x10ec0272:
5220 case 0x10ec0663:
5221 case 0x10ec0665:
5222 set_beep_amp(spec, 0x0b, 0x04, HDA_INPUT);
5223 break;
5224 case 0x10ec0273:
5225 set_beep_amp(spec, 0x0b, 0x03, HDA_INPUT);
5226 break;
5227 }
cec27c89 5228 }
2134ea4f
TI
5229 spec->vmaster_nid = 0x02;
5230
b5bfbc67
TI
5231 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
5232
bc9f98a9 5233 codec->patch_ops = alc_patch_ops;
1d045db9 5234 if (board_config == ALC_MODEL_AUTO)
e4770629 5235 spec->init_hook = alc_auto_init_std;
1c716153 5236 spec->shutup = alc_eapd_shutup;
6cb3b707 5237
bf1b0225
KY
5238 alc_init_jacks(codec);
5239
cb53c626
TI
5240#ifdef CONFIG_SND_HDA_POWER_SAVE
5241 if (!spec->loopback.amplist)
5242 spec->loopback.amplist = alc662_loopbacks;
5243#endif
bc9f98a9
KY
5244
5245 return 0;
5246}
5247
274693f3
KY
5248static int patch_alc888(struct hda_codec *codec)
5249{
5250 if ((alc_read_coef_idx(codec, 0) & 0x00f0)==0x0030){
5251 kfree(codec->chip_name);
01e0f137
KY
5252 if (codec->vendor_id == 0x10ec0887)
5253 codec->chip_name = kstrdup("ALC887-VD", GFP_KERNEL);
5254 else
5255 codec->chip_name = kstrdup("ALC888-VD", GFP_KERNEL);
ac2c92e0
TI
5256 if (!codec->chip_name) {
5257 alc_free(codec);
274693f3 5258 return -ENOMEM;
ac2c92e0
TI
5259 }
5260 return patch_alc662(codec);
274693f3 5261 }
ac2c92e0 5262 return patch_alc882(codec);
274693f3
KY
5263}
5264
b478b998
KY
5265static int patch_alc899(struct hda_codec *codec)
5266{
5267 if ((alc_read_coef_idx(codec, 0) & 0x2000) != 0x2000) {
5268 kfree(codec->chip_name);
5269 codec->chip_name = kstrdup("ALC898", GFP_KERNEL);
5270 }
5271 return patch_alc882(codec);
5272}
5273
d1eb57f4
KY
5274/*
5275 * ALC680 support
5276 */
d1eb57f4 5277
d1eb57f4
KY
5278static int alc680_parse_auto_config(struct hda_codec *codec)
5279{
3e6179b8 5280 return alc_parse_auto_config(codec, NULL, NULL);
d1eb57f4
KY
5281}
5282
d1eb57f4 5283/*
d1eb57f4 5284 */
1d045db9
TI
5285#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
5286#include "alc680_quirks.c"
5287#endif
d1eb57f4
KY
5288
5289static int patch_alc680(struct hda_codec *codec)
5290{
5291 struct alc_spec *spec;
5292 int board_config;
5293 int err;
5294
5295 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
5296 if (spec == NULL)
5297 return -ENOMEM;
5298
5299 codec->spec = spec;
5300
1f0f4b80
TI
5301 /* ALC680 has no aa-loopback mixer */
5302
1d045db9
TI
5303 board_config = alc_board_config(codec, ALC680_MODEL_LAST,
5304 alc680_models, alc680_cfg_tbl);
d1eb57f4 5305
1d045db9 5306 if (board_config < 0) {
d1eb57f4
KY
5307 printk(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
5308 codec->chip_name);
1d045db9 5309 board_config = ALC_MODEL_AUTO;
d1eb57f4
KY
5310 }
5311
1d045db9 5312 if (board_config == ALC_MODEL_AUTO) {
d1eb57f4
KY
5313 /* automatic parse from the BIOS config */
5314 err = alc680_parse_auto_config(codec);
5315 if (err < 0) {
5316 alc_free(codec);
5317 return err;
1d045db9
TI
5318 }
5319#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
5320 else if (!err) {
d1eb57f4
KY
5321 printk(KERN_INFO
5322 "hda_codec: Cannot set up configuration "
5323 "from BIOS. Using base mode...\n");
5324 board_config = ALC680_BASE;
5325 }
1d045db9 5326#endif
d1eb57f4
KY
5327 }
5328
1d045db9 5329 if (board_config != ALC_MODEL_AUTO) {
d1eb57f4 5330 setup_preset(codec, &alc680_presets[board_config]);
1d045db9 5331#ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
21268961 5332 spec->stream_analog_capture = &alc680_pcm_analog_auto_capture;
1d045db9 5333#endif
21268961 5334 }
d1eb57f4 5335
3e6179b8 5336 if (!spec->no_analog && !spec->adc_nids && spec->input_mux) {
d6cc9fab 5337 alc_auto_fill_adc_caps(codec);
21268961 5338 alc_rebuild_imux_for_auto_mic(codec);
d6cc9fab 5339 alc_remove_invalid_adc_nids(codec);
d1eb57f4
KY
5340 }
5341
3e6179b8 5342 if (!spec->no_analog && !spec->cap_mixer)
d1eb57f4
KY
5343 set_capture_mixer(codec);
5344
5345 spec->vmaster_nid = 0x02;
5346
5347 codec->patch_ops = alc_patch_ops;
1d045db9 5348 if (board_config == ALC_MODEL_AUTO)
e4770629 5349 spec->init_hook = alc_auto_init_std;
d1eb57f4
KY
5350
5351 return 0;
5352}
5353
1da177e4
LT
5354/*
5355 * patch entries
5356 */
a9111321 5357static const struct hda_codec_preset snd_hda_preset_realtek[] = {
296f0338 5358 { .id = 0x10ec0221, .name = "ALC221", .patch = patch_alc269 },
1da177e4 5359 { .id = 0x10ec0260, .name = "ALC260", .patch = patch_alc260 },
df694daa 5360 { .id = 0x10ec0262, .name = "ALC262", .patch = patch_alc262 },
f6a92248 5361 { .id = 0x10ec0267, .name = "ALC267", .patch = patch_alc268 },
a361d84b 5362 { .id = 0x10ec0268, .name = "ALC268", .patch = patch_alc268 },
f6a92248 5363 { .id = 0x10ec0269, .name = "ALC269", .patch = patch_alc269 },
ebb83eeb 5364 { .id = 0x10ec0270, .name = "ALC270", .patch = patch_alc269 },
01afd41f 5365 { .id = 0x10ec0272, .name = "ALC272", .patch = patch_alc662 },
ebb83eeb 5366 { .id = 0x10ec0275, .name = "ALC275", .patch = patch_alc269 },
296f0338 5367 { .id = 0x10ec0276, .name = "ALC276", .patch = patch_alc269 },
f32610ed 5368 { .id = 0x10ec0861, .rev = 0x100340, .name = "ALC660",
bc9f98a9 5369 .patch = patch_alc861 },
f32610ed
JS
5370 { .id = 0x10ec0660, .name = "ALC660-VD", .patch = patch_alc861vd },
5371 { .id = 0x10ec0861, .name = "ALC861", .patch = patch_alc861 },
5372 { .id = 0x10ec0862, .name = "ALC861-VD", .patch = patch_alc861vd },
bc9f98a9 5373 { .id = 0x10ec0662, .rev = 0x100002, .name = "ALC662 rev2",
4953550a 5374 .patch = patch_alc882 },
bc9f98a9
KY
5375 { .id = 0x10ec0662, .rev = 0x100101, .name = "ALC662 rev1",
5376 .patch = patch_alc662 },
6dda9f4a 5377 { .id = 0x10ec0663, .name = "ALC663", .patch = patch_alc662 },
cec27c89 5378 { .id = 0x10ec0665, .name = "ALC665", .patch = patch_alc662 },
6227cdce 5379 { .id = 0x10ec0670, .name = "ALC670", .patch = patch_alc662 },
d1eb57f4 5380 { .id = 0x10ec0680, .name = "ALC680", .patch = patch_alc680 },
f32610ed 5381 { .id = 0x10ec0880, .name = "ALC880", .patch = patch_alc880 },
1da177e4 5382 { .id = 0x10ec0882, .name = "ALC882", .patch = patch_alc882 },
4953550a 5383 { .id = 0x10ec0883, .name = "ALC883", .patch = patch_alc882 },
669faba2 5384 { .id = 0x10ec0885, .rev = 0x100101, .name = "ALC889A",
4953550a 5385 .patch = patch_alc882 },
cb308f97 5386 { .id = 0x10ec0885, .rev = 0x100103, .name = "ALC889A",
4953550a 5387 .patch = patch_alc882 },
df694daa 5388 { .id = 0x10ec0885, .name = "ALC885", .patch = patch_alc882 },
01e0f137 5389 { .id = 0x10ec0887, .name = "ALC887", .patch = patch_alc888 },
4442608d 5390 { .id = 0x10ec0888, .rev = 0x100101, .name = "ALC1200",
4953550a 5391 .patch = patch_alc882 },
274693f3 5392 { .id = 0x10ec0888, .name = "ALC888", .patch = patch_alc888 },
4953550a 5393 { .id = 0x10ec0889, .name = "ALC889", .patch = patch_alc882 },
274693f3 5394 { .id = 0x10ec0892, .name = "ALC892", .patch = patch_alc662 },
b478b998 5395 { .id = 0x10ec0899, .name = "ALC899", .patch = patch_alc899 },
1da177e4
LT
5396 {} /* terminator */
5397};
1289e9e8
TI
5398
5399MODULE_ALIAS("snd-hda-codec-id:10ec*");
5400
5401MODULE_LICENSE("GPL");
5402MODULE_DESCRIPTION("Realtek HD-audio codec");
5403
5404static struct hda_codec_preset_list realtek_list = {
5405 .preset = snd_hda_preset_realtek,
5406 .owner = THIS_MODULE,
5407};
5408
5409static int __init patch_realtek_init(void)
5410{
5411 return snd_hda_add_codec_preset(&realtek_list);
5412}
5413
5414static void __exit patch_realtek_exit(void)
5415{
5416 snd_hda_delete_codec_preset(&realtek_list);
5417}
5418
5419module_init(patch_realtek_init)
5420module_exit(patch_realtek_exit)