ALSA: HDA: Add new revision for ALC662
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / sound / pci / hda / patch_realtek.c
blob4fab23f4740272052db96529413595bff0d0f657
1 /*
2 * Universal Interface for Intel High Definition Audio Codec
4 * HD audio interface patch for Realtek ALC codecs
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>
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.
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.
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
26 #include <linux/init.h>
27 #include <linux/delay.h>
28 #include <linux/slab.h>
29 #include <linux/pci.h>
30 #include <sound/core.h>
31 #include <sound/jack.h>
32 #include "hda_codec.h"
33 #include "hda_local.h"
34 #include "hda_beep.h"
36 /* unsol event tags */
37 #define ALC_FRONT_EVENT 0x01
38 #define ALC_DCVOL_EVENT 0x02
39 #define ALC_HP_EVENT 0x04
40 #define ALC_MIC_EVENT 0x08
42 /* for GPIO Poll */
43 #define GPIO_MASK 0x03
45 /* extra amp-initialization sequence types */
46 enum {
47 ALC_INIT_NONE,
48 ALC_INIT_DEFAULT,
49 ALC_INIT_GPIO1,
50 ALC_INIT_GPIO2,
51 ALC_INIT_GPIO3,
54 struct alc_customize_define {
55 unsigned int sku_cfg;
56 unsigned char port_connectivity;
57 unsigned char check_sum;
58 unsigned char customization;
59 unsigned char external_amp;
60 unsigned int enable_pcbeep:1;
61 unsigned int platform_type:1;
62 unsigned int swap:1;
63 unsigned int override:1;
64 unsigned int fixup:1; /* Means that this sku is set by driver, not read from hw */
67 struct alc_fixup;
69 struct alc_multi_io {
70 hda_nid_t pin; /* multi-io widget pin NID */
71 hda_nid_t dac; /* DAC to be connected */
72 unsigned int ctl_in; /* cached input-pin control value */
75 enum {
76 ALC_AUTOMUTE_PIN, /* change the pin control */
77 ALC_AUTOMUTE_AMP, /* mute/unmute the pin AMP */
78 ALC_AUTOMUTE_MIXER, /* mute/unmute mixer widget AMP */
81 struct alc_spec {
82 /* codec parameterization */
83 const struct snd_kcontrol_new *mixers[5]; /* mixer arrays */
84 unsigned int num_mixers;
85 const struct snd_kcontrol_new *cap_mixer; /* capture mixer */
86 unsigned int beep_amp; /* beep amp value, set via set_beep_amp() */
88 const struct hda_verb *init_verbs[10]; /* initialization verbs
89 * don't forget NULL
90 * termination!
92 unsigned int num_init_verbs;
94 char stream_name_analog[32]; /* analog PCM stream */
95 const struct hda_pcm_stream *stream_analog_playback;
96 const struct hda_pcm_stream *stream_analog_capture;
97 const struct hda_pcm_stream *stream_analog_alt_playback;
98 const struct hda_pcm_stream *stream_analog_alt_capture;
100 char stream_name_digital[32]; /* digital PCM stream */
101 const struct hda_pcm_stream *stream_digital_playback;
102 const struct hda_pcm_stream *stream_digital_capture;
104 /* playback */
105 struct hda_multi_out multiout; /* playback set-up
106 * max_channels, dacs must be set
107 * dig_out_nid and hp_nid are optional
109 hda_nid_t alt_dac_nid;
110 hda_nid_t slave_dig_outs[3]; /* optional - for auto-parsing */
111 int dig_out_type;
113 /* capture */
114 unsigned int num_adc_nids;
115 const hda_nid_t *adc_nids;
116 const hda_nid_t *capsrc_nids;
117 hda_nid_t dig_in_nid; /* digital-in NID; optional */
118 hda_nid_t mixer_nid; /* analog-mixer NID */
120 /* capture setup for dynamic dual-adc switch */
121 hda_nid_t cur_adc;
122 unsigned int cur_adc_stream_tag;
123 unsigned int cur_adc_format;
125 /* capture source */
126 unsigned int num_mux_defs;
127 const struct hda_input_mux *input_mux;
128 unsigned int cur_mux[3];
129 hda_nid_t ext_mic_pin;
130 hda_nid_t dock_mic_pin;
131 hda_nid_t int_mic_pin;
133 /* channel model */
134 const struct hda_channel_mode *channel_mode;
135 int num_channel_mode;
136 int need_dac_fix;
137 int const_channel_count;
138 int ext_channel_count;
140 /* PCM information */
141 struct hda_pcm pcm_rec[3]; /* used in alc_build_pcms() */
143 /* dynamic controls, init_verbs and input_mux */
144 struct auto_pin_cfg autocfg;
145 struct alc_customize_define cdefine;
146 struct snd_array kctls;
147 struct hda_input_mux private_imux[3];
148 hda_nid_t private_dac_nids[AUTO_CFG_MAX_OUTS];
149 hda_nid_t private_adc_nids[AUTO_CFG_MAX_OUTS];
150 hda_nid_t private_capsrc_nids[AUTO_CFG_MAX_OUTS];
151 hda_nid_t imux_pins[HDA_MAX_NUM_INPUTS];
152 unsigned int dyn_adc_idx[HDA_MAX_NUM_INPUTS];
153 int int_mic_idx, ext_mic_idx, dock_mic_idx; /* for auto-mic */
155 /* hooks */
156 void (*init_hook)(struct hda_codec *codec);
157 void (*unsol_event)(struct hda_codec *codec, unsigned int res);
158 #ifdef CONFIG_SND_HDA_POWER_SAVE
159 void (*power_hook)(struct hda_codec *codec);
160 #endif
161 void (*shutup)(struct hda_codec *codec);
162 void (*automute_hook)(struct hda_codec *codec);
164 /* for pin sensing */
165 unsigned int hp_jack_present:1;
166 unsigned int line_jack_present:1;
167 unsigned int master_mute:1;
168 unsigned int auto_mic:1;
169 unsigned int auto_mic_valid_imux:1; /* valid imux for auto-mic */
170 unsigned int automute_speaker:1; /* automute speaker outputs */
171 unsigned int automute_lo:1; /* automute LO outputs */
172 unsigned int detect_hp:1; /* Headphone detection enabled */
173 unsigned int detect_lo:1; /* Line-out detection enabled */
174 unsigned int automute_speaker_possible:1; /* there are speakers and either LO or HP */
175 unsigned int automute_lo_possible:1; /* there are line outs and HP */
177 /* other flags */
178 unsigned int no_analog :1; /* digital I/O only */
179 unsigned int dyn_adc_switch:1; /* switch ADCs (for ALC275) */
180 unsigned int single_input_src:1;
181 unsigned int vol_in_capsrc:1; /* use capsrc volume (ADC has no vol) */
182 unsigned int parse_flags; /* passed to snd_hda_parse_pin_defcfg() */
184 /* auto-mute control */
185 int automute_mode;
186 hda_nid_t automute_mixer_nid[AUTO_CFG_MAX_OUTS];
188 int init_amp;
189 int codec_variant; /* flag for other variants */
191 /* for virtual master */
192 hda_nid_t vmaster_nid;
193 #ifdef CONFIG_SND_HDA_POWER_SAVE
194 struct hda_loopback_check loopback;
195 #endif
197 /* for PLL fix */
198 hda_nid_t pll_nid;
199 unsigned int pll_coef_idx, pll_coef_bit;
200 unsigned int coef0;
202 /* fix-up list */
203 int fixup_id;
204 const struct alc_fixup *fixup_list;
205 const char *fixup_name;
207 /* multi-io */
208 int multi_ios;
209 struct alc_multi_io multi_io[4];
211 /* bind volumes */
212 struct snd_array bind_ctls;
215 #define ALC_MODEL_AUTO 0 /* common for all chips */
217 static bool check_amp_caps(struct hda_codec *codec, hda_nid_t nid,
218 int dir, unsigned int bits)
220 if (!nid)
221 return false;
222 if (get_wcaps(codec, nid) & (1 << (dir + 1)))
223 if (query_amp_caps(codec, nid, dir) & bits)
224 return true;
225 return false;
228 #define nid_has_mute(codec, nid, dir) \
229 check_amp_caps(codec, nid, dir, AC_AMPCAP_MUTE)
230 #define nid_has_volume(codec, nid, dir) \
231 check_amp_caps(codec, nid, dir, AC_AMPCAP_NUM_STEPS)
234 * input MUX handling
236 static int alc_mux_enum_info(struct snd_kcontrol *kcontrol,
237 struct snd_ctl_elem_info *uinfo)
239 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
240 struct alc_spec *spec = codec->spec;
241 unsigned int mux_idx = snd_ctl_get_ioffidx(kcontrol, &uinfo->id);
242 if (mux_idx >= spec->num_mux_defs)
243 mux_idx = 0;
244 if (!spec->input_mux[mux_idx].num_items && mux_idx > 0)
245 mux_idx = 0;
246 return snd_hda_input_mux_info(&spec->input_mux[mux_idx], uinfo);
249 static int alc_mux_enum_get(struct snd_kcontrol *kcontrol,
250 struct snd_ctl_elem_value *ucontrol)
252 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
253 struct alc_spec *spec = codec->spec;
254 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
256 ucontrol->value.enumerated.item[0] = spec->cur_mux[adc_idx];
257 return 0;
260 static bool alc_dyn_adc_pcm_resetup(struct hda_codec *codec, int cur)
262 struct alc_spec *spec = codec->spec;
263 hda_nid_t new_adc = spec->adc_nids[spec->dyn_adc_idx[cur]];
265 if (spec->cur_adc && spec->cur_adc != new_adc) {
266 /* stream is running, let's swap the current ADC */
267 __snd_hda_codec_cleanup_stream(codec, spec->cur_adc, 1);
268 spec->cur_adc = new_adc;
269 snd_hda_codec_setup_stream(codec, new_adc,
270 spec->cur_adc_stream_tag, 0,
271 spec->cur_adc_format);
272 return true;
274 return false;
277 /* select the given imux item; either unmute exclusively or select the route */
278 static int alc_mux_select(struct hda_codec *codec, unsigned int adc_idx,
279 unsigned int idx, bool force)
281 struct alc_spec *spec = codec->spec;
282 const struct hda_input_mux *imux;
283 unsigned int mux_idx;
284 int i, type;
285 hda_nid_t nid;
287 mux_idx = adc_idx >= spec->num_mux_defs ? 0 : adc_idx;
288 imux = &spec->input_mux[mux_idx];
289 if (!imux->num_items && mux_idx > 0)
290 imux = &spec->input_mux[0];
292 if (idx >= imux->num_items)
293 idx = imux->num_items - 1;
294 if (spec->cur_mux[adc_idx] == idx && !force)
295 return 0;
296 spec->cur_mux[adc_idx] = idx;
298 if (spec->dyn_adc_switch) {
299 alc_dyn_adc_pcm_resetup(codec, idx);
300 adc_idx = spec->dyn_adc_idx[idx];
303 nid = spec->capsrc_nids ?
304 spec->capsrc_nids[adc_idx] : spec->adc_nids[adc_idx];
306 /* no selection? */
307 if (snd_hda_get_conn_list(codec, nid, NULL) <= 1)
308 return 1;
310 type = get_wcaps_type(get_wcaps(codec, nid));
311 if (type == AC_WID_AUD_MIX) {
312 /* Matrix-mixer style (e.g. ALC882) */
313 for (i = 0; i < imux->num_items; i++) {
314 unsigned int v = (i == idx) ? 0 : HDA_AMP_MUTE;
315 snd_hda_codec_amp_stereo(codec, nid, HDA_INPUT,
316 imux->items[i].index,
317 HDA_AMP_MUTE, v);
319 } else {
320 /* MUX style (e.g. ALC880) */
321 snd_hda_codec_write_cache(codec, nid, 0,
322 AC_VERB_SET_CONNECT_SEL,
323 imux->items[idx].index);
325 return 1;
328 static int alc_mux_enum_put(struct snd_kcontrol *kcontrol,
329 struct snd_ctl_elem_value *ucontrol)
331 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
332 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
333 return alc_mux_select(codec, adc_idx,
334 ucontrol->value.enumerated.item[0], false);
338 * set up the input pin config (depending on the given auto-pin type)
340 static void alc_set_input_pin(struct hda_codec *codec, hda_nid_t nid,
341 int auto_pin_type)
343 unsigned int val = PIN_IN;
345 if (auto_pin_type == AUTO_PIN_MIC) {
346 unsigned int pincap;
347 unsigned int oldval;
348 oldval = snd_hda_codec_read(codec, nid, 0,
349 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
350 pincap = snd_hda_query_pin_caps(codec, nid);
351 pincap = (pincap & AC_PINCAP_VREF) >> AC_PINCAP_VREF_SHIFT;
352 /* if the default pin setup is vref50, we give it priority */
353 if ((pincap & AC_PINCAP_VREF_80) && oldval != PIN_VREF50)
354 val = PIN_VREF80;
355 else if (pincap & AC_PINCAP_VREF_50)
356 val = PIN_VREF50;
357 else if (pincap & AC_PINCAP_VREF_100)
358 val = PIN_VREF100;
359 else if (pincap & AC_PINCAP_VREF_GRD)
360 val = PIN_VREFGRD;
362 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL, val);
366 * Append the given mixer and verb elements for the later use
367 * The mixer array is referred in build_controls(), and init_verbs are
368 * called in init().
370 static void add_mixer(struct alc_spec *spec, const struct snd_kcontrol_new *mix)
372 if (snd_BUG_ON(spec->num_mixers >= ARRAY_SIZE(spec->mixers)))
373 return;
374 spec->mixers[spec->num_mixers++] = mix;
377 static void add_verb(struct alc_spec *spec, const struct hda_verb *verb)
379 if (snd_BUG_ON(spec->num_init_verbs >= ARRAY_SIZE(spec->init_verbs)))
380 return;
381 spec->init_verbs[spec->num_init_verbs++] = verb;
385 * GPIO setup tables, used in initialization
387 /* Enable GPIO mask and set output */
388 static const struct hda_verb alc_gpio1_init_verbs[] = {
389 {0x01, AC_VERB_SET_GPIO_MASK, 0x01},
390 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
391 {0x01, AC_VERB_SET_GPIO_DATA, 0x01},
395 static const struct hda_verb alc_gpio2_init_verbs[] = {
396 {0x01, AC_VERB_SET_GPIO_MASK, 0x02},
397 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x02},
398 {0x01, AC_VERB_SET_GPIO_DATA, 0x02},
402 static const struct hda_verb alc_gpio3_init_verbs[] = {
403 {0x01, AC_VERB_SET_GPIO_MASK, 0x03},
404 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x03},
405 {0x01, AC_VERB_SET_GPIO_DATA, 0x03},
410 * Fix hardware PLL issue
411 * On some codecs, the analog PLL gating control must be off while
412 * the default value is 1.
414 static void alc_fix_pll(struct hda_codec *codec)
416 struct alc_spec *spec = codec->spec;
417 unsigned int val;
419 if (!spec->pll_nid)
420 return;
421 snd_hda_codec_write(codec, spec->pll_nid, 0, AC_VERB_SET_COEF_INDEX,
422 spec->pll_coef_idx);
423 val = snd_hda_codec_read(codec, spec->pll_nid, 0,
424 AC_VERB_GET_PROC_COEF, 0);
425 snd_hda_codec_write(codec, spec->pll_nid, 0, AC_VERB_SET_COEF_INDEX,
426 spec->pll_coef_idx);
427 snd_hda_codec_write(codec, spec->pll_nid, 0, AC_VERB_SET_PROC_COEF,
428 val & ~(1 << spec->pll_coef_bit));
431 static void alc_fix_pll_init(struct hda_codec *codec, hda_nid_t nid,
432 unsigned int coef_idx, unsigned int coef_bit)
434 struct alc_spec *spec = codec->spec;
435 spec->pll_nid = nid;
436 spec->pll_coef_idx = coef_idx;
437 spec->pll_coef_bit = coef_bit;
438 alc_fix_pll(codec);
442 * Jack-reporting via input-jack layer
445 /* initialization of jacks; currently checks only a few known pins */
446 static int alc_init_jacks(struct hda_codec *codec)
448 #ifdef CONFIG_SND_HDA_INPUT_JACK
449 struct alc_spec *spec = codec->spec;
450 int err;
451 unsigned int hp_nid = spec->autocfg.hp_pins[0];
452 unsigned int mic_nid = spec->ext_mic_pin;
453 unsigned int dock_nid = spec->dock_mic_pin;
455 if (hp_nid) {
456 err = snd_hda_input_jack_add(codec, hp_nid,
457 SND_JACK_HEADPHONE, NULL);
458 if (err < 0)
459 return err;
460 snd_hda_input_jack_report(codec, hp_nid);
463 if (mic_nid) {
464 err = snd_hda_input_jack_add(codec, mic_nid,
465 SND_JACK_MICROPHONE, NULL);
466 if (err < 0)
467 return err;
468 snd_hda_input_jack_report(codec, mic_nid);
470 if (dock_nid) {
471 err = snd_hda_input_jack_add(codec, dock_nid,
472 SND_JACK_MICROPHONE, NULL);
473 if (err < 0)
474 return err;
475 snd_hda_input_jack_report(codec, dock_nid);
477 #endif /* CONFIG_SND_HDA_INPUT_JACK */
478 return 0;
482 * Jack detections for HP auto-mute and mic-switch
485 /* check each pin in the given array; returns true if any of them is plugged */
486 static bool detect_jacks(struct hda_codec *codec, int num_pins, hda_nid_t *pins)
488 int i, present = 0;
490 for (i = 0; i < num_pins; i++) {
491 hda_nid_t nid = pins[i];
492 if (!nid)
493 break;
494 snd_hda_input_jack_report(codec, nid);
495 present |= snd_hda_jack_detect(codec, nid);
497 return present;
500 /* standard HP/line-out auto-mute helper */
501 static void do_automute(struct hda_codec *codec, int num_pins, hda_nid_t *pins,
502 bool mute, bool hp_out)
504 struct alc_spec *spec = codec->spec;
505 unsigned int mute_bits = mute ? HDA_AMP_MUTE : 0;
506 unsigned int pin_bits = mute ? 0 : (hp_out ? PIN_HP : PIN_OUT);
507 int i;
509 for (i = 0; i < num_pins; i++) {
510 hda_nid_t nid = pins[i];
511 if (!nid)
512 break;
513 switch (spec->automute_mode) {
514 case ALC_AUTOMUTE_PIN:
515 snd_hda_codec_write(codec, nid, 0,
516 AC_VERB_SET_PIN_WIDGET_CONTROL,
517 pin_bits);
518 break;
519 case ALC_AUTOMUTE_AMP:
520 snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
521 HDA_AMP_MUTE, mute_bits);
522 break;
523 case ALC_AUTOMUTE_MIXER:
524 nid = spec->automute_mixer_nid[i];
525 if (!nid)
526 break;
527 snd_hda_codec_amp_stereo(codec, nid, HDA_INPUT, 0,
528 HDA_AMP_MUTE, mute_bits);
529 snd_hda_codec_amp_stereo(codec, nid, HDA_INPUT, 1,
530 HDA_AMP_MUTE, mute_bits);
531 break;
536 /* Toggle outputs muting */
537 static void update_outputs(struct hda_codec *codec)
539 struct alc_spec *spec = codec->spec;
540 int on;
542 /* Control HP pins/amps depending on master_mute state;
543 * in general, HP pins/amps control should be enabled in all cases,
544 * but currently set only for master_mute, just to be safe
546 do_automute(codec, ARRAY_SIZE(spec->autocfg.hp_pins),
547 spec->autocfg.hp_pins, spec->master_mute, true);
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);
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);
571 static void call_update_outputs(struct hda_codec *codec)
573 struct alc_spec *spec = codec->spec;
574 if (spec->automute_hook)
575 spec->automute_hook(codec);
576 else
577 update_outputs(codec);
580 /* standard HP-automute helper */
581 static void alc_hp_automute(struct hda_codec *codec)
583 struct alc_spec *spec = codec->spec;
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);
593 /* standard line-out-automute helper */
594 static void alc_line_automute(struct hda_codec *codec)
596 struct alc_spec *spec = codec->spec;
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;
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);
610 #define get_connection_index(codec, mux, nid) \
611 snd_hda_get_conn_index(codec, mux, nid, 0)
613 /* standard mic auto-switch helper */
614 static void alc_mic_automute(struct hda_codec *codec)
616 struct alc_spec *spec = codec->spec;
617 hda_nid_t *pins = spec->imux_pins;
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;
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);
634 snd_hda_input_jack_report(codec, pins[spec->ext_mic_idx]);
635 if (spec->dock_mic_idx >= 0)
636 snd_hda_input_jack_report(codec, pins[spec->dock_mic_idx]);
639 /* unsolicited event for HP jack sensing */
640 static void alc_sku_unsol_event(struct hda_codec *codec, unsigned int res)
642 if (codec->vendor_id == 0x10ec0880)
643 res >>= 28;
644 else
645 res >>= 26;
646 switch (res) {
647 case ALC_HP_EVENT:
648 alc_hp_automute(codec);
649 break;
650 case ALC_FRONT_EVENT:
651 alc_line_automute(codec);
652 break;
653 case ALC_MIC_EVENT:
654 alc_mic_automute(codec);
655 break;
659 /* call init functions of standard auto-mute helpers */
660 static void alc_inithook(struct hda_codec *codec)
662 alc_hp_automute(codec);
663 alc_line_automute(codec);
664 alc_mic_automute(codec);
667 /* additional initialization for ALC888 variants */
668 static void alc888_coef_init(struct hda_codec *codec)
670 unsigned int tmp;
672 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 0);
673 tmp = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_PROC_COEF, 0);
674 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 7);
675 if ((tmp & 0xf0) == 0x20)
676 /* alc888S-VC */
677 snd_hda_codec_read(codec, 0x20, 0,
678 AC_VERB_SET_PROC_COEF, 0x830);
679 else
680 /* alc888-VB */
681 snd_hda_codec_read(codec, 0x20, 0,
682 AC_VERB_SET_PROC_COEF, 0x3030);
685 /* additional initialization for ALC889 variants */
686 static void alc889_coef_init(struct hda_codec *codec)
688 unsigned int tmp;
690 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 7);
691 tmp = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_PROC_COEF, 0);
692 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 7);
693 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_PROC_COEF, tmp|0x2010);
696 /* turn on/off EAPD control (only if available) */
697 static void set_eapd(struct hda_codec *codec, hda_nid_t nid, int on)
699 if (get_wcaps_type(get_wcaps(codec, nid)) != AC_WID_PIN)
700 return;
701 if (snd_hda_query_pin_caps(codec, nid) & AC_PINCAP_EAPD)
702 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_EAPD_BTLENABLE,
703 on ? 2 : 0);
706 /* turn on/off EAPD controls of the codec */
707 static void alc_auto_setup_eapd(struct hda_codec *codec, bool on)
709 /* We currently only handle front, HP */
710 static hda_nid_t pins[] = {
711 0x0f, 0x10, 0x14, 0x15, 0
713 hda_nid_t *p;
714 for (p = pins; *p; p++)
715 set_eapd(codec, *p, on);
718 /* generic shutup callback;
719 * just turning off EPAD and a little pause for avoiding pop-noise
721 static void alc_eapd_shutup(struct hda_codec *codec)
723 alc_auto_setup_eapd(codec, false);
724 msleep(200);
727 /* generic EAPD initialization */
728 static void alc_auto_init_amp(struct hda_codec *codec, int type)
730 unsigned int tmp;
732 alc_auto_setup_eapd(codec, true);
733 switch (type) {
734 case ALC_INIT_GPIO1:
735 snd_hda_sequence_write(codec, alc_gpio1_init_verbs);
736 break;
737 case ALC_INIT_GPIO2:
738 snd_hda_sequence_write(codec, alc_gpio2_init_verbs);
739 break;
740 case ALC_INIT_GPIO3:
741 snd_hda_sequence_write(codec, alc_gpio3_init_verbs);
742 break;
743 case ALC_INIT_DEFAULT:
744 switch (codec->vendor_id) {
745 case 0x10ec0260:
746 snd_hda_codec_write(codec, 0x1a, 0,
747 AC_VERB_SET_COEF_INDEX, 7);
748 tmp = snd_hda_codec_read(codec, 0x1a, 0,
749 AC_VERB_GET_PROC_COEF, 0);
750 snd_hda_codec_write(codec, 0x1a, 0,
751 AC_VERB_SET_COEF_INDEX, 7);
752 snd_hda_codec_write(codec, 0x1a, 0,
753 AC_VERB_SET_PROC_COEF,
754 tmp | 0x2010);
755 break;
756 case 0x10ec0262:
757 case 0x10ec0880:
758 case 0x10ec0882:
759 case 0x10ec0883:
760 case 0x10ec0885:
761 case 0x10ec0887:
762 /*case 0x10ec0889:*/ /* this causes an SPDIF problem */
763 alc889_coef_init(codec);
764 break;
765 case 0x10ec0888:
766 alc888_coef_init(codec);
767 break;
768 #if 0 /* XXX: This may cause the silent output on speaker on some machines */
769 case 0x10ec0267:
770 case 0x10ec0268:
771 snd_hda_codec_write(codec, 0x20, 0,
772 AC_VERB_SET_COEF_INDEX, 7);
773 tmp = snd_hda_codec_read(codec, 0x20, 0,
774 AC_VERB_GET_PROC_COEF, 0);
775 snd_hda_codec_write(codec, 0x20, 0,
776 AC_VERB_SET_COEF_INDEX, 7);
777 snd_hda_codec_write(codec, 0x20, 0,
778 AC_VERB_SET_PROC_COEF,
779 tmp | 0x3000);
780 break;
781 #endif /* XXX */
783 break;
788 * Auto-Mute mode mixer enum support
790 static int alc_automute_mode_info(struct snd_kcontrol *kcontrol,
791 struct snd_ctl_elem_info *uinfo)
793 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
794 struct alc_spec *spec = codec->spec;
795 static const char * const texts2[] = {
796 "Disabled", "Enabled"
798 static const char * const texts3[] = {
799 "Disabled", "Speaker Only", "Line-Out+Speaker"
801 const char * const *texts;
803 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
804 uinfo->count = 1;
805 if (spec->automute_speaker_possible && spec->automute_lo_possible) {
806 uinfo->value.enumerated.items = 3;
807 texts = texts3;
808 } else {
809 uinfo->value.enumerated.items = 2;
810 texts = texts2;
812 if (uinfo->value.enumerated.item >= uinfo->value.enumerated.items)
813 uinfo->value.enumerated.item = uinfo->value.enumerated.items - 1;
814 strcpy(uinfo->value.enumerated.name,
815 texts[uinfo->value.enumerated.item]);
816 return 0;
819 static int alc_automute_mode_get(struct snd_kcontrol *kcontrol,
820 struct snd_ctl_elem_value *ucontrol)
822 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
823 struct alc_spec *spec = codec->spec;
824 unsigned int val = 0;
825 if (spec->automute_speaker)
826 val++;
827 if (spec->automute_lo)
828 val++;
830 ucontrol->value.enumerated.item[0] = val;
831 return 0;
834 static int alc_automute_mode_put(struct snd_kcontrol *kcontrol,
835 struct snd_ctl_elem_value *ucontrol)
837 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
838 struct alc_spec *spec = codec->spec;
840 switch (ucontrol->value.enumerated.item[0]) {
841 case 0:
842 if (!spec->automute_speaker && !spec->automute_lo)
843 return 0;
844 spec->automute_speaker = 0;
845 spec->automute_lo = 0;
846 break;
847 case 1:
848 if (spec->automute_speaker_possible) {
849 if (!spec->automute_lo && spec->automute_speaker)
850 return 0;
851 spec->automute_speaker = 1;
852 spec->automute_lo = 0;
853 } else if (spec->automute_lo_possible) {
854 if (spec->automute_lo)
855 return 0;
856 spec->automute_lo = 1;
857 } else
858 return -EINVAL;
859 break;
860 case 2:
861 if (!spec->automute_lo_possible || !spec->automute_speaker_possible)
862 return -EINVAL;
863 if (spec->automute_speaker && spec->automute_lo)
864 return 0;
865 spec->automute_speaker = 1;
866 spec->automute_lo = 1;
867 break;
868 default:
869 return -EINVAL;
871 call_update_outputs(codec);
872 return 1;
875 static const struct snd_kcontrol_new alc_automute_mode_enum = {
876 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
877 .name = "Auto-Mute Mode",
878 .info = alc_automute_mode_info,
879 .get = alc_automute_mode_get,
880 .put = alc_automute_mode_put,
883 static struct snd_kcontrol_new *alc_kcontrol_new(struct alc_spec *spec)
885 snd_array_init(&spec->kctls, sizeof(struct snd_kcontrol_new), 32);
886 return snd_array_new(&spec->kctls);
889 static int alc_add_automute_mode_enum(struct hda_codec *codec)
891 struct alc_spec *spec = codec->spec;
892 struct snd_kcontrol_new *knew;
894 knew = alc_kcontrol_new(spec);
895 if (!knew)
896 return -ENOMEM;
897 *knew = alc_automute_mode_enum;
898 knew->name = kstrdup("Auto-Mute Mode", GFP_KERNEL);
899 if (!knew->name)
900 return -ENOMEM;
901 return 0;
905 * Check the availability of HP/line-out auto-mute;
906 * Set up appropriately if really supported
908 static void alc_init_automute(struct hda_codec *codec)
910 struct alc_spec *spec = codec->spec;
911 struct auto_pin_cfg *cfg = &spec->autocfg;
912 int present = 0;
913 int i;
915 if (cfg->hp_pins[0])
916 present++;
917 if (cfg->line_out_pins[0])
918 present++;
919 if (cfg->speaker_pins[0])
920 present++;
921 if (present < 2) /* need two different output types */
922 return;
924 if (!cfg->speaker_pins[0] &&
925 cfg->line_out_type == AUTO_PIN_SPEAKER_OUT) {
926 memcpy(cfg->speaker_pins, cfg->line_out_pins,
927 sizeof(cfg->speaker_pins));
928 cfg->speaker_outs = cfg->line_outs;
931 if (!cfg->hp_pins[0] &&
932 cfg->line_out_type == AUTO_PIN_HP_OUT) {
933 memcpy(cfg->hp_pins, cfg->line_out_pins,
934 sizeof(cfg->hp_pins));
935 cfg->hp_outs = cfg->line_outs;
938 spec->automute_mode = ALC_AUTOMUTE_PIN;
940 for (i = 0; i < cfg->hp_outs; i++) {
941 hda_nid_t nid = cfg->hp_pins[i];
942 if (!is_jack_detectable(codec, nid))
943 continue;
944 snd_printdd("realtek: Enable HP auto-muting on NID 0x%x\n",
945 nid);
946 snd_hda_codec_write_cache(codec, nid, 0,
947 AC_VERB_SET_UNSOLICITED_ENABLE,
948 AC_USRSP_EN | ALC_HP_EVENT);
949 spec->detect_hp = 1;
952 if (cfg->line_out_type == AUTO_PIN_LINE_OUT && cfg->line_outs) {
953 if (cfg->speaker_outs)
954 for (i = 0; i < cfg->line_outs; i++) {
955 hda_nid_t nid = cfg->line_out_pins[i];
956 if (!is_jack_detectable(codec, nid))
957 continue;
958 snd_printdd("realtek: Enable Line-Out "
959 "auto-muting on NID 0x%x\n", nid);
960 snd_hda_codec_write_cache(codec, nid, 0,
961 AC_VERB_SET_UNSOLICITED_ENABLE,
962 AC_USRSP_EN | ALC_FRONT_EVENT);
963 spec->detect_lo = 1;
965 spec->automute_lo_possible = spec->detect_hp;
968 spec->automute_speaker_possible = cfg->speaker_outs &&
969 (spec->detect_hp || spec->detect_lo);
971 spec->automute_lo = spec->automute_lo_possible;
972 spec->automute_speaker = spec->automute_speaker_possible;
974 if (spec->automute_speaker_possible || spec->automute_lo_possible) {
975 /* create a control for automute mode */
976 alc_add_automute_mode_enum(codec);
977 spec->unsol_event = alc_sku_unsol_event;
981 /* return the position of NID in the list, or -1 if not found */
982 static int find_idx_in_nid_list(hda_nid_t nid, const hda_nid_t *list, int nums)
984 int i;
985 for (i = 0; i < nums; i++)
986 if (list[i] == nid)
987 return i;
988 return -1;
991 /* check whether dynamic ADC-switching is available */
992 static bool alc_check_dyn_adc_switch(struct hda_codec *codec)
994 struct alc_spec *spec = codec->spec;
995 struct hda_input_mux *imux = &spec->private_imux[0];
996 int i, n, idx;
997 hda_nid_t cap, pin;
999 if (imux != spec->input_mux) /* no dynamic imux? */
1000 return false;
1002 for (n = 0; n < spec->num_adc_nids; n++) {
1003 cap = spec->private_capsrc_nids[n];
1004 for (i = 0; i < imux->num_items; i++) {
1005 pin = spec->imux_pins[i];
1006 if (!pin)
1007 return false;
1008 if (get_connection_index(codec, cap, pin) < 0)
1009 break;
1011 if (i >= imux->num_items)
1012 return true; /* no ADC-switch is needed */
1015 for (i = 0; i < imux->num_items; i++) {
1016 pin = spec->imux_pins[i];
1017 for (n = 0; n < spec->num_adc_nids; n++) {
1018 cap = spec->private_capsrc_nids[n];
1019 idx = get_connection_index(codec, cap, pin);
1020 if (idx >= 0) {
1021 imux->items[i].index = idx;
1022 spec->dyn_adc_idx[i] = n;
1023 break;
1028 snd_printdd("realtek: enabling ADC switching\n");
1029 spec->dyn_adc_switch = 1;
1030 return true;
1033 /* rebuild imux for matching with the given auto-mic pins (if not yet) */
1034 static bool alc_rebuild_imux_for_auto_mic(struct hda_codec *codec)
1036 struct alc_spec *spec = codec->spec;
1037 struct hda_input_mux *imux;
1038 static char * const texts[3] = {
1039 "Mic", "Internal Mic", "Dock Mic"
1041 int i;
1043 if (!spec->auto_mic)
1044 return false;
1045 imux = &spec->private_imux[0];
1046 if (spec->input_mux == imux)
1047 return true;
1048 spec->imux_pins[0] = spec->ext_mic_pin;
1049 spec->imux_pins[1] = spec->int_mic_pin;
1050 spec->imux_pins[2] = spec->dock_mic_pin;
1051 for (i = 0; i < 3; i++) {
1052 strcpy(imux->items[i].label, texts[i]);
1053 if (spec->imux_pins[i])
1054 imux->num_items = i + 1;
1056 spec->num_mux_defs = 1;
1057 spec->input_mux = imux;
1058 return true;
1061 /* check whether all auto-mic pins are valid; setup indices if OK */
1062 static bool alc_auto_mic_check_imux(struct hda_codec *codec)
1064 struct alc_spec *spec = codec->spec;
1065 const struct hda_input_mux *imux;
1067 if (!spec->auto_mic)
1068 return false;
1069 if (spec->auto_mic_valid_imux)
1070 return true; /* already checked */
1072 /* fill up imux indices */
1073 if (!alc_check_dyn_adc_switch(codec)) {
1074 spec->auto_mic = 0;
1075 return false;
1078 imux = spec->input_mux;
1079 spec->ext_mic_idx = find_idx_in_nid_list(spec->ext_mic_pin,
1080 spec->imux_pins, imux->num_items);
1081 spec->int_mic_idx = find_idx_in_nid_list(spec->int_mic_pin,
1082 spec->imux_pins, imux->num_items);
1083 spec->dock_mic_idx = find_idx_in_nid_list(spec->dock_mic_pin,
1084 spec->imux_pins, imux->num_items);
1085 if (spec->ext_mic_idx < 0 || spec->int_mic_idx < 0) {
1086 spec->auto_mic = 0;
1087 return false; /* no corresponding imux */
1090 snd_hda_codec_write_cache(codec, spec->ext_mic_pin, 0,
1091 AC_VERB_SET_UNSOLICITED_ENABLE,
1092 AC_USRSP_EN | ALC_MIC_EVENT);
1093 if (spec->dock_mic_pin)
1094 snd_hda_codec_write_cache(codec, spec->dock_mic_pin, 0,
1095 AC_VERB_SET_UNSOLICITED_ENABLE,
1096 AC_USRSP_EN | ALC_MIC_EVENT);
1098 spec->auto_mic_valid_imux = 1;
1099 spec->auto_mic = 1;
1100 return true;
1104 * Check the availability of auto-mic switch;
1105 * Set up if really supported
1107 static void alc_init_auto_mic(struct hda_codec *codec)
1109 struct alc_spec *spec = codec->spec;
1110 struct auto_pin_cfg *cfg = &spec->autocfg;
1111 hda_nid_t fixed, ext, dock;
1112 int i;
1114 spec->ext_mic_idx = spec->int_mic_idx = spec->dock_mic_idx = -1;
1116 fixed = ext = dock = 0;
1117 for (i = 0; i < cfg->num_inputs; i++) {
1118 hda_nid_t nid = cfg->inputs[i].pin;
1119 unsigned int defcfg;
1120 defcfg = snd_hda_codec_get_pincfg(codec, nid);
1121 switch (snd_hda_get_input_pin_attr(defcfg)) {
1122 case INPUT_PIN_ATTR_INT:
1123 if (fixed)
1124 return; /* already occupied */
1125 if (cfg->inputs[i].type != AUTO_PIN_MIC)
1126 return; /* invalid type */
1127 fixed = nid;
1128 break;
1129 case INPUT_PIN_ATTR_UNUSED:
1130 return; /* invalid entry */
1131 case INPUT_PIN_ATTR_DOCK:
1132 if (dock)
1133 return; /* already occupied */
1134 if (cfg->inputs[i].type > AUTO_PIN_LINE_IN)
1135 return; /* invalid type */
1136 dock = nid;
1137 break;
1138 default:
1139 if (ext)
1140 return; /* already occupied */
1141 if (cfg->inputs[i].type != AUTO_PIN_MIC)
1142 return; /* invalid type */
1143 ext = nid;
1144 break;
1147 if (!ext && dock) {
1148 ext = dock;
1149 dock = 0;
1151 if (!ext || !fixed)
1152 return;
1153 if (!is_jack_detectable(codec, ext))
1154 return; /* no unsol support */
1155 if (dock && !is_jack_detectable(codec, dock))
1156 return; /* no unsol support */
1158 /* check imux indices */
1159 spec->ext_mic_pin = ext;
1160 spec->int_mic_pin = fixed;
1161 spec->dock_mic_pin = dock;
1163 spec->auto_mic = 1;
1164 if (!alc_auto_mic_check_imux(codec))
1165 return;
1167 snd_printdd("realtek: Enable auto-mic switch on NID 0x%x/0x%x/0x%x\n",
1168 ext, fixed, dock);
1169 spec->unsol_event = alc_sku_unsol_event;
1172 /* check the availabilities of auto-mute and auto-mic switches */
1173 static void alc_auto_check_switches(struct hda_codec *codec)
1175 alc_init_automute(codec);
1176 alc_init_auto_mic(codec);
1180 * Realtek SSID verification
1183 /* Could be any non-zero and even value. When used as fixup, tells
1184 * the driver to ignore any present sku defines.
1186 #define ALC_FIXUP_SKU_IGNORE (2)
1188 static int alc_auto_parse_customize_define(struct hda_codec *codec)
1190 unsigned int ass, tmp, i;
1191 unsigned nid = 0;
1192 struct alc_spec *spec = codec->spec;
1194 spec->cdefine.enable_pcbeep = 1; /* assume always enabled */
1196 if (spec->cdefine.fixup) {
1197 ass = spec->cdefine.sku_cfg;
1198 if (ass == ALC_FIXUP_SKU_IGNORE)
1199 return -1;
1200 goto do_sku;
1203 ass = codec->subsystem_id & 0xffff;
1204 if (ass != codec->bus->pci->subsystem_device && (ass & 1))
1205 goto do_sku;
1207 nid = 0x1d;
1208 if (codec->vendor_id == 0x10ec0260)
1209 nid = 0x17;
1210 ass = snd_hda_codec_get_pincfg(codec, nid);
1212 if (!(ass & 1)) {
1213 printk(KERN_INFO "hda_codec: %s: SKU not ready 0x%08x\n",
1214 codec->chip_name, ass);
1215 return -1;
1218 /* check sum */
1219 tmp = 0;
1220 for (i = 1; i < 16; i++) {
1221 if ((ass >> i) & 1)
1222 tmp++;
1224 if (((ass >> 16) & 0xf) != tmp)
1225 return -1;
1227 spec->cdefine.port_connectivity = ass >> 30;
1228 spec->cdefine.enable_pcbeep = (ass & 0x100000) >> 20;
1229 spec->cdefine.check_sum = (ass >> 16) & 0xf;
1230 spec->cdefine.customization = ass >> 8;
1231 do_sku:
1232 spec->cdefine.sku_cfg = ass;
1233 spec->cdefine.external_amp = (ass & 0x38) >> 3;
1234 spec->cdefine.platform_type = (ass & 0x4) >> 2;
1235 spec->cdefine.swap = (ass & 0x2) >> 1;
1236 spec->cdefine.override = ass & 0x1;
1238 snd_printd("SKU: Nid=0x%x sku_cfg=0x%08x\n",
1239 nid, spec->cdefine.sku_cfg);
1240 snd_printd("SKU: port_connectivity=0x%x\n",
1241 spec->cdefine.port_connectivity);
1242 snd_printd("SKU: enable_pcbeep=0x%x\n", spec->cdefine.enable_pcbeep);
1243 snd_printd("SKU: check_sum=0x%08x\n", spec->cdefine.check_sum);
1244 snd_printd("SKU: customization=0x%08x\n", spec->cdefine.customization);
1245 snd_printd("SKU: external_amp=0x%x\n", spec->cdefine.external_amp);
1246 snd_printd("SKU: platform_type=0x%x\n", spec->cdefine.platform_type);
1247 snd_printd("SKU: swap=0x%x\n", spec->cdefine.swap);
1248 snd_printd("SKU: override=0x%x\n", spec->cdefine.override);
1250 return 0;
1253 /* return true if the given NID is found in the list */
1254 static bool found_in_nid_list(hda_nid_t nid, const hda_nid_t *list, int nums)
1256 return find_idx_in_nid_list(nid, list, nums) >= 0;
1259 /* check subsystem ID and set up device-specific initialization;
1260 * return 1 if initialized, 0 if invalid SSID
1262 /* 32-bit subsystem ID for BIOS loading in HD Audio codec.
1263 * 31 ~ 16 : Manufacture ID
1264 * 15 ~ 8 : SKU ID
1265 * 7 ~ 0 : Assembly ID
1266 * port-A --> pin 39/41, port-E --> pin 14/15, port-D --> pin 35/36
1268 static int alc_subsystem_id(struct hda_codec *codec,
1269 hda_nid_t porta, hda_nid_t porte,
1270 hda_nid_t portd, hda_nid_t porti)
1272 unsigned int ass, tmp, i;
1273 unsigned nid;
1274 struct alc_spec *spec = codec->spec;
1276 if (spec->cdefine.fixup) {
1277 ass = spec->cdefine.sku_cfg;
1278 if (ass == ALC_FIXUP_SKU_IGNORE)
1279 return 0;
1280 goto do_sku;
1283 ass = codec->subsystem_id & 0xffff;
1284 if ((ass != codec->bus->pci->subsystem_device) && (ass & 1))
1285 goto do_sku;
1287 /* invalid SSID, check the special NID pin defcfg instead */
1289 * 31~30 : port connectivity
1290 * 29~21 : reserve
1291 * 20 : PCBEEP input
1292 * 19~16 : Check sum (15:1)
1293 * 15~1 : Custom
1294 * 0 : override
1296 nid = 0x1d;
1297 if (codec->vendor_id == 0x10ec0260)
1298 nid = 0x17;
1299 ass = snd_hda_codec_get_pincfg(codec, nid);
1300 snd_printd("realtek: No valid SSID, "
1301 "checking pincfg 0x%08x for NID 0x%x\n",
1302 ass, nid);
1303 if (!(ass & 1))
1304 return 0;
1305 if ((ass >> 30) != 1) /* no physical connection */
1306 return 0;
1308 /* check sum */
1309 tmp = 0;
1310 for (i = 1; i < 16; i++) {
1311 if ((ass >> i) & 1)
1312 tmp++;
1314 if (((ass >> 16) & 0xf) != tmp)
1315 return 0;
1316 do_sku:
1317 snd_printd("realtek: Enabling init ASM_ID=0x%04x CODEC_ID=%08x\n",
1318 ass & 0xffff, codec->vendor_id);
1320 * 0 : override
1321 * 1 : Swap Jack
1322 * 2 : 0 --> Desktop, 1 --> Laptop
1323 * 3~5 : External Amplifier control
1324 * 7~6 : Reserved
1326 tmp = (ass & 0x38) >> 3; /* external Amp control */
1327 switch (tmp) {
1328 case 1:
1329 spec->init_amp = ALC_INIT_GPIO1;
1330 break;
1331 case 3:
1332 spec->init_amp = ALC_INIT_GPIO2;
1333 break;
1334 case 7:
1335 spec->init_amp = ALC_INIT_GPIO3;
1336 break;
1337 case 5:
1338 default:
1339 spec->init_amp = ALC_INIT_DEFAULT;
1340 break;
1343 /* is laptop or Desktop and enable the function "Mute internal speaker
1344 * when the external headphone out jack is plugged"
1346 if (!(ass & 0x8000))
1347 return 1;
1349 * 10~8 : Jack location
1350 * 12~11: Headphone out -> 00: PortA, 01: PortE, 02: PortD, 03: Resvered
1351 * 14~13: Resvered
1352 * 15 : 1 --> enable the function "Mute internal speaker
1353 * when the external headphone out jack is plugged"
1355 if (!spec->autocfg.hp_pins[0] &&
1356 !(spec->autocfg.line_out_pins[0] &&
1357 spec->autocfg.line_out_type == AUTO_PIN_HP_OUT)) {
1358 hda_nid_t nid;
1359 tmp = (ass >> 11) & 0x3; /* HP to chassis */
1360 if (tmp == 0)
1361 nid = porta;
1362 else if (tmp == 1)
1363 nid = porte;
1364 else if (tmp == 2)
1365 nid = portd;
1366 else if (tmp == 3)
1367 nid = porti;
1368 else
1369 return 1;
1370 if (found_in_nid_list(nid, spec->autocfg.line_out_pins,
1371 spec->autocfg.line_outs))
1372 return 1;
1373 spec->autocfg.hp_pins[0] = nid;
1375 return 1;
1378 /* Check the validity of ALC subsystem-id
1379 * ports contains an array of 4 pin NIDs for port-A, E, D and I */
1380 static void alc_ssid_check(struct hda_codec *codec, const hda_nid_t *ports)
1382 if (!alc_subsystem_id(codec, ports[0], ports[1], ports[2], ports[3])) {
1383 struct alc_spec *spec = codec->spec;
1384 snd_printd("realtek: "
1385 "Enable default setup for auto mode as fallback\n");
1386 spec->init_amp = ALC_INIT_DEFAULT;
1391 * Fix-up pin default configurations and add default verbs
1394 struct alc_pincfg {
1395 hda_nid_t nid;
1396 u32 val;
1399 struct alc_model_fixup {
1400 const int id;
1401 const char *name;
1404 struct alc_fixup {
1405 int type;
1406 bool chained;
1407 int chain_id;
1408 union {
1409 unsigned int sku;
1410 const struct alc_pincfg *pins;
1411 const struct hda_verb *verbs;
1412 void (*func)(struct hda_codec *codec,
1413 const struct alc_fixup *fix,
1414 int action);
1415 } v;
1418 enum {
1419 ALC_FIXUP_INVALID,
1420 ALC_FIXUP_SKU,
1421 ALC_FIXUP_PINS,
1422 ALC_FIXUP_VERBS,
1423 ALC_FIXUP_FUNC,
1426 enum {
1427 ALC_FIXUP_ACT_PRE_PROBE,
1428 ALC_FIXUP_ACT_PROBE,
1429 ALC_FIXUP_ACT_INIT,
1432 static void alc_apply_fixup(struct hda_codec *codec, int action)
1434 struct alc_spec *spec = codec->spec;
1435 int id = spec->fixup_id;
1436 #ifdef CONFIG_SND_DEBUG_VERBOSE
1437 const char *modelname = spec->fixup_name;
1438 #endif
1439 int depth = 0;
1441 if (!spec->fixup_list)
1442 return;
1444 while (id >= 0) {
1445 const struct alc_fixup *fix = spec->fixup_list + id;
1446 const struct alc_pincfg *cfg;
1448 switch (fix->type) {
1449 case ALC_FIXUP_SKU:
1450 if (action != ALC_FIXUP_ACT_PRE_PROBE || !fix->v.sku)
1451 break;;
1452 snd_printdd(KERN_INFO "hda_codec: %s: "
1453 "Apply sku override for %s\n",
1454 codec->chip_name, modelname);
1455 spec->cdefine.sku_cfg = fix->v.sku;
1456 spec->cdefine.fixup = 1;
1457 break;
1458 case ALC_FIXUP_PINS:
1459 cfg = fix->v.pins;
1460 if (action != ALC_FIXUP_ACT_PRE_PROBE || !cfg)
1461 break;
1462 snd_printdd(KERN_INFO "hda_codec: %s: "
1463 "Apply pincfg for %s\n",
1464 codec->chip_name, modelname);
1465 for (; cfg->nid; cfg++)
1466 snd_hda_codec_set_pincfg(codec, cfg->nid,
1467 cfg->val);
1468 break;
1469 case ALC_FIXUP_VERBS:
1470 if (action != ALC_FIXUP_ACT_PROBE || !fix->v.verbs)
1471 break;
1472 snd_printdd(KERN_INFO "hda_codec: %s: "
1473 "Apply fix-verbs for %s\n",
1474 codec->chip_name, modelname);
1475 add_verb(codec->spec, fix->v.verbs);
1476 break;
1477 case ALC_FIXUP_FUNC:
1478 if (!fix->v.func)
1479 break;
1480 snd_printdd(KERN_INFO "hda_codec: %s: "
1481 "Apply fix-func for %s\n",
1482 codec->chip_name, modelname);
1483 fix->v.func(codec, fix, action);
1484 break;
1485 default:
1486 snd_printk(KERN_ERR "hda_codec: %s: "
1487 "Invalid fixup type %d\n",
1488 codec->chip_name, fix->type);
1489 break;
1491 if (!fix->chained)
1492 break;
1493 if (++depth > 10)
1494 break;
1495 id = fix->chain_id;
1499 static void alc_pick_fixup(struct hda_codec *codec,
1500 const struct alc_model_fixup *models,
1501 const struct snd_pci_quirk *quirk,
1502 const struct alc_fixup *fixlist)
1504 struct alc_spec *spec = codec->spec;
1505 int id = -1;
1506 const char *name = NULL;
1508 if (codec->modelname && models) {
1509 while (models->name) {
1510 if (!strcmp(codec->modelname, models->name)) {
1511 id = models->id;
1512 name = models->name;
1513 break;
1515 models++;
1518 if (id < 0) {
1519 quirk = snd_pci_quirk_lookup(codec->bus->pci, quirk);
1520 if (quirk) {
1521 id = quirk->value;
1522 #ifdef CONFIG_SND_DEBUG_VERBOSE
1523 name = quirk->name;
1524 #endif
1528 spec->fixup_id = id;
1529 if (id >= 0) {
1530 spec->fixup_list = fixlist;
1531 spec->fixup_name = name;
1536 * COEF access helper functions
1538 static int alc_read_coef_idx(struct hda_codec *codec,
1539 unsigned int coef_idx)
1541 unsigned int val;
1542 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX,
1543 coef_idx);
1544 val = snd_hda_codec_read(codec, 0x20, 0,
1545 AC_VERB_GET_PROC_COEF, 0);
1546 return val;
1549 static void alc_write_coef_idx(struct hda_codec *codec, unsigned int coef_idx,
1550 unsigned int coef_val)
1552 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX,
1553 coef_idx);
1554 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_PROC_COEF,
1555 coef_val);
1558 /* a special bypass for COEF 0; read the cached value at the second time */
1559 static unsigned int alc_get_coef0(struct hda_codec *codec)
1561 struct alc_spec *spec = codec->spec;
1562 if (!spec->coef0)
1563 spec->coef0 = alc_read_coef_idx(codec, 0);
1564 return spec->coef0;
1568 * Digital I/O handling
1571 /* set right pin controls for digital I/O */
1572 static void alc_auto_init_digital(struct hda_codec *codec)
1574 struct alc_spec *spec = codec->spec;
1575 int i;
1576 hda_nid_t pin, dac;
1578 for (i = 0; i < spec->autocfg.dig_outs; i++) {
1579 pin = spec->autocfg.dig_out_pins[i];
1580 if (!pin)
1581 continue;
1582 snd_hda_codec_write(codec, pin, 0,
1583 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
1584 if (!i)
1585 dac = spec->multiout.dig_out_nid;
1586 else
1587 dac = spec->slave_dig_outs[i - 1];
1588 if (!dac || !(get_wcaps(codec, dac) & AC_WCAP_OUT_AMP))
1589 continue;
1590 snd_hda_codec_write(codec, dac, 0,
1591 AC_VERB_SET_AMP_GAIN_MUTE,
1592 AMP_OUT_UNMUTE);
1594 pin = spec->autocfg.dig_in_pin;
1595 if (pin)
1596 snd_hda_codec_write(codec, pin, 0,
1597 AC_VERB_SET_PIN_WIDGET_CONTROL,
1598 PIN_IN);
1601 /* parse digital I/Os and set up NIDs in BIOS auto-parse mode */
1602 static void alc_auto_parse_digital(struct hda_codec *codec)
1604 struct alc_spec *spec = codec->spec;
1605 int i, err;
1606 hda_nid_t dig_nid;
1608 /* support multiple SPDIFs; the secondary is set up as a slave */
1609 for (i = 0; i < spec->autocfg.dig_outs; i++) {
1610 hda_nid_t conn[4];
1611 err = snd_hda_get_connections(codec,
1612 spec->autocfg.dig_out_pins[i],
1613 conn, ARRAY_SIZE(conn));
1614 if (err < 0)
1615 continue;
1616 dig_nid = conn[0]; /* assume the first element is audio-out */
1617 if (!i) {
1618 spec->multiout.dig_out_nid = dig_nid;
1619 spec->dig_out_type = spec->autocfg.dig_out_type[0];
1620 } else {
1621 spec->multiout.slave_dig_outs = spec->slave_dig_outs;
1622 if (i >= ARRAY_SIZE(spec->slave_dig_outs) - 1)
1623 break;
1624 spec->slave_dig_outs[i - 1] = dig_nid;
1628 if (spec->autocfg.dig_in_pin) {
1629 dig_nid = codec->start_nid;
1630 for (i = 0; i < codec->num_nodes; i++, dig_nid++) {
1631 unsigned int wcaps = get_wcaps(codec, dig_nid);
1632 if (get_wcaps_type(wcaps) != AC_WID_AUD_IN)
1633 continue;
1634 if (!(wcaps & AC_WCAP_DIGITAL))
1635 continue;
1636 if (!(wcaps & AC_WCAP_CONN_LIST))
1637 continue;
1638 err = get_connection_index(codec, dig_nid,
1639 spec->autocfg.dig_in_pin);
1640 if (err >= 0) {
1641 spec->dig_in_nid = dig_nid;
1642 break;
1649 * capture mixer elements
1651 static int alc_cap_vol_info(struct snd_kcontrol *kcontrol,
1652 struct snd_ctl_elem_info *uinfo)
1654 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1655 struct alc_spec *spec = codec->spec;
1656 unsigned long val;
1657 int err;
1659 mutex_lock(&codec->control_mutex);
1660 if (spec->vol_in_capsrc)
1661 val = HDA_COMPOSE_AMP_VAL(spec->capsrc_nids[0], 3, 0, HDA_OUTPUT);
1662 else
1663 val = HDA_COMPOSE_AMP_VAL(spec->adc_nids[0], 3, 0, HDA_INPUT);
1664 kcontrol->private_value = val;
1665 err = snd_hda_mixer_amp_volume_info(kcontrol, uinfo);
1666 mutex_unlock(&codec->control_mutex);
1667 return err;
1670 static int alc_cap_vol_tlv(struct snd_kcontrol *kcontrol, int op_flag,
1671 unsigned int size, unsigned int __user *tlv)
1673 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1674 struct alc_spec *spec = codec->spec;
1675 unsigned long val;
1676 int err;
1678 mutex_lock(&codec->control_mutex);
1679 if (spec->vol_in_capsrc)
1680 val = HDA_COMPOSE_AMP_VAL(spec->capsrc_nids[0], 3, 0, HDA_OUTPUT);
1681 else
1682 val = HDA_COMPOSE_AMP_VAL(spec->adc_nids[0], 3, 0, HDA_INPUT);
1683 kcontrol->private_value = val;
1684 err = snd_hda_mixer_amp_tlv(kcontrol, op_flag, size, tlv);
1685 mutex_unlock(&codec->control_mutex);
1686 return err;
1689 typedef int (*getput_call_t)(struct snd_kcontrol *kcontrol,
1690 struct snd_ctl_elem_value *ucontrol);
1692 static int alc_cap_getput_caller(struct snd_kcontrol *kcontrol,
1693 struct snd_ctl_elem_value *ucontrol,
1694 getput_call_t func, bool check_adc_switch)
1696 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
1697 struct alc_spec *spec = codec->spec;
1698 int i, err = 0;
1700 mutex_lock(&codec->control_mutex);
1701 if (check_adc_switch && spec->dyn_adc_switch) {
1702 for (i = 0; i < spec->num_adc_nids; i++) {
1703 kcontrol->private_value =
1704 HDA_COMPOSE_AMP_VAL(spec->adc_nids[i],
1705 3, 0, HDA_INPUT);
1706 err = func(kcontrol, ucontrol);
1707 if (err < 0)
1708 goto error;
1710 } else {
1711 i = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
1712 if (spec->vol_in_capsrc)
1713 kcontrol->private_value =
1714 HDA_COMPOSE_AMP_VAL(spec->capsrc_nids[i],
1715 3, 0, HDA_OUTPUT);
1716 else
1717 kcontrol->private_value =
1718 HDA_COMPOSE_AMP_VAL(spec->adc_nids[i],
1719 3, 0, HDA_INPUT);
1720 err = func(kcontrol, ucontrol);
1722 error:
1723 mutex_unlock(&codec->control_mutex);
1724 return err;
1727 static int alc_cap_vol_get(struct snd_kcontrol *kcontrol,
1728 struct snd_ctl_elem_value *ucontrol)
1730 return alc_cap_getput_caller(kcontrol, ucontrol,
1731 snd_hda_mixer_amp_volume_get, false);
1734 static int alc_cap_vol_put(struct snd_kcontrol *kcontrol,
1735 struct snd_ctl_elem_value *ucontrol)
1737 return alc_cap_getput_caller(kcontrol, ucontrol,
1738 snd_hda_mixer_amp_volume_put, true);
1741 /* capture mixer elements */
1742 #define alc_cap_sw_info snd_ctl_boolean_stereo_info
1744 static int alc_cap_sw_get(struct snd_kcontrol *kcontrol,
1745 struct snd_ctl_elem_value *ucontrol)
1747 return alc_cap_getput_caller(kcontrol, ucontrol,
1748 snd_hda_mixer_amp_switch_get, false);
1751 static int alc_cap_sw_put(struct snd_kcontrol *kcontrol,
1752 struct snd_ctl_elem_value *ucontrol)
1754 return alc_cap_getput_caller(kcontrol, ucontrol,
1755 snd_hda_mixer_amp_switch_put, true);
1758 #define _DEFINE_CAPMIX(num) \
1760 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1761 .name = "Capture Switch", \
1762 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE, \
1763 .count = num, \
1764 .info = alc_cap_sw_info, \
1765 .get = alc_cap_sw_get, \
1766 .put = alc_cap_sw_put, \
1767 }, \
1769 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1770 .name = "Capture Volume", \
1771 .access = (SNDRV_CTL_ELEM_ACCESS_READWRITE | \
1772 SNDRV_CTL_ELEM_ACCESS_TLV_READ | \
1773 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK), \
1774 .count = num, \
1775 .info = alc_cap_vol_info, \
1776 .get = alc_cap_vol_get, \
1777 .put = alc_cap_vol_put, \
1778 .tlv = { .c = alc_cap_vol_tlv }, \
1781 #define _DEFINE_CAPSRC(num) \
1783 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1784 /* .name = "Capture Source", */ \
1785 .name = "Input Source", \
1786 .count = num, \
1787 .info = alc_mux_enum_info, \
1788 .get = alc_mux_enum_get, \
1789 .put = alc_mux_enum_put, \
1792 #define DEFINE_CAPMIX(num) \
1793 static const struct snd_kcontrol_new alc_capture_mixer ## num[] = { \
1794 _DEFINE_CAPMIX(num), \
1795 _DEFINE_CAPSRC(num), \
1796 { } /* end */ \
1799 #define DEFINE_CAPMIX_NOSRC(num) \
1800 static const struct snd_kcontrol_new alc_capture_mixer_nosrc ## num[] = { \
1801 _DEFINE_CAPMIX(num), \
1802 { } /* end */ \
1805 /* up to three ADCs */
1806 DEFINE_CAPMIX(1);
1807 DEFINE_CAPMIX(2);
1808 DEFINE_CAPMIX(3);
1809 DEFINE_CAPMIX_NOSRC(1);
1810 DEFINE_CAPMIX_NOSRC(2);
1811 DEFINE_CAPMIX_NOSRC(3);
1814 * virtual master controls
1818 * slave controls for virtual master
1820 static const char * const alc_slave_vols[] = {
1821 "Front Playback Volume",
1822 "Surround Playback Volume",
1823 "Center Playback Volume",
1824 "LFE Playback Volume",
1825 "Side Playback Volume",
1826 "Headphone Playback Volume",
1827 "Speaker Playback Volume",
1828 "Mono Playback Volume",
1829 "Line-Out Playback Volume",
1830 "PCM Playback Volume",
1831 NULL,
1834 static const char * const alc_slave_sws[] = {
1835 "Front Playback Switch",
1836 "Surround Playback Switch",
1837 "Center Playback Switch",
1838 "LFE Playback Switch",
1839 "Side Playback Switch",
1840 "Headphone Playback Switch",
1841 "Speaker Playback Switch",
1842 "Mono Playback Switch",
1843 "IEC958 Playback Switch",
1844 "Line-Out Playback Switch",
1845 "PCM Playback Switch",
1846 NULL,
1850 * build control elements
1853 #define NID_MAPPING (-1)
1855 #define SUBDEV_SPEAKER_ (0 << 6)
1856 #define SUBDEV_HP_ (1 << 6)
1857 #define SUBDEV_LINE_ (2 << 6)
1858 #define SUBDEV_SPEAKER(x) (SUBDEV_SPEAKER_ | ((x) & 0x3f))
1859 #define SUBDEV_HP(x) (SUBDEV_HP_ | ((x) & 0x3f))
1860 #define SUBDEV_LINE(x) (SUBDEV_LINE_ | ((x) & 0x3f))
1862 static void alc_free_kctls(struct hda_codec *codec);
1864 #ifdef CONFIG_SND_HDA_INPUT_BEEP
1865 /* additional beep mixers; the actual parameters are overwritten at build */
1866 static const struct snd_kcontrol_new alc_beep_mixer[] = {
1867 HDA_CODEC_VOLUME("Beep Playback Volume", 0, 0, HDA_INPUT),
1868 HDA_CODEC_MUTE_BEEP("Beep Playback Switch", 0, 0, HDA_INPUT),
1869 { } /* end */
1871 #endif
1873 static int alc_build_controls(struct hda_codec *codec)
1875 struct alc_spec *spec = codec->spec;
1876 struct snd_kcontrol *kctl = NULL;
1877 const struct snd_kcontrol_new *knew;
1878 int i, j, err;
1879 unsigned int u;
1880 hda_nid_t nid;
1882 for (i = 0; i < spec->num_mixers; i++) {
1883 err = snd_hda_add_new_ctls(codec, spec->mixers[i]);
1884 if (err < 0)
1885 return err;
1887 if (spec->cap_mixer) {
1888 err = snd_hda_add_new_ctls(codec, spec->cap_mixer);
1889 if (err < 0)
1890 return err;
1892 if (spec->multiout.dig_out_nid) {
1893 err = snd_hda_create_spdif_out_ctls(codec,
1894 spec->multiout.dig_out_nid,
1895 spec->multiout.dig_out_nid);
1896 if (err < 0)
1897 return err;
1898 if (!spec->no_analog) {
1899 err = snd_hda_create_spdif_share_sw(codec,
1900 &spec->multiout);
1901 if (err < 0)
1902 return err;
1903 spec->multiout.share_spdif = 1;
1906 if (spec->dig_in_nid) {
1907 err = snd_hda_create_spdif_in_ctls(codec, spec->dig_in_nid);
1908 if (err < 0)
1909 return err;
1912 #ifdef CONFIG_SND_HDA_INPUT_BEEP
1913 /* create beep controls if needed */
1914 if (spec->beep_amp) {
1915 const struct snd_kcontrol_new *knew;
1916 for (knew = alc_beep_mixer; knew->name; knew++) {
1917 struct snd_kcontrol *kctl;
1918 kctl = snd_ctl_new1(knew, codec);
1919 if (!kctl)
1920 return -ENOMEM;
1921 kctl->private_value = spec->beep_amp;
1922 err = snd_hda_ctl_add(codec, 0, kctl);
1923 if (err < 0)
1924 return err;
1927 #endif
1929 /* if we have no master control, let's create it */
1930 if (!spec->no_analog &&
1931 !snd_hda_find_mixer_ctl(codec, "Master Playback Volume")) {
1932 unsigned int vmaster_tlv[4];
1933 snd_hda_set_vmaster_tlv(codec, spec->vmaster_nid,
1934 HDA_OUTPUT, vmaster_tlv);
1935 err = snd_hda_add_vmaster(codec, "Master Playback Volume",
1936 vmaster_tlv, alc_slave_vols);
1937 if (err < 0)
1938 return err;
1940 if (!spec->no_analog &&
1941 !snd_hda_find_mixer_ctl(codec, "Master Playback Switch")) {
1942 err = snd_hda_add_vmaster(codec, "Master Playback Switch",
1943 NULL, alc_slave_sws);
1944 if (err < 0)
1945 return err;
1948 /* assign Capture Source enums to NID */
1949 if (spec->capsrc_nids || spec->adc_nids) {
1950 kctl = snd_hda_find_mixer_ctl(codec, "Capture Source");
1951 if (!kctl)
1952 kctl = snd_hda_find_mixer_ctl(codec, "Input Source");
1953 for (i = 0; kctl && i < kctl->count; i++) {
1954 const hda_nid_t *nids = spec->capsrc_nids;
1955 if (!nids)
1956 nids = spec->adc_nids;
1957 err = snd_hda_add_nid(codec, kctl, i, nids[i]);
1958 if (err < 0)
1959 return err;
1962 if (spec->cap_mixer && spec->adc_nids) {
1963 const char *kname = kctl ? kctl->id.name : NULL;
1964 for (knew = spec->cap_mixer; knew->name; knew++) {
1965 if (kname && strcmp(knew->name, kname) == 0)
1966 continue;
1967 kctl = snd_hda_find_mixer_ctl(codec, knew->name);
1968 for (i = 0; kctl && i < kctl->count; i++) {
1969 err = snd_hda_add_nid(codec, kctl, i,
1970 spec->adc_nids[i]);
1971 if (err < 0)
1972 return err;
1977 /* other nid->control mapping */
1978 for (i = 0; i < spec->num_mixers; i++) {
1979 for (knew = spec->mixers[i]; knew->name; knew++) {
1980 if (knew->iface != NID_MAPPING)
1981 continue;
1982 kctl = snd_hda_find_mixer_ctl(codec, knew->name);
1983 if (kctl == NULL)
1984 continue;
1985 u = knew->subdevice;
1986 for (j = 0; j < 4; j++, u >>= 8) {
1987 nid = u & 0x3f;
1988 if (nid == 0)
1989 continue;
1990 switch (u & 0xc0) {
1991 case SUBDEV_SPEAKER_:
1992 nid = spec->autocfg.speaker_pins[nid];
1993 break;
1994 case SUBDEV_LINE_:
1995 nid = spec->autocfg.line_out_pins[nid];
1996 break;
1997 case SUBDEV_HP_:
1998 nid = spec->autocfg.hp_pins[nid];
1999 break;
2000 default:
2001 continue;
2003 err = snd_hda_add_nid(codec, kctl, 0, nid);
2004 if (err < 0)
2005 return err;
2007 u = knew->private_value;
2008 for (j = 0; j < 4; j++, u >>= 8) {
2009 nid = u & 0xff;
2010 if (nid == 0)
2011 continue;
2012 err = snd_hda_add_nid(codec, kctl, 0, nid);
2013 if (err < 0)
2014 return err;
2019 alc_free_kctls(codec); /* no longer needed */
2021 return 0;
2026 * Common callbacks
2029 static void alc_init_special_input_src(struct hda_codec *codec);
2031 static int alc_init(struct hda_codec *codec)
2033 struct alc_spec *spec = codec->spec;
2034 unsigned int i;
2036 alc_fix_pll(codec);
2037 alc_auto_init_amp(codec, spec->init_amp);
2039 for (i = 0; i < spec->num_init_verbs; i++)
2040 snd_hda_sequence_write(codec, spec->init_verbs[i]);
2041 alc_init_special_input_src(codec);
2043 if (spec->init_hook)
2044 spec->init_hook(codec);
2046 alc_apply_fixup(codec, ALC_FIXUP_ACT_INIT);
2048 hda_call_check_power_status(codec, 0x01);
2049 return 0;
2052 static void alc_unsol_event(struct hda_codec *codec, unsigned int res)
2054 struct alc_spec *spec = codec->spec;
2056 if (spec->unsol_event)
2057 spec->unsol_event(codec, res);
2060 #ifdef CONFIG_SND_HDA_POWER_SAVE
2061 static int alc_check_power_status(struct hda_codec *codec, hda_nid_t nid)
2063 struct alc_spec *spec = codec->spec;
2064 return snd_hda_check_amp_list_power(codec, &spec->loopback, nid);
2066 #endif
2069 * Analog playback callbacks
2071 static int alc_playback_pcm_open(struct hda_pcm_stream *hinfo,
2072 struct hda_codec *codec,
2073 struct snd_pcm_substream *substream)
2075 struct alc_spec *spec = codec->spec;
2076 return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream,
2077 hinfo);
2080 static int alc_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
2081 struct hda_codec *codec,
2082 unsigned int stream_tag,
2083 unsigned int format,
2084 struct snd_pcm_substream *substream)
2086 struct alc_spec *spec = codec->spec;
2087 return snd_hda_multi_out_analog_prepare(codec, &spec->multiout,
2088 stream_tag, format, substream);
2091 static int alc_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
2092 struct hda_codec *codec,
2093 struct snd_pcm_substream *substream)
2095 struct alc_spec *spec = codec->spec;
2096 return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout);
2100 * Digital out
2102 static int alc_dig_playback_pcm_open(struct hda_pcm_stream *hinfo,
2103 struct hda_codec *codec,
2104 struct snd_pcm_substream *substream)
2106 struct alc_spec *spec = codec->spec;
2107 return snd_hda_multi_out_dig_open(codec, &spec->multiout);
2110 static int alc_dig_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
2111 struct hda_codec *codec,
2112 unsigned int stream_tag,
2113 unsigned int format,
2114 struct snd_pcm_substream *substream)
2116 struct alc_spec *spec = codec->spec;
2117 return snd_hda_multi_out_dig_prepare(codec, &spec->multiout,
2118 stream_tag, format, substream);
2121 static int alc_dig_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
2122 struct hda_codec *codec,
2123 struct snd_pcm_substream *substream)
2125 struct alc_spec *spec = codec->spec;
2126 return snd_hda_multi_out_dig_cleanup(codec, &spec->multiout);
2129 static int alc_dig_playback_pcm_close(struct hda_pcm_stream *hinfo,
2130 struct hda_codec *codec,
2131 struct snd_pcm_substream *substream)
2133 struct alc_spec *spec = codec->spec;
2134 return snd_hda_multi_out_dig_close(codec, &spec->multiout);
2138 * Analog capture
2140 static int alc_alt_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
2141 struct hda_codec *codec,
2142 unsigned int stream_tag,
2143 unsigned int format,
2144 struct snd_pcm_substream *substream)
2146 struct alc_spec *spec = codec->spec;
2148 snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number + 1],
2149 stream_tag, 0, format);
2150 return 0;
2153 static int alc_alt_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
2154 struct hda_codec *codec,
2155 struct snd_pcm_substream *substream)
2157 struct alc_spec *spec = codec->spec;
2159 snd_hda_codec_cleanup_stream(codec,
2160 spec->adc_nids[substream->number + 1]);
2161 return 0;
2164 /* analog capture with dynamic dual-adc changes */
2165 static int dyn_adc_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
2166 struct hda_codec *codec,
2167 unsigned int stream_tag,
2168 unsigned int format,
2169 struct snd_pcm_substream *substream)
2171 struct alc_spec *spec = codec->spec;
2172 spec->cur_adc = spec->adc_nids[spec->dyn_adc_idx[spec->cur_mux[0]]];
2173 spec->cur_adc_stream_tag = stream_tag;
2174 spec->cur_adc_format = format;
2175 snd_hda_codec_setup_stream(codec, spec->cur_adc, stream_tag, 0, format);
2176 return 0;
2179 static int dyn_adc_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
2180 struct hda_codec *codec,
2181 struct snd_pcm_substream *substream)
2183 struct alc_spec *spec = codec->spec;
2184 snd_hda_codec_cleanup_stream(codec, spec->cur_adc);
2185 spec->cur_adc = 0;
2186 return 0;
2189 static const struct hda_pcm_stream dyn_adc_pcm_analog_capture = {
2190 .substreams = 1,
2191 .channels_min = 2,
2192 .channels_max = 2,
2193 .nid = 0, /* fill later */
2194 .ops = {
2195 .prepare = dyn_adc_capture_pcm_prepare,
2196 .cleanup = dyn_adc_capture_pcm_cleanup
2202 static const struct hda_pcm_stream alc_pcm_analog_playback = {
2203 .substreams = 1,
2204 .channels_min = 2,
2205 .channels_max = 8,
2206 /* NID is set in alc_build_pcms */
2207 .ops = {
2208 .open = alc_playback_pcm_open,
2209 .prepare = alc_playback_pcm_prepare,
2210 .cleanup = alc_playback_pcm_cleanup
2214 static const struct hda_pcm_stream alc_pcm_analog_capture = {
2215 .substreams = 1,
2216 .channels_min = 2,
2217 .channels_max = 2,
2218 /* NID is set in alc_build_pcms */
2221 static const struct hda_pcm_stream alc_pcm_analog_alt_playback = {
2222 .substreams = 1,
2223 .channels_min = 2,
2224 .channels_max = 2,
2225 /* NID is set in alc_build_pcms */
2228 static const struct hda_pcm_stream alc_pcm_analog_alt_capture = {
2229 .substreams = 2, /* can be overridden */
2230 .channels_min = 2,
2231 .channels_max = 2,
2232 /* NID is set in alc_build_pcms */
2233 .ops = {
2234 .prepare = alc_alt_capture_pcm_prepare,
2235 .cleanup = alc_alt_capture_pcm_cleanup
2239 static const struct hda_pcm_stream alc_pcm_digital_playback = {
2240 .substreams = 1,
2241 .channels_min = 2,
2242 .channels_max = 2,
2243 /* NID is set in alc_build_pcms */
2244 .ops = {
2245 .open = alc_dig_playback_pcm_open,
2246 .close = alc_dig_playback_pcm_close,
2247 .prepare = alc_dig_playback_pcm_prepare,
2248 .cleanup = alc_dig_playback_pcm_cleanup
2252 static const struct hda_pcm_stream alc_pcm_digital_capture = {
2253 .substreams = 1,
2254 .channels_min = 2,
2255 .channels_max = 2,
2256 /* NID is set in alc_build_pcms */
2259 /* Used by alc_build_pcms to flag that a PCM has no playback stream */
2260 static const struct hda_pcm_stream alc_pcm_null_stream = {
2261 .substreams = 0,
2262 .channels_min = 0,
2263 .channels_max = 0,
2266 static int alc_build_pcms(struct hda_codec *codec)
2268 struct alc_spec *spec = codec->spec;
2269 struct hda_pcm *info = spec->pcm_rec;
2270 const struct hda_pcm_stream *p;
2271 int i;
2273 codec->num_pcms = 1;
2274 codec->pcm_info = info;
2276 if (spec->no_analog)
2277 goto skip_analog;
2279 snprintf(spec->stream_name_analog, sizeof(spec->stream_name_analog),
2280 "%s Analog", codec->chip_name);
2281 info->name = spec->stream_name_analog;
2283 if (spec->multiout.dac_nids > 0) {
2284 p = spec->stream_analog_playback;
2285 if (!p)
2286 p = &alc_pcm_analog_playback;
2287 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = *p;
2288 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dac_nids[0];
2290 if (spec->adc_nids) {
2291 p = spec->stream_analog_capture;
2292 if (!p) {
2293 if (spec->dyn_adc_switch)
2294 p = &dyn_adc_pcm_analog_capture;
2295 else
2296 p = &alc_pcm_analog_capture;
2298 info->stream[SNDRV_PCM_STREAM_CAPTURE] = *p;
2299 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[0];
2302 if (spec->channel_mode) {
2303 info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max = 0;
2304 for (i = 0; i < spec->num_channel_mode; i++) {
2305 if (spec->channel_mode[i].channels > info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max) {
2306 info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max = spec->channel_mode[i].channels;
2311 skip_analog:
2312 /* SPDIF for stream index #1 */
2313 if (spec->multiout.dig_out_nid || spec->dig_in_nid) {
2314 snprintf(spec->stream_name_digital,
2315 sizeof(spec->stream_name_digital),
2316 "%s Digital", codec->chip_name);
2317 codec->num_pcms = 2;
2318 codec->slave_dig_outs = spec->multiout.slave_dig_outs;
2319 info = spec->pcm_rec + 1;
2320 info->name = spec->stream_name_digital;
2321 if (spec->dig_out_type)
2322 info->pcm_type = spec->dig_out_type;
2323 else
2324 info->pcm_type = HDA_PCM_TYPE_SPDIF;
2325 if (spec->multiout.dig_out_nid) {
2326 p = spec->stream_digital_playback;
2327 if (!p)
2328 p = &alc_pcm_digital_playback;
2329 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = *p;
2330 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dig_out_nid;
2332 if (spec->dig_in_nid) {
2333 p = spec->stream_digital_capture;
2334 if (!p)
2335 p = &alc_pcm_digital_capture;
2336 info->stream[SNDRV_PCM_STREAM_CAPTURE] = *p;
2337 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->dig_in_nid;
2339 /* FIXME: do we need this for all Realtek codec models? */
2340 codec->spdif_status_reset = 1;
2343 if (spec->no_analog)
2344 return 0;
2346 /* If the use of more than one ADC is requested for the current
2347 * model, configure a second analog capture-only PCM.
2349 /* Additional Analaog capture for index #2 */
2350 if (spec->alt_dac_nid || spec->num_adc_nids > 1) {
2351 codec->num_pcms = 3;
2352 info = spec->pcm_rec + 2;
2353 info->name = spec->stream_name_analog;
2354 if (spec->alt_dac_nid) {
2355 p = spec->stream_analog_alt_playback;
2356 if (!p)
2357 p = &alc_pcm_analog_alt_playback;
2358 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = *p;
2359 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid =
2360 spec->alt_dac_nid;
2361 } else {
2362 info->stream[SNDRV_PCM_STREAM_PLAYBACK] =
2363 alc_pcm_null_stream;
2364 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = 0;
2366 if (spec->num_adc_nids > 1) {
2367 p = spec->stream_analog_alt_capture;
2368 if (!p)
2369 p = &alc_pcm_analog_alt_capture;
2370 info->stream[SNDRV_PCM_STREAM_CAPTURE] = *p;
2371 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid =
2372 spec->adc_nids[1];
2373 info->stream[SNDRV_PCM_STREAM_CAPTURE].substreams =
2374 spec->num_adc_nids - 1;
2375 } else {
2376 info->stream[SNDRV_PCM_STREAM_CAPTURE] =
2377 alc_pcm_null_stream;
2378 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = 0;
2382 return 0;
2385 static inline void alc_shutup(struct hda_codec *codec)
2387 struct alc_spec *spec = codec->spec;
2389 if (spec && spec->shutup)
2390 spec->shutup(codec);
2391 snd_hda_shutup_pins(codec);
2394 static void alc_free_kctls(struct hda_codec *codec)
2396 struct alc_spec *spec = codec->spec;
2398 if (spec->kctls.list) {
2399 struct snd_kcontrol_new *kctl = spec->kctls.list;
2400 int i;
2401 for (i = 0; i < spec->kctls.used; i++)
2402 kfree(kctl[i].name);
2404 snd_array_free(&spec->kctls);
2407 static void alc_free_bind_ctls(struct hda_codec *codec)
2409 struct alc_spec *spec = codec->spec;
2410 if (spec->bind_ctls.list) {
2411 struct hda_bind_ctls **ctl = spec->bind_ctls.list;
2412 int i;
2413 for (i = 0; i < spec->bind_ctls.used; i++)
2414 kfree(ctl[i]);
2416 snd_array_free(&spec->bind_ctls);
2419 static void alc_free(struct hda_codec *codec)
2421 struct alc_spec *spec = codec->spec;
2423 if (!spec)
2424 return;
2426 alc_shutup(codec);
2427 snd_hda_input_jack_free(codec);
2428 alc_free_kctls(codec);
2429 alc_free_bind_ctls(codec);
2430 kfree(spec);
2431 snd_hda_detach_beep_device(codec);
2434 #ifdef CONFIG_SND_HDA_POWER_SAVE
2435 static void alc_power_eapd(struct hda_codec *codec)
2437 alc_auto_setup_eapd(codec, false);
2440 static int alc_suspend(struct hda_codec *codec, pm_message_t state)
2442 struct alc_spec *spec = codec->spec;
2443 alc_shutup(codec);
2444 if (spec && spec->power_hook)
2445 spec->power_hook(codec);
2446 return 0;
2448 #endif
2450 #ifdef CONFIG_PM
2451 static int alc_resume(struct hda_codec *codec)
2453 msleep(150); /* to avoid pop noise */
2454 codec->patch_ops.init(codec);
2455 snd_hda_codec_resume_amp(codec);
2456 snd_hda_codec_resume_cache(codec);
2457 hda_call_check_power_status(codec, 0x01);
2458 return 0;
2460 #endif
2464 static const struct hda_codec_ops alc_patch_ops = {
2465 .build_controls = alc_build_controls,
2466 .build_pcms = alc_build_pcms,
2467 .init = alc_init,
2468 .free = alc_free,
2469 .unsol_event = alc_unsol_event,
2470 #ifdef CONFIG_PM
2471 .resume = alc_resume,
2472 #endif
2473 #ifdef CONFIG_SND_HDA_POWER_SAVE
2474 .suspend = alc_suspend,
2475 .check_power_status = alc_check_power_status,
2476 #endif
2477 .reboot_notify = alc_shutup,
2480 /* replace the codec chip_name with the given string */
2481 static int alc_codec_rename(struct hda_codec *codec, const char *name)
2483 kfree(codec->chip_name);
2484 codec->chip_name = kstrdup(name, GFP_KERNEL);
2485 if (!codec->chip_name) {
2486 alc_free(codec);
2487 return -ENOMEM;
2489 return 0;
2493 * Rename codecs appropriately from COEF value
2495 struct alc_codec_rename_table {
2496 unsigned int vendor_id;
2497 unsigned short coef_mask;
2498 unsigned short coef_bits;
2499 const char *name;
2502 static struct alc_codec_rename_table rename_tbl[] = {
2503 { 0x10ec0269, 0xfff0, 0x3010, "ALC277" },
2504 { 0x10ec0269, 0xf0f0, 0x2010, "ALC259" },
2505 { 0x10ec0269, 0xf0f0, 0x3010, "ALC258" },
2506 { 0x10ec0269, 0x00f0, 0x0010, "ALC269VB" },
2507 { 0x10ec0269, 0xffff, 0xa023, "ALC259" },
2508 { 0x10ec0269, 0xffff, 0x6023, "ALC281X" },
2509 { 0x10ec0269, 0x00f0, 0x0020, "ALC269VC" },
2510 { 0x10ec0887, 0x00f0, 0x0030, "ALC887-VD" },
2511 { 0x10ec0888, 0x00f0, 0x0030, "ALC888-VD" },
2512 { 0x10ec0888, 0xf0f0, 0x3020, "ALC886" },
2513 { 0x10ec0899, 0x2000, 0x2000, "ALC899" },
2514 { 0x10ec0892, 0xffff, 0x8020, "ALC661" },
2515 { 0x10ec0892, 0xffff, 0x8011, "ALC661" },
2516 { 0x10ec0892, 0xffff, 0x4011, "ALC656" },
2517 { } /* terminator */
2520 static int alc_codec_rename_from_preset(struct hda_codec *codec)
2522 const struct alc_codec_rename_table *p;
2524 for (p = rename_tbl; p->vendor_id; p++) {
2525 if (p->vendor_id != codec->vendor_id)
2526 continue;
2527 if ((alc_get_coef0(codec) & p->coef_mask) == p->coef_bits)
2528 return alc_codec_rename(codec, p->name);
2530 return 0;
2534 * Automatic parse of I/O pins from the BIOS configuration
2537 enum {
2538 ALC_CTL_WIDGET_VOL,
2539 ALC_CTL_WIDGET_MUTE,
2540 ALC_CTL_BIND_MUTE,
2541 ALC_CTL_BIND_VOL,
2542 ALC_CTL_BIND_SW,
2544 static const struct snd_kcontrol_new alc_control_templates[] = {
2545 HDA_CODEC_VOLUME(NULL, 0, 0, 0),
2546 HDA_CODEC_MUTE(NULL, 0, 0, 0),
2547 HDA_BIND_MUTE(NULL, 0, 0, 0),
2548 HDA_BIND_VOL(NULL, 0),
2549 HDA_BIND_SW(NULL, 0),
2552 /* add dynamic controls */
2553 static int add_control(struct alc_spec *spec, int type, const char *name,
2554 int cidx, unsigned long val)
2556 struct snd_kcontrol_new *knew;
2558 knew = alc_kcontrol_new(spec);
2559 if (!knew)
2560 return -ENOMEM;
2561 *knew = alc_control_templates[type];
2562 knew->name = kstrdup(name, GFP_KERNEL);
2563 if (!knew->name)
2564 return -ENOMEM;
2565 knew->index = cidx;
2566 if (get_amp_nid_(val))
2567 knew->subdevice = HDA_SUBDEV_AMP_FLAG;
2568 knew->private_value = val;
2569 return 0;
2572 static int add_control_with_pfx(struct alc_spec *spec, int type,
2573 const char *pfx, const char *dir,
2574 const char *sfx, int cidx, unsigned long val)
2576 char name[32];
2577 snprintf(name, sizeof(name), "%s %s %s", pfx, dir, sfx);
2578 return add_control(spec, type, name, cidx, val);
2581 #define add_pb_vol_ctrl(spec, type, pfx, val) \
2582 add_control_with_pfx(spec, type, pfx, "Playback", "Volume", 0, val)
2583 #define add_pb_sw_ctrl(spec, type, pfx, val) \
2584 add_control_with_pfx(spec, type, pfx, "Playback", "Switch", 0, val)
2585 #define __add_pb_vol_ctrl(spec, type, pfx, cidx, val) \
2586 add_control_with_pfx(spec, type, pfx, "Playback", "Volume", cidx, val)
2587 #define __add_pb_sw_ctrl(spec, type, pfx, cidx, val) \
2588 add_control_with_pfx(spec, type, pfx, "Playback", "Switch", cidx, val)
2590 static const char * const channel_name[4] = {
2591 "Front", "Surround", "CLFE", "Side"
2594 static const char *alc_get_line_out_pfx(struct alc_spec *spec, int ch,
2595 bool can_be_master, int *index)
2597 struct auto_pin_cfg *cfg = &spec->autocfg;
2599 *index = 0;
2600 if (cfg->line_outs == 1 && !spec->multi_ios &&
2601 !cfg->hp_outs && !cfg->speaker_outs && can_be_master)
2602 return "Master";
2604 switch (cfg->line_out_type) {
2605 case AUTO_PIN_SPEAKER_OUT:
2606 if (cfg->line_outs == 1)
2607 return "Speaker";
2608 break;
2609 case AUTO_PIN_HP_OUT:
2610 /* for multi-io case, only the primary out */
2611 if (ch && spec->multi_ios)
2612 break;
2613 *index = ch;
2614 return "Headphone";
2615 default:
2616 if (cfg->line_outs == 1 && !spec->multi_ios)
2617 return "PCM";
2618 break;
2620 if (snd_BUG_ON(ch >= ARRAY_SIZE(channel_name)))
2621 return "PCM";
2623 return channel_name[ch];
2626 /* create input playback/capture controls for the given pin */
2627 static int new_analog_input(struct alc_spec *spec, hda_nid_t pin,
2628 const char *ctlname, int ctlidx,
2629 int idx, hda_nid_t mix_nid)
2631 int err;
2633 err = __add_pb_vol_ctrl(spec, ALC_CTL_WIDGET_VOL, ctlname, ctlidx,
2634 HDA_COMPOSE_AMP_VAL(mix_nid, 3, idx, HDA_INPUT));
2635 if (err < 0)
2636 return err;
2637 err = __add_pb_sw_ctrl(spec, ALC_CTL_WIDGET_MUTE, ctlname, ctlidx,
2638 HDA_COMPOSE_AMP_VAL(mix_nid, 3, idx, HDA_INPUT));
2639 if (err < 0)
2640 return err;
2641 return 0;
2644 static int alc_is_input_pin(struct hda_codec *codec, hda_nid_t nid)
2646 unsigned int pincap = snd_hda_query_pin_caps(codec, nid);
2647 return (pincap & AC_PINCAP_IN) != 0;
2650 /* Parse the codec tree and retrieve ADCs and corresponding capsrc MUXs */
2651 static int alc_auto_fill_adc_caps(struct hda_codec *codec)
2653 struct alc_spec *spec = codec->spec;
2654 hda_nid_t nid;
2655 hda_nid_t *adc_nids = spec->private_adc_nids;
2656 hda_nid_t *cap_nids = spec->private_capsrc_nids;
2657 int max_nums = ARRAY_SIZE(spec->private_adc_nids);
2658 bool indep_capsrc = false;
2659 int i, nums = 0;
2661 nid = codec->start_nid;
2662 for (i = 0; i < codec->num_nodes; i++, nid++) {
2663 hda_nid_t src;
2664 const hda_nid_t *list;
2665 unsigned int caps = get_wcaps(codec, nid);
2666 int type = get_wcaps_type(caps);
2668 if (type != AC_WID_AUD_IN || (caps & AC_WCAP_DIGITAL))
2669 continue;
2670 adc_nids[nums] = nid;
2671 cap_nids[nums] = nid;
2672 src = nid;
2673 for (;;) {
2674 int n;
2675 type = get_wcaps_type(get_wcaps(codec, src));
2676 if (type == AC_WID_PIN)
2677 break;
2678 if (type == AC_WID_AUD_SEL) {
2679 cap_nids[nums] = src;
2680 indep_capsrc = true;
2681 break;
2683 n = snd_hda_get_conn_list(codec, src, &list);
2684 if (n > 1) {
2685 cap_nids[nums] = src;
2686 indep_capsrc = true;
2687 break;
2688 } else if (n != 1)
2689 break;
2690 src = *list;
2692 if (++nums >= max_nums)
2693 break;
2695 spec->adc_nids = spec->private_adc_nids;
2696 spec->capsrc_nids = spec->private_capsrc_nids;
2697 spec->num_adc_nids = nums;
2698 return nums;
2701 /* create playback/capture controls for input pins */
2702 static int alc_auto_create_input_ctls(struct hda_codec *codec)
2704 struct alc_spec *spec = codec->spec;
2705 const struct auto_pin_cfg *cfg = &spec->autocfg;
2706 hda_nid_t mixer = spec->mixer_nid;
2707 struct hda_input_mux *imux = &spec->private_imux[0];
2708 int num_adcs;
2709 int i, c, err, idx, type_idx = 0;
2710 const char *prev_label = NULL;
2712 num_adcs = alc_auto_fill_adc_caps(codec);
2713 if (num_adcs < 0)
2714 return 0;
2716 for (i = 0; i < cfg->num_inputs; i++) {
2717 hda_nid_t pin;
2718 const char *label;
2720 pin = cfg->inputs[i].pin;
2721 if (!alc_is_input_pin(codec, pin))
2722 continue;
2724 label = hda_get_autocfg_input_label(codec, cfg, i);
2725 if (prev_label && !strcmp(label, prev_label))
2726 type_idx++;
2727 else
2728 type_idx = 0;
2729 prev_label = label;
2731 if (mixer) {
2732 idx = get_connection_index(codec, mixer, pin);
2733 if (idx >= 0) {
2734 err = new_analog_input(spec, pin,
2735 label, type_idx,
2736 idx, mixer);
2737 if (err < 0)
2738 return err;
2742 for (c = 0; c < num_adcs; c++) {
2743 hda_nid_t cap = spec->capsrc_nids ?
2744 spec->capsrc_nids[c] : spec->adc_nids[c];
2745 idx = get_connection_index(codec, cap, pin);
2746 if (idx >= 0) {
2747 spec->imux_pins[imux->num_items] = pin;
2748 snd_hda_add_imux_item(imux, label, idx, NULL);
2749 break;
2754 spec->num_mux_defs = 1;
2755 spec->input_mux = imux;
2757 return 0;
2760 static void alc_set_pin_output(struct hda_codec *codec, hda_nid_t nid,
2761 unsigned int pin_type)
2763 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
2764 pin_type);
2765 /* unmute pin */
2766 if (nid_has_mute(codec, nid, HDA_OUTPUT))
2767 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
2768 AMP_OUT_UNMUTE);
2771 static int get_pin_type(int line_out_type)
2773 if (line_out_type == AUTO_PIN_HP_OUT)
2774 return PIN_HP;
2775 else
2776 return PIN_OUT;
2779 static void alc_auto_init_analog_input(struct hda_codec *codec)
2781 struct alc_spec *spec = codec->spec;
2782 struct auto_pin_cfg *cfg = &spec->autocfg;
2783 int i;
2785 for (i = 0; i < cfg->num_inputs; i++) {
2786 hda_nid_t nid = cfg->inputs[i].pin;
2787 if (alc_is_input_pin(codec, nid)) {
2788 alc_set_input_pin(codec, nid, cfg->inputs[i].type);
2789 if (get_wcaps(codec, nid) & AC_WCAP_OUT_AMP)
2790 snd_hda_codec_write(codec, nid, 0,
2791 AC_VERB_SET_AMP_GAIN_MUTE,
2792 AMP_OUT_MUTE);
2796 /* mute all loopback inputs */
2797 if (spec->mixer_nid) {
2798 int nums = snd_hda_get_conn_list(codec, spec->mixer_nid, NULL);
2799 for (i = 0; i < nums; i++)
2800 snd_hda_codec_write(codec, spec->mixer_nid, 0,
2801 AC_VERB_SET_AMP_GAIN_MUTE,
2802 AMP_IN_MUTE(i));
2806 /* convert from MIX nid to DAC */
2807 static hda_nid_t alc_auto_mix_to_dac(struct hda_codec *codec, hda_nid_t nid)
2809 hda_nid_t list[5];
2810 int i, num;
2812 if (get_wcaps_type(get_wcaps(codec, nid)) == AC_WID_AUD_OUT)
2813 return nid;
2814 num = snd_hda_get_connections(codec, nid, list, ARRAY_SIZE(list));
2815 for (i = 0; i < num; i++) {
2816 if (get_wcaps_type(get_wcaps(codec, list[i])) == AC_WID_AUD_OUT)
2817 return list[i];
2819 return 0;
2822 /* go down to the selector widget before the mixer */
2823 static hda_nid_t alc_go_down_to_selector(struct hda_codec *codec, hda_nid_t pin)
2825 hda_nid_t srcs[5];
2826 int num = snd_hda_get_connections(codec, pin, srcs,
2827 ARRAY_SIZE(srcs));
2828 if (num != 1 ||
2829 get_wcaps_type(get_wcaps(codec, srcs[0])) != AC_WID_AUD_SEL)
2830 return pin;
2831 return srcs[0];
2834 /* get MIX nid connected to the given pin targeted to DAC */
2835 static hda_nid_t alc_auto_dac_to_mix(struct hda_codec *codec, hda_nid_t pin,
2836 hda_nid_t dac)
2838 hda_nid_t mix[5];
2839 int i, num;
2841 pin = alc_go_down_to_selector(codec, pin);
2842 num = snd_hda_get_connections(codec, pin, mix, ARRAY_SIZE(mix));
2843 for (i = 0; i < num; i++) {
2844 if (alc_auto_mix_to_dac(codec, mix[i]) == dac)
2845 return mix[i];
2847 return 0;
2850 /* select the connection from pin to DAC if needed */
2851 static int alc_auto_select_dac(struct hda_codec *codec, hda_nid_t pin,
2852 hda_nid_t dac)
2854 hda_nid_t mix[5];
2855 int i, num;
2857 pin = alc_go_down_to_selector(codec, pin);
2858 num = snd_hda_get_connections(codec, pin, mix, ARRAY_SIZE(mix));
2859 if (num < 2)
2860 return 0;
2861 for (i = 0; i < num; i++) {
2862 if (alc_auto_mix_to_dac(codec, mix[i]) == dac) {
2863 snd_hda_codec_update_cache(codec, pin, 0,
2864 AC_VERB_SET_CONNECT_SEL, i);
2865 return 0;
2868 return 0;
2871 /* look for an empty DAC slot */
2872 static hda_nid_t alc_auto_look_for_dac(struct hda_codec *codec, hda_nid_t pin)
2874 struct alc_spec *spec = codec->spec;
2875 hda_nid_t srcs[5];
2876 int i, num;
2878 pin = alc_go_down_to_selector(codec, pin);
2879 num = snd_hda_get_connections(codec, pin, srcs, ARRAY_SIZE(srcs));
2880 for (i = 0; i < num; i++) {
2881 hda_nid_t nid = alc_auto_mix_to_dac(codec, srcs[i]);
2882 if (!nid)
2883 continue;
2884 if (found_in_nid_list(nid, spec->multiout.dac_nids,
2885 spec->multiout.num_dacs))
2886 continue;
2887 if (found_in_nid_list(nid, spec->multiout.hp_out_nid,
2888 ARRAY_SIZE(spec->multiout.hp_out_nid)))
2889 continue;
2890 if (found_in_nid_list(nid, spec->multiout.extra_out_nid,
2891 ARRAY_SIZE(spec->multiout.extra_out_nid)))
2892 continue;
2893 return nid;
2895 return 0;
2898 static hda_nid_t get_dac_if_single(struct hda_codec *codec, hda_nid_t pin)
2900 hda_nid_t sel = alc_go_down_to_selector(codec, pin);
2901 if (snd_hda_get_conn_list(codec, sel, NULL) == 1)
2902 return alc_auto_look_for_dac(codec, pin);
2903 return 0;
2906 static int alc_auto_fill_extra_dacs(struct hda_codec *codec, int num_outs,
2907 const hda_nid_t *pins, hda_nid_t *dacs)
2909 int i;
2911 if (num_outs && !dacs[0]) {
2912 dacs[0] = alc_auto_look_for_dac(codec, pins[0]);
2913 if (!dacs[0])
2914 return 0;
2917 for (i = 1; i < num_outs; i++)
2918 dacs[i] = get_dac_if_single(codec, pins[i]);
2919 for (i = 1; i < num_outs; i++) {
2920 if (!dacs[i])
2921 dacs[i] = alc_auto_look_for_dac(codec, pins[i]);
2923 return 0;
2926 static int alc_auto_fill_multi_ios(struct hda_codec *codec,
2927 unsigned int location);
2929 /* fill in the dac_nids table from the parsed pin configuration */
2930 static int alc_auto_fill_dac_nids(struct hda_codec *codec)
2932 struct alc_spec *spec = codec->spec;
2933 const struct auto_pin_cfg *cfg = &spec->autocfg;
2934 bool redone = false;
2935 int i;
2937 again:
2938 /* set num_dacs once to full for alc_auto_look_for_dac() */
2939 spec->multiout.num_dacs = cfg->line_outs;
2940 spec->multiout.hp_out_nid[0] = 0;
2941 spec->multiout.extra_out_nid[0] = 0;
2942 memset(spec->private_dac_nids, 0, sizeof(spec->private_dac_nids));
2943 spec->multiout.dac_nids = spec->private_dac_nids;
2945 /* fill hard-wired DACs first */
2946 if (!redone) {
2947 for (i = 0; i < cfg->line_outs; i++)
2948 spec->private_dac_nids[i] =
2949 get_dac_if_single(codec, cfg->line_out_pins[i]);
2950 if (cfg->hp_outs)
2951 spec->multiout.hp_out_nid[0] =
2952 get_dac_if_single(codec, cfg->hp_pins[0]);
2953 if (cfg->speaker_outs)
2954 spec->multiout.extra_out_nid[0] =
2955 get_dac_if_single(codec, cfg->speaker_pins[0]);
2958 for (i = 0; i < cfg->line_outs; i++) {
2959 hda_nid_t pin = cfg->line_out_pins[i];
2960 if (spec->private_dac_nids[i])
2961 continue;
2962 spec->private_dac_nids[i] = alc_auto_look_for_dac(codec, pin);
2963 if (!spec->private_dac_nids[i] && !redone) {
2964 /* if we can't find primary DACs, re-probe without
2965 * checking the hard-wired DACs
2967 redone = true;
2968 goto again;
2972 /* re-count num_dacs and squash invalid entries */
2973 spec->multiout.num_dacs = 0;
2974 for (i = 0; i < cfg->line_outs; i++) {
2975 if (spec->private_dac_nids[i])
2976 spec->multiout.num_dacs++;
2977 else
2978 memmove(spec->private_dac_nids + i,
2979 spec->private_dac_nids + i + 1,
2980 sizeof(hda_nid_t) * (cfg->line_outs - i - 1));
2983 if (cfg->line_outs == 1 && cfg->line_out_type != AUTO_PIN_SPEAKER_OUT) {
2984 /* try to fill multi-io first */
2985 unsigned int location, defcfg;
2986 int num_pins;
2988 defcfg = snd_hda_codec_get_pincfg(codec, cfg->line_out_pins[0]);
2989 location = get_defcfg_location(defcfg);
2991 num_pins = alc_auto_fill_multi_ios(codec, location);
2992 if (num_pins > 0) {
2993 spec->multi_ios = num_pins;
2994 spec->ext_channel_count = 2;
2995 spec->multiout.num_dacs = num_pins + 1;
2999 if (cfg->line_out_type != AUTO_PIN_HP_OUT)
3000 alc_auto_fill_extra_dacs(codec, cfg->hp_outs, cfg->hp_pins,
3001 spec->multiout.hp_out_nid);
3002 if (cfg->line_out_type != AUTO_PIN_SPEAKER_OUT)
3003 alc_auto_fill_extra_dacs(codec, cfg->speaker_outs, cfg->speaker_pins,
3004 spec->multiout.extra_out_nid);
3006 return 0;
3009 static int alc_auto_add_vol_ctl(struct hda_codec *codec,
3010 const char *pfx, int cidx,
3011 hda_nid_t nid, unsigned int chs)
3013 if (!nid)
3014 return 0;
3015 return __add_pb_vol_ctrl(codec->spec, ALC_CTL_WIDGET_VOL, pfx, cidx,
3016 HDA_COMPOSE_AMP_VAL(nid, chs, 0, HDA_OUTPUT));
3019 #define alc_auto_add_stereo_vol(codec, pfx, cidx, nid) \
3020 alc_auto_add_vol_ctl(codec, pfx, cidx, nid, 3)
3022 /* create a mute-switch for the given mixer widget;
3023 * if it has multiple sources (e.g. DAC and loopback), create a bind-mute
3025 static int alc_auto_add_sw_ctl(struct hda_codec *codec,
3026 const char *pfx, int cidx,
3027 hda_nid_t nid, unsigned int chs)
3029 int wid_type;
3030 int type;
3031 unsigned long val;
3032 if (!nid)
3033 return 0;
3034 wid_type = get_wcaps_type(get_wcaps(codec, nid));
3035 if (wid_type == AC_WID_PIN || wid_type == AC_WID_AUD_OUT) {
3036 type = ALC_CTL_WIDGET_MUTE;
3037 val = HDA_COMPOSE_AMP_VAL(nid, chs, 0, HDA_OUTPUT);
3038 } else if (snd_hda_get_conn_list(codec, nid, NULL) == 1) {
3039 type = ALC_CTL_WIDGET_MUTE;
3040 val = HDA_COMPOSE_AMP_VAL(nid, chs, 0, HDA_INPUT);
3041 } else {
3042 type = ALC_CTL_BIND_MUTE;
3043 val = HDA_COMPOSE_AMP_VAL(nid, chs, 2, HDA_INPUT);
3045 return __add_pb_sw_ctrl(codec->spec, type, pfx, cidx, val);
3048 #define alc_auto_add_stereo_sw(codec, pfx, cidx, nid) \
3049 alc_auto_add_sw_ctl(codec, pfx, cidx, nid, 3)
3051 static hda_nid_t alc_look_for_out_mute_nid(struct hda_codec *codec,
3052 hda_nid_t pin, hda_nid_t dac)
3054 hda_nid_t mix = alc_auto_dac_to_mix(codec, pin, dac);
3055 if (nid_has_mute(codec, pin, HDA_OUTPUT))
3056 return pin;
3057 else if (mix && nid_has_mute(codec, mix, HDA_INPUT))
3058 return mix;
3059 else if (nid_has_mute(codec, dac, HDA_OUTPUT))
3060 return dac;
3061 return 0;
3064 static hda_nid_t alc_look_for_out_vol_nid(struct hda_codec *codec,
3065 hda_nid_t pin, hda_nid_t dac)
3067 hda_nid_t mix = alc_auto_dac_to_mix(codec, pin, dac);
3068 if (nid_has_volume(codec, dac, HDA_OUTPUT))
3069 return dac;
3070 else if (nid_has_volume(codec, mix, HDA_OUTPUT))
3071 return mix;
3072 else if (nid_has_volume(codec, pin, HDA_OUTPUT))
3073 return pin;
3074 return 0;
3077 /* add playback controls from the parsed DAC table */
3078 static int alc_auto_create_multi_out_ctls(struct hda_codec *codec,
3079 const struct auto_pin_cfg *cfg)
3081 struct alc_spec *spec = codec->spec;
3082 int i, err, noutputs;
3084 noutputs = cfg->line_outs;
3085 if (spec->multi_ios > 0)
3086 noutputs += spec->multi_ios;
3088 for (i = 0; i < noutputs; i++) {
3089 const char *name;
3090 int index;
3091 hda_nid_t dac, pin;
3092 hda_nid_t sw, vol;
3094 dac = spec->multiout.dac_nids[i];
3095 if (!dac)
3096 continue;
3097 if (i >= cfg->line_outs)
3098 pin = spec->multi_io[i - 1].pin;
3099 else
3100 pin = cfg->line_out_pins[i];
3102 sw = alc_look_for_out_mute_nid(codec, pin, dac);
3103 vol = alc_look_for_out_vol_nid(codec, pin, dac);
3104 name = alc_get_line_out_pfx(spec, i, true, &index);
3105 if (!name || !strcmp(name, "CLFE")) {
3106 /* Center/LFE */
3107 err = alc_auto_add_vol_ctl(codec, "Center", 0, vol, 1);
3108 if (err < 0)
3109 return err;
3110 err = alc_auto_add_vol_ctl(codec, "LFE", 0, vol, 2);
3111 if (err < 0)
3112 return err;
3113 err = alc_auto_add_sw_ctl(codec, "Center", 0, sw, 1);
3114 if (err < 0)
3115 return err;
3116 err = alc_auto_add_sw_ctl(codec, "LFE", 0, sw, 2);
3117 if (err < 0)
3118 return err;
3119 } else {
3120 err = alc_auto_add_stereo_vol(codec, name, index, vol);
3121 if (err < 0)
3122 return err;
3123 err = alc_auto_add_stereo_sw(codec, name, index, sw);
3124 if (err < 0)
3125 return err;
3128 return 0;
3131 static int alc_auto_create_extra_out(struct hda_codec *codec, hda_nid_t pin,
3132 hda_nid_t dac, const char *pfx)
3134 struct alc_spec *spec = codec->spec;
3135 hda_nid_t sw, vol;
3136 int err;
3138 if (!dac) {
3139 /* the corresponding DAC is already occupied */
3140 if (!(get_wcaps(codec, pin) & AC_WCAP_OUT_AMP))
3141 return 0; /* no way */
3142 /* create a switch only */
3143 return add_pb_sw_ctrl(spec, ALC_CTL_WIDGET_MUTE, pfx,
3144 HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_OUTPUT));
3147 sw = alc_look_for_out_mute_nid(codec, pin, dac);
3148 vol = alc_look_for_out_vol_nid(codec, pin, dac);
3149 err = alc_auto_add_stereo_vol(codec, pfx, 0, vol);
3150 if (err < 0)
3151 return err;
3152 err = alc_auto_add_stereo_sw(codec, pfx, 0, sw);
3153 if (err < 0)
3154 return err;
3155 return 0;
3158 static struct hda_bind_ctls *new_bind_ctl(struct hda_codec *codec,
3159 unsigned int nums,
3160 struct hda_ctl_ops *ops)
3162 struct alc_spec *spec = codec->spec;
3163 struct hda_bind_ctls **ctlp, *ctl;
3164 snd_array_init(&spec->bind_ctls, sizeof(ctl), 8);
3165 ctlp = snd_array_new(&spec->bind_ctls);
3166 if (!ctlp)
3167 return NULL;
3168 ctl = kzalloc(sizeof(*ctl) + sizeof(long) * (nums + 1), GFP_KERNEL);
3169 *ctlp = ctl;
3170 if (ctl)
3171 ctl->ops = ops;
3172 return ctl;
3175 /* add playback controls for speaker and HP outputs */
3176 static int alc_auto_create_extra_outs(struct hda_codec *codec, int num_pins,
3177 const hda_nid_t *pins,
3178 const hda_nid_t *dacs,
3179 const char *pfx)
3181 struct alc_spec *spec = codec->spec;
3182 struct hda_bind_ctls *ctl;
3183 char name[32];
3184 int i, n, err;
3186 if (!num_pins || !pins[0])
3187 return 0;
3189 if (num_pins == 1)
3190 return alc_auto_create_extra_out(codec, *pins, *dacs, pfx);
3192 if (dacs[num_pins - 1]) {
3193 /* OK, we have a multi-output system with individual volumes */
3194 for (i = 0; i < num_pins; i++) {
3195 snprintf(name, sizeof(name), "%s %s",
3196 pfx, channel_name[i]);
3197 err = alc_auto_create_extra_out(codec, pins[i], dacs[i],
3198 name);
3199 if (err < 0)
3200 return err;
3202 return 0;
3205 /* Let's create a bind-controls */
3206 ctl = new_bind_ctl(codec, num_pins, &snd_hda_bind_sw);
3207 if (!ctl)
3208 return -ENOMEM;
3209 n = 0;
3210 for (i = 0; i < num_pins; i++) {
3211 if (get_wcaps(codec, pins[i]) & AC_WCAP_OUT_AMP)
3212 ctl->values[n++] =
3213 HDA_COMPOSE_AMP_VAL(pins[i], 3, 0, HDA_OUTPUT);
3215 if (n) {
3216 snprintf(name, sizeof(name), "%s Playback Switch", pfx);
3217 err = add_control(spec, ALC_CTL_BIND_SW, name, 0, (long)ctl);
3218 if (err < 0)
3219 return err;
3222 ctl = new_bind_ctl(codec, num_pins, &snd_hda_bind_vol);
3223 if (!ctl)
3224 return -ENOMEM;
3225 n = 0;
3226 for (i = 0; i < num_pins; i++) {
3227 hda_nid_t vol;
3228 if (!pins[i] || !dacs[i])
3229 continue;
3230 vol = alc_look_for_out_vol_nid(codec, pins[i], dacs[i]);
3231 if (vol)
3232 ctl->values[n++] =
3233 HDA_COMPOSE_AMP_VAL(vol, 3, 0, HDA_OUTPUT);
3235 if (n) {
3236 snprintf(name, sizeof(name), "%s Playback Volume", pfx);
3237 err = add_control(spec, ALC_CTL_BIND_VOL, name, 0, (long)ctl);
3238 if (err < 0)
3239 return err;
3241 return 0;
3244 static int alc_auto_create_hp_out(struct hda_codec *codec)
3246 struct alc_spec *spec = codec->spec;
3247 return alc_auto_create_extra_outs(codec, spec->autocfg.hp_outs,
3248 spec->autocfg.hp_pins,
3249 spec->multiout.hp_out_nid,
3250 "Headphone");
3253 static int alc_auto_create_speaker_out(struct hda_codec *codec)
3255 struct alc_spec *spec = codec->spec;
3256 return alc_auto_create_extra_outs(codec, spec->autocfg.speaker_outs,
3257 spec->autocfg.speaker_pins,
3258 spec->multiout.extra_out_nid,
3259 "Speaker");
3262 static void alc_auto_set_output_and_unmute(struct hda_codec *codec,
3263 hda_nid_t pin, int pin_type,
3264 hda_nid_t dac)
3266 int i, num;
3267 hda_nid_t nid, mix = 0;
3268 hda_nid_t srcs[HDA_MAX_CONNECTIONS];
3270 alc_set_pin_output(codec, pin, pin_type);
3271 nid = alc_go_down_to_selector(codec, pin);
3272 num = snd_hda_get_connections(codec, nid, srcs, ARRAY_SIZE(srcs));
3273 for (i = 0; i < num; i++) {
3274 if (alc_auto_mix_to_dac(codec, srcs[i]) != dac)
3275 continue;
3276 mix = srcs[i];
3277 break;
3279 if (!mix)
3280 return;
3282 /* need the manual connection? */
3283 if (num > 1)
3284 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CONNECT_SEL, i);
3285 /* unmute mixer widget inputs */
3286 if (nid_has_mute(codec, mix, HDA_INPUT)) {
3287 snd_hda_codec_write(codec, mix, 0, AC_VERB_SET_AMP_GAIN_MUTE,
3288 AMP_IN_UNMUTE(0));
3289 snd_hda_codec_write(codec, mix, 0, AC_VERB_SET_AMP_GAIN_MUTE,
3290 AMP_IN_UNMUTE(1));
3292 /* initialize volume */
3293 nid = alc_look_for_out_vol_nid(codec, pin, dac);
3294 if (nid)
3295 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
3296 AMP_OUT_ZERO);
3299 static void alc_auto_init_multi_out(struct hda_codec *codec)
3301 struct alc_spec *spec = codec->spec;
3302 int pin_type = get_pin_type(spec->autocfg.line_out_type);
3303 int i;
3305 for (i = 0; i <= HDA_SIDE; i++) {
3306 hda_nid_t nid = spec->autocfg.line_out_pins[i];
3307 if (nid)
3308 alc_auto_set_output_and_unmute(codec, nid, pin_type,
3309 spec->multiout.dac_nids[i]);
3313 static void alc_auto_init_extra_out(struct hda_codec *codec)
3315 struct alc_spec *spec = codec->spec;
3316 int i;
3317 hda_nid_t pin, dac;
3319 for (i = 0; i < spec->autocfg.hp_outs; i++) {
3320 if (spec->autocfg.line_out_type == AUTO_PIN_HP_OUT)
3321 break;
3322 pin = spec->autocfg.hp_pins[i];
3323 if (!pin)
3324 break;
3325 dac = spec->multiout.hp_out_nid[i];
3326 if (!dac) {
3327 if (i > 0 && spec->multiout.hp_out_nid[0])
3328 dac = spec->multiout.hp_out_nid[0];
3329 else
3330 dac = spec->multiout.dac_nids[0];
3332 alc_auto_set_output_and_unmute(codec, pin, PIN_HP, dac);
3334 for (i = 0; i < spec->autocfg.speaker_outs; i++) {
3335 if (spec->autocfg.line_out_type == AUTO_PIN_SPEAKER_OUT)
3336 break;
3337 pin = spec->autocfg.speaker_pins[i];
3338 if (!pin)
3339 break;
3340 dac = spec->multiout.extra_out_nid[i];
3341 if (!dac) {
3342 if (i > 0 && spec->multiout.extra_out_nid[0])
3343 dac = spec->multiout.extra_out_nid[0];
3344 else
3345 dac = spec->multiout.dac_nids[0];
3347 alc_auto_set_output_and_unmute(codec, pin, PIN_OUT, dac);
3352 * multi-io helper
3354 static int alc_auto_fill_multi_ios(struct hda_codec *codec,
3355 unsigned int location)
3357 struct alc_spec *spec = codec->spec;
3358 struct auto_pin_cfg *cfg = &spec->autocfg;
3359 hda_nid_t prime_dac = spec->private_dac_nids[0];
3360 int type, i, num_pins = 0;
3362 for (type = AUTO_PIN_LINE_IN; type >= AUTO_PIN_MIC; type--) {
3363 for (i = 0; i < cfg->num_inputs; i++) {
3364 hda_nid_t nid = cfg->inputs[i].pin;
3365 hda_nid_t dac;
3366 unsigned int defcfg, caps;
3367 if (cfg->inputs[i].type != type)
3368 continue;
3369 defcfg = snd_hda_codec_get_pincfg(codec, nid);
3370 if (get_defcfg_connect(defcfg) != AC_JACK_PORT_COMPLEX)
3371 continue;
3372 if (location && get_defcfg_location(defcfg) != location)
3373 continue;
3374 caps = snd_hda_query_pin_caps(codec, nid);
3375 if (!(caps & AC_PINCAP_OUT))
3376 continue;
3377 dac = alc_auto_look_for_dac(codec, nid);
3378 if (!dac)
3379 continue;
3380 spec->multi_io[num_pins].pin = nid;
3381 spec->multi_io[num_pins].dac = dac;
3382 num_pins++;
3383 spec->private_dac_nids[spec->multiout.num_dacs++] = dac;
3386 spec->multiout.num_dacs = 1;
3387 if (num_pins < 2) {
3388 /* clear up again */
3389 memset(spec->private_dac_nids, 0,
3390 sizeof(spec->private_dac_nids));
3391 spec->private_dac_nids[0] = prime_dac;
3392 return 0;
3394 return num_pins;
3397 static int alc_auto_ch_mode_info(struct snd_kcontrol *kcontrol,
3398 struct snd_ctl_elem_info *uinfo)
3400 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3401 struct alc_spec *spec = codec->spec;
3403 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
3404 uinfo->count = 1;
3405 uinfo->value.enumerated.items = spec->multi_ios + 1;
3406 if (uinfo->value.enumerated.item > spec->multi_ios)
3407 uinfo->value.enumerated.item = spec->multi_ios;
3408 sprintf(uinfo->value.enumerated.name, "%dch",
3409 (uinfo->value.enumerated.item + 1) * 2);
3410 return 0;
3413 static int alc_auto_ch_mode_get(struct snd_kcontrol *kcontrol,
3414 struct snd_ctl_elem_value *ucontrol)
3416 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3417 struct alc_spec *spec = codec->spec;
3418 ucontrol->value.enumerated.item[0] = (spec->ext_channel_count - 1) / 2;
3419 return 0;
3422 static int alc_set_multi_io(struct hda_codec *codec, int idx, bool output)
3424 struct alc_spec *spec = codec->spec;
3425 hda_nid_t nid = spec->multi_io[idx].pin;
3427 if (!spec->multi_io[idx].ctl_in)
3428 spec->multi_io[idx].ctl_in =
3429 snd_hda_codec_read(codec, nid, 0,
3430 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
3431 if (output) {
3432 snd_hda_codec_update_cache(codec, nid, 0,
3433 AC_VERB_SET_PIN_WIDGET_CONTROL,
3434 PIN_OUT);
3435 if (get_wcaps(codec, nid) & AC_WCAP_OUT_AMP)
3436 snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
3437 HDA_AMP_MUTE, 0);
3438 alc_auto_select_dac(codec, nid, spec->multi_io[idx].dac);
3439 } else {
3440 if (get_wcaps(codec, nid) & AC_WCAP_OUT_AMP)
3441 snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
3442 HDA_AMP_MUTE, HDA_AMP_MUTE);
3443 snd_hda_codec_update_cache(codec, nid, 0,
3444 AC_VERB_SET_PIN_WIDGET_CONTROL,
3445 spec->multi_io[idx].ctl_in);
3447 return 0;
3450 static int alc_auto_ch_mode_put(struct snd_kcontrol *kcontrol,
3451 struct snd_ctl_elem_value *ucontrol)
3453 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3454 struct alc_spec *spec = codec->spec;
3455 int i, ch;
3457 ch = ucontrol->value.enumerated.item[0];
3458 if (ch < 0 || ch > spec->multi_ios)
3459 return -EINVAL;
3460 if (ch == (spec->ext_channel_count - 1) / 2)
3461 return 0;
3462 spec->ext_channel_count = (ch + 1) * 2;
3463 for (i = 0; i < spec->multi_ios; i++)
3464 alc_set_multi_io(codec, i, i < ch);
3465 spec->multiout.max_channels = spec->ext_channel_count;
3466 if (spec->need_dac_fix && !spec->const_channel_count)
3467 spec->multiout.num_dacs = spec->multiout.max_channels / 2;
3468 return 1;
3471 static const struct snd_kcontrol_new alc_auto_channel_mode_enum = {
3472 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
3473 .name = "Channel Mode",
3474 .info = alc_auto_ch_mode_info,
3475 .get = alc_auto_ch_mode_get,
3476 .put = alc_auto_ch_mode_put,
3479 static int alc_auto_add_multi_channel_mode(struct hda_codec *codec)
3481 struct alc_spec *spec = codec->spec;
3483 if (spec->multi_ios > 0) {
3484 struct snd_kcontrol_new *knew;
3486 knew = alc_kcontrol_new(spec);
3487 if (!knew)
3488 return -ENOMEM;
3489 *knew = alc_auto_channel_mode_enum;
3490 knew->name = kstrdup("Channel Mode", GFP_KERNEL);
3491 if (!knew->name)
3492 return -ENOMEM;
3494 return 0;
3497 /* filter out invalid adc_nids (and capsrc_nids) that don't give all
3498 * active input pins
3500 static void alc_remove_invalid_adc_nids(struct hda_codec *codec)
3502 struct alc_spec *spec = codec->spec;
3503 const struct hda_input_mux *imux;
3504 hda_nid_t adc_nids[ARRAY_SIZE(spec->private_adc_nids)];
3505 hda_nid_t capsrc_nids[ARRAY_SIZE(spec->private_adc_nids)];
3506 int i, n, nums;
3508 imux = spec->input_mux;
3509 if (!imux)
3510 return;
3511 if (spec->dyn_adc_switch)
3512 return;
3514 nums = 0;
3515 for (n = 0; n < spec->num_adc_nids; n++) {
3516 hda_nid_t cap = spec->private_capsrc_nids[n];
3517 int num_conns = snd_hda_get_conn_list(codec, cap, NULL);
3518 for (i = 0; i < imux->num_items; i++) {
3519 hda_nid_t pin = spec->imux_pins[i];
3520 if (pin) {
3521 if (get_connection_index(codec, cap, pin) < 0)
3522 break;
3523 } else if (num_conns <= imux->items[i].index)
3524 break;
3526 if (i >= imux->num_items) {
3527 adc_nids[nums] = spec->private_adc_nids[n];
3528 capsrc_nids[nums++] = cap;
3531 if (!nums) {
3532 /* check whether ADC-switch is possible */
3533 if (!alc_check_dyn_adc_switch(codec)) {
3534 printk(KERN_WARNING "hda_codec: %s: no valid ADC found;"
3535 " using fallback 0x%x\n",
3536 codec->chip_name, spec->private_adc_nids[0]);
3537 spec->num_adc_nids = 1;
3538 spec->auto_mic = 0;
3539 return;
3541 } else if (nums != spec->num_adc_nids) {
3542 memcpy(spec->private_adc_nids, adc_nids,
3543 nums * sizeof(hda_nid_t));
3544 memcpy(spec->private_capsrc_nids, capsrc_nids,
3545 nums * sizeof(hda_nid_t));
3546 spec->num_adc_nids = nums;
3549 if (spec->auto_mic)
3550 alc_auto_mic_check_imux(codec); /* check auto-mic setups */
3551 else if (spec->input_mux->num_items == 1)
3552 spec->num_adc_nids = 1; /* reduce to a single ADC */
3556 * initialize ADC paths
3558 static void alc_auto_init_adc(struct hda_codec *codec, int adc_idx)
3560 struct alc_spec *spec = codec->spec;
3561 hda_nid_t nid;
3563 nid = spec->adc_nids[adc_idx];
3564 /* mute ADC */
3565 if (nid_has_mute(codec, nid, HDA_INPUT)) {
3566 snd_hda_codec_write(codec, nid, 0,
3567 AC_VERB_SET_AMP_GAIN_MUTE,
3568 AMP_IN_MUTE(0));
3569 return;
3571 if (!spec->capsrc_nids)
3572 return;
3573 nid = spec->capsrc_nids[adc_idx];
3574 if (nid_has_mute(codec, nid, HDA_OUTPUT))
3575 snd_hda_codec_write(codec, nid, 0,
3576 AC_VERB_SET_AMP_GAIN_MUTE,
3577 AMP_OUT_MUTE);
3580 static void alc_auto_init_input_src(struct hda_codec *codec)
3582 struct alc_spec *spec = codec->spec;
3583 int c, nums;
3585 for (c = 0; c < spec->num_adc_nids; c++)
3586 alc_auto_init_adc(codec, c);
3587 if (spec->dyn_adc_switch)
3588 nums = 1;
3589 else
3590 nums = spec->num_adc_nids;
3591 for (c = 0; c < nums; c++)
3592 alc_mux_select(codec, 0, spec->cur_mux[c], true);
3595 /* add mic boosts if needed */
3596 static int alc_auto_add_mic_boost(struct hda_codec *codec)
3598 struct alc_spec *spec = codec->spec;
3599 struct auto_pin_cfg *cfg = &spec->autocfg;
3600 int i, err;
3601 int type_idx = 0;
3602 hda_nid_t nid;
3603 const char *prev_label = NULL;
3605 for (i = 0; i < cfg->num_inputs; i++) {
3606 if (cfg->inputs[i].type > AUTO_PIN_MIC)
3607 break;
3608 nid = cfg->inputs[i].pin;
3609 if (get_wcaps(codec, nid) & AC_WCAP_IN_AMP) {
3610 const char *label;
3611 char boost_label[32];
3613 label = hda_get_autocfg_input_label(codec, cfg, i);
3614 if (prev_label && !strcmp(label, prev_label))
3615 type_idx++;
3616 else
3617 type_idx = 0;
3618 prev_label = label;
3620 snprintf(boost_label, sizeof(boost_label),
3621 "%s Boost Volume", label);
3622 err = add_control(spec, ALC_CTL_WIDGET_VOL,
3623 boost_label, type_idx,
3624 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_INPUT));
3625 if (err < 0)
3626 return err;
3629 return 0;
3632 /* select or unmute the given capsrc route */
3633 static void select_or_unmute_capsrc(struct hda_codec *codec, hda_nid_t cap,
3634 int idx)
3636 if (get_wcaps_type(get_wcaps(codec, cap)) == AC_WID_AUD_MIX) {
3637 snd_hda_codec_amp_stereo(codec, cap, HDA_INPUT, idx,
3638 HDA_AMP_MUTE, 0);
3639 } else if (snd_hda_get_conn_list(codec, cap, NULL) > 1) {
3640 snd_hda_codec_write_cache(codec, cap, 0,
3641 AC_VERB_SET_CONNECT_SEL, idx);
3645 /* set the default connection to that pin */
3646 static int init_capsrc_for_pin(struct hda_codec *codec, hda_nid_t pin)
3648 struct alc_spec *spec = codec->spec;
3649 int i;
3651 if (!pin)
3652 return 0;
3653 for (i = 0; i < spec->num_adc_nids; i++) {
3654 hda_nid_t cap = spec->capsrc_nids ?
3655 spec->capsrc_nids[i] : spec->adc_nids[i];
3656 int idx;
3658 idx = get_connection_index(codec, cap, pin);
3659 if (idx < 0)
3660 continue;
3661 select_or_unmute_capsrc(codec, cap, idx);
3662 return i; /* return the found index */
3664 return -1; /* not found */
3667 /* initialize some special cases for input sources */
3668 static void alc_init_special_input_src(struct hda_codec *codec)
3670 struct alc_spec *spec = codec->spec;
3671 int i;
3673 for (i = 0; i < spec->autocfg.num_inputs; i++)
3674 init_capsrc_for_pin(codec, spec->autocfg.inputs[i].pin);
3677 /* assign appropriate capture mixers */
3678 static void set_capture_mixer(struct hda_codec *codec)
3680 struct alc_spec *spec = codec->spec;
3681 static const struct snd_kcontrol_new *caps[2][3] = {
3682 { alc_capture_mixer_nosrc1,
3683 alc_capture_mixer_nosrc2,
3684 alc_capture_mixer_nosrc3 },
3685 { alc_capture_mixer1,
3686 alc_capture_mixer2,
3687 alc_capture_mixer3 },
3690 /* check whether either of ADC or MUX has a volume control */
3691 if (!nid_has_volume(codec, spec->adc_nids[0], HDA_INPUT)) {
3692 if (!spec->capsrc_nids)
3693 return; /* no volume */
3694 if (!nid_has_volume(codec, spec->capsrc_nids[0], HDA_OUTPUT))
3695 return; /* no volume in capsrc, too */
3696 spec->vol_in_capsrc = 1;
3699 if (spec->num_adc_nids > 0) {
3700 int mux = 0;
3701 int num_adcs = 0;
3703 if (spec->input_mux && spec->input_mux->num_items > 1)
3704 mux = 1;
3705 if (spec->auto_mic) {
3706 num_adcs = 1;
3707 mux = 0;
3708 } else if (spec->dyn_adc_switch)
3709 num_adcs = 1;
3710 if (!num_adcs) {
3711 if (spec->num_adc_nids > 3)
3712 spec->num_adc_nids = 3;
3713 else if (!spec->num_adc_nids)
3714 return;
3715 num_adcs = spec->num_adc_nids;
3717 spec->cap_mixer = caps[mux][num_adcs - 1];
3722 * standard auto-parser initializations
3724 static void alc_auto_init_std(struct hda_codec *codec)
3726 struct alc_spec *spec = codec->spec;
3727 alc_auto_init_multi_out(codec);
3728 alc_auto_init_extra_out(codec);
3729 alc_auto_init_analog_input(codec);
3730 alc_auto_init_input_src(codec);
3731 alc_auto_init_digital(codec);
3732 if (spec->unsol_event)
3733 alc_inithook(codec);
3737 * Digital-beep handlers
3739 #ifdef CONFIG_SND_HDA_INPUT_BEEP
3740 #define set_beep_amp(spec, nid, idx, dir) \
3741 ((spec)->beep_amp = HDA_COMPOSE_AMP_VAL(nid, 3, idx, dir))
3743 static const struct snd_pci_quirk beep_white_list[] = {
3744 SND_PCI_QUIRK(0x1043, 0x829f, "ASUS", 1),
3745 SND_PCI_QUIRK(0x1043, 0x83ce, "EeePC", 1),
3746 SND_PCI_QUIRK(0x1043, 0x831a, "EeePC", 1),
3747 SND_PCI_QUIRK(0x1043, 0x834a, "EeePC", 1),
3748 SND_PCI_QUIRK(0x8086, 0xd613, "Intel", 1),
3752 static inline int has_cdefine_beep(struct hda_codec *codec)
3754 struct alc_spec *spec = codec->spec;
3755 const struct snd_pci_quirk *q;
3756 q = snd_pci_quirk_lookup(codec->bus->pci, beep_white_list);
3757 if (q)
3758 return q->value;
3759 return spec->cdefine.enable_pcbeep;
3761 #else
3762 #define set_beep_amp(spec, nid, idx, dir) /* NOP */
3763 #define has_cdefine_beep(codec) 0
3764 #endif
3766 /* parse the BIOS configuration and set up the alc_spec */
3767 /* return 1 if successful, 0 if the proper config is not found,
3768 * or a negative error code
3770 static int alc_parse_auto_config(struct hda_codec *codec,
3771 const hda_nid_t *ignore_nids,
3772 const hda_nid_t *ssid_nids)
3774 struct alc_spec *spec = codec->spec;
3775 struct auto_pin_cfg *cfg = &spec->autocfg;
3776 int err;
3778 err = snd_hda_parse_pin_defcfg(codec, cfg, ignore_nids,
3779 spec->parse_flags);
3780 if (err < 0)
3781 return err;
3782 if (!cfg->line_outs) {
3783 if (cfg->dig_outs || cfg->dig_in_pin) {
3784 spec->multiout.max_channels = 2;
3785 spec->no_analog = 1;
3786 goto dig_only;
3788 return 0; /* can't find valid BIOS pin config */
3791 if (cfg->line_out_type == AUTO_PIN_SPEAKER_OUT &&
3792 cfg->line_outs <= cfg->hp_outs) {
3793 /* use HP as primary out */
3794 cfg->speaker_outs = cfg->line_outs;
3795 memcpy(cfg->speaker_pins, cfg->line_out_pins,
3796 sizeof(cfg->speaker_pins));
3797 cfg->line_outs = cfg->hp_outs;
3798 memcpy(cfg->line_out_pins, cfg->hp_pins, sizeof(cfg->hp_pins));
3799 cfg->hp_outs = 0;
3800 memset(cfg->hp_pins, 0, sizeof(cfg->hp_pins));
3801 cfg->line_out_type = AUTO_PIN_HP_OUT;
3804 err = alc_auto_fill_dac_nids(codec);
3805 if (err < 0)
3806 return err;
3807 err = alc_auto_add_multi_channel_mode(codec);
3808 if (err < 0)
3809 return err;
3810 err = alc_auto_create_multi_out_ctls(codec, cfg);
3811 if (err < 0)
3812 return err;
3813 err = alc_auto_create_hp_out(codec);
3814 if (err < 0)
3815 return err;
3816 err = alc_auto_create_speaker_out(codec);
3817 if (err < 0)
3818 return err;
3819 err = alc_auto_create_input_ctls(codec);
3820 if (err < 0)
3821 return err;
3823 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
3825 dig_only:
3826 alc_auto_parse_digital(codec);
3828 if (!spec->no_analog)
3829 alc_remove_invalid_adc_nids(codec);
3831 if (ssid_nids)
3832 alc_ssid_check(codec, ssid_nids);
3834 if (!spec->no_analog) {
3835 alc_auto_check_switches(codec);
3836 err = alc_auto_add_mic_boost(codec);
3837 if (err < 0)
3838 return err;
3841 if (spec->kctls.list)
3842 add_mixer(spec, spec->kctls.list);
3844 return 1;
3847 static int alc880_parse_auto_config(struct hda_codec *codec)
3849 static const hda_nid_t alc880_ignore[] = { 0x1d, 0 };
3850 static const hda_nid_t alc880_ssids[] = { 0x15, 0x1b, 0x14, 0 };
3851 return alc_parse_auto_config(codec, alc880_ignore, alc880_ssids);
3854 #ifdef CONFIG_SND_HDA_POWER_SAVE
3855 static const struct hda_amp_list alc880_loopbacks[] = {
3856 { 0x0b, HDA_INPUT, 0 },
3857 { 0x0b, HDA_INPUT, 1 },
3858 { 0x0b, HDA_INPUT, 2 },
3859 { 0x0b, HDA_INPUT, 3 },
3860 { 0x0b, HDA_INPUT, 4 },
3861 { } /* end */
3863 #endif
3866 * board setups
3868 #ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
3869 #define alc_board_config \
3870 snd_hda_check_board_config
3871 #define alc_board_codec_sid_config \
3872 snd_hda_check_board_codec_sid_config
3873 #include "alc_quirks.c"
3874 #else
3875 #define alc_board_config(codec, nums, models, tbl) -1
3876 #define alc_board_codec_sid_config(codec, nums, models, tbl) -1
3877 #define setup_preset(codec, x) /* NOP */
3878 #endif
3881 * OK, here we have finally the patch for ALC880
3883 #ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
3884 #include "alc880_quirks.c"
3885 #endif
3887 static int patch_alc880(struct hda_codec *codec)
3889 struct alc_spec *spec;
3890 int board_config;
3891 int err;
3893 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
3894 if (spec == NULL)
3895 return -ENOMEM;
3897 codec->spec = spec;
3899 spec->mixer_nid = 0x0b;
3900 spec->need_dac_fix = 1;
3902 board_config = alc_board_config(codec, ALC880_MODEL_LAST,
3903 alc880_models, alc880_cfg_tbl);
3904 if (board_config < 0) {
3905 printk(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
3906 codec->chip_name);
3907 board_config = ALC_MODEL_AUTO;
3910 if (board_config == ALC_MODEL_AUTO) {
3911 /* automatic parse from the BIOS config */
3912 err = alc880_parse_auto_config(codec);
3913 if (err < 0)
3914 goto error;
3915 #ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
3916 else if (!err) {
3917 printk(KERN_INFO
3918 "hda_codec: Cannot set up configuration "
3919 "from BIOS. Using 3-stack mode...\n");
3920 board_config = ALC880_3ST;
3922 #endif
3925 if (board_config != ALC_MODEL_AUTO)
3926 setup_preset(codec, &alc880_presets[board_config]);
3928 if (!spec->no_analog && !spec->adc_nids) {
3929 alc_auto_fill_adc_caps(codec);
3930 alc_rebuild_imux_for_auto_mic(codec);
3931 alc_remove_invalid_adc_nids(codec);
3934 if (!spec->no_analog && !spec->cap_mixer)
3935 set_capture_mixer(codec);
3937 if (!spec->no_analog) {
3938 err = snd_hda_attach_beep_device(codec, 0x1);
3939 if (err < 0)
3940 goto error;
3941 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
3944 spec->vmaster_nid = 0x0c;
3946 codec->patch_ops = alc_patch_ops;
3947 if (board_config == ALC_MODEL_AUTO)
3948 spec->init_hook = alc_auto_init_std;
3949 #ifdef CONFIG_SND_HDA_POWER_SAVE
3950 if (!spec->loopback.amplist)
3951 spec->loopback.amplist = alc880_loopbacks;
3952 #endif
3954 return 0;
3956 error:
3957 alc_free(codec);
3958 return err;
3963 * ALC260 support
3965 static int alc260_parse_auto_config(struct hda_codec *codec)
3967 static const hda_nid_t alc260_ignore[] = { 0x17, 0 };
3968 static const hda_nid_t alc260_ssids[] = { 0x10, 0x15, 0x0f, 0 };
3969 return alc_parse_auto_config(codec, alc260_ignore, alc260_ssids);
3972 #ifdef CONFIG_SND_HDA_POWER_SAVE
3973 static const struct hda_amp_list alc260_loopbacks[] = {
3974 { 0x07, HDA_INPUT, 0 },
3975 { 0x07, HDA_INPUT, 1 },
3976 { 0x07, HDA_INPUT, 2 },
3977 { 0x07, HDA_INPUT, 3 },
3978 { 0x07, HDA_INPUT, 4 },
3979 { } /* end */
3981 #endif
3984 * Pin config fixes
3986 enum {
3987 PINFIX_HP_DC5750,
3990 static const struct alc_fixup alc260_fixups[] = {
3991 [PINFIX_HP_DC5750] = {
3992 .type = ALC_FIXUP_PINS,
3993 .v.pins = (const struct alc_pincfg[]) {
3994 { 0x11, 0x90130110 }, /* speaker */
4000 static const struct snd_pci_quirk alc260_fixup_tbl[] = {
4001 SND_PCI_QUIRK(0x103c, 0x280a, "HP dc5750", PINFIX_HP_DC5750),
4007 #ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
4008 #include "alc260_quirks.c"
4009 #endif
4011 static int patch_alc260(struct hda_codec *codec)
4013 struct alc_spec *spec;
4014 int err, board_config;
4016 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
4017 if (spec == NULL)
4018 return -ENOMEM;
4020 codec->spec = spec;
4022 spec->mixer_nid = 0x07;
4024 board_config = alc_board_config(codec, ALC260_MODEL_LAST,
4025 alc260_models, alc260_cfg_tbl);
4026 if (board_config < 0) {
4027 snd_printd(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
4028 codec->chip_name);
4029 board_config = ALC_MODEL_AUTO;
4032 if (board_config == ALC_MODEL_AUTO) {
4033 alc_pick_fixup(codec, NULL, alc260_fixup_tbl, alc260_fixups);
4034 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
4037 if (board_config == ALC_MODEL_AUTO) {
4038 /* automatic parse from the BIOS config */
4039 err = alc260_parse_auto_config(codec);
4040 if (err < 0)
4041 goto error;
4042 #ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
4043 else if (!err) {
4044 printk(KERN_INFO
4045 "hda_codec: Cannot set up configuration "
4046 "from BIOS. Using base mode...\n");
4047 board_config = ALC260_BASIC;
4049 #endif
4052 if (board_config != ALC_MODEL_AUTO)
4053 setup_preset(codec, &alc260_presets[board_config]);
4055 if (!spec->no_analog && !spec->adc_nids) {
4056 alc_auto_fill_adc_caps(codec);
4057 alc_rebuild_imux_for_auto_mic(codec);
4058 alc_remove_invalid_adc_nids(codec);
4061 if (!spec->no_analog && !spec->cap_mixer)
4062 set_capture_mixer(codec);
4064 if (!spec->no_analog) {
4065 err = snd_hda_attach_beep_device(codec, 0x1);
4066 if (err < 0)
4067 goto error;
4068 set_beep_amp(spec, 0x07, 0x05, HDA_INPUT);
4071 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
4073 spec->vmaster_nid = 0x08;
4075 codec->patch_ops = alc_patch_ops;
4076 if (board_config == ALC_MODEL_AUTO)
4077 spec->init_hook = alc_auto_init_std;
4078 spec->shutup = alc_eapd_shutup;
4079 #ifdef CONFIG_SND_HDA_POWER_SAVE
4080 if (!spec->loopback.amplist)
4081 spec->loopback.amplist = alc260_loopbacks;
4082 #endif
4084 return 0;
4086 error:
4087 alc_free(codec);
4088 return err;
4093 * ALC882/883/885/888/889 support
4095 * ALC882 is almost identical with ALC880 but has cleaner and more flexible
4096 * configuration. Each pin widget can choose any input DACs and a mixer.
4097 * Each ADC is connected from a mixer of all inputs. This makes possible
4098 * 6-channel independent captures.
4100 * In addition, an independent DAC for the multi-playback (not used in this
4101 * driver yet).
4103 #ifdef CONFIG_SND_HDA_POWER_SAVE
4104 #define alc882_loopbacks alc880_loopbacks
4105 #endif
4108 * Pin config fixes
4110 enum {
4111 PINFIX_ABIT_AW9D_MAX,
4112 PINFIX_LENOVO_Y530,
4113 PINFIX_PB_M5210,
4114 PINFIX_ACER_ASPIRE_7736,
4117 static const struct alc_fixup alc882_fixups[] = {
4118 [PINFIX_ABIT_AW9D_MAX] = {
4119 .type = ALC_FIXUP_PINS,
4120 .v.pins = (const struct alc_pincfg[]) {
4121 { 0x15, 0x01080104 }, /* side */
4122 { 0x16, 0x01011012 }, /* rear */
4123 { 0x17, 0x01016011 }, /* clfe */
4127 [PINFIX_LENOVO_Y530] = {
4128 .type = ALC_FIXUP_PINS,
4129 .v.pins = (const struct alc_pincfg[]) {
4130 { 0x15, 0x99130112 }, /* rear int speakers */
4131 { 0x16, 0x99130111 }, /* subwoofer */
4135 [PINFIX_PB_M5210] = {
4136 .type = ALC_FIXUP_VERBS,
4137 .v.verbs = (const struct hda_verb[]) {
4138 { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF50 },
4142 [PINFIX_ACER_ASPIRE_7736] = {
4143 .type = ALC_FIXUP_SKU,
4144 .v.sku = ALC_FIXUP_SKU_IGNORE,
4148 static const struct snd_pci_quirk alc882_fixup_tbl[] = {
4149 SND_PCI_QUIRK(0x1025, 0x0155, "Packard-Bell M5120", PINFIX_PB_M5210),
4150 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Y530", PINFIX_LENOVO_Y530),
4151 SND_PCI_QUIRK(0x147b, 0x107a, "Abit AW9D-MAX", PINFIX_ABIT_AW9D_MAX),
4152 SND_PCI_QUIRK(0x1025, 0x0296, "Acer Aspire 7736z", PINFIX_ACER_ASPIRE_7736),
4157 * BIOS auto configuration
4159 /* almost identical with ALC880 parser... */
4160 static int alc882_parse_auto_config(struct hda_codec *codec)
4162 static const hda_nid_t alc882_ignore[] = { 0x1d, 0 };
4163 static const hda_nid_t alc882_ssids[] = { 0x15, 0x1b, 0x14, 0 };
4164 return alc_parse_auto_config(codec, alc882_ignore, alc882_ssids);
4169 #ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
4170 #include "alc882_quirks.c"
4171 #endif
4173 static int patch_alc882(struct hda_codec *codec)
4175 struct alc_spec *spec;
4176 int err, board_config;
4178 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
4179 if (spec == NULL)
4180 return -ENOMEM;
4182 codec->spec = spec;
4184 spec->mixer_nid = 0x0b;
4186 switch (codec->vendor_id) {
4187 case 0x10ec0882:
4188 case 0x10ec0885:
4189 break;
4190 default:
4191 /* ALC883 and variants */
4192 alc_fix_pll_init(codec, 0x20, 0x0a, 10);
4193 break;
4196 err = alc_codec_rename_from_preset(codec);
4197 if (err < 0)
4198 goto error;
4200 board_config = alc_board_config(codec, ALC882_MODEL_LAST,
4201 alc882_models, alc882_cfg_tbl);
4203 if (board_config < 0)
4204 board_config = alc_board_codec_sid_config(codec,
4205 ALC882_MODEL_LAST, alc882_models, alc882_ssid_cfg_tbl);
4207 if (board_config < 0) {
4208 printk(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
4209 codec->chip_name);
4210 board_config = ALC_MODEL_AUTO;
4213 if (board_config == ALC_MODEL_AUTO) {
4214 alc_pick_fixup(codec, NULL, alc882_fixup_tbl, alc882_fixups);
4215 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
4218 alc_auto_parse_customize_define(codec);
4220 if (board_config == ALC_MODEL_AUTO) {
4221 /* automatic parse from the BIOS config */
4222 err = alc882_parse_auto_config(codec);
4223 if (err < 0)
4224 goto error;
4225 #ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
4226 else if (!err) {
4227 printk(KERN_INFO
4228 "hda_codec: Cannot set up configuration "
4229 "from BIOS. Using base mode...\n");
4230 board_config = ALC882_3ST_DIG;
4232 #endif
4235 if (board_config != ALC_MODEL_AUTO)
4236 setup_preset(codec, &alc882_presets[board_config]);
4238 if (!spec->no_analog && !spec->adc_nids) {
4239 alc_auto_fill_adc_caps(codec);
4240 alc_rebuild_imux_for_auto_mic(codec);
4241 alc_remove_invalid_adc_nids(codec);
4244 if (!spec->no_analog && !spec->cap_mixer)
4245 set_capture_mixer(codec);
4247 if (!spec->no_analog && has_cdefine_beep(codec)) {
4248 err = snd_hda_attach_beep_device(codec, 0x1);
4249 if (err < 0)
4250 goto error;
4251 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
4254 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
4256 spec->vmaster_nid = 0x0c;
4258 codec->patch_ops = alc_patch_ops;
4259 if (board_config == ALC_MODEL_AUTO)
4260 spec->init_hook = alc_auto_init_std;
4262 alc_init_jacks(codec);
4263 #ifdef CONFIG_SND_HDA_POWER_SAVE
4264 if (!spec->loopback.amplist)
4265 spec->loopback.amplist = alc882_loopbacks;
4266 #endif
4268 return 0;
4270 error:
4271 alc_free(codec);
4272 return err;
4277 * ALC262 support
4279 static int alc262_parse_auto_config(struct hda_codec *codec)
4281 static const hda_nid_t alc262_ignore[] = { 0x1d, 0 };
4282 static const hda_nid_t alc262_ssids[] = { 0x15, 0x1b, 0x14, 0 };
4283 return alc_parse_auto_config(codec, alc262_ignore, alc262_ssids);
4287 * Pin config fixes
4289 enum {
4290 PINFIX_FSC_H270,
4291 PINFIX_HP_Z200,
4294 static const struct alc_fixup alc262_fixups[] = {
4295 [PINFIX_FSC_H270] = {
4296 .type = ALC_FIXUP_PINS,
4297 .v.pins = (const struct alc_pincfg[]) {
4298 { 0x14, 0x99130110 }, /* speaker */
4299 { 0x15, 0x0221142f }, /* front HP */
4300 { 0x1b, 0x0121141f }, /* rear HP */
4304 [PINFIX_HP_Z200] = {
4305 .type = ALC_FIXUP_PINS,
4306 .v.pins = (const struct alc_pincfg[]) {
4307 { 0x16, 0x99130120 }, /* internal speaker */
4313 static const struct snd_pci_quirk alc262_fixup_tbl[] = {
4314 SND_PCI_QUIRK(0x103c, 0x170b, "HP Z200", PINFIX_HP_Z200),
4315 SND_PCI_QUIRK(0x1734, 0x1147, "FSC Celsius H270", PINFIX_FSC_H270),
4320 #ifdef CONFIG_SND_HDA_POWER_SAVE
4321 #define alc262_loopbacks alc880_loopbacks
4322 #endif
4326 #ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
4327 #include "alc262_quirks.c"
4328 #endif
4330 static int patch_alc262(struct hda_codec *codec)
4332 struct alc_spec *spec;
4333 int board_config;
4334 int err;
4336 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
4337 if (spec == NULL)
4338 return -ENOMEM;
4340 codec->spec = spec;
4342 spec->mixer_nid = 0x0b;
4344 #if 0
4345 /* pshou 07/11/05 set a zero PCM sample to DAC when FIFO is
4346 * under-run
4349 int tmp;
4350 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_COEF_INDEX, 7);
4351 tmp = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_PROC_COEF, 0);
4352 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_COEF_INDEX, 7);
4353 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_PROC_COEF, tmp | 0x80);
4355 #endif
4356 alc_auto_parse_customize_define(codec);
4358 alc_fix_pll_init(codec, 0x20, 0x0a, 10);
4360 board_config = alc_board_config(codec, ALC262_MODEL_LAST,
4361 alc262_models, alc262_cfg_tbl);
4363 if (board_config < 0) {
4364 printk(KERN_INFO "hda_codec: %s: BIOS auto-probing.\n",
4365 codec->chip_name);
4366 board_config = ALC_MODEL_AUTO;
4369 if (board_config == ALC_MODEL_AUTO) {
4370 alc_pick_fixup(codec, NULL, alc262_fixup_tbl, alc262_fixups);
4371 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
4374 if (board_config == ALC_MODEL_AUTO) {
4375 /* automatic parse from the BIOS config */
4376 err = alc262_parse_auto_config(codec);
4377 if (err < 0)
4378 goto error;
4379 #ifdef CONFIG_SND_HDA_ENABLE_REALTEK_QUIRKS
4380 else if (!err) {
4381 printk(KERN_INFO
4382 "hda_codec: Cannot set up configuration "
4383 "from BIOS. Using base mode...\n");
4384 board_config = ALC262_BASIC;
4386 #endif
4389 if (board_config != ALC_MODEL_AUTO)
4390 setup_preset(codec, &alc262_presets[board_config]);
4392 if (!spec->no_analog && !spec->adc_nids) {
4393 alc_auto_fill_adc_caps(codec);
4394 alc_rebuild_imux_for_auto_mic(codec);
4395 alc_remove_invalid_adc_nids(codec);
4398 if (!spec->no_analog && !spec->cap_mixer)
4399 set_capture_mixer(codec);
4401 if (!spec->no_analog && has_cdefine_beep(codec)) {
4402 err = snd_hda_attach_beep_device(codec, 0x1);
4403 if (err < 0)
4404 goto error;
4405 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
4408 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
4410 spec->vmaster_nid = 0x0c;
4412 codec->patch_ops = alc_patch_ops;
4413 if (board_config == ALC_MODEL_AUTO)
4414 spec->init_hook = alc_auto_init_std;
4415 spec->shutup = alc_eapd_shutup;
4417 alc_init_jacks(codec);
4418 #ifdef CONFIG_SND_HDA_POWER_SAVE
4419 if (!spec->loopback.amplist)
4420 spec->loopback.amplist = alc262_loopbacks;
4421 #endif
4423 return 0;
4425 error:
4426 alc_free(codec);
4427 return err;
4431 * ALC268
4433 /* bind Beep switches of both NID 0x0f and 0x10 */
4434 static const struct hda_bind_ctls alc268_bind_beep_sw = {
4435 .ops = &snd_hda_bind_sw,
4436 .values = {
4437 HDA_COMPOSE_AMP_VAL(0x0f, 3, 1, HDA_INPUT),
4438 HDA_COMPOSE_AMP_VAL(0x10, 3, 1, HDA_INPUT),
4443 static const struct snd_kcontrol_new alc268_beep_mixer[] = {
4444 HDA_CODEC_VOLUME("Beep Playback Volume", 0x1d, 0x0, HDA_INPUT),
4445 HDA_BIND_SW("Beep Playback Switch", &alc268_bind_beep_sw),
4449 /* set PCBEEP vol = 0, mute connections */
4450 static const struct hda_verb alc268_beep_init_verbs[] = {
4451 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4452 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4453 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4458 * BIOS auto configuration
4460 static int alc268_parse_auto_config(struct hda_codec *codec)
4462 static const hda_nid_t alc268_ssids[] = { 0x15, 0x1b, 0x14, 0 };
4463 struct alc_spec *spec = codec->spec;
4464 int err = alc_parse_auto_config(codec, NULL, alc268_ssids);
4465 if (err > 0) {
4466 if (!spec->no_analog && spec->autocfg.speaker_pins[0] != 0x1d) {
4467 add_mixer(spec, alc268_beep_mixer);
4468 add_verb(spec, alc268_beep_init_verbs);
4471 return err;
4476 static int patch_alc268(struct hda_codec *codec)
4478 struct alc_spec *spec;
4479 int i, has_beep, err;
4481 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
4482 if (spec == NULL)
4483 return -ENOMEM;
4485 codec->spec = spec;
4487 /* ALC268 has no aa-loopback mixer */
4489 /* automatic parse from the BIOS config */
4490 err = alc268_parse_auto_config(codec);
4491 if (err < 0)
4492 goto error;
4494 has_beep = 0;
4495 for (i = 0; i < spec->num_mixers; i++) {
4496 if (spec->mixers[i] == alc268_beep_mixer) {
4497 has_beep = 1;
4498 break;
4502 if (has_beep) {
4503 err = snd_hda_attach_beep_device(codec, 0x1);
4504 if (err < 0)
4505 goto error;
4506 if (!query_amp_caps(codec, 0x1d, HDA_INPUT))
4507 /* override the amp caps for beep generator */
4508 snd_hda_override_amp_caps(codec, 0x1d, HDA_INPUT,
4509 (0x0c << AC_AMPCAP_OFFSET_SHIFT) |
4510 (0x0c << AC_AMPCAP_NUM_STEPS_SHIFT) |
4511 (0x07 << AC_AMPCAP_STEP_SIZE_SHIFT) |
4512 (0 << AC_AMPCAP_MUTE_SHIFT));
4515 if (!spec->no_analog && !spec->adc_nids) {
4516 alc_auto_fill_adc_caps(codec);
4517 alc_rebuild_imux_for_auto_mic(codec);
4518 alc_remove_invalid_adc_nids(codec);
4521 if (!spec->no_analog && !spec->cap_mixer)
4522 set_capture_mixer(codec);
4524 spec->vmaster_nid = 0x02;
4526 codec->patch_ops = alc_patch_ops;
4527 spec->init_hook = alc_auto_init_std;
4528 spec->shutup = alc_eapd_shutup;
4530 alc_init_jacks(codec);
4532 return 0;
4534 error:
4535 alc_free(codec);
4536 return err;
4540 * ALC269
4542 #ifdef CONFIG_SND_HDA_POWER_SAVE
4543 #define alc269_loopbacks alc880_loopbacks
4544 #endif
4546 static const struct hda_pcm_stream alc269_44k_pcm_analog_playback = {
4547 .substreams = 1,
4548 .channels_min = 2,
4549 .channels_max = 8,
4550 .rates = SNDRV_PCM_RATE_44100, /* fixed rate */
4551 /* NID is set in alc_build_pcms */
4552 .ops = {
4553 .open = alc_playback_pcm_open,
4554 .prepare = alc_playback_pcm_prepare,
4555 .cleanup = alc_playback_pcm_cleanup
4559 static const struct hda_pcm_stream alc269_44k_pcm_analog_capture = {
4560 .substreams = 1,
4561 .channels_min = 2,
4562 .channels_max = 2,
4563 .rates = SNDRV_PCM_RATE_44100, /* fixed rate */
4564 /* NID is set in alc_build_pcms */
4567 #ifdef CONFIG_SND_HDA_POWER_SAVE
4568 static int alc269_mic2_for_mute_led(struct hda_codec *codec)
4570 switch (codec->subsystem_id) {
4571 case 0x103c1586:
4572 return 1;
4574 return 0;
4577 static int alc269_mic2_mute_check_ps(struct hda_codec *codec, hda_nid_t nid)
4579 /* update mute-LED according to the speaker mute state */
4580 if (nid == 0x01 || nid == 0x14) {
4581 int pinval;
4582 if (snd_hda_codec_amp_read(codec, 0x14, 0, HDA_OUTPUT, 0) &
4583 HDA_AMP_MUTE)
4584 pinval = 0x24;
4585 else
4586 pinval = 0x20;
4587 /* mic2 vref pin is used for mute LED control */
4588 snd_hda_codec_update_cache(codec, 0x19, 0,
4589 AC_VERB_SET_PIN_WIDGET_CONTROL,
4590 pinval);
4592 return alc_check_power_status(codec, nid);
4594 #endif /* CONFIG_SND_HDA_POWER_SAVE */
4596 /* different alc269-variants */
4597 enum {
4598 ALC269_TYPE_ALC269VA,
4599 ALC269_TYPE_ALC269VB,
4600 ALC269_TYPE_ALC269VC,
4604 * BIOS auto configuration
4606 static int alc269_parse_auto_config(struct hda_codec *codec)
4608 static const hda_nid_t alc269_ignore[] = { 0x1d, 0 };
4609 static const hda_nid_t alc269_ssids[] = { 0, 0x1b, 0x14, 0x21 };
4610 static const hda_nid_t alc269va_ssids[] = { 0x15, 0x1b, 0x14, 0 };
4611 struct alc_spec *spec = codec->spec;
4612 const hda_nid_t *ssids = spec->codec_variant == ALC269_TYPE_ALC269VA ?
4613 alc269va_ssids : alc269_ssids;
4615 return alc_parse_auto_config(codec, alc269_ignore, ssids);
4618 static void alc269_toggle_power_output(struct hda_codec *codec, int power_up)
4620 int val = alc_read_coef_idx(codec, 0x04);
4621 if (power_up)
4622 val |= 1 << 11;
4623 else
4624 val &= ~(1 << 11);
4625 alc_write_coef_idx(codec, 0x04, val);
4628 static void alc269_shutup(struct hda_codec *codec)
4630 if ((alc_get_coef0(codec) & 0x00ff) == 0x017)
4631 alc269_toggle_power_output(codec, 0);
4632 if ((alc_get_coef0(codec) & 0x00ff) == 0x018) {
4633 alc269_toggle_power_output(codec, 0);
4634 msleep(150);
4638 #ifdef CONFIG_PM
4639 static int alc269_resume(struct hda_codec *codec)
4641 if ((alc_get_coef0(codec) & 0x00ff) == 0x018) {
4642 alc269_toggle_power_output(codec, 0);
4643 msleep(150);
4646 codec->patch_ops.init(codec);
4648 if ((alc_get_coef0(codec) & 0x00ff) == 0x017) {
4649 alc269_toggle_power_output(codec, 1);
4650 msleep(200);
4653 if ((alc_get_coef0(codec) & 0x00ff) == 0x018)
4654 alc269_toggle_power_output(codec, 1);
4656 snd_hda_codec_resume_amp(codec);
4657 snd_hda_codec_resume_cache(codec);
4658 hda_call_check_power_status(codec, 0x01);
4659 return 0;
4661 #endif /* CONFIG_PM */
4663 static void alc269_fixup_hweq(struct hda_codec *codec,
4664 const struct alc_fixup *fix, int action)
4666 int coef;
4668 if (action != ALC_FIXUP_ACT_INIT)
4669 return;
4670 coef = alc_read_coef_idx(codec, 0x1e);
4671 alc_write_coef_idx(codec, 0x1e, coef | 0x80);
4674 static void alc271_fixup_dmic(struct hda_codec *codec,
4675 const struct alc_fixup *fix, int action)
4677 static const struct hda_verb verbs[] = {
4678 {0x20, AC_VERB_SET_COEF_INDEX, 0x0d},
4679 {0x20, AC_VERB_SET_PROC_COEF, 0x4000},
4682 unsigned int cfg;
4684 if (strcmp(codec->chip_name, "ALC271X"))
4685 return;
4686 cfg = snd_hda_codec_get_pincfg(codec, 0x12);
4687 if (get_defcfg_connect(cfg) == AC_JACK_PORT_FIXED)
4688 snd_hda_sequence_write(codec, verbs);
4691 static void alc269_fixup_pcm_44k(struct hda_codec *codec,
4692 const struct alc_fixup *fix, int action)
4694 struct alc_spec *spec = codec->spec;
4696 if (action != ALC_FIXUP_ACT_PROBE)
4697 return;
4699 /* Due to a hardware problem on Lenovo Ideadpad, we need to
4700 * fix the sample rate of analog I/O to 44.1kHz
4702 spec->stream_analog_playback = &alc269_44k_pcm_analog_playback;
4703 spec->stream_analog_capture = &alc269_44k_pcm_analog_capture;
4706 static void alc269_fixup_stereo_dmic(struct hda_codec *codec,
4707 const struct alc_fixup *fix, int action)
4709 int coef;
4711 if (action != ALC_FIXUP_ACT_INIT)
4712 return;
4713 /* The digital-mic unit sends PDM (differential signal) instead of
4714 * the standard PCM, thus you can't record a valid mono stream as is.
4715 * Below is a workaround specific to ALC269 to control the dmic
4716 * signal source as mono.
4718 coef = alc_read_coef_idx(codec, 0x07);
4719 alc_write_coef_idx(codec, 0x07, coef | 0x80);
4722 static void alc269_quanta_automute(struct hda_codec *codec)
4724 update_outputs(codec);
4726 snd_hda_codec_write(codec, 0x20, 0,
4727 AC_VERB_SET_COEF_INDEX, 0x0c);
4728 snd_hda_codec_write(codec, 0x20, 0,
4729 AC_VERB_SET_PROC_COEF, 0x680);
4731 snd_hda_codec_write(codec, 0x20, 0,
4732 AC_VERB_SET_COEF_INDEX, 0x0c);
4733 snd_hda_codec_write(codec, 0x20, 0,
4734 AC_VERB_SET_PROC_COEF, 0x480);
4737 static void alc269_fixup_quanta_mute(struct hda_codec *codec,
4738 const struct alc_fixup *fix, int action)
4740 struct alc_spec *spec = codec->spec;
4741 if (action != ALC_FIXUP_ACT_PROBE)
4742 return;
4743 spec->automute_hook = alc269_quanta_automute;
4746 enum {
4747 ALC269_FIXUP_SONY_VAIO,
4748 ALC275_FIXUP_SONY_VAIO_GPIO2,
4749 ALC269_FIXUP_DELL_M101Z,
4750 ALC269_FIXUP_SKU_IGNORE,
4751 ALC269_FIXUP_ASUS_G73JW,
4752 ALC269_FIXUP_LENOVO_EAPD,
4753 ALC275_FIXUP_SONY_HWEQ,
4754 ALC271_FIXUP_DMIC,
4755 ALC269_FIXUP_PCM_44K,
4756 ALC269_FIXUP_STEREO_DMIC,
4757 ALC269_FIXUP_QUANTA_MUTE,
4758 ALC269_FIXUP_LIFEBOOK,
4759 ALC269_FIXUP_AMIC,
4760 ALC269_FIXUP_DMIC,
4761 ALC269VB_FIXUP_AMIC,
4762 ALC269VB_FIXUP_DMIC,
4765 static const struct alc_fixup alc269_fixups[] = {
4766 [ALC269_FIXUP_SONY_VAIO] = {
4767 .type = ALC_FIXUP_VERBS,
4768 .v.verbs = (const struct hda_verb[]) {
4769 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREFGRD},
4773 [ALC275_FIXUP_SONY_VAIO_GPIO2] = {
4774 .type = ALC_FIXUP_VERBS,
4775 .v.verbs = (const struct hda_verb[]) {
4776 {0x01, AC_VERB_SET_GPIO_MASK, 0x04},
4777 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x04},
4778 {0x01, AC_VERB_SET_GPIO_DATA, 0x00},
4781 .chained = true,
4782 .chain_id = ALC269_FIXUP_SONY_VAIO
4784 [ALC269_FIXUP_DELL_M101Z] = {
4785 .type = ALC_FIXUP_VERBS,
4786 .v.verbs = (const struct hda_verb[]) {
4787 /* Enables internal speaker */
4788 {0x20, AC_VERB_SET_COEF_INDEX, 13},
4789 {0x20, AC_VERB_SET_PROC_COEF, 0x4040},
4793 [ALC269_FIXUP_SKU_IGNORE] = {
4794 .type = ALC_FIXUP_SKU,
4795 .v.sku = ALC_FIXUP_SKU_IGNORE,
4797 [ALC269_FIXUP_ASUS_G73JW] = {
4798 .type = ALC_FIXUP_PINS,
4799 .v.pins = (const struct alc_pincfg[]) {
4800 { 0x17, 0x99130111 }, /* subwoofer */
4804 [ALC269_FIXUP_LENOVO_EAPD] = {
4805 .type = ALC_FIXUP_VERBS,
4806 .v.verbs = (const struct hda_verb[]) {
4807 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0},
4811 [ALC275_FIXUP_SONY_HWEQ] = {
4812 .type = ALC_FIXUP_FUNC,
4813 .v.func = alc269_fixup_hweq,
4814 .chained = true,
4815 .chain_id = ALC275_FIXUP_SONY_VAIO_GPIO2
4817 [ALC271_FIXUP_DMIC] = {
4818 .type = ALC_FIXUP_FUNC,
4819 .v.func = alc271_fixup_dmic,
4821 [ALC269_FIXUP_PCM_44K] = {
4822 .type = ALC_FIXUP_FUNC,
4823 .v.func = alc269_fixup_pcm_44k,
4825 [ALC269_FIXUP_STEREO_DMIC] = {
4826 .type = ALC_FIXUP_FUNC,
4827 .v.func = alc269_fixup_stereo_dmic,
4829 [ALC269_FIXUP_QUANTA_MUTE] = {
4830 .type = ALC_FIXUP_FUNC,
4831 .v.func = alc269_fixup_quanta_mute,
4833 [ALC269_FIXUP_LIFEBOOK] = {
4834 .type = ALC_FIXUP_PINS,
4835 .v.pins = (const struct alc_pincfg[]) {
4836 { 0x1a, 0x2101103f }, /* dock line-out */
4837 { 0x1b, 0x23a11040 }, /* dock mic-in */
4840 .chained = true,
4841 .chain_id = ALC269_FIXUP_QUANTA_MUTE
4843 [ALC269_FIXUP_AMIC] = {
4844 .type = ALC_FIXUP_PINS,
4845 .v.pins = (const struct alc_pincfg[]) {
4846 { 0x14, 0x99130110 }, /* speaker */
4847 { 0x15, 0x0121401f }, /* HP out */
4848 { 0x18, 0x01a19c20 }, /* mic */
4849 { 0x19, 0x99a3092f }, /* int-mic */
4853 [ALC269_FIXUP_DMIC] = {
4854 .type = ALC_FIXUP_PINS,
4855 .v.pins = (const struct alc_pincfg[]) {
4856 { 0x12, 0x99a3092f }, /* int-mic */
4857 { 0x14, 0x99130110 }, /* speaker */
4858 { 0x15, 0x0121401f }, /* HP out */
4859 { 0x18, 0x01a19c20 }, /* mic */
4863 [ALC269VB_FIXUP_AMIC] = {
4864 .type = ALC_FIXUP_PINS,
4865 .v.pins = (const struct alc_pincfg[]) {
4866 { 0x14, 0x99130110 }, /* speaker */
4867 { 0x18, 0x01a19c20 }, /* mic */
4868 { 0x19, 0x99a3092f }, /* int-mic */
4869 { 0x21, 0x0121401f }, /* HP out */
4873 [ALC269_FIXUP_DMIC] = {
4874 .type = ALC_FIXUP_PINS,
4875 .v.pins = (const struct alc_pincfg[]) {
4876 { 0x12, 0x99a3092f }, /* int-mic */
4877 { 0x14, 0x99130110 }, /* speaker */
4878 { 0x18, 0x01a19c20 }, /* mic */
4879 { 0x21, 0x0121401f }, /* HP out */
4885 static const struct snd_pci_quirk alc269_fixup_tbl[] = {
4886 SND_PCI_QUIRK(0x1043, 0x1a13, "Asus G73Jw", ALC269_FIXUP_ASUS_G73JW),
4887 SND_PCI_QUIRK(0x1043, 0x16e3, "ASUS UX50", ALC269_FIXUP_STEREO_DMIC),
4888 SND_PCI_QUIRK(0x1043, 0x831a, "ASUS P901", ALC269_FIXUP_STEREO_DMIC),
4889 SND_PCI_QUIRK(0x1043, 0x834a, "ASUS S101", ALC269_FIXUP_STEREO_DMIC),
4890 SND_PCI_QUIRK(0x1043, 0x8398, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC),
4891 SND_PCI_QUIRK(0x1043, 0x83ce, "ASUS P1005", ALC269_FIXUP_STEREO_DMIC),
4892 SND_PCI_QUIRK(0x104d, 0x9073, "Sony VAIO", ALC275_FIXUP_SONY_VAIO_GPIO2),
4893 SND_PCI_QUIRK(0x104d, 0x907b, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ),
4894 SND_PCI_QUIRK(0x104d, 0x9084, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ),
4895 SND_PCI_QUIRK_VENDOR(0x104d, "Sony VAIO", ALC269_FIXUP_SONY_VAIO),
4896 SND_PCI_QUIRK(0x1028, 0x0470, "Dell M101z", ALC269_FIXUP_DELL_M101Z),
4897 SND_PCI_QUIRK_VENDOR(0x1025, "Acer Aspire", ALC271_FIXUP_DMIC),
4898 SND_PCI_QUIRK(0x10cf, 0x1475, "Lifebook", ALC269_FIXUP_LIFEBOOK),
4899 SND_PCI_QUIRK(0x17aa, 0x20f2, "Thinkpad SL410/510", ALC269_FIXUP_SKU_IGNORE),
4900 SND_PCI_QUIRK(0x17aa, 0x215e, "Thinkpad L512", ALC269_FIXUP_SKU_IGNORE),
4901 SND_PCI_QUIRK(0x17aa, 0x21b8, "Thinkpad Edge 14", ALC269_FIXUP_SKU_IGNORE),
4902 SND_PCI_QUIRK(0x17aa, 0x21ca, "Thinkpad L412", ALC269_FIXUP_SKU_IGNORE),
4903 SND_PCI_QUIRK(0x17aa, 0x21e9, "Thinkpad Edge 15", ALC269_FIXUP_SKU_IGNORE),
4904 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_QUANTA_MUTE),
4905 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Lenovo Ideapd", ALC269_FIXUP_PCM_44K),
4906 SND_PCI_QUIRK(0x17aa, 0x9e54, "LENOVO NB", ALC269_FIXUP_LENOVO_EAPD),
4908 #if 1
4909 /* Below is a quirk table taken from the old code.
4910 * Basically the device should work as is without the fixup table.
4911 * If BIOS doesn't give a proper info, enable the corresponding
4912 * fixup entry.
4914 SND_PCI_QUIRK(0x1043, 0x8330, "ASUS Eeepc P703 P900A",
4915 ALC269_FIXUP_AMIC),
4916 SND_PCI_QUIRK(0x1043, 0x1013, "ASUS N61Da", ALC269_FIXUP_AMIC),
4917 SND_PCI_QUIRK(0x1043, 0x1113, "ASUS N63Jn", ALC269_FIXUP_AMIC),
4918 SND_PCI_QUIRK(0x1043, 0x1143, "ASUS B53f", ALC269_FIXUP_AMIC),
4919 SND_PCI_QUIRK(0x1043, 0x1133, "ASUS UJ20ft", ALC269_FIXUP_AMIC),
4920 SND_PCI_QUIRK(0x1043, 0x1183, "ASUS K72DR", ALC269_FIXUP_AMIC),
4921 SND_PCI_QUIRK(0x1043, 0x11b3, "ASUS K52DR", ALC269_FIXUP_AMIC),
4922 SND_PCI_QUIRK(0x1043, 0x11e3, "ASUS U33Jc", ALC269_FIXUP_AMIC),
4923 SND_PCI_QUIRK(0x1043, 0x1273, "ASUS UL80Jt", ALC269_FIXUP_AMIC),
4924 SND_PCI_QUIRK(0x1043, 0x1283, "ASUS U53Jc", ALC269_FIXUP_AMIC),
4925 SND_PCI_QUIRK(0x1043, 0x12b3, "ASUS N82JV", ALC269_FIXUP_AMIC),
4926 SND_PCI_QUIRK(0x1043, 0x12d3, "ASUS N61Jv", ALC269_FIXUP_AMIC),
4927 SND_PCI_QUIRK(0x1043, 0x13a3, "ASUS UL30Vt", ALC269_FIXUP_AMIC),
4928 SND_PCI_QUIRK(0x1043, 0x1373, "ASUS G73JX", ALC269_FIXUP_AMIC),
4929 SND_PCI_QUIRK(0x1043, 0x1383, "ASUS UJ30Jc", ALC269_FIXUP_AMIC),
4930 SND_PCI_QUIRK(0x1043, 0x13d3, "ASUS N61JA", ALC269_FIXUP_AMIC),
4931 SND_PCI_QUIRK(0x1043, 0x1413, "ASUS UL50", ALC269_FIXUP_AMIC),
4932 SND_PCI_QUIRK(0x1043, 0x1443, "ASUS UL30", ALC269_FIXUP_AMIC),
4933 SND_PCI_QUIRK(0x1043, 0x1453, "ASUS M60Jv", ALC269_FIXUP_AMIC),
4934 SND_PCI_QUIRK(0x1043, 0x1483, "ASUS UL80", ALC269_FIXUP_AMIC),
4935 SND_PCI_QUIRK(0x1043, 0x14f3, "ASUS F83Vf", ALC269_FIXUP_AMIC),
4936 SND_PCI_QUIRK(0x1043, 0x14e3, "ASUS UL20", ALC269_FIXUP_AMIC),
4937 SND_PCI_QUIRK(0x1043, 0x1513, "ASUS UX30", ALC269_FIXUP_AMIC),
4938 SND_PCI_QUIRK(0x1043, 0x1593, "ASUS N51Vn", ALC269_FIXUP_AMIC),
4939 SND_PCI_QUIRK(0x1043, 0x15a3, "ASUS N60Jv", ALC269_FIXUP_AMIC),
4940 SND_PCI_QUIRK(0x1043, 0x15b3, "ASUS N60Dp", ALC269_FIXUP_AMIC),
4941 SND_PCI_QUIRK(0x1043, 0x15c3, "ASUS N70De", ALC269_FIXUP_AMIC),
4942 SND_PCI_QUIRK(0x1043, 0x15e3, "ASUS F83T", ALC269_FIXUP_AMIC),
4943 SND_PCI_QUIRK(0x1043, 0x1643, "ASUS M60J", ALC269_FIXUP_AMIC),
4944 SND_PCI_QUIRK(0x1043, 0x1653, "ASUS U50", ALC269_FIXUP_AMIC),
4945 SND_PCI_QUIRK(0x1043, 0x1693, "ASUS F50N", ALC269_FIXUP_AMIC),
4946 SND_PCI_QUIRK(0x1043, 0x16a3, "ASUS F5Q", ALC269_FIXUP_AMIC),
4947 SND_PCI_QUIRK(0x1043, 0x1723, "ASUS P80", ALC269_FIXUP_AMIC),
4948 SND_PCI_QUIRK(0x1043, 0x1743, "ASUS U80", ALC269_FIXUP_AMIC),
4949 SND_PCI_QUIRK(0x1043, 0x1773, "ASUS U20A", ALC269_FIXUP_AMIC),
4950 SND_PCI_QUIRK(0x1043, 0x1883, "ASUS F81Se", ALC269_FIXUP_AMIC),
4951 SND_PCI_QUIRK(0x152d, 0x1778, "Quanta ON1", ALC269_FIXUP_DMIC),
4952 SND_PCI_QUIRK(0x17aa, 0x3be9, "Quanta Wistron", ALC269_FIXUP_AMIC),
4953 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_FIXUP_AMIC),
4954 SND_PCI_QUIRK(0x17ff, 0x059a, "Quanta EL3", ALC269_FIXUP_DMIC),
4955 SND_PCI_QUIRK(0x17ff, 0x059b, "Quanta JR1", ALC269_FIXUP_DMIC),
4956 #endif
4960 static const struct alc_model_fixup alc269_fixup_models[] = {
4961 {.id = ALC269_FIXUP_AMIC, .name = "laptop-amic"},
4962 {.id = ALC269_FIXUP_DMIC, .name = "laptop-dmic"},
4967 static int alc269_fill_coef(struct hda_codec *codec)
4969 int val;
4971 if ((alc_get_coef0(codec) & 0x00ff) < 0x015) {
4972 alc_write_coef_idx(codec, 0xf, 0x960b);
4973 alc_write_coef_idx(codec, 0xe, 0x8817);
4976 if ((alc_get_coef0(codec) & 0x00ff) == 0x016) {
4977 alc_write_coef_idx(codec, 0xf, 0x960b);
4978 alc_write_coef_idx(codec, 0xe, 0x8814);
4981 if ((alc_get_coef0(codec) & 0x00ff) == 0x017) {
4982 val = alc_read_coef_idx(codec, 0x04);
4983 /* Power up output pin */
4984 alc_write_coef_idx(codec, 0x04, val | (1<<11));
4987 if ((alc_get_coef0(codec) & 0x00ff) == 0x018) {
4988 val = alc_read_coef_idx(codec, 0xd);
4989 if ((val & 0x0c00) >> 10 != 0x1) {
4990 /* Capless ramp up clock control */
4991 alc_write_coef_idx(codec, 0xd, val | (1<<10));
4993 val = alc_read_coef_idx(codec, 0x17);
4994 if ((val & 0x01c0) >> 6 != 0x4) {
4995 /* Class D power on reset */
4996 alc_write_coef_idx(codec, 0x17, val | (1<<7));
5000 val = alc_read_coef_idx(codec, 0xd); /* Class D */
5001 alc_write_coef_idx(codec, 0xd, val | (1<<14));
5003 val = alc_read_coef_idx(codec, 0x4); /* HP */
5004 alc_write_coef_idx(codec, 0x4, val | (1<<11));
5006 return 0;
5011 static int patch_alc269(struct hda_codec *codec)
5013 struct alc_spec *spec;
5014 int err = 0;
5016 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
5017 if (spec == NULL)
5018 return -ENOMEM;
5020 codec->spec = spec;
5022 spec->mixer_nid = 0x0b;
5024 alc_auto_parse_customize_define(codec);
5026 err = alc_codec_rename_from_preset(codec);
5027 if (err < 0)
5028 goto error;
5030 if (codec->vendor_id == 0x10ec0269) {
5031 spec->codec_variant = ALC269_TYPE_ALC269VA;
5032 switch (alc_get_coef0(codec) & 0x00f0) {
5033 case 0x0010:
5034 if (codec->bus->pci->subsystem_vendor == 0x1025 &&
5035 spec->cdefine.platform_type == 1)
5036 err = alc_codec_rename(codec, "ALC271X");
5037 spec->codec_variant = ALC269_TYPE_ALC269VB;
5038 break;
5039 case 0x0020:
5040 if (codec->bus->pci->subsystem_vendor == 0x17aa &&
5041 codec->bus->pci->subsystem_device == 0x21f3)
5042 err = alc_codec_rename(codec, "ALC3202");
5043 spec->codec_variant = ALC269_TYPE_ALC269VC;
5044 break;
5045 default:
5046 alc_fix_pll_init(codec, 0x20, 0x04, 15);
5048 if (err < 0)
5049 goto error;
5050 alc269_fill_coef(codec);
5053 alc_pick_fixup(codec, alc269_fixup_models,
5054 alc269_fixup_tbl, alc269_fixups);
5055 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
5057 /* automatic parse from the BIOS config */
5058 err = alc269_parse_auto_config(codec);
5059 if (err < 0)
5060 goto error;
5062 if (!spec->no_analog && !spec->adc_nids) {
5063 alc_auto_fill_adc_caps(codec);
5064 alc_rebuild_imux_for_auto_mic(codec);
5065 alc_remove_invalid_adc_nids(codec);
5068 if (!spec->no_analog && !spec->cap_mixer)
5069 set_capture_mixer(codec);
5071 if (!spec->no_analog && has_cdefine_beep(codec)) {
5072 err = snd_hda_attach_beep_device(codec, 0x1);
5073 if (err < 0)
5074 goto error;
5075 set_beep_amp(spec, 0x0b, 0x04, HDA_INPUT);
5078 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
5080 spec->vmaster_nid = 0x02;
5082 codec->patch_ops = alc_patch_ops;
5083 #ifdef CONFIG_PM
5084 codec->patch_ops.resume = alc269_resume;
5085 #endif
5086 spec->init_hook = alc_auto_init_std;
5087 spec->shutup = alc269_shutup;
5089 alc_init_jacks(codec);
5090 #ifdef CONFIG_SND_HDA_POWER_SAVE
5091 if (!spec->loopback.amplist)
5092 spec->loopback.amplist = alc269_loopbacks;
5093 if (alc269_mic2_for_mute_led(codec))
5094 codec->patch_ops.check_power_status = alc269_mic2_mute_check_ps;
5095 #endif
5097 return 0;
5099 error:
5100 alc_free(codec);
5101 return err;
5105 * ALC861
5108 static int alc861_parse_auto_config(struct hda_codec *codec)
5110 static const hda_nid_t alc861_ignore[] = { 0x1d, 0 };
5111 static const hda_nid_t alc861_ssids[] = { 0x0e, 0x0f, 0x0b, 0 };
5112 return alc_parse_auto_config(codec, alc861_ignore, alc861_ssids);
5115 #ifdef CONFIG_SND_HDA_POWER_SAVE
5116 static const struct hda_amp_list alc861_loopbacks[] = {
5117 { 0x15, HDA_INPUT, 0 },
5118 { 0x15, HDA_INPUT, 1 },
5119 { 0x15, HDA_INPUT, 2 },
5120 { 0x15, HDA_INPUT, 3 },
5121 { } /* end */
5123 #endif
5126 /* Pin config fixes */
5127 enum {
5128 PINFIX_FSC_AMILO_PI1505,
5131 static const struct alc_fixup alc861_fixups[] = {
5132 [PINFIX_FSC_AMILO_PI1505] = {
5133 .type = ALC_FIXUP_PINS,
5134 .v.pins = (const struct alc_pincfg[]) {
5135 { 0x0b, 0x0221101f }, /* HP */
5136 { 0x0f, 0x90170310 }, /* speaker */
5142 static const struct snd_pci_quirk alc861_fixup_tbl[] = {
5143 SND_PCI_QUIRK(0x1734, 0x10c7, "FSC Amilo Pi1505", PINFIX_FSC_AMILO_PI1505),
5149 static int patch_alc861(struct hda_codec *codec)
5151 struct alc_spec *spec;
5152 int err;
5154 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
5155 if (spec == NULL)
5156 return -ENOMEM;
5158 codec->spec = spec;
5160 spec->mixer_nid = 0x15;
5162 alc_pick_fixup(codec, NULL, alc861_fixup_tbl, alc861_fixups);
5163 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
5165 /* automatic parse from the BIOS config */
5166 err = alc861_parse_auto_config(codec);
5167 if (err < 0)
5168 goto error;
5170 if (!spec->no_analog && !spec->adc_nids) {
5171 alc_auto_fill_adc_caps(codec);
5172 alc_rebuild_imux_for_auto_mic(codec);
5173 alc_remove_invalid_adc_nids(codec);
5176 if (!spec->no_analog && !spec->cap_mixer)
5177 set_capture_mixer(codec);
5179 if (!spec->no_analog) {
5180 err = snd_hda_attach_beep_device(codec, 0x23);
5181 if (err < 0)
5182 goto error;
5183 set_beep_amp(spec, 0x23, 0, HDA_OUTPUT);
5186 spec->vmaster_nid = 0x03;
5188 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
5190 codec->patch_ops = alc_patch_ops;
5191 spec->init_hook = alc_auto_init_std;
5192 #ifdef CONFIG_SND_HDA_POWER_SAVE
5193 spec->power_hook = alc_power_eapd;
5194 if (!spec->loopback.amplist)
5195 spec->loopback.amplist = alc861_loopbacks;
5196 #endif
5198 return 0;
5200 error:
5201 alc_free(codec);
5202 return err;
5206 * ALC861-VD support
5208 * Based on ALC882
5210 * In addition, an independent DAC
5212 #ifdef CONFIG_SND_HDA_POWER_SAVE
5213 #define alc861vd_loopbacks alc880_loopbacks
5214 #endif
5216 static int alc861vd_parse_auto_config(struct hda_codec *codec)
5218 static const hda_nid_t alc861vd_ignore[] = { 0x1d, 0 };
5219 static const hda_nid_t alc861vd_ssids[] = { 0x15, 0x1b, 0x14, 0 };
5220 return alc_parse_auto_config(codec, alc861vd_ignore, alc861vd_ssids);
5223 enum {
5224 ALC660VD_FIX_ASUS_GPIO1,
5225 ALC861VD_FIX_DALLAS,
5228 /* exclude VREF80 */
5229 static void alc861vd_fixup_dallas(struct hda_codec *codec,
5230 const struct alc_fixup *fix, int action)
5232 if (action == ALC_FIXUP_ACT_PRE_PROBE) {
5233 snd_hda_override_pin_caps(codec, 0x18, 0x00001714);
5234 snd_hda_override_pin_caps(codec, 0x19, 0x0000171c);
5238 static const struct alc_fixup alc861vd_fixups[] = {
5239 [ALC660VD_FIX_ASUS_GPIO1] = {
5240 .type = ALC_FIXUP_VERBS,
5241 .v.verbs = (const struct hda_verb[]) {
5242 /* reset GPIO1 */
5243 {0x01, AC_VERB_SET_GPIO_MASK, 0x03},
5244 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
5245 {0x01, AC_VERB_SET_GPIO_DATA, 0x01},
5249 [ALC861VD_FIX_DALLAS] = {
5250 .type = ALC_FIXUP_FUNC,
5251 .v.func = alc861vd_fixup_dallas,
5255 static const struct snd_pci_quirk alc861vd_fixup_tbl[] = {
5256 SND_PCI_QUIRK(0x103c, 0x30bf, "HP TX1000", ALC861VD_FIX_DALLAS),
5257 SND_PCI_QUIRK(0x1043, 0x1339, "ASUS A7-K", ALC660VD_FIX_ASUS_GPIO1),
5258 SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba L30-149", ALC861VD_FIX_DALLAS),
5262 static const struct hda_verb alc660vd_eapd_verbs[] = {
5263 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 2},
5264 {0x15, AC_VERB_SET_EAPD_BTLENABLE, 2},
5270 static int patch_alc861vd(struct hda_codec *codec)
5272 struct alc_spec *spec;
5273 int err;
5275 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
5276 if (spec == NULL)
5277 return -ENOMEM;
5279 codec->spec = spec;
5281 spec->mixer_nid = 0x0b;
5283 alc_pick_fixup(codec, NULL, alc861vd_fixup_tbl, alc861vd_fixups);
5284 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
5286 /* automatic parse from the BIOS config */
5287 err = alc861vd_parse_auto_config(codec);
5288 if (err < 0)
5289 goto error;
5291 if (codec->vendor_id == 0x10ec0660) {
5292 /* always turn on EAPD */
5293 add_verb(spec, alc660vd_eapd_verbs);
5296 if (!spec->no_analog && !spec->adc_nids) {
5297 alc_auto_fill_adc_caps(codec);
5298 alc_rebuild_imux_for_auto_mic(codec);
5299 alc_remove_invalid_adc_nids(codec);
5302 if (!spec->no_analog && !spec->cap_mixer)
5303 set_capture_mixer(codec);
5305 if (!spec->no_analog) {
5306 err = snd_hda_attach_beep_device(codec, 0x23);
5307 if (err < 0)
5308 goto error;
5309 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
5312 spec->vmaster_nid = 0x02;
5314 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
5316 codec->patch_ops = alc_patch_ops;
5318 spec->init_hook = alc_auto_init_std;
5319 spec->shutup = alc_eapd_shutup;
5320 #ifdef CONFIG_SND_HDA_POWER_SAVE
5321 if (!spec->loopback.amplist)
5322 spec->loopback.amplist = alc861vd_loopbacks;
5323 #endif
5325 return 0;
5327 error:
5328 alc_free(codec);
5329 return err;
5333 * ALC662 support
5335 * ALC662 is almost identical with ALC880 but has cleaner and more flexible
5336 * configuration. Each pin widget can choose any input DACs and a mixer.
5337 * Each ADC is connected from a mixer of all inputs. This makes possible
5338 * 6-channel independent captures.
5340 * In addition, an independent DAC for the multi-playback (not used in this
5341 * driver yet).
5343 #ifdef CONFIG_SND_HDA_POWER_SAVE
5344 #define alc662_loopbacks alc880_loopbacks
5345 #endif
5348 * BIOS auto configuration
5351 static int alc662_parse_auto_config(struct hda_codec *codec)
5353 static const hda_nid_t alc662_ignore[] = { 0x1d, 0 };
5354 static const hda_nid_t alc663_ssids[] = { 0x15, 0x1b, 0x14, 0x21 };
5355 static const hda_nid_t alc662_ssids[] = { 0x15, 0x1b, 0x14, 0 };
5356 const hda_nid_t *ssids;
5358 if (codec->vendor_id == 0x10ec0272 || codec->vendor_id == 0x10ec0663 ||
5359 codec->vendor_id == 0x10ec0665 || codec->vendor_id == 0x10ec0670)
5360 ssids = alc663_ssids;
5361 else
5362 ssids = alc662_ssids;
5363 return alc_parse_auto_config(codec, alc662_ignore, ssids);
5366 static void alc272_fixup_mario(struct hda_codec *codec,
5367 const struct alc_fixup *fix, int action)
5369 if (action != ALC_FIXUP_ACT_PROBE)
5370 return;
5371 if (snd_hda_override_amp_caps(codec, 0x2, HDA_OUTPUT,
5372 (0x3b << AC_AMPCAP_OFFSET_SHIFT) |
5373 (0x3b << AC_AMPCAP_NUM_STEPS_SHIFT) |
5374 (0x03 << AC_AMPCAP_STEP_SIZE_SHIFT) |
5375 (0 << AC_AMPCAP_MUTE_SHIFT)))
5376 printk(KERN_WARNING
5377 "hda_codec: failed to override amp caps for NID 0x2\n");
5380 enum {
5381 ALC662_FIXUP_ASPIRE,
5382 ALC662_FIXUP_IDEAPAD,
5383 ALC272_FIXUP_MARIO,
5384 ALC662_FIXUP_CZC_P10T,
5385 ALC662_FIXUP_SKU_IGNORE,
5386 ALC662_FIXUP_HP_RP5800,
5387 ALC662_FIXUP_ASUS_MODE1,
5388 ALC662_FIXUP_ASUS_MODE2,
5389 ALC662_FIXUP_ASUS_MODE3,
5390 ALC662_FIXUP_ASUS_MODE4,
5391 ALC662_FIXUP_ASUS_MODE5,
5392 ALC662_FIXUP_ASUS_MODE6,
5393 ALC662_FIXUP_ASUS_MODE7,
5394 ALC662_FIXUP_ASUS_MODE8,
5397 static const struct alc_fixup alc662_fixups[] = {
5398 [ALC662_FIXUP_ASPIRE] = {
5399 .type = ALC_FIXUP_PINS,
5400 .v.pins = (const struct alc_pincfg[]) {
5401 { 0x15, 0x99130112 }, /* subwoofer */
5405 [ALC662_FIXUP_IDEAPAD] = {
5406 .type = ALC_FIXUP_PINS,
5407 .v.pins = (const struct alc_pincfg[]) {
5408 { 0x17, 0x99130112 }, /* subwoofer */
5412 [ALC272_FIXUP_MARIO] = {
5413 .type = ALC_FIXUP_FUNC,
5414 .v.func = alc272_fixup_mario,
5416 [ALC662_FIXUP_CZC_P10T] = {
5417 .type = ALC_FIXUP_VERBS,
5418 .v.verbs = (const struct hda_verb[]) {
5419 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 0},
5423 [ALC662_FIXUP_SKU_IGNORE] = {
5424 .type = ALC_FIXUP_SKU,
5425 .v.sku = ALC_FIXUP_SKU_IGNORE,
5427 [ALC662_FIXUP_HP_RP5800] = {
5428 .type = ALC_FIXUP_PINS,
5429 .v.pins = (const struct alc_pincfg[]) {
5430 { 0x14, 0x0221201f }, /* HP out */
5433 .chained = true,
5434 .chain_id = ALC662_FIXUP_SKU_IGNORE
5436 [ALC662_FIXUP_ASUS_MODE1] = {
5437 .type = ALC_FIXUP_PINS,
5438 .v.pins = (const struct alc_pincfg[]) {
5439 { 0x14, 0x99130110 }, /* speaker */
5440 { 0x18, 0x01a19c20 }, /* mic */
5441 { 0x19, 0x99a3092f }, /* int-mic */
5442 { 0x21, 0x0121401f }, /* HP out */
5445 .chained = true,
5446 .chain_id = ALC662_FIXUP_SKU_IGNORE
5448 [ALC662_FIXUP_ASUS_MODE2] = {
5449 .type = ALC_FIXUP_PINS,
5450 .v.pins = (const struct alc_pincfg[]) {
5451 { 0x14, 0x99130110 }, /* speaker */
5452 { 0x18, 0x01a19820 }, /* mic */
5453 { 0x19, 0x99a3092f }, /* int-mic */
5454 { 0x1b, 0x0121401f }, /* HP out */
5457 .chained = true,
5458 .chain_id = ALC662_FIXUP_SKU_IGNORE
5460 [ALC662_FIXUP_ASUS_MODE3] = {
5461 .type = ALC_FIXUP_PINS,
5462 .v.pins = (const struct alc_pincfg[]) {
5463 { 0x14, 0x99130110 }, /* speaker */
5464 { 0x15, 0x0121441f }, /* HP */
5465 { 0x18, 0x01a19840 }, /* mic */
5466 { 0x19, 0x99a3094f }, /* int-mic */
5467 { 0x21, 0x01211420 }, /* HP2 */
5470 .chained = true,
5471 .chain_id = ALC662_FIXUP_SKU_IGNORE
5473 [ALC662_FIXUP_ASUS_MODE4] = {
5474 .type = ALC_FIXUP_PINS,
5475 .v.pins = (const struct alc_pincfg[]) {
5476 { 0x14, 0x99130110 }, /* speaker */
5477 { 0x16, 0x99130111 }, /* speaker */
5478 { 0x18, 0x01a19840 }, /* mic */
5479 { 0x19, 0x99a3094f }, /* int-mic */
5480 { 0x21, 0x0121441f }, /* HP */
5483 .chained = true,
5484 .chain_id = ALC662_FIXUP_SKU_IGNORE
5486 [ALC662_FIXUP_ASUS_MODE5] = {
5487 .type = ALC_FIXUP_PINS,
5488 .v.pins = (const struct alc_pincfg[]) {
5489 { 0x14, 0x99130110 }, /* speaker */
5490 { 0x15, 0x0121441f }, /* HP */
5491 { 0x16, 0x99130111 }, /* speaker */
5492 { 0x18, 0x01a19840 }, /* mic */
5493 { 0x19, 0x99a3094f }, /* int-mic */
5496 .chained = true,
5497 .chain_id = ALC662_FIXUP_SKU_IGNORE
5499 [ALC662_FIXUP_ASUS_MODE6] = {
5500 .type = ALC_FIXUP_PINS,
5501 .v.pins = (const struct alc_pincfg[]) {
5502 { 0x14, 0x99130110 }, /* speaker */
5503 { 0x15, 0x01211420 }, /* HP2 */
5504 { 0x18, 0x01a19840 }, /* mic */
5505 { 0x19, 0x99a3094f }, /* int-mic */
5506 { 0x1b, 0x0121441f }, /* HP */
5509 .chained = true,
5510 .chain_id = ALC662_FIXUP_SKU_IGNORE
5512 [ALC662_FIXUP_ASUS_MODE7] = {
5513 .type = ALC_FIXUP_PINS,
5514 .v.pins = (const struct alc_pincfg[]) {
5515 { 0x14, 0x99130110 }, /* speaker */
5516 { 0x17, 0x99130111 }, /* speaker */
5517 { 0x18, 0x01a19840 }, /* mic */
5518 { 0x19, 0x99a3094f }, /* int-mic */
5519 { 0x1b, 0x01214020 }, /* HP */
5520 { 0x21, 0x0121401f }, /* HP */
5523 .chained = true,
5524 .chain_id = ALC662_FIXUP_SKU_IGNORE
5526 [ALC662_FIXUP_ASUS_MODE8] = {
5527 .type = ALC_FIXUP_PINS,
5528 .v.pins = (const struct alc_pincfg[]) {
5529 { 0x14, 0x99130110 }, /* speaker */
5530 { 0x12, 0x99a30970 }, /* int-mic */
5531 { 0x15, 0x01214020 }, /* HP */
5532 { 0x17, 0x99130111 }, /* speaker */
5533 { 0x18, 0x01a19840 }, /* mic */
5534 { 0x21, 0x0121401f }, /* HP */
5537 .chained = true,
5538 .chain_id = ALC662_FIXUP_SKU_IGNORE
5542 static const struct snd_pci_quirk alc662_fixup_tbl[] = {
5543 SND_PCI_QUIRK(0x1019, 0x9087, "ECS", ALC662_FIXUP_ASUS_MODE2),
5544 SND_PCI_QUIRK(0x1025, 0x0308, "Acer Aspire 8942G", ALC662_FIXUP_ASPIRE),
5545 SND_PCI_QUIRK(0x1025, 0x031c, "Gateway NV79", ALC662_FIXUP_SKU_IGNORE),
5546 SND_PCI_QUIRK(0x1025, 0x038b, "Acer Aspire 8943G", ALC662_FIXUP_ASPIRE),
5547 SND_PCI_QUIRK(0x103c, 0x1632, "HP RP5800", ALC662_FIXUP_HP_RP5800),
5548 SND_PCI_QUIRK(0x105b, 0x0cd6, "Foxconn", ALC662_FIXUP_ASUS_MODE2),
5549 SND_PCI_QUIRK(0x144d, 0xc051, "Samsung R720", ALC662_FIXUP_IDEAPAD),
5550 SND_PCI_QUIRK(0x17aa, 0x38af, "Lenovo Ideapad Y550P", ALC662_FIXUP_IDEAPAD),
5551 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Ideapad Y550", ALC662_FIXUP_IDEAPAD),
5552 SND_PCI_QUIRK(0x1b35, 0x2206, "CZC P10T", ALC662_FIXUP_CZC_P10T),
5554 #if 0
5555 /* Below is a quirk table taken from the old code.
5556 * Basically the device should work as is without the fixup table.
5557 * If BIOS doesn't give a proper info, enable the corresponding
5558 * fixup entry.
5560 SND_PCI_QUIRK(0x1043, 0x1000, "ASUS N50Vm", ALC662_FIXUP_ASUS_MODE1),
5561 SND_PCI_QUIRK(0x1043, 0x1092, "ASUS NB", ALC662_FIXUP_ASUS_MODE3),
5562 SND_PCI_QUIRK(0x1043, 0x1173, "ASUS K73Jn", ALC662_FIXUP_ASUS_MODE1),
5563 SND_PCI_QUIRK(0x1043, 0x11c3, "ASUS M70V", ALC662_FIXUP_ASUS_MODE3),
5564 SND_PCI_QUIRK(0x1043, 0x11d3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
5565 SND_PCI_QUIRK(0x1043, 0x11f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
5566 SND_PCI_QUIRK(0x1043, 0x1203, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
5567 SND_PCI_QUIRK(0x1043, 0x1303, "ASUS G60J", ALC662_FIXUP_ASUS_MODE1),
5568 SND_PCI_QUIRK(0x1043, 0x1333, "ASUS G60Jx", ALC662_FIXUP_ASUS_MODE1),
5569 SND_PCI_QUIRK(0x1043, 0x1339, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
5570 SND_PCI_QUIRK(0x1043, 0x13e3, "ASUS N71JA", ALC662_FIXUP_ASUS_MODE7),
5571 SND_PCI_QUIRK(0x1043, 0x1463, "ASUS N71", ALC662_FIXUP_ASUS_MODE7),
5572 SND_PCI_QUIRK(0x1043, 0x14d3, "ASUS G72", ALC662_FIXUP_ASUS_MODE8),
5573 SND_PCI_QUIRK(0x1043, 0x1563, "ASUS N90", ALC662_FIXUP_ASUS_MODE3),
5574 SND_PCI_QUIRK(0x1043, 0x15d3, "ASUS N50SF F50SF", ALC662_FIXUP_ASUS_MODE1),
5575 SND_PCI_QUIRK(0x1043, 0x16c3, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
5576 SND_PCI_QUIRK(0x1043, 0x16f3, "ASUS K40C K50C", ALC662_FIXUP_ASUS_MODE2),
5577 SND_PCI_QUIRK(0x1043, 0x1733, "ASUS N81De", ALC662_FIXUP_ASUS_MODE1),
5578 SND_PCI_QUIRK(0x1043, 0x1753, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
5579 SND_PCI_QUIRK(0x1043, 0x1763, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
5580 SND_PCI_QUIRK(0x1043, 0x1765, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
5581 SND_PCI_QUIRK(0x1043, 0x1783, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
5582 SND_PCI_QUIRK(0x1043, 0x1793, "ASUS F50GX", ALC662_FIXUP_ASUS_MODE1),
5583 SND_PCI_QUIRK(0x1043, 0x17b3, "ASUS F70SL", ALC662_FIXUP_ASUS_MODE3),
5584 SND_PCI_QUIRK(0x1043, 0x17f3, "ASUS X58LE", ALC662_FIXUP_ASUS_MODE2),
5585 SND_PCI_QUIRK(0x1043, 0x1813, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
5586 SND_PCI_QUIRK(0x1043, 0x1823, "ASUS NB", ALC662_FIXUP_ASUS_MODE5),
5587 SND_PCI_QUIRK(0x1043, 0x1833, "ASUS NB", ALC662_FIXUP_ASUS_MODE6),
5588 SND_PCI_QUIRK(0x1043, 0x1843, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
5589 SND_PCI_QUIRK(0x1043, 0x1853, "ASUS F50Z", ALC662_FIXUP_ASUS_MODE1),
5590 SND_PCI_QUIRK(0x1043, 0x1864, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
5591 SND_PCI_QUIRK(0x1043, 0x1876, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
5592 SND_PCI_QUIRK(0x1043, 0x1893, "ASUS M50Vm", ALC662_FIXUP_ASUS_MODE3),
5593 SND_PCI_QUIRK(0x1043, 0x1894, "ASUS X55", ALC662_FIXUP_ASUS_MODE3),
5594 SND_PCI_QUIRK(0x1043, 0x18b3, "ASUS N80Vc", ALC662_FIXUP_ASUS_MODE1),
5595 SND_PCI_QUIRK(0x1043, 0x18c3, "ASUS VX5", ALC662_FIXUP_ASUS_MODE1),
5596 SND_PCI_QUIRK(0x1043, 0x18d3, "ASUS N81Te", ALC662_FIXUP_ASUS_MODE1),
5597 SND_PCI_QUIRK(0x1043, 0x18f3, "ASUS N505Tp", ALC662_FIXUP_ASUS_MODE1),
5598 SND_PCI_QUIRK(0x1043, 0x1903, "ASUS F5GL", ALC662_FIXUP_ASUS_MODE1),
5599 SND_PCI_QUIRK(0x1043, 0x1913, "ASUS NB", ALC662_FIXUP_ASUS_MODE2),
5600 SND_PCI_QUIRK(0x1043, 0x1933, "ASUS F80Q", ALC662_FIXUP_ASUS_MODE2),
5601 SND_PCI_QUIRK(0x1043, 0x1943, "ASUS Vx3V", ALC662_FIXUP_ASUS_MODE1),
5602 SND_PCI_QUIRK(0x1043, 0x1953, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
5603 SND_PCI_QUIRK(0x1043, 0x1963, "ASUS X71C", ALC662_FIXUP_ASUS_MODE3),
5604 SND_PCI_QUIRK(0x1043, 0x1983, "ASUS N5051A", ALC662_FIXUP_ASUS_MODE1),
5605 SND_PCI_QUIRK(0x1043, 0x1993, "ASUS N20", ALC662_FIXUP_ASUS_MODE1),
5606 SND_PCI_QUIRK(0x1043, 0x19b3, "ASUS F7Z", ALC662_FIXUP_ASUS_MODE1),
5607 SND_PCI_QUIRK(0x1043, 0x19c3, "ASUS F5Z/F6x", ALC662_FIXUP_ASUS_MODE2),
5608 SND_PCI_QUIRK(0x1043, 0x19e3, "ASUS NB", ALC662_FIXUP_ASUS_MODE1),
5609 SND_PCI_QUIRK(0x1043, 0x19f3, "ASUS NB", ALC662_FIXUP_ASUS_MODE4),
5610 #endif
5614 static const struct alc_model_fixup alc662_fixup_models[] = {
5615 {.id = ALC272_FIXUP_MARIO, .name = "mario"},
5616 {.id = ALC662_FIXUP_ASUS_MODE1, .name = "asus-mode1"},
5617 {.id = ALC662_FIXUP_ASUS_MODE2, .name = "asus-mode2"},
5618 {.id = ALC662_FIXUP_ASUS_MODE3, .name = "asus-mode3"},
5619 {.id = ALC662_FIXUP_ASUS_MODE4, .name = "asus-mode4"},
5620 {.id = ALC662_FIXUP_ASUS_MODE5, .name = "asus-mode5"},
5621 {.id = ALC662_FIXUP_ASUS_MODE6, .name = "asus-mode6"},
5622 {.id = ALC662_FIXUP_ASUS_MODE7, .name = "asus-mode7"},
5623 {.id = ALC662_FIXUP_ASUS_MODE8, .name = "asus-mode8"},
5630 static int patch_alc662(struct hda_codec *codec)
5632 struct alc_spec *spec;
5633 int err = 0;
5635 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
5636 if (!spec)
5637 return -ENOMEM;
5639 codec->spec = spec;
5641 spec->mixer_nid = 0x0b;
5643 /* handle multiple HPs as is */
5644 spec->parse_flags = HDA_PINCFG_NO_HP_FIXUP;
5646 alc_auto_parse_customize_define(codec);
5648 alc_fix_pll_init(codec, 0x20, 0x04, 15);
5650 err = alc_codec_rename_from_preset(codec);
5651 if (err < 0)
5652 goto error;
5654 if ((alc_get_coef0(codec) & (1 << 14)) &&
5655 codec->bus->pci->subsystem_vendor == 0x1025 &&
5656 spec->cdefine.platform_type == 1) {
5657 if (alc_codec_rename(codec, "ALC272X") < 0)
5658 goto error;
5661 alc_pick_fixup(codec, alc662_fixup_models,
5662 alc662_fixup_tbl, alc662_fixups);
5663 alc_apply_fixup(codec, ALC_FIXUP_ACT_PRE_PROBE);
5664 /* automatic parse from the BIOS config */
5665 err = alc662_parse_auto_config(codec);
5666 if (err < 0)
5667 goto error;
5669 if (!spec->no_analog && !spec->adc_nids) {
5670 alc_auto_fill_adc_caps(codec);
5671 alc_rebuild_imux_for_auto_mic(codec);
5672 alc_remove_invalid_adc_nids(codec);
5675 if (!spec->no_analog && !spec->cap_mixer)
5676 set_capture_mixer(codec);
5678 if (!spec->no_analog && has_cdefine_beep(codec)) {
5679 err = snd_hda_attach_beep_device(codec, 0x1);
5680 if (err < 0)
5681 goto error;
5682 switch (codec->vendor_id) {
5683 case 0x10ec0662:
5684 set_beep_amp(spec, 0x0b, 0x05, HDA_INPUT);
5685 break;
5686 case 0x10ec0272:
5687 case 0x10ec0663:
5688 case 0x10ec0665:
5689 set_beep_amp(spec, 0x0b, 0x04, HDA_INPUT);
5690 break;
5691 case 0x10ec0273:
5692 set_beep_amp(spec, 0x0b, 0x03, HDA_INPUT);
5693 break;
5696 spec->vmaster_nid = 0x02;
5698 alc_apply_fixup(codec, ALC_FIXUP_ACT_PROBE);
5700 codec->patch_ops = alc_patch_ops;
5701 spec->init_hook = alc_auto_init_std;
5702 spec->shutup = alc_eapd_shutup;
5704 alc_init_jacks(codec);
5706 #ifdef CONFIG_SND_HDA_POWER_SAVE
5707 if (!spec->loopback.amplist)
5708 spec->loopback.amplist = alc662_loopbacks;
5709 #endif
5711 return 0;
5713 error:
5714 alc_free(codec);
5715 return err;
5719 * ALC680 support
5722 static int alc680_parse_auto_config(struct hda_codec *codec)
5724 return alc_parse_auto_config(codec, NULL, NULL);
5729 static int patch_alc680(struct hda_codec *codec)
5731 struct alc_spec *spec;
5732 int err;
5734 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
5735 if (spec == NULL)
5736 return -ENOMEM;
5738 codec->spec = spec;
5740 /* ALC680 has no aa-loopback mixer */
5742 /* automatic parse from the BIOS config */
5743 err = alc680_parse_auto_config(codec);
5744 if (err < 0) {
5745 alc_free(codec);
5746 return err;
5749 if (!spec->no_analog && !spec->cap_mixer)
5750 set_capture_mixer(codec);
5752 spec->vmaster_nid = 0x02;
5754 codec->patch_ops = alc_patch_ops;
5755 spec->init_hook = alc_auto_init_std;
5757 return 0;
5761 * patch entries
5763 static const struct hda_codec_preset snd_hda_preset_realtek[] = {
5764 { .id = 0x10ec0221, .name = "ALC221", .patch = patch_alc269 },
5765 { .id = 0x10ec0260, .name = "ALC260", .patch = patch_alc260 },
5766 { .id = 0x10ec0262, .name = "ALC262", .patch = patch_alc262 },
5767 { .id = 0x10ec0267, .name = "ALC267", .patch = patch_alc268 },
5768 { .id = 0x10ec0268, .name = "ALC268", .patch = patch_alc268 },
5769 { .id = 0x10ec0269, .name = "ALC269", .patch = patch_alc269 },
5770 { .id = 0x10ec0270, .name = "ALC270", .patch = patch_alc269 },
5771 { .id = 0x10ec0272, .name = "ALC272", .patch = patch_alc662 },
5772 { .id = 0x10ec0275, .name = "ALC275", .patch = patch_alc269 },
5773 { .id = 0x10ec0276, .name = "ALC276", .patch = patch_alc269 },
5774 { .id = 0x10ec0861, .rev = 0x100340, .name = "ALC660",
5775 .patch = patch_alc861 },
5776 { .id = 0x10ec0660, .name = "ALC660-VD", .patch = patch_alc861vd },
5777 { .id = 0x10ec0861, .name = "ALC861", .patch = patch_alc861 },
5778 { .id = 0x10ec0862, .name = "ALC861-VD", .patch = patch_alc861vd },
5779 { .id = 0x10ec0662, .rev = 0x100002, .name = "ALC662 rev2",
5780 .patch = patch_alc882 },
5781 { .id = 0x10ec0662, .rev = 0x100101, .name = "ALC662 rev1",
5782 .patch = patch_alc662 },
5783 { .id = 0x10ec0662, .rev = 0x100300, .name = "ALC662 rev3",
5784 .patch = patch_alc662 },
5785 { .id = 0x10ec0663, .name = "ALC663", .patch = patch_alc662 },
5786 { .id = 0x10ec0665, .name = "ALC665", .patch = patch_alc662 },
5787 { .id = 0x10ec0670, .name = "ALC670", .patch = patch_alc662 },
5788 { .id = 0x10ec0680, .name = "ALC680", .patch = patch_alc680 },
5789 { .id = 0x10ec0880, .name = "ALC880", .patch = patch_alc880 },
5790 { .id = 0x10ec0882, .name = "ALC882", .patch = patch_alc882 },
5791 { .id = 0x10ec0883, .name = "ALC883", .patch = patch_alc882 },
5792 { .id = 0x10ec0885, .rev = 0x100101, .name = "ALC889A",
5793 .patch = patch_alc882 },
5794 { .id = 0x10ec0885, .rev = 0x100103, .name = "ALC889A",
5795 .patch = patch_alc882 },
5796 { .id = 0x10ec0885, .name = "ALC885", .patch = patch_alc882 },
5797 { .id = 0x10ec0887, .name = "ALC887", .patch = patch_alc882 },
5798 { .id = 0x10ec0888, .rev = 0x100101, .name = "ALC1200",
5799 .patch = patch_alc882 },
5800 { .id = 0x10ec0888, .name = "ALC888", .patch = patch_alc882 },
5801 { .id = 0x10ec0889, .name = "ALC889", .patch = patch_alc882 },
5802 { .id = 0x10ec0892, .name = "ALC892", .patch = patch_alc662 },
5803 { .id = 0x10ec0899, .name = "ALC898", .patch = patch_alc882 },
5804 {} /* terminator */
5807 MODULE_ALIAS("snd-hda-codec-id:10ec*");
5809 MODULE_LICENSE("GPL");
5810 MODULE_DESCRIPTION("Realtek HD-audio codec");
5812 static struct hda_codec_preset_list realtek_list = {
5813 .preset = snd_hda_preset_realtek,
5814 .owner = THIS_MODULE,
5817 static int __init patch_realtek_init(void)
5819 return snd_hda_add_codec_preset(&realtek_list);
5822 static void __exit patch_realtek_exit(void)
5824 snd_hda_delete_codec_preset(&realtek_list);
5827 module_init(patch_realtek_init)
5828 module_exit(patch_realtek_exit)