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