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