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