2 * Universal Interface for Intel High Definition Audio Codec
4 * HD audio interface patch for ALC 260/880/882 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 "hda_codec.h"
32 #include "hda_local.h"
33 #include "hda_patch.h"
35 #define ALC880_FRONT_EVENT 0x01
36 #define ALC880_DCVOL_EVENT 0x02
37 #define ALC880_HP_EVENT 0x04
38 #define ALC880_MIC_EVENT 0x08
40 /* ALC880 board config type */
64 #ifdef CONFIG_SND_DEBUG
68 ALC880_MODEL_LAST /* last tag */
81 #ifdef CONFIG_SND_DEBUG
85 ALC260_MODEL_LAST /* last tag */
95 ALC262_HP_BPC_D7000_WL,
96 ALC262_HP_BPC_D7000_WF,
108 ALC262_MODEL_LAST /* last tag */
117 ALC268_ACER_ASPIRE_ONE,
120 #ifdef CONFIG_SND_DEBUG
124 ALC268_MODEL_LAST /* last tag */
131 ALC269_ASUS_EEEPC_P703,
132 ALC269_ASUS_EEEPC_P901,
134 ALC269_MODEL_LAST /* last tag */
151 /* ALC861-VD models */
172 ALC662_ASUS_EEEPC_P701,
173 ALC662_ASUS_EEEPC_EP20,
212 ALC883_TARGA_2ch_DIG,
218 ALC883_LENOVO_101E_2ch,
219 ALC883_LENOVO_NB0763,
220 ALC888_LENOVO_MS7195_DIG,
227 ALC883_FUJITSU_PI2515,
228 ALC883_3ST_6ch_INTEL,
236 #define GPIO_MASK 0x03
239 /* codec parameterization */
240 struct snd_kcontrol_new *mixers[5]; /* mixer arrays */
241 unsigned int num_mixers;
243 const struct hda_verb *init_verbs[5]; /* initialization verbs
247 unsigned int num_init_verbs;
249 char *stream_name_analog; /* analog PCM stream */
250 struct hda_pcm_stream *stream_analog_playback;
251 struct hda_pcm_stream *stream_analog_capture;
252 struct hda_pcm_stream *stream_analog_alt_playback;
253 struct hda_pcm_stream *stream_analog_alt_capture;
255 char *stream_name_digital; /* digital PCM stream */
256 struct hda_pcm_stream *stream_digital_playback;
257 struct hda_pcm_stream *stream_digital_capture;
260 struct hda_multi_out multiout; /* playback set-up
261 * max_channels, dacs must be set
262 * dig_out_nid and hp_nid are optional
264 hda_nid_t alt_dac_nid;
267 unsigned int num_adc_nids;
269 hda_nid_t *capsrc_nids;
270 hda_nid_t dig_in_nid; /* digital-in NID; optional */
273 unsigned int num_mux_defs;
274 const struct hda_input_mux *input_mux;
275 unsigned int cur_mux[3];
278 const struct hda_channel_mode *channel_mode;
279 int num_channel_mode;
282 /* PCM information */
283 struct hda_pcm pcm_rec[3]; /* used in alc_build_pcms() */
285 /* dynamic controls, init_verbs and input_mux */
286 struct auto_pin_cfg autocfg;
287 unsigned int num_kctl_alloc, num_kctl_used;
288 struct snd_kcontrol_new *kctl_alloc;
289 struct hda_input_mux private_imux;
290 hda_nid_t private_dac_nids[AUTO_CFG_MAX_OUTS];
293 void (*init_hook)(struct hda_codec *codec);
294 void (*unsol_event)(struct hda_codec *codec, unsigned int res);
296 /* for pin sensing */
297 unsigned int sense_updated: 1;
298 unsigned int jack_present: 1;
299 unsigned int master_sw: 1;
301 /* for virtual master */
302 hda_nid_t vmaster_nid;
303 #ifdef CONFIG_SND_HDA_POWER_SAVE
304 struct hda_loopback_check loopback;
309 unsigned int pll_coef_idx, pll_coef_bit;
311 #ifdef SND_HDA_NEEDS_RESUME
312 #define ALC_MAX_PINS 16
313 unsigned int num_pins;
314 hda_nid_t pin_nids[ALC_MAX_PINS];
315 unsigned int pin_cfgs[ALC_MAX_PINS];
320 * configuration template - to be copied to the spec instance
322 struct alc_config_preset {
323 struct snd_kcontrol_new *mixers[5]; /* should be identical size
326 const struct hda_verb *init_verbs[5];
327 unsigned int num_dacs;
329 hda_nid_t dig_out_nid; /* optional */
330 hda_nid_t hp_nid; /* optional */
331 unsigned int num_adc_nids;
333 hda_nid_t *capsrc_nids;
334 hda_nid_t dig_in_nid;
335 unsigned int num_channel_mode;
336 const struct hda_channel_mode *channel_mode;
338 unsigned int num_mux_defs;
339 const struct hda_input_mux *input_mux;
340 void (*unsol_event)(struct hda_codec *, unsigned int);
341 void (*init_hook)(struct hda_codec *);
342 #ifdef CONFIG_SND_HDA_POWER_SAVE
343 struct hda_amp_list *loopbacks;
351 static int alc_mux_enum_info(struct snd_kcontrol *kcontrol,
352 struct snd_ctl_elem_info *uinfo)
354 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
355 struct alc_spec *spec = codec->spec;
356 unsigned int mux_idx = snd_ctl_get_ioffidx(kcontrol, &uinfo->id);
357 if (mux_idx >= spec->num_mux_defs)
359 return snd_hda_input_mux_info(&spec->input_mux[mux_idx], uinfo);
362 static int alc_mux_enum_get(struct snd_kcontrol *kcontrol,
363 struct snd_ctl_elem_value *ucontrol)
365 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
366 struct alc_spec *spec = codec->spec;
367 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
369 ucontrol->value.enumerated.item[0] = spec->cur_mux[adc_idx];
373 static int alc_mux_enum_put(struct snd_kcontrol *kcontrol,
374 struct snd_ctl_elem_value *ucontrol)
376 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
377 struct alc_spec *spec = codec->spec;
378 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
379 unsigned int mux_idx = adc_idx >= spec->num_mux_defs ? 0 : adc_idx;
380 hda_nid_t nid = spec->capsrc_nids ?
381 spec->capsrc_nids[adc_idx] : spec->adc_nids[adc_idx];
382 return snd_hda_input_mux_put(codec, &spec->input_mux[mux_idx], ucontrol,
383 nid, &spec->cur_mux[adc_idx]);
388 * channel mode setting
390 static int alc_ch_mode_info(struct snd_kcontrol *kcontrol,
391 struct snd_ctl_elem_info *uinfo)
393 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
394 struct alc_spec *spec = codec->spec;
395 return snd_hda_ch_mode_info(codec, uinfo, spec->channel_mode,
396 spec->num_channel_mode);
399 static int alc_ch_mode_get(struct snd_kcontrol *kcontrol,
400 struct snd_ctl_elem_value *ucontrol)
402 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
403 struct alc_spec *spec = codec->spec;
404 return snd_hda_ch_mode_get(codec, ucontrol, spec->channel_mode,
405 spec->num_channel_mode,
406 spec->multiout.max_channels);
409 static int alc_ch_mode_put(struct snd_kcontrol *kcontrol,
410 struct snd_ctl_elem_value *ucontrol)
412 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
413 struct alc_spec *spec = codec->spec;
414 int err = snd_hda_ch_mode_put(codec, ucontrol, spec->channel_mode,
415 spec->num_channel_mode,
416 &spec->multiout.max_channels);
417 if (err >= 0 && spec->need_dac_fix)
418 spec->multiout.num_dacs = spec->multiout.max_channels / 2;
423 * Control the mode of pin widget settings via the mixer. "pc" is used
424 * instead of "%" to avoid consequences of accidently treating the % as
425 * being part of a format specifier. Maximum allowed length of a value is
426 * 63 characters plus NULL terminator.
428 * Note: some retasking pin complexes seem to ignore requests for input
429 * states other than HiZ (eg: PIN_VREFxx) and revert to HiZ if any of these
430 * are requested. Therefore order this list so that this behaviour will not
431 * cause problems when mixer clients move through the enum sequentially.
432 * NIDs 0x0f and 0x10 have been observed to have this behaviour as of
435 static char *alc_pin_mode_names[] = {
436 "Mic 50pc bias", "Mic 80pc bias",
437 "Line in", "Line out", "Headphone out",
439 static unsigned char alc_pin_mode_values[] = {
440 PIN_VREF50, PIN_VREF80, PIN_IN, PIN_OUT, PIN_HP,
442 /* The control can present all 5 options, or it can limit the options based
443 * in the pin being assumed to be exclusively an input or an output pin. In
444 * addition, "input" pins may or may not process the mic bias option
445 * depending on actual widget capability (NIDs 0x0f and 0x10 don't seem to
446 * accept requests for bias as of chip versions up to March 2006) and/or
447 * wiring in the computer.
449 #define ALC_PIN_DIR_IN 0x00
450 #define ALC_PIN_DIR_OUT 0x01
451 #define ALC_PIN_DIR_INOUT 0x02
452 #define ALC_PIN_DIR_IN_NOMICBIAS 0x03
453 #define ALC_PIN_DIR_INOUT_NOMICBIAS 0x04
455 /* Info about the pin modes supported by the different pin direction modes.
456 * For each direction the minimum and maximum values are given.
458 static signed char alc_pin_mode_dir_info[5][2] = {
459 { 0, 2 }, /* ALC_PIN_DIR_IN */
460 { 3, 4 }, /* ALC_PIN_DIR_OUT */
461 { 0, 4 }, /* ALC_PIN_DIR_INOUT */
462 { 2, 2 }, /* ALC_PIN_DIR_IN_NOMICBIAS */
463 { 2, 4 }, /* ALC_PIN_DIR_INOUT_NOMICBIAS */
465 #define alc_pin_mode_min(_dir) (alc_pin_mode_dir_info[_dir][0])
466 #define alc_pin_mode_max(_dir) (alc_pin_mode_dir_info[_dir][1])
467 #define alc_pin_mode_n_items(_dir) \
468 (alc_pin_mode_max(_dir)-alc_pin_mode_min(_dir)+1)
470 static int alc_pin_mode_info(struct snd_kcontrol *kcontrol,
471 struct snd_ctl_elem_info *uinfo)
473 unsigned int item_num = uinfo->value.enumerated.item;
474 unsigned char dir = (kcontrol->private_value >> 16) & 0xff;
476 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
478 uinfo->value.enumerated.items = alc_pin_mode_n_items(dir);
480 if (item_num<alc_pin_mode_min(dir) || item_num>alc_pin_mode_max(dir))
481 item_num = alc_pin_mode_min(dir);
482 strcpy(uinfo->value.enumerated.name, alc_pin_mode_names[item_num]);
486 static int alc_pin_mode_get(struct snd_kcontrol *kcontrol,
487 struct snd_ctl_elem_value *ucontrol)
490 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
491 hda_nid_t nid = kcontrol->private_value & 0xffff;
492 unsigned char dir = (kcontrol->private_value >> 16) & 0xff;
493 long *valp = ucontrol->value.integer.value;
494 unsigned int pinctl = snd_hda_codec_read(codec, nid, 0,
495 AC_VERB_GET_PIN_WIDGET_CONTROL,
498 /* Find enumerated value for current pinctl setting */
499 i = alc_pin_mode_min(dir);
500 while (alc_pin_mode_values[i] != pinctl && i <= alc_pin_mode_max(dir))
502 *valp = i <= alc_pin_mode_max(dir) ? i: alc_pin_mode_min(dir);
506 static int alc_pin_mode_put(struct snd_kcontrol *kcontrol,
507 struct snd_ctl_elem_value *ucontrol)
510 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
511 hda_nid_t nid = kcontrol->private_value & 0xffff;
512 unsigned char dir = (kcontrol->private_value >> 16) & 0xff;
513 long val = *ucontrol->value.integer.value;
514 unsigned int pinctl = snd_hda_codec_read(codec, nid, 0,
515 AC_VERB_GET_PIN_WIDGET_CONTROL,
518 if (val < alc_pin_mode_min(dir) || val > alc_pin_mode_max(dir))
519 val = alc_pin_mode_min(dir);
521 change = pinctl != alc_pin_mode_values[val];
523 /* Set pin mode to that requested */
524 snd_hda_codec_write_cache(codec, nid, 0,
525 AC_VERB_SET_PIN_WIDGET_CONTROL,
526 alc_pin_mode_values[val]);
528 /* Also enable the retasking pin's input/output as required
529 * for the requested pin mode. Enum values of 2 or less are
532 * Dynamically switching the input/output buffers probably
533 * reduces noise slightly (particularly on input) so we'll
534 * do it. However, having both input and output buffers
535 * enabled simultaneously doesn't seem to be problematic if
536 * this turns out to be necessary in the future.
539 snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
540 HDA_AMP_MUTE, HDA_AMP_MUTE);
541 snd_hda_codec_amp_stereo(codec, nid, HDA_INPUT, 0,
544 snd_hda_codec_amp_stereo(codec, nid, HDA_INPUT, 0,
545 HDA_AMP_MUTE, HDA_AMP_MUTE);
546 snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
553 #define ALC_PIN_MODE(xname, nid, dir) \
554 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0, \
555 .info = alc_pin_mode_info, \
556 .get = alc_pin_mode_get, \
557 .put = alc_pin_mode_put, \
558 .private_value = nid | (dir<<16) }
560 /* A switch control for ALC260 GPIO pins. Multiple GPIOs can be ganged
561 * together using a mask with more than one bit set. This control is
562 * currently used only by the ALC260 test model. At this stage they are not
563 * needed for any "production" models.
565 #ifdef CONFIG_SND_DEBUG
566 #define alc_gpio_data_info snd_ctl_boolean_mono_info
568 static int alc_gpio_data_get(struct snd_kcontrol *kcontrol,
569 struct snd_ctl_elem_value *ucontrol)
571 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
572 hda_nid_t nid = kcontrol->private_value & 0xffff;
573 unsigned char mask = (kcontrol->private_value >> 16) & 0xff;
574 long *valp = ucontrol->value.integer.value;
575 unsigned int val = snd_hda_codec_read(codec, nid, 0,
576 AC_VERB_GET_GPIO_DATA, 0x00);
578 *valp = (val & mask) != 0;
581 static int alc_gpio_data_put(struct snd_kcontrol *kcontrol,
582 struct snd_ctl_elem_value *ucontrol)
585 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
586 hda_nid_t nid = kcontrol->private_value & 0xffff;
587 unsigned char mask = (kcontrol->private_value >> 16) & 0xff;
588 long val = *ucontrol->value.integer.value;
589 unsigned int gpio_data = snd_hda_codec_read(codec, nid, 0,
590 AC_VERB_GET_GPIO_DATA,
593 /* Set/unset the masked GPIO bit(s) as needed */
594 change = (val == 0 ? 0 : mask) != (gpio_data & mask);
599 snd_hda_codec_write_cache(codec, nid, 0,
600 AC_VERB_SET_GPIO_DATA, gpio_data);
604 #define ALC_GPIO_DATA_SWITCH(xname, nid, mask) \
605 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0, \
606 .info = alc_gpio_data_info, \
607 .get = alc_gpio_data_get, \
608 .put = alc_gpio_data_put, \
609 .private_value = nid | (mask<<16) }
610 #endif /* CONFIG_SND_DEBUG */
612 /* A switch control to allow the enabling of the digital IO pins on the
613 * ALC260. This is incredibly simplistic; the intention of this control is
614 * to provide something in the test model allowing digital outputs to be
615 * identified if present. If models are found which can utilise these
616 * outputs a more complete mixer control can be devised for those models if
619 #ifdef CONFIG_SND_DEBUG
620 #define alc_spdif_ctrl_info snd_ctl_boolean_mono_info
622 static int alc_spdif_ctrl_get(struct snd_kcontrol *kcontrol,
623 struct snd_ctl_elem_value *ucontrol)
625 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
626 hda_nid_t nid = kcontrol->private_value & 0xffff;
627 unsigned char mask = (kcontrol->private_value >> 16) & 0xff;
628 long *valp = ucontrol->value.integer.value;
629 unsigned int val = snd_hda_codec_read(codec, nid, 0,
630 AC_VERB_GET_DIGI_CONVERT_1, 0x00);
632 *valp = (val & mask) != 0;
635 static int alc_spdif_ctrl_put(struct snd_kcontrol *kcontrol,
636 struct snd_ctl_elem_value *ucontrol)
639 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
640 hda_nid_t nid = kcontrol->private_value & 0xffff;
641 unsigned char mask = (kcontrol->private_value >> 16) & 0xff;
642 long val = *ucontrol->value.integer.value;
643 unsigned int ctrl_data = snd_hda_codec_read(codec, nid, 0,
644 AC_VERB_GET_DIGI_CONVERT_1,
647 /* Set/unset the masked control bit(s) as needed */
648 change = (val == 0 ? 0 : mask) != (ctrl_data & mask);
653 snd_hda_codec_write_cache(codec, nid, 0, AC_VERB_SET_DIGI_CONVERT_1,
658 #define ALC_SPDIF_CTRL_SWITCH(xname, nid, mask) \
659 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0, \
660 .info = alc_spdif_ctrl_info, \
661 .get = alc_spdif_ctrl_get, \
662 .put = alc_spdif_ctrl_put, \
663 .private_value = nid | (mask<<16) }
664 #endif /* CONFIG_SND_DEBUG */
666 /* A switch control to allow the enabling EAPD digital outputs on the ALC26x.
667 * Again, this is only used in the ALC26x test models to help identify when
668 * the EAPD line must be asserted for features to work.
670 #ifdef CONFIG_SND_DEBUG
671 #define alc_eapd_ctrl_info snd_ctl_boolean_mono_info
673 static int alc_eapd_ctrl_get(struct snd_kcontrol *kcontrol,
674 struct snd_ctl_elem_value *ucontrol)
676 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
677 hda_nid_t nid = kcontrol->private_value & 0xffff;
678 unsigned char mask = (kcontrol->private_value >> 16) & 0xff;
679 long *valp = ucontrol->value.integer.value;
680 unsigned int val = snd_hda_codec_read(codec, nid, 0,
681 AC_VERB_GET_EAPD_BTLENABLE, 0x00);
683 *valp = (val & mask) != 0;
687 static int alc_eapd_ctrl_put(struct snd_kcontrol *kcontrol,
688 struct snd_ctl_elem_value *ucontrol)
691 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
692 hda_nid_t nid = kcontrol->private_value & 0xffff;
693 unsigned char mask = (kcontrol->private_value >> 16) & 0xff;
694 long val = *ucontrol->value.integer.value;
695 unsigned int ctrl_data = snd_hda_codec_read(codec, nid, 0,
696 AC_VERB_GET_EAPD_BTLENABLE,
699 /* Set/unset the masked control bit(s) as needed */
700 change = (!val ? 0 : mask) != (ctrl_data & mask);
705 snd_hda_codec_write_cache(codec, nid, 0, AC_VERB_SET_EAPD_BTLENABLE,
711 #define ALC_EAPD_CTRL_SWITCH(xname, nid, mask) \
712 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0, \
713 .info = alc_eapd_ctrl_info, \
714 .get = alc_eapd_ctrl_get, \
715 .put = alc_eapd_ctrl_put, \
716 .private_value = nid | (mask<<16) }
717 #endif /* CONFIG_SND_DEBUG */
720 * set up from the preset table
722 static void setup_preset(struct alc_spec *spec,
723 const struct alc_config_preset *preset)
727 for (i = 0; i < ARRAY_SIZE(preset->mixers) && preset->mixers[i]; i++)
728 spec->mixers[spec->num_mixers++] = preset->mixers[i];
729 for (i = 0; i < ARRAY_SIZE(preset->init_verbs) && preset->init_verbs[i];
731 spec->init_verbs[spec->num_init_verbs++] =
732 preset->init_verbs[i];
734 spec->channel_mode = preset->channel_mode;
735 spec->num_channel_mode = preset->num_channel_mode;
736 spec->need_dac_fix = preset->need_dac_fix;
738 spec->multiout.max_channels = spec->channel_mode[0].channels;
740 spec->multiout.num_dacs = preset->num_dacs;
741 spec->multiout.dac_nids = preset->dac_nids;
742 spec->multiout.dig_out_nid = preset->dig_out_nid;
743 spec->multiout.hp_nid = preset->hp_nid;
745 spec->num_mux_defs = preset->num_mux_defs;
746 if (!spec->num_mux_defs)
747 spec->num_mux_defs = 1;
748 spec->input_mux = preset->input_mux;
750 spec->num_adc_nids = preset->num_adc_nids;
751 spec->adc_nids = preset->adc_nids;
752 spec->capsrc_nids = preset->capsrc_nids;
753 spec->dig_in_nid = preset->dig_in_nid;
755 spec->unsol_event = preset->unsol_event;
756 spec->init_hook = preset->init_hook;
757 #ifdef CONFIG_SND_HDA_POWER_SAVE
758 spec->loopback.amplist = preset->loopbacks;
762 /* Enable GPIO mask and set output */
763 static struct hda_verb alc_gpio1_init_verbs[] = {
764 {0x01, AC_VERB_SET_GPIO_MASK, 0x01},
765 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
766 {0x01, AC_VERB_SET_GPIO_DATA, 0x01},
770 static struct hda_verb alc_gpio2_init_verbs[] = {
771 {0x01, AC_VERB_SET_GPIO_MASK, 0x02},
772 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x02},
773 {0x01, AC_VERB_SET_GPIO_DATA, 0x02},
777 static struct hda_verb alc_gpio3_init_verbs[] = {
778 {0x01, AC_VERB_SET_GPIO_MASK, 0x03},
779 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x03},
780 {0x01, AC_VERB_SET_GPIO_DATA, 0x03},
785 * Fix hardware PLL issue
786 * On some codecs, the analog PLL gating control must be off while
787 * the default value is 1.
789 static void alc_fix_pll(struct hda_codec *codec)
791 struct alc_spec *spec = codec->spec;
796 snd_hda_codec_write(codec, spec->pll_nid, 0, AC_VERB_SET_COEF_INDEX,
798 val = snd_hda_codec_read(codec, spec->pll_nid, 0,
799 AC_VERB_GET_PROC_COEF, 0);
800 snd_hda_codec_write(codec, spec->pll_nid, 0, AC_VERB_SET_COEF_INDEX,
802 snd_hda_codec_write(codec, spec->pll_nid, 0, AC_VERB_SET_PROC_COEF,
803 val & ~(1 << spec->pll_coef_bit));
806 static void alc_fix_pll_init(struct hda_codec *codec, hda_nid_t nid,
807 unsigned int coef_idx, unsigned int coef_bit)
809 struct alc_spec *spec = codec->spec;
811 spec->pll_coef_idx = coef_idx;
812 spec->pll_coef_bit = coef_bit;
816 static void alc_sku_automute(struct hda_codec *codec)
818 struct alc_spec *spec = codec->spec;
819 unsigned int present;
820 unsigned int hp_nid = spec->autocfg.hp_pins[0];
821 unsigned int sp_nid = spec->autocfg.speaker_pins[0];
823 /* need to execute and sync at first */
824 snd_hda_codec_read(codec, hp_nid, 0, AC_VERB_SET_PIN_SENSE, 0);
825 present = snd_hda_codec_read(codec, hp_nid, 0,
826 AC_VERB_GET_PIN_SENSE, 0);
827 spec->jack_present = (present & 0x80000000) != 0;
828 snd_hda_codec_write(codec, sp_nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
829 spec->jack_present ? 0 : PIN_OUT);
832 #if 0 /* it's broken in some acses -- temporarily disabled */
833 static void alc_mic_automute(struct hda_codec *codec)
835 struct alc_spec *spec = codec->spec;
836 unsigned int present;
837 unsigned int mic_nid = spec->autocfg.input_pins[AUTO_PIN_MIC];
838 unsigned int fmic_nid = spec->autocfg.input_pins[AUTO_PIN_FRONT_MIC];
839 unsigned int mix_nid = spec->capsrc_nids[0];
840 unsigned int capsrc_idx_mic, capsrc_idx_fmic;
842 capsrc_idx_mic = mic_nid - 0x18;
843 capsrc_idx_fmic = fmic_nid - 0x18;
844 present = snd_hda_codec_read(codec, mic_nid, 0,
845 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
846 snd_hda_codec_write(codec, mix_nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
847 0x7000 | (capsrc_idx_mic << 8) | (present ? 0 : 0x80));
848 snd_hda_codec_write(codec, mix_nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
849 0x7000 | (capsrc_idx_fmic << 8) | (present ? 0x80 : 0));
850 snd_hda_codec_amp_stereo(codec, 0x0b, HDA_INPUT, capsrc_idx_fmic,
851 HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0);
854 #define alc_mic_automute(codec) /* NOP */
855 #endif /* disabled */
857 /* unsolicited event for HP jack sensing */
858 static void alc_sku_unsol_event(struct hda_codec *codec, unsigned int res)
860 if (codec->vendor_id == 0x10ec0880)
864 if (res == ALC880_HP_EVENT)
865 alc_sku_automute(codec);
867 if (res == ALC880_MIC_EVENT)
868 alc_mic_automute(codec);
871 static void alc_inithook(struct hda_codec *codec)
873 alc_sku_automute(codec);
874 alc_mic_automute(codec);
877 /* additional initialization for ALC888 variants */
878 static void alc888_coef_init(struct hda_codec *codec)
882 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 0);
883 tmp = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_PROC_COEF, 0);
884 snd_hda_codec_write(codec, 0x20, 0, AC_VERB_SET_COEF_INDEX, 7);
885 if ((tmp & 0xf0) == 2)
887 snd_hda_codec_read(codec, 0x20, 0,
888 AC_VERB_SET_PROC_COEF, 0x830);
891 snd_hda_codec_read(codec, 0x20, 0,
892 AC_VERB_SET_PROC_COEF, 0x3030);
895 /* 32-bit subsystem ID for BIOS loading in HD Audio codec.
896 * 31 ~ 16 : Manufacture ID
898 * 7 ~ 0 : Assembly ID
899 * port-A --> pin 39/41, port-E --> pin 14/15, port-D --> pin 35/36
901 static void alc_subsystem_id(struct hda_codec *codec,
902 unsigned int porta, unsigned int porte,
905 unsigned int ass, tmp, i;
907 struct alc_spec *spec = codec->spec;
909 ass = codec->subsystem_id & 0xffff;
910 if ((ass != codec->bus->pci->subsystem_device) && (ass & 1))
914 * 31~30 : port conetcivity
917 * 19~16 : Check sum (15:1)
922 if (codec->vendor_id == 0x10ec0260)
924 ass = snd_hda_codec_read(codec, nid, 0,
925 AC_VERB_GET_CONFIG_DEFAULT, 0);
926 if (!(ass & 1) && !(ass & 0x100000))
928 if ((ass >> 30) != 1) /* no physical connection */
933 for (i = 1; i < 16; i++) {
937 if (((ass >> 16) & 0xf) != tmp)
943 * 2 : 0 --> Desktop, 1 --> Laptop
944 * 3~5 : External Amplifier control
947 tmp = (ass & 0x38) >> 3; /* external Amp control */
950 snd_hda_sequence_write(codec, alc_gpio1_init_verbs);
953 snd_hda_sequence_write(codec, alc_gpio2_init_verbs);
956 snd_hda_sequence_write(codec, alc_gpio3_init_verbs);
958 case 5: /* set EAPD output high */
959 switch (codec->vendor_id) {
961 snd_hda_codec_write(codec, 0x0f, 0,
962 AC_VERB_SET_EAPD_BTLENABLE, 2);
963 snd_hda_codec_write(codec, 0x10, 0,
964 AC_VERB_SET_EAPD_BTLENABLE, 2);
975 snd_hda_codec_write(codec, 0x14, 0,
976 AC_VERB_SET_EAPD_BTLENABLE, 2);
977 snd_hda_codec_write(codec, 0x15, 0,
978 AC_VERB_SET_EAPD_BTLENABLE, 2);
981 switch (codec->vendor_id) {
983 snd_hda_codec_write(codec, 0x1a, 0,
984 AC_VERB_SET_COEF_INDEX, 7);
985 tmp = snd_hda_codec_read(codec, 0x1a, 0,
986 AC_VERB_GET_PROC_COEF, 0);
987 snd_hda_codec_write(codec, 0x1a, 0,
988 AC_VERB_SET_COEF_INDEX, 7);
989 snd_hda_codec_write(codec, 0x1a, 0,
990 AC_VERB_SET_PROC_COEF,
999 snd_hda_codec_write(codec, 0x20, 0,
1000 AC_VERB_SET_COEF_INDEX, 7);
1001 tmp = snd_hda_codec_read(codec, 0x20, 0,
1002 AC_VERB_GET_PROC_COEF, 0);
1003 snd_hda_codec_write(codec, 0x20, 0,
1004 AC_VERB_SET_COEF_INDEX, 7);
1005 snd_hda_codec_write(codec, 0x20, 0,
1006 AC_VERB_SET_PROC_COEF,
1010 /*alc888_coef_init(codec);*/ /* called in alc_init() */
1014 snd_hda_codec_write(codec, 0x20, 0,
1015 AC_VERB_SET_COEF_INDEX, 7);
1016 tmp = snd_hda_codec_read(codec, 0x20, 0,
1017 AC_VERB_GET_PROC_COEF, 0);
1018 snd_hda_codec_write(codec, 0x20, 0,
1019 AC_VERB_SET_COEF_INDEX, 7);
1020 snd_hda_codec_write(codec, 0x20, 0,
1021 AC_VERB_SET_PROC_COEF,
1029 /* is laptop or Desktop and enable the function "Mute internal speaker
1030 * when the external headphone out jack is plugged"
1032 if (!(ass & 0x8000))
1035 * 10~8 : Jack location
1036 * 12~11: Headphone out -> 00: PortA, 01: PortE, 02: PortD, 03: Resvered
1038 * 15 : 1 --> enable the function "Mute internal speaker
1039 * when the external headphone out jack is plugged"
1041 if (!spec->autocfg.speaker_pins[0]) {
1042 if (spec->autocfg.line_out_pins[0])
1043 spec->autocfg.speaker_pins[0] =
1044 spec->autocfg.line_out_pins[0];
1049 if (!spec->autocfg.hp_pins[0]) {
1050 tmp = (ass >> 11) & 0x3; /* HP to chassis */
1052 spec->autocfg.hp_pins[0] = porta;
1054 spec->autocfg.hp_pins[0] = porte;
1056 spec->autocfg.hp_pins[0] = portd;
1060 if (spec->autocfg.hp_pins[0])
1061 snd_hda_codec_write(codec, spec->autocfg.hp_pins[0], 0,
1062 AC_VERB_SET_UNSOLICITED_ENABLE,
1063 AC_USRSP_EN | ALC880_HP_EVENT);
1065 #if 0 /* it's broken in some acses -- temporarily disabled */
1066 if (spec->autocfg.input_pins[AUTO_PIN_MIC] &&
1067 spec->autocfg.input_pins[AUTO_PIN_FRONT_MIC])
1068 snd_hda_codec_write(codec,
1069 spec->autocfg.input_pins[AUTO_PIN_MIC], 0,
1070 AC_VERB_SET_UNSOLICITED_ENABLE,
1071 AC_USRSP_EN | ALC880_MIC_EVENT);
1072 #endif /* disabled */
1074 spec->unsol_event = alc_sku_unsol_event;
1078 * Fix-up pin default configurations
1086 static void alc_fix_pincfg(struct hda_codec *codec,
1087 const struct snd_pci_quirk *quirk,
1088 const struct alc_pincfg **pinfix)
1090 const struct alc_pincfg *cfg;
1092 quirk = snd_pci_quirk_lookup(codec->bus->pci, quirk);
1096 cfg = pinfix[quirk->value];
1097 for (; cfg->nid; cfg++) {
1100 for (i = 0; i < 4; i++) {
1101 snd_hda_codec_write(codec, cfg->nid, 0,
1102 AC_VERB_SET_CONFIG_DEFAULT_BYTES_0 + i,
1110 * ALC880 3-stack model
1112 * DAC: Front = 0x02 (0x0c), Surr = 0x05 (0x0f), CLFE = 0x04 (0x0e)
1113 * Pin assignment: Front = 0x14, Line-In/Surr = 0x1a, Mic/CLFE = 0x18,
1114 * F-Mic = 0x1b, HP = 0x19
1117 static hda_nid_t alc880_dac_nids[4] = {
1118 /* front, rear, clfe, rear_surr */
1119 0x02, 0x05, 0x04, 0x03
1122 static hda_nid_t alc880_adc_nids[3] = {
1127 /* The datasheet says the node 0x07 is connected from inputs,
1128 * but it shows zero connection in the real implementation on some devices.
1129 * Note: this is a 915GAV bug, fixed on 915GLV
1131 static hda_nid_t alc880_adc_nids_alt[2] = {
1136 #define ALC880_DIGOUT_NID 0x06
1137 #define ALC880_DIGIN_NID 0x0a
1139 static struct hda_input_mux alc880_capture_source = {
1143 { "Front Mic", 0x3 },
1149 /* channel source setting (2/6 channel selection for 3-stack) */
1151 static struct hda_verb alc880_threestack_ch2_init[] = {
1152 /* set line-in to input, mute it */
1153 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
1154 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
1155 /* set mic-in to input vref 80%, mute it */
1156 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
1157 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
1162 static struct hda_verb alc880_threestack_ch6_init[] = {
1163 /* set line-in to output, unmute it */
1164 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
1165 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
1166 /* set mic-in to output, unmute it */
1167 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
1168 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
1172 static struct hda_channel_mode alc880_threestack_modes[2] = {
1173 { 2, alc880_threestack_ch2_init },
1174 { 6, alc880_threestack_ch6_init },
1177 static struct snd_kcontrol_new alc880_three_stack_mixer[] = {
1178 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1179 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
1180 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
1181 HDA_BIND_MUTE("Surround Playback Switch", 0x0f, 2, HDA_INPUT),
1182 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
1183 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
1184 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
1185 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
1186 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
1187 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
1188 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
1189 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
1190 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1191 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
1192 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x3, HDA_INPUT),
1193 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x3, HDA_INPUT),
1194 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
1195 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
1196 HDA_CODEC_MUTE("Headphone Playback Switch", 0x19, 0x0, HDA_OUTPUT),
1198 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1199 .name = "Channel Mode",
1200 .info = alc_ch_mode_info,
1201 .get = alc_ch_mode_get,
1202 .put = alc_ch_mode_put,
1207 /* capture mixer elements */
1208 static struct snd_kcontrol_new alc880_capture_mixer[] = {
1209 HDA_CODEC_VOLUME("Capture Volume", 0x07, 0x0, HDA_INPUT),
1210 HDA_CODEC_MUTE("Capture Switch", 0x07, 0x0, HDA_INPUT),
1211 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x08, 0x0, HDA_INPUT),
1212 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x08, 0x0, HDA_INPUT),
1213 HDA_CODEC_VOLUME_IDX("Capture Volume", 2, 0x09, 0x0, HDA_INPUT),
1214 HDA_CODEC_MUTE_IDX("Capture Switch", 2, 0x09, 0x0, HDA_INPUT),
1216 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1217 /* The multiple "Capture Source" controls confuse alsamixer
1218 * So call somewhat different..
1220 /* .name = "Capture Source", */
1221 .name = "Input Source",
1223 .info = alc_mux_enum_info,
1224 .get = alc_mux_enum_get,
1225 .put = alc_mux_enum_put,
1230 /* capture mixer elements (in case NID 0x07 not available) */
1231 static struct snd_kcontrol_new alc880_capture_alt_mixer[] = {
1232 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
1233 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
1234 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
1235 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
1237 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1238 /* The multiple "Capture Source" controls confuse alsamixer
1239 * So call somewhat different..
1241 /* .name = "Capture Source", */
1242 .name = "Input Source",
1244 .info = alc_mux_enum_info,
1245 .get = alc_mux_enum_get,
1246 .put = alc_mux_enum_put,
1254 * ALC880 5-stack model
1256 * DAC: Front = 0x02 (0x0c), Surr = 0x05 (0x0f), CLFE = 0x04 (0x0d),
1258 * Pin assignment: Front = 0x14, Surr = 0x17, CLFE = 0x16
1259 * Line-In/Side = 0x1a, Mic = 0x18, F-Mic = 0x1b, HP = 0x19
1262 /* additional mixers to alc880_three_stack_mixer */
1263 static struct snd_kcontrol_new alc880_five_stack_mixer[] = {
1264 HDA_CODEC_VOLUME("Side Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
1265 HDA_BIND_MUTE("Side Playback Switch", 0x0d, 2, HDA_INPUT),
1269 /* channel source setting (6/8 channel selection for 5-stack) */
1271 static struct hda_verb alc880_fivestack_ch6_init[] = {
1272 /* set line-in to input, mute it */
1273 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
1274 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
1279 static struct hda_verb alc880_fivestack_ch8_init[] = {
1280 /* set line-in to output, unmute it */
1281 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
1282 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
1286 static struct hda_channel_mode alc880_fivestack_modes[2] = {
1287 { 6, alc880_fivestack_ch6_init },
1288 { 8, alc880_fivestack_ch8_init },
1293 * ALC880 6-stack model
1295 * DAC: Front = 0x02 (0x0c), Surr = 0x03 (0x0d), CLFE = 0x04 (0x0e),
1296 * Side = 0x05 (0x0f)
1297 * Pin assignment: Front = 0x14, Surr = 0x15, CLFE = 0x16, Side = 0x17,
1298 * Mic = 0x18, F-Mic = 0x19, Line = 0x1a, HP = 0x1b
1301 static hda_nid_t alc880_6st_dac_nids[4] = {
1302 /* front, rear, clfe, rear_surr */
1303 0x02, 0x03, 0x04, 0x05
1306 static struct hda_input_mux alc880_6stack_capture_source = {
1310 { "Front Mic", 0x1 },
1316 /* fixed 8-channels */
1317 static struct hda_channel_mode alc880_sixstack_modes[1] = {
1321 static struct snd_kcontrol_new alc880_six_stack_mixer[] = {
1322 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1323 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
1324 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
1325 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
1326 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
1327 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
1328 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
1329 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
1330 HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
1331 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT),
1332 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
1333 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
1334 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
1335 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
1336 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1337 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
1338 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
1339 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
1340 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
1341 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
1343 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1344 .name = "Channel Mode",
1345 .info = alc_ch_mode_info,
1346 .get = alc_ch_mode_get,
1347 .put = alc_ch_mode_put,
1356 * W810 has rear IO for:
1359 * Center/LFE (DAC 04)
1362 * The system also has a pair of internal speakers, and a headphone jack.
1363 * These are both connected to Line2 on the codec, hence to DAC 02.
1365 * There is a variable resistor to control the speaker or headphone
1366 * volume. This is a hardware-only device without a software API.
1368 * Plugging headphones in will disable the internal speakers. This is
1369 * implemented in hardware, not via the driver using jack sense. In
1370 * a similar fashion, plugging into the rear socket marked "front" will
1371 * disable both the speakers and headphones.
1373 * For input, there's a microphone jack, and an "audio in" jack.
1374 * These may not do anything useful with this driver yet, because I
1375 * haven't setup any initialization verbs for these yet...
1378 static hda_nid_t alc880_w810_dac_nids[3] = {
1379 /* front, rear/surround, clfe */
1383 /* fixed 6 channels */
1384 static struct hda_channel_mode alc880_w810_modes[1] = {
1388 /* Pin assignment: Front = 0x14, Surr = 0x15, CLFE = 0x16, HP = 0x1b */
1389 static struct snd_kcontrol_new alc880_w810_base_mixer[] = {
1390 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1391 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
1392 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
1393 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
1394 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
1395 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
1396 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
1397 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
1398 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
1406 * DAC: Front = 0x02 (0x0c), HP = 0x03 (0x0d)
1407 * Pin assignment: Front = 0x14, HP = 0x15, Mic = 0x18, Mic2 = 0x19(?),
1411 static hda_nid_t alc880_z71v_dac_nids[1] = {
1414 #define ALC880_Z71V_HP_DAC 0x03
1416 /* fixed 2 channels */
1417 static struct hda_channel_mode alc880_2_jack_modes[1] = {
1421 static struct snd_kcontrol_new alc880_z71v_mixer[] = {
1422 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1423 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
1424 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
1425 HDA_BIND_MUTE("Headphone Playback Switch", 0x0d, 2, HDA_INPUT),
1426 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
1427 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
1428 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1429 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
1435 * ALC880 F1734 model
1437 * DAC: HP = 0x02 (0x0c), Front = 0x03 (0x0d)
1438 * Pin assignment: HP = 0x14, Front = 0x15, Mic = 0x18
1441 static hda_nid_t alc880_f1734_dac_nids[1] = {
1444 #define ALC880_F1734_HP_DAC 0x02
1446 static struct snd_kcontrol_new alc880_f1734_mixer[] = {
1447 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1448 HDA_BIND_MUTE("Headphone Playback Switch", 0x0c, 2, HDA_INPUT),
1449 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
1450 HDA_BIND_MUTE("Speaker Playback Switch", 0x0d, 2, HDA_INPUT),
1451 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
1452 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
1453 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
1454 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
1458 static struct hda_input_mux alc880_f1734_capture_source = {
1470 * DAC: HP/Front = 0x02 (0x0c), Surr = 0x03 (0x0d), CLFE = 0x04 (0x0e)
1471 * Pin assignment: HP/Front = 0x14, Surr = 0x15, CLFE = 0x16,
1472 * Mic = 0x18, Line = 0x1a
1475 #define alc880_asus_dac_nids alc880_w810_dac_nids /* identical with w810 */
1476 #define alc880_asus_modes alc880_threestack_modes /* 2/6 channel mode */
1478 static struct snd_kcontrol_new alc880_asus_mixer[] = {
1479 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1480 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
1481 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
1482 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
1483 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
1484 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
1485 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
1486 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
1487 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
1488 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
1489 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
1490 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
1491 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1492 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
1494 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1495 .name = "Channel Mode",
1496 .info = alc_ch_mode_info,
1497 .get = alc_ch_mode_get,
1498 .put = alc_ch_mode_put,
1504 * ALC880 ASUS W1V model
1506 * DAC: HP/Front = 0x02 (0x0c), Surr = 0x03 (0x0d), CLFE = 0x04 (0x0e)
1507 * Pin assignment: HP/Front = 0x14, Surr = 0x15, CLFE = 0x16,
1508 * Mic = 0x18, Line = 0x1a, Line2 = 0x1b
1511 /* additional mixers to alc880_asus_mixer */
1512 static struct snd_kcontrol_new alc880_asus_w1v_mixer[] = {
1513 HDA_CODEC_VOLUME("Line2 Playback Volume", 0x0b, 0x03, HDA_INPUT),
1514 HDA_CODEC_MUTE("Line2 Playback Switch", 0x0b, 0x03, HDA_INPUT),
1518 /* additional mixers to alc880_asus_mixer */
1519 static struct snd_kcontrol_new alc880_pcbeep_mixer[] = {
1520 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
1521 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
1526 static struct snd_kcontrol_new alc880_tcl_s700_mixer[] = {
1527 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1528 HDA_CODEC_MUTE("Front Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
1529 HDA_CODEC_MUTE("Headphone Playback Switch", 0x14, 0x0, HDA_OUTPUT),
1530 HDA_CODEC_VOLUME("CD Playback Volume", 0x0B, 0x04, HDA_INPUT),
1531 HDA_CODEC_MUTE("CD Playback Switch", 0x0B, 0x04, HDA_INPUT),
1532 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0B, 0x0, HDA_INPUT),
1533 HDA_CODEC_MUTE("Mic Playback Switch", 0x0B, 0x0, HDA_INPUT),
1534 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
1535 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
1537 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1538 /* The multiple "Capture Source" controls confuse alsamixer
1539 * So call somewhat different..
1541 /* .name = "Capture Source", */
1542 .name = "Input Source",
1544 .info = alc_mux_enum_info,
1545 .get = alc_mux_enum_get,
1546 .put = alc_mux_enum_put,
1552 static struct snd_kcontrol_new alc880_uniwill_mixer[] = {
1553 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1554 HDA_BIND_MUTE("Headphone Playback Switch", 0x0c, 2, HDA_INPUT),
1555 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
1556 HDA_BIND_MUTE("Speaker Playback Switch", 0x0d, 2, HDA_INPUT),
1557 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
1558 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
1559 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
1560 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
1561 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
1562 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
1563 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
1564 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
1565 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1566 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
1567 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
1568 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
1569 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
1570 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
1572 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1573 .name = "Channel Mode",
1574 .info = alc_ch_mode_info,
1575 .get = alc_ch_mode_get,
1576 .put = alc_ch_mode_put,
1581 static struct snd_kcontrol_new alc880_fujitsu_mixer[] = {
1582 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1583 HDA_BIND_MUTE("Headphone Playback Switch", 0x0c, 2, HDA_INPUT),
1584 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
1585 HDA_BIND_MUTE("Speaker Playback Switch", 0x0d, 2, HDA_INPUT),
1586 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
1587 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
1588 HDA_CODEC_VOLUME("Ext Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1589 HDA_CODEC_MUTE("Ext Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
1590 HDA_CODEC_VOLUME("Int Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
1591 HDA_CODEC_MUTE("Int Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
1595 static struct snd_kcontrol_new alc880_uniwill_p53_mixer[] = {
1596 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1597 HDA_BIND_MUTE("Headphone Playback Switch", 0x0c, 2, HDA_INPUT),
1598 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
1599 HDA_BIND_MUTE("Speaker Playback Switch", 0x0d, 2, HDA_INPUT),
1600 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1601 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
1606 * virtual master controls
1610 * slave controls for virtual master
1612 static const char *alc_slave_vols[] = {
1613 "Front Playback Volume",
1614 "Surround Playback Volume",
1615 "Center Playback Volume",
1616 "LFE Playback Volume",
1617 "Side Playback Volume",
1618 "Headphone Playback Volume",
1619 "Speaker Playback Volume",
1620 "Mono Playback Volume",
1621 "Line-Out Playback Volume",
1625 static const char *alc_slave_sws[] = {
1626 "Front Playback Switch",
1627 "Surround Playback Switch",
1628 "Center Playback Switch",
1629 "LFE Playback Switch",
1630 "Side Playback Switch",
1631 "Headphone Playback Switch",
1632 "Speaker Playback Switch",
1633 "Mono Playback Switch",
1634 "IEC958 Playback Switch",
1639 * build control elements
1641 static int alc_build_controls(struct hda_codec *codec)
1643 struct alc_spec *spec = codec->spec;
1647 for (i = 0; i < spec->num_mixers; i++) {
1648 err = snd_hda_add_new_ctls(codec, spec->mixers[i]);
1653 if (spec->multiout.dig_out_nid) {
1654 err = snd_hda_create_spdif_out_ctls(codec,
1655 spec->multiout.dig_out_nid);
1658 err = snd_hda_create_spdif_share_sw(codec,
1662 spec->multiout.share_spdif = 1;
1664 if (spec->dig_in_nid) {
1665 err = snd_hda_create_spdif_in_ctls(codec, spec->dig_in_nid);
1670 /* if we have no master control, let's create it */
1671 if (!snd_hda_find_mixer_ctl(codec, "Master Playback Volume")) {
1672 unsigned int vmaster_tlv[4];
1673 snd_hda_set_vmaster_tlv(codec, spec->vmaster_nid,
1674 HDA_OUTPUT, vmaster_tlv);
1675 err = snd_hda_add_vmaster(codec, "Master Playback Volume",
1676 vmaster_tlv, alc_slave_vols);
1680 if (!snd_hda_find_mixer_ctl(codec, "Master Playback Switch")) {
1681 err = snd_hda_add_vmaster(codec, "Master Playback Switch",
1682 NULL, alc_slave_sws);
1692 * initialize the codec volumes, etc
1696 * generic initialization of ADC, input mixers and output mixers
1698 static struct hda_verb alc880_volume_init_verbs[] = {
1700 * Unmute ADC0-2 and set the default input to mic-in
1702 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
1703 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1704 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
1705 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1706 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
1707 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1709 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
1711 * Note: PASD motherboards uses the Line In 2 as the input for front
1714 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
1715 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1716 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1717 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
1718 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
1719 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
1720 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)},
1721 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)},
1724 * Set up output mixers (0x0c - 0x0f)
1726 /* set vol=0 to output mixers */
1727 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1728 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1729 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1730 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1731 /* set up input amps for analog loopback */
1732 /* Amp Indices: DAC = 0, mixer = 1 */
1733 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1734 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1735 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1736 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1737 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1738 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1739 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1740 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1746 * 3-stack pin configuration:
1747 * front = 0x14, mic/clfe = 0x18, HP = 0x19, line/surr = 0x1a, f-mic = 0x1b
1749 static struct hda_verb alc880_pin_3stack_init_verbs[] = {
1751 * preset connection lists of input pins
1752 * 0 = front, 1 = rear_surr, 2 = CLFE, 3 = surround
1754 {0x10, AC_VERB_SET_CONNECT_SEL, 0x02}, /* mic/clfe */
1755 {0x11, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
1756 {0x12, AC_VERB_SET_CONNECT_SEL, 0x03}, /* line/surround */
1759 * Set pin mode and muting
1761 /* set front pin widgets 0x14 for output */
1762 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1763 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1764 /* Mic1 (rear panel) pin widget for input and vref at 80% */
1765 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1766 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1767 /* Mic2 (as headphone out) for HP output */
1768 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1769 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1770 /* Line In pin widget for input */
1771 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1772 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1773 /* Line2 (as front mic) pin widget for input and vref at 80% */
1774 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1775 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1776 /* CD pin widget for input */
1777 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1783 * 5-stack pin configuration:
1784 * front = 0x14, surround = 0x17, clfe = 0x16, mic = 0x18, HP = 0x19,
1785 * line-in/side = 0x1a, f-mic = 0x1b
1787 static struct hda_verb alc880_pin_5stack_init_verbs[] = {
1789 * preset connection lists of input pins
1790 * 0 = front, 1 = rear_surr, 2 = CLFE, 3 = surround
1792 {0x11, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
1793 {0x12, AC_VERB_SET_CONNECT_SEL, 0x01}, /* line/side */
1796 * Set pin mode and muting
1798 /* set pin widgets 0x14-0x17 for output */
1799 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1800 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1801 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1802 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1803 /* unmute pins for output (no gain on this amp) */
1804 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1805 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1806 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1807 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1809 /* Mic1 (rear panel) pin widget for input and vref at 80% */
1810 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1811 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1812 /* Mic2 (as headphone out) for HP output */
1813 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1814 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1815 /* Line In pin widget for input */
1816 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1817 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1818 /* Line2 (as front mic) pin widget for input and vref at 80% */
1819 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1820 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1821 /* CD pin widget for input */
1822 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1828 * W810 pin configuration:
1829 * front = 0x14, surround = 0x15, clfe = 0x16, HP = 0x1b
1831 static struct hda_verb alc880_pin_w810_init_verbs[] = {
1832 /* hphone/speaker input selector: front DAC */
1833 {0x13, AC_VERB_SET_CONNECT_SEL, 0x0},
1835 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1836 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1837 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1838 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1839 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1840 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1842 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1843 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1849 * Z71V pin configuration:
1850 * Speaker-out = 0x14, HP = 0x15, Mic = 0x18, Line-in = 0x1a, Mic2 = 0x1b (?)
1852 static struct hda_verb alc880_pin_z71v_init_verbs[] = {
1853 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1854 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1855 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1856 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1858 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1859 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1860 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1861 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1867 * 6-stack pin configuration:
1868 * front = 0x14, surr = 0x15, clfe = 0x16, side = 0x17, mic = 0x18,
1869 * f-mic = 0x19, line = 0x1a, HP = 0x1b
1871 static struct hda_verb alc880_pin_6stack_init_verbs[] = {
1872 {0x13, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
1874 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1875 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1876 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1877 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1878 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1879 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1880 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1881 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1883 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1884 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1885 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1886 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1887 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1888 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1889 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1890 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1891 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1897 * Uniwill pin configuration:
1898 * HP = 0x14, InternalSpeaker = 0x15, mic = 0x18, internal mic = 0x19,
1901 static struct hda_verb alc880_uniwill_init_verbs[] = {
1902 {0x13, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
1904 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1905 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1906 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1907 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1908 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1909 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1910 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1911 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1912 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
1913 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
1914 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
1915 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
1916 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
1917 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
1919 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1920 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1921 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1922 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1923 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1924 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1925 /* {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP}, */
1926 /* {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, */
1927 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1929 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
1930 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_MIC_EVENT},
1937 * HP = 0x14, InternalSpeaker = 0x15, mic = 0x19,
1939 static struct hda_verb alc880_uniwill_p53_init_verbs[] = {
1940 {0x13, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
1942 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1943 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1944 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1945 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1946 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1947 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1948 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
1949 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
1950 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
1951 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
1952 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
1953 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
1955 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1956 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1957 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1958 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1959 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1960 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1962 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
1963 {0x21, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_DCVOL_EVENT},
1968 static struct hda_verb alc880_beep_init_verbs[] = {
1969 { 0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(5) },
1973 /* toggle speaker-output according to the hp-jack state */
1974 static void alc880_uniwill_hp_automute(struct hda_codec *codec)
1976 unsigned int present;
1979 present = snd_hda_codec_read(codec, 0x14, 0,
1980 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
1981 bits = present ? HDA_AMP_MUTE : 0;
1982 snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0,
1983 HDA_AMP_MUTE, bits);
1984 snd_hda_codec_amp_stereo(codec, 0x16, HDA_OUTPUT, 0,
1985 HDA_AMP_MUTE, bits);
1988 /* auto-toggle front mic */
1989 static void alc880_uniwill_mic_automute(struct hda_codec *codec)
1991 unsigned int present;
1994 present = snd_hda_codec_read(codec, 0x18, 0,
1995 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
1996 bits = present ? HDA_AMP_MUTE : 0;
1997 snd_hda_codec_amp_stereo(codec, 0x0b, HDA_INPUT, 1, HDA_AMP_MUTE, bits);
2000 static void alc880_uniwill_automute(struct hda_codec *codec)
2002 alc880_uniwill_hp_automute(codec);
2003 alc880_uniwill_mic_automute(codec);
2006 static void alc880_uniwill_unsol_event(struct hda_codec *codec,
2009 /* Looks like the unsol event is incompatible with the standard
2010 * definition. 4bit tag is placed at 28 bit!
2012 switch (res >> 28) {
2013 case ALC880_HP_EVENT:
2014 alc880_uniwill_hp_automute(codec);
2016 case ALC880_MIC_EVENT:
2017 alc880_uniwill_mic_automute(codec);
2022 static void alc880_uniwill_p53_hp_automute(struct hda_codec *codec)
2024 unsigned int present;
2027 present = snd_hda_codec_read(codec, 0x14, 0,
2028 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
2029 bits = present ? HDA_AMP_MUTE : 0;
2030 snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0, HDA_AMP_MUTE, bits);
2033 static void alc880_uniwill_p53_dcvol_automute(struct hda_codec *codec)
2035 unsigned int present;
2037 present = snd_hda_codec_read(codec, 0x21, 0,
2038 AC_VERB_GET_VOLUME_KNOB_CONTROL, 0);
2039 present &= HDA_AMP_VOLMASK;
2040 snd_hda_codec_amp_stereo(codec, 0x0c, HDA_OUTPUT, 0,
2041 HDA_AMP_VOLMASK, present);
2042 snd_hda_codec_amp_stereo(codec, 0x0d, HDA_OUTPUT, 0,
2043 HDA_AMP_VOLMASK, present);
2046 static void alc880_uniwill_p53_unsol_event(struct hda_codec *codec,
2049 /* Looks like the unsol event is incompatible with the standard
2050 * definition. 4bit tag is placed at 28 bit!
2052 if ((res >> 28) == ALC880_HP_EVENT)
2053 alc880_uniwill_p53_hp_automute(codec);
2054 if ((res >> 28) == ALC880_DCVOL_EVENT)
2055 alc880_uniwill_p53_dcvol_automute(codec);
2059 * F1734 pin configuration:
2060 * HP = 0x14, speaker-out = 0x15, mic = 0x18
2062 static struct hda_verb alc880_pin_f1734_init_verbs[] = {
2063 {0x07, AC_VERB_SET_CONNECT_SEL, 0x01},
2064 {0x10, AC_VERB_SET_CONNECT_SEL, 0x02},
2065 {0x11, AC_VERB_SET_CONNECT_SEL, 0x00},
2066 {0x12, AC_VERB_SET_CONNECT_SEL, 0x01},
2067 {0x13, AC_VERB_SET_CONNECT_SEL, 0x00},
2069 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
2070 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2071 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2072 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2074 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
2075 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2076 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF50},
2077 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2078 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2079 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2080 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2081 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2082 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
2084 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|ALC880_HP_EVENT},
2085 {0x21, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|ALC880_DCVOL_EVENT},
2091 * ASUS pin configuration:
2092 * HP/front = 0x14, surr = 0x15, clfe = 0x16, mic = 0x18, line = 0x1a
2094 static struct hda_verb alc880_pin_asus_init_verbs[] = {
2095 {0x10, AC_VERB_SET_CONNECT_SEL, 0x02},
2096 {0x11, AC_VERB_SET_CONNECT_SEL, 0x00},
2097 {0x12, AC_VERB_SET_CONNECT_SEL, 0x01},
2098 {0x13, AC_VERB_SET_CONNECT_SEL, 0x00},
2100 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
2101 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2102 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2103 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2104 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2105 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2106 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2107 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2109 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
2110 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2111 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
2112 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2113 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
2114 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2115 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2116 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2117 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
2122 /* Enable GPIO mask and set output */
2123 #define alc880_gpio1_init_verbs alc_gpio1_init_verbs
2124 #define alc880_gpio2_init_verbs alc_gpio2_init_verbs
2126 /* Clevo m520g init */
2127 static struct hda_verb alc880_pin_clevo_init_verbs[] = {
2128 /* headphone output */
2129 {0x11, AC_VERB_SET_CONNECT_SEL, 0x01},
2131 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2132 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2134 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
2135 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2137 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
2138 {0x1c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2139 /* Mic1 (rear panel) */
2140 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
2141 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2142 /* Mic2 (front panel) */
2143 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
2144 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2146 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
2147 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2148 /* change to EAPD mode */
2149 {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
2150 {0x20, AC_VERB_SET_PROC_COEF, 0x3060},
2155 static struct hda_verb alc880_pin_tcl_S700_init_verbs[] = {
2156 /* change to EAPD mode */
2157 {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
2158 {0x20, AC_VERB_SET_PROC_COEF, 0x3060},
2160 /* Headphone output */
2161 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
2163 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2164 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
2166 /* Line In pin widget for input */
2167 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
2168 /* CD pin widget for input */
2169 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
2170 /* Mic1 (rear panel) pin widget for input and vref at 80% */
2171 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
2173 /* change to EAPD mode */
2174 {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
2175 {0x20, AC_VERB_SET_PROC_COEF, 0x3070},
2181 * LG m1 express dual
2184 * Rear Line-In/Out (blue): 0x14
2185 * Build-in Mic-In: 0x15
2187 * HP-Out (green): 0x1b
2188 * Mic-In/Out (red): 0x19
2192 /* To make 5.1 output working (green=Front, blue=Surr, red=CLFE) */
2193 static hda_nid_t alc880_lg_dac_nids[3] = {
2197 /* seems analog CD is not working */
2198 static struct hda_input_mux alc880_lg_capture_source = {
2203 { "Internal Mic", 0x6 },
2207 /* 2,4,6 channel modes */
2208 static struct hda_verb alc880_lg_ch2_init[] = {
2209 /* set line-in and mic-in to input */
2210 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
2211 { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
2215 static struct hda_verb alc880_lg_ch4_init[] = {
2216 /* set line-in to out and mic-in to input */
2217 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
2218 { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
2222 static struct hda_verb alc880_lg_ch6_init[] = {
2223 /* set line-in and mic-in to output */
2224 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
2225 { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
2229 static struct hda_channel_mode alc880_lg_ch_modes[3] = {
2230 { 2, alc880_lg_ch2_init },
2231 { 4, alc880_lg_ch4_init },
2232 { 6, alc880_lg_ch6_init },
2235 static struct snd_kcontrol_new alc880_lg_mixer[] = {
2236 HDA_CODEC_VOLUME("Front Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
2237 HDA_BIND_MUTE("Front Playback Switch", 0x0f, 2, HDA_INPUT),
2238 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
2239 HDA_BIND_MUTE("Surround Playback Switch", 0x0c, 2, HDA_INPUT),
2240 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0d, 1, 0x0, HDA_OUTPUT),
2241 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0d, 2, 0x0, HDA_OUTPUT),
2242 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0d, 1, 2, HDA_INPUT),
2243 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0d, 2, 2, HDA_INPUT),
2244 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
2245 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
2246 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x06, HDA_INPUT),
2247 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x06, HDA_INPUT),
2248 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x0b, 0x07, HDA_INPUT),
2249 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x0b, 0x07, HDA_INPUT),
2251 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2252 .name = "Channel Mode",
2253 .info = alc_ch_mode_info,
2254 .get = alc_ch_mode_get,
2255 .put = alc_ch_mode_put,
2260 static struct hda_verb alc880_lg_init_verbs[] = {
2261 /* set capture source to mic-in */
2262 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
2263 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
2264 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
2265 /* mute all amp mixer inputs */
2266 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(5)},
2267 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)},
2268 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)},
2269 /* line-in to input */
2270 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
2271 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2273 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
2274 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2276 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
2277 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2278 /* mic-in to input */
2279 {0x11, AC_VERB_SET_CONNECT_SEL, 0x01},
2280 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
2281 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2283 {0x13, AC_VERB_SET_CONNECT_SEL, 0x03},
2284 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
2285 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2287 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | 0x1},
2291 /* toggle speaker-output according to the hp-jack state */
2292 static void alc880_lg_automute(struct hda_codec *codec)
2294 unsigned int present;
2297 present = snd_hda_codec_read(codec, 0x1b, 0,
2298 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
2299 bits = present ? HDA_AMP_MUTE : 0;
2300 snd_hda_codec_amp_stereo(codec, 0x17, HDA_OUTPUT, 0,
2301 HDA_AMP_MUTE, bits);
2304 static void alc880_lg_unsol_event(struct hda_codec *codec, unsigned int res)
2306 /* Looks like the unsol event is incompatible with the standard
2307 * definition. 4bit tag is placed at 28 bit!
2309 if ((res >> 28) == 0x01)
2310 alc880_lg_automute(codec);
2319 * Built-in Mic-In: 0x19
2325 static struct hda_input_mux alc880_lg_lw_capture_source = {
2329 { "Internal Mic", 0x1 },
2334 #define alc880_lg_lw_modes alc880_threestack_modes
2336 static struct snd_kcontrol_new alc880_lg_lw_mixer[] = {
2337 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
2338 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
2339 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
2340 HDA_BIND_MUTE("Surround Playback Switch", 0x0f, 2, HDA_INPUT),
2341 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
2342 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
2343 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
2344 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
2345 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
2346 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
2347 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
2348 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
2349 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x0b, 0x01, HDA_INPUT),
2350 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x0b, 0x01, HDA_INPUT),
2352 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2353 .name = "Channel Mode",
2354 .info = alc_ch_mode_info,
2355 .get = alc_ch_mode_get,
2356 .put = alc_ch_mode_put,
2361 static struct hda_verb alc880_lg_lw_init_verbs[] = {
2362 {0x13, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
2363 {0x10, AC_VERB_SET_CONNECT_SEL, 0x02}, /* mic/clfe */
2364 {0x12, AC_VERB_SET_CONNECT_SEL, 0x03}, /* line/surround */
2366 /* set capture source to mic-in */
2367 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2368 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2369 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2370 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)},
2372 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
2373 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2375 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
2376 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2377 /* mic-in to input */
2378 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
2379 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2381 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
2382 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2384 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | 0x1},
2388 /* toggle speaker-output according to the hp-jack state */
2389 static void alc880_lg_lw_automute(struct hda_codec *codec)
2391 unsigned int present;
2394 present = snd_hda_codec_read(codec, 0x1b, 0,
2395 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
2396 bits = present ? HDA_AMP_MUTE : 0;
2397 snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0,
2398 HDA_AMP_MUTE, bits);
2401 static void alc880_lg_lw_unsol_event(struct hda_codec *codec, unsigned int res)
2403 /* Looks like the unsol event is incompatible with the standard
2404 * definition. 4bit tag is placed at 28 bit!
2406 if ((res >> 28) == 0x01)
2407 alc880_lg_lw_automute(codec);
2410 static struct snd_kcontrol_new alc880_medion_rim_mixer[] = {
2411 HDA_CODEC_VOLUME("Master Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
2412 HDA_BIND_MUTE("Master Playback Switch", 0x0c, 2, HDA_INPUT),
2413 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
2414 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
2415 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
2416 HDA_CODEC_MUTE("Internal Playback Switch", 0x0b, 0x1, HDA_INPUT),
2420 static struct hda_input_mux alc880_medion_rim_capture_source = {
2424 { "Internal Mic", 0x1 },
2428 static struct hda_verb alc880_medion_rim_init_verbs[] = {
2429 {0x13, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
2431 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
2432 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2434 /* Mic1 (rear panel) pin widget for input and vref at 80% */
2435 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
2436 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2437 /* Mic2 (as headphone out) for HP output */
2438 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
2439 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2440 /* Internal Speaker */
2441 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2442 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2444 {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
2445 {0x20, AC_VERB_SET_PROC_COEF, 0x3060},
2447 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
2451 /* toggle speaker-output according to the hp-jack state */
2452 static void alc880_medion_rim_automute(struct hda_codec *codec)
2454 unsigned int present;
2457 present = snd_hda_codec_read(codec, 0x14, 0,
2458 AC_VERB_GET_PIN_SENSE, 0)
2459 & AC_PINSENSE_PRESENCE;
2460 bits = present ? HDA_AMP_MUTE : 0;
2461 snd_hda_codec_amp_stereo(codec, 0x1b, HDA_OUTPUT, 0,
2462 HDA_AMP_MUTE, bits);
2464 snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_DATA, 0);
2466 snd_hda_codec_write(codec, 0x01, 0, AC_VERB_SET_GPIO_DATA, 2);
2469 static void alc880_medion_rim_unsol_event(struct hda_codec *codec,
2472 /* Looks like the unsol event is incompatible with the standard
2473 * definition. 4bit tag is placed at 28 bit!
2475 if ((res >> 28) == ALC880_HP_EVENT)
2476 alc880_medion_rim_automute(codec);
2479 #ifdef CONFIG_SND_HDA_POWER_SAVE
2480 static struct hda_amp_list alc880_loopbacks[] = {
2481 { 0x0b, HDA_INPUT, 0 },
2482 { 0x0b, HDA_INPUT, 1 },
2483 { 0x0b, HDA_INPUT, 2 },
2484 { 0x0b, HDA_INPUT, 3 },
2485 { 0x0b, HDA_INPUT, 4 },
2489 static struct hda_amp_list alc880_lg_loopbacks[] = {
2490 { 0x0b, HDA_INPUT, 1 },
2491 { 0x0b, HDA_INPUT, 6 },
2492 { 0x0b, HDA_INPUT, 7 },
2501 static int alc_init(struct hda_codec *codec)
2503 struct alc_spec *spec = codec->spec;
2507 if (codec->vendor_id == 0x10ec0888)
2508 alc888_coef_init(codec);
2510 for (i = 0; i < spec->num_init_verbs; i++)
2511 snd_hda_sequence_write(codec, spec->init_verbs[i]);
2513 if (spec->init_hook)
2514 spec->init_hook(codec);
2519 static void alc_unsol_event(struct hda_codec *codec, unsigned int res)
2521 struct alc_spec *spec = codec->spec;
2523 if (spec->unsol_event)
2524 spec->unsol_event(codec, res);
2527 #ifdef CONFIG_SND_HDA_POWER_SAVE
2528 static int alc_check_power_status(struct hda_codec *codec, hda_nid_t nid)
2530 struct alc_spec *spec = codec->spec;
2531 return snd_hda_check_amp_list_power(codec, &spec->loopback, nid);
2536 * Analog playback callbacks
2538 static int alc880_playback_pcm_open(struct hda_pcm_stream *hinfo,
2539 struct hda_codec *codec,
2540 struct snd_pcm_substream *substream)
2542 struct alc_spec *spec = codec->spec;
2543 return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream,
2547 static int alc880_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
2548 struct hda_codec *codec,
2549 unsigned int stream_tag,
2550 unsigned int format,
2551 struct snd_pcm_substream *substream)
2553 struct alc_spec *spec = codec->spec;
2554 return snd_hda_multi_out_analog_prepare(codec, &spec->multiout,
2555 stream_tag, format, substream);
2558 static int alc880_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
2559 struct hda_codec *codec,
2560 struct snd_pcm_substream *substream)
2562 struct alc_spec *spec = codec->spec;
2563 return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout);
2569 static int alc880_dig_playback_pcm_open(struct hda_pcm_stream *hinfo,
2570 struct hda_codec *codec,
2571 struct snd_pcm_substream *substream)
2573 struct alc_spec *spec = codec->spec;
2574 return snd_hda_multi_out_dig_open(codec, &spec->multiout);
2577 static int alc880_dig_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
2578 struct hda_codec *codec,
2579 unsigned int stream_tag,
2580 unsigned int format,
2581 struct snd_pcm_substream *substream)
2583 struct alc_spec *spec = codec->spec;
2584 return snd_hda_multi_out_dig_prepare(codec, &spec->multiout,
2585 stream_tag, format, substream);
2588 static int alc880_dig_playback_pcm_close(struct hda_pcm_stream *hinfo,
2589 struct hda_codec *codec,
2590 struct snd_pcm_substream *substream)
2592 struct alc_spec *spec = codec->spec;
2593 return snd_hda_multi_out_dig_close(codec, &spec->multiout);
2599 static int alc880_alt_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
2600 struct hda_codec *codec,
2601 unsigned int stream_tag,
2602 unsigned int format,
2603 struct snd_pcm_substream *substream)
2605 struct alc_spec *spec = codec->spec;
2607 snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number + 1],
2608 stream_tag, 0, format);
2612 static int alc880_alt_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
2613 struct hda_codec *codec,
2614 struct snd_pcm_substream *substream)
2616 struct alc_spec *spec = codec->spec;
2618 snd_hda_codec_cleanup_stream(codec,
2619 spec->adc_nids[substream->number + 1]);
2626 static struct hda_pcm_stream alc880_pcm_analog_playback = {
2630 /* NID is set in alc_build_pcms */
2632 .open = alc880_playback_pcm_open,
2633 .prepare = alc880_playback_pcm_prepare,
2634 .cleanup = alc880_playback_pcm_cleanup
2638 static struct hda_pcm_stream alc880_pcm_analog_capture = {
2642 /* NID is set in alc_build_pcms */
2645 static struct hda_pcm_stream alc880_pcm_analog_alt_playback = {
2649 /* NID is set in alc_build_pcms */
2652 static struct hda_pcm_stream alc880_pcm_analog_alt_capture = {
2653 .substreams = 2, /* can be overridden */
2656 /* NID is set in alc_build_pcms */
2658 .prepare = alc880_alt_capture_pcm_prepare,
2659 .cleanup = alc880_alt_capture_pcm_cleanup
2663 static struct hda_pcm_stream alc880_pcm_digital_playback = {
2667 /* NID is set in alc_build_pcms */
2669 .open = alc880_dig_playback_pcm_open,
2670 .close = alc880_dig_playback_pcm_close,
2671 .prepare = alc880_dig_playback_pcm_prepare
2675 static struct hda_pcm_stream alc880_pcm_digital_capture = {
2679 /* NID is set in alc_build_pcms */
2682 /* Used by alc_build_pcms to flag that a PCM has no playback stream */
2683 static struct hda_pcm_stream alc_pcm_null_stream = {
2689 static int alc_build_pcms(struct hda_codec *codec)
2691 struct alc_spec *spec = codec->spec;
2692 struct hda_pcm *info = spec->pcm_rec;
2695 codec->num_pcms = 1;
2696 codec->pcm_info = info;
2698 info->name = spec->stream_name_analog;
2699 if (spec->stream_analog_playback) {
2700 if (snd_BUG_ON(!spec->multiout.dac_nids))
2702 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = *(spec->stream_analog_playback);
2703 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dac_nids[0];
2705 if (spec->stream_analog_capture) {
2706 if (snd_BUG_ON(!spec->adc_nids))
2708 info->stream[SNDRV_PCM_STREAM_CAPTURE] = *(spec->stream_analog_capture);
2709 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[0];
2712 if (spec->channel_mode) {
2713 info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max = 0;
2714 for (i = 0; i < spec->num_channel_mode; i++) {
2715 if (spec->channel_mode[i].channels > info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max) {
2716 info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max = spec->channel_mode[i].channels;
2721 /* SPDIF for stream index #1 */
2722 if (spec->multiout.dig_out_nid || spec->dig_in_nid) {
2723 codec->num_pcms = 2;
2724 info = spec->pcm_rec + 1;
2725 info->name = spec->stream_name_digital;
2726 info->pcm_type = HDA_PCM_TYPE_SPDIF;
2727 if (spec->multiout.dig_out_nid &&
2728 spec->stream_digital_playback) {
2729 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = *(spec->stream_digital_playback);
2730 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dig_out_nid;
2732 if (spec->dig_in_nid &&
2733 spec->stream_digital_capture) {
2734 info->stream[SNDRV_PCM_STREAM_CAPTURE] = *(spec->stream_digital_capture);
2735 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->dig_in_nid;
2737 /* FIXME: do we need this for all Realtek codec models? */
2738 codec->spdif_status_reset = 1;
2741 /* If the use of more than one ADC is requested for the current
2742 * model, configure a second analog capture-only PCM.
2744 /* Additional Analaog capture for index #2 */
2745 if ((spec->alt_dac_nid && spec->stream_analog_alt_playback) ||
2746 (spec->num_adc_nids > 1 && spec->stream_analog_alt_capture)) {
2747 codec->num_pcms = 3;
2748 info = spec->pcm_rec + 2;
2749 info->name = spec->stream_name_analog;
2750 if (spec->alt_dac_nid) {
2751 info->stream[SNDRV_PCM_STREAM_PLAYBACK] =
2752 *spec->stream_analog_alt_playback;
2753 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid =
2756 info->stream[SNDRV_PCM_STREAM_PLAYBACK] =
2757 alc_pcm_null_stream;
2758 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = 0;
2760 if (spec->num_adc_nids > 1) {
2761 info->stream[SNDRV_PCM_STREAM_CAPTURE] =
2762 *spec->stream_analog_alt_capture;
2763 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid =
2765 info->stream[SNDRV_PCM_STREAM_CAPTURE].substreams =
2766 spec->num_adc_nids - 1;
2768 info->stream[SNDRV_PCM_STREAM_CAPTURE] =
2769 alc_pcm_null_stream;
2770 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = 0;
2777 static void alc_free(struct hda_codec *codec)
2779 struct alc_spec *spec = codec->spec;
2785 if (spec->kctl_alloc) {
2786 for (i = 0; i < spec->num_kctl_used; i++)
2787 kfree(spec->kctl_alloc[i].name);
2788 kfree(spec->kctl_alloc);
2791 codec->spec = NULL; /* to be sure */
2794 #ifdef SND_HDA_NEEDS_RESUME
2795 static void store_pin_configs(struct hda_codec *codec)
2797 struct alc_spec *spec = codec->spec;
2798 hda_nid_t nid, end_nid;
2800 end_nid = codec->start_nid + codec->num_nodes;
2801 for (nid = codec->start_nid; nid < end_nid; nid++) {
2802 unsigned int wid_caps = get_wcaps(codec, nid);
2803 unsigned int wid_type =
2804 (wid_caps & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT;
2805 if (wid_type != AC_WID_PIN)
2807 if (spec->num_pins >= ARRAY_SIZE(spec->pin_nids))
2809 spec->pin_nids[spec->num_pins] = nid;
2810 spec->pin_cfgs[spec->num_pins] =
2811 snd_hda_codec_read(codec, nid, 0,
2812 AC_VERB_GET_CONFIG_DEFAULT, 0);
2817 static void resume_pin_configs(struct hda_codec *codec)
2819 struct alc_spec *spec = codec->spec;
2822 for (i = 0; i < spec->num_pins; i++) {
2823 hda_nid_t pin_nid = spec->pin_nids[i];
2824 unsigned int pin_config = spec->pin_cfgs[i];
2825 snd_hda_codec_write(codec, pin_nid, 0,
2826 AC_VERB_SET_CONFIG_DEFAULT_BYTES_0,
2827 pin_config & 0x000000ff);
2828 snd_hda_codec_write(codec, pin_nid, 0,
2829 AC_VERB_SET_CONFIG_DEFAULT_BYTES_1,
2830 (pin_config & 0x0000ff00) >> 8);
2831 snd_hda_codec_write(codec, pin_nid, 0,
2832 AC_VERB_SET_CONFIG_DEFAULT_BYTES_2,
2833 (pin_config & 0x00ff0000) >> 16);
2834 snd_hda_codec_write(codec, pin_nid, 0,
2835 AC_VERB_SET_CONFIG_DEFAULT_BYTES_3,
2840 static int alc_resume(struct hda_codec *codec)
2842 resume_pin_configs(codec);
2843 codec->patch_ops.init(codec);
2844 snd_hda_codec_resume_amp(codec);
2845 snd_hda_codec_resume_cache(codec);
2849 #define store_pin_configs(codec)
2854 static struct hda_codec_ops alc_patch_ops = {
2855 .build_controls = alc_build_controls,
2856 .build_pcms = alc_build_pcms,
2859 .unsol_event = alc_unsol_event,
2860 #ifdef SND_HDA_NEEDS_RESUME
2861 .resume = alc_resume,
2863 #ifdef CONFIG_SND_HDA_POWER_SAVE
2864 .check_power_status = alc_check_power_status,
2870 * Test configuration for debugging
2872 * Almost all inputs/outputs are enabled. I/O pins can be configured via
2875 #ifdef CONFIG_SND_DEBUG
2876 static hda_nid_t alc880_test_dac_nids[4] = {
2877 0x02, 0x03, 0x04, 0x05
2880 static struct hda_input_mux alc880_test_capture_source = {
2889 { "Surround", 0x6 },
2893 static struct hda_channel_mode alc880_test_modes[4] = {
2900 static int alc_test_pin_ctl_info(struct snd_kcontrol *kcontrol,
2901 struct snd_ctl_elem_info *uinfo)
2903 static char *texts[] = {
2904 "N/A", "Line Out", "HP Out",
2905 "In Hi-Z", "In 50%", "In Grd", "In 80%", "In 100%"
2907 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2909 uinfo->value.enumerated.items = 8;
2910 if (uinfo->value.enumerated.item >= 8)
2911 uinfo->value.enumerated.item = 7;
2912 strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);
2916 static int alc_test_pin_ctl_get(struct snd_kcontrol *kcontrol,
2917 struct snd_ctl_elem_value *ucontrol)
2919 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2920 hda_nid_t nid = (hda_nid_t)kcontrol->private_value;
2921 unsigned int pin_ctl, item = 0;
2923 pin_ctl = snd_hda_codec_read(codec, nid, 0,
2924 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
2925 if (pin_ctl & AC_PINCTL_OUT_EN) {
2926 if (pin_ctl & AC_PINCTL_HP_EN)
2930 } else if (pin_ctl & AC_PINCTL_IN_EN) {
2931 switch (pin_ctl & AC_PINCTL_VREFEN) {
2932 case AC_PINCTL_VREF_HIZ: item = 3; break;
2933 case AC_PINCTL_VREF_50: item = 4; break;
2934 case AC_PINCTL_VREF_GRD: item = 5; break;
2935 case AC_PINCTL_VREF_80: item = 6; break;
2936 case AC_PINCTL_VREF_100: item = 7; break;
2939 ucontrol->value.enumerated.item[0] = item;
2943 static int alc_test_pin_ctl_put(struct snd_kcontrol *kcontrol,
2944 struct snd_ctl_elem_value *ucontrol)
2946 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2947 hda_nid_t nid = (hda_nid_t)kcontrol->private_value;
2948 static unsigned int ctls[] = {
2949 0, AC_PINCTL_OUT_EN, AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN,
2950 AC_PINCTL_IN_EN | AC_PINCTL_VREF_HIZ,
2951 AC_PINCTL_IN_EN | AC_PINCTL_VREF_50,
2952 AC_PINCTL_IN_EN | AC_PINCTL_VREF_GRD,
2953 AC_PINCTL_IN_EN | AC_PINCTL_VREF_80,
2954 AC_PINCTL_IN_EN | AC_PINCTL_VREF_100,
2956 unsigned int old_ctl, new_ctl;
2958 old_ctl = snd_hda_codec_read(codec, nid, 0,
2959 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
2960 new_ctl = ctls[ucontrol->value.enumerated.item[0]];
2961 if (old_ctl != new_ctl) {
2963 snd_hda_codec_write_cache(codec, nid, 0,
2964 AC_VERB_SET_PIN_WIDGET_CONTROL,
2966 val = ucontrol->value.enumerated.item[0] >= 3 ?
2968 snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
2975 static int alc_test_pin_src_info(struct snd_kcontrol *kcontrol,
2976 struct snd_ctl_elem_info *uinfo)
2978 static char *texts[] = {
2979 "Front", "Surround", "CLFE", "Side"
2981 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2983 uinfo->value.enumerated.items = 4;
2984 if (uinfo->value.enumerated.item >= 4)
2985 uinfo->value.enumerated.item = 3;
2986 strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);
2990 static int alc_test_pin_src_get(struct snd_kcontrol *kcontrol,
2991 struct snd_ctl_elem_value *ucontrol)
2993 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2994 hda_nid_t nid = (hda_nid_t)kcontrol->private_value;
2997 sel = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_CONNECT_SEL, 0);
2998 ucontrol->value.enumerated.item[0] = sel & 3;
3002 static int alc_test_pin_src_put(struct snd_kcontrol *kcontrol,
3003 struct snd_ctl_elem_value *ucontrol)
3005 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
3006 hda_nid_t nid = (hda_nid_t)kcontrol->private_value;
3009 sel = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_CONNECT_SEL, 0) & 3;
3010 if (ucontrol->value.enumerated.item[0] != sel) {
3011 sel = ucontrol->value.enumerated.item[0] & 3;
3012 snd_hda_codec_write_cache(codec, nid, 0,
3013 AC_VERB_SET_CONNECT_SEL, sel);
3019 #define PIN_CTL_TEST(xname,nid) { \
3020 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
3022 .info = alc_test_pin_ctl_info, \
3023 .get = alc_test_pin_ctl_get, \
3024 .put = alc_test_pin_ctl_put, \
3025 .private_value = nid \
3028 #define PIN_SRC_TEST(xname,nid) { \
3029 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
3031 .info = alc_test_pin_src_info, \
3032 .get = alc_test_pin_src_get, \
3033 .put = alc_test_pin_src_put, \
3034 .private_value = nid \
3037 static struct snd_kcontrol_new alc880_test_mixer[] = {
3038 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
3039 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
3040 HDA_CODEC_VOLUME("CLFE Playback Volume", 0x0e, 0x0, HDA_OUTPUT),
3041 HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
3042 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
3043 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
3044 HDA_BIND_MUTE("CLFE Playback Switch", 0x0e, 2, HDA_INPUT),
3045 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT),
3046 PIN_CTL_TEST("Front Pin Mode", 0x14),
3047 PIN_CTL_TEST("Surround Pin Mode", 0x15),
3048 PIN_CTL_TEST("CLFE Pin Mode", 0x16),
3049 PIN_CTL_TEST("Side Pin Mode", 0x17),
3050 PIN_CTL_TEST("In-1 Pin Mode", 0x18),
3051 PIN_CTL_TEST("In-2 Pin Mode", 0x19),
3052 PIN_CTL_TEST("In-3 Pin Mode", 0x1a),
3053 PIN_CTL_TEST("In-4 Pin Mode", 0x1b),
3054 PIN_SRC_TEST("In-1 Pin Source", 0x18),
3055 PIN_SRC_TEST("In-2 Pin Source", 0x19),
3056 PIN_SRC_TEST("In-3 Pin Source", 0x1a),
3057 PIN_SRC_TEST("In-4 Pin Source", 0x1b),
3058 HDA_CODEC_VOLUME("In-1 Playback Volume", 0x0b, 0x0, HDA_INPUT),
3059 HDA_CODEC_MUTE("In-1 Playback Switch", 0x0b, 0x0, HDA_INPUT),
3060 HDA_CODEC_VOLUME("In-2 Playback Volume", 0x0b, 0x1, HDA_INPUT),
3061 HDA_CODEC_MUTE("In-2 Playback Switch", 0x0b, 0x1, HDA_INPUT),
3062 HDA_CODEC_VOLUME("In-3 Playback Volume", 0x0b, 0x2, HDA_INPUT),
3063 HDA_CODEC_MUTE("In-3 Playback Switch", 0x0b, 0x2, HDA_INPUT),
3064 HDA_CODEC_VOLUME("In-4 Playback Volume", 0x0b, 0x3, HDA_INPUT),
3065 HDA_CODEC_MUTE("In-4 Playback Switch", 0x0b, 0x3, HDA_INPUT),
3066 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x4, HDA_INPUT),
3067 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x4, HDA_INPUT),
3069 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
3070 .name = "Channel Mode",
3071 .info = alc_ch_mode_info,
3072 .get = alc_ch_mode_get,
3073 .put = alc_ch_mode_put,
3078 static struct hda_verb alc880_test_init_verbs[] = {
3079 /* Unmute inputs of 0x0c - 0x0f */
3080 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3081 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
3082 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3083 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
3084 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3085 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
3086 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3087 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
3088 /* Vol output for 0x0c-0x0f */
3089 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3090 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3091 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3092 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3093 /* Set output pins 0x14-0x17 */
3094 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
3095 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
3096 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
3097 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
3098 /* Unmute output pins 0x14-0x17 */
3099 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3100 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3101 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3102 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3103 /* Set input pins 0x18-0x1c */
3104 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
3105 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
3106 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
3107 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
3108 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
3109 /* Mute input pins 0x18-0x1b */
3110 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
3111 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
3112 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
3113 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
3115 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3116 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
3117 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3118 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
3119 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3120 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
3121 /* Analog input/passthru */
3122 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3123 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3124 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
3125 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
3126 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
3134 static const char *alc880_models[ALC880_MODEL_LAST] = {
3135 [ALC880_3ST] = "3stack",
3136 [ALC880_TCL_S700] = "tcl",
3137 [ALC880_3ST_DIG] = "3stack-digout",
3138 [ALC880_CLEVO] = "clevo",
3139 [ALC880_5ST] = "5stack",
3140 [ALC880_5ST_DIG] = "5stack-digout",
3141 [ALC880_W810] = "w810",
3142 [ALC880_Z71V] = "z71v",
3143 [ALC880_6ST] = "6stack",
3144 [ALC880_6ST_DIG] = "6stack-digout",
3145 [ALC880_ASUS] = "asus",
3146 [ALC880_ASUS_W1V] = "asus-w1v",
3147 [ALC880_ASUS_DIG] = "asus-dig",
3148 [ALC880_ASUS_DIG2] = "asus-dig2",
3149 [ALC880_UNIWILL_DIG] = "uniwill",
3150 [ALC880_UNIWILL_P53] = "uniwill-p53",
3151 [ALC880_FUJITSU] = "fujitsu",
3152 [ALC880_F1734] = "F1734",
3154 [ALC880_LG_LW] = "lg-lw",
3155 [ALC880_MEDION_RIM] = "medion",
3156 #ifdef CONFIG_SND_DEBUG
3157 [ALC880_TEST] = "test",
3159 [ALC880_AUTO] = "auto",
3162 static struct snd_pci_quirk alc880_cfg_tbl[] = {
3163 SND_PCI_QUIRK(0x1019, 0x0f69, "Coeus G610P", ALC880_W810),
3164 SND_PCI_QUIRK(0x1019, 0xa880, "ECS", ALC880_5ST_DIG),
3165 SND_PCI_QUIRK(0x1019, 0xa884, "Acer APFV", ALC880_6ST),
3166 SND_PCI_QUIRK(0x1025, 0x0070, "ULI", ALC880_3ST_DIG),
3167 SND_PCI_QUIRK(0x1025, 0x0077, "ULI", ALC880_6ST_DIG),
3168 SND_PCI_QUIRK(0x1025, 0x0078, "ULI", ALC880_6ST_DIG),
3169 SND_PCI_QUIRK(0x1025, 0x0087, "ULI", ALC880_6ST_DIG),
3170 SND_PCI_QUIRK(0x1025, 0xe309, "ULI", ALC880_3ST_DIG),
3171 SND_PCI_QUIRK(0x1025, 0xe310, "ULI", ALC880_3ST),
3172 SND_PCI_QUIRK(0x1039, 0x1234, NULL, ALC880_6ST_DIG),
3173 SND_PCI_QUIRK(0x103c, 0x2a09, "HP", ALC880_5ST),
3174 SND_PCI_QUIRK(0x1043, 0x10b3, "ASUS W1V", ALC880_ASUS_W1V),
3175 SND_PCI_QUIRK(0x1043, 0x10c2, "ASUS W6A", ALC880_ASUS_DIG),
3176 SND_PCI_QUIRK(0x1043, 0x10c3, "ASUS Wxx", ALC880_ASUS_DIG),
3177 SND_PCI_QUIRK(0x1043, 0x1113, "ASUS", ALC880_ASUS_DIG),
3178 SND_PCI_QUIRK(0x1043, 0x1123, "ASUS", ALC880_ASUS_DIG),
3179 SND_PCI_QUIRK(0x1043, 0x1173, "ASUS", ALC880_ASUS_DIG),
3180 SND_PCI_QUIRK(0x1043, 0x1964, "ASUS Z71V", ALC880_Z71V),
3181 /* SND_PCI_QUIRK(0x1043, 0x1964, "ASUS", ALC880_ASUS_DIG), */
3182 SND_PCI_QUIRK(0x1043, 0x1973, "ASUS", ALC880_ASUS_DIG),
3183 SND_PCI_QUIRK(0x1043, 0x19b3, "ASUS", ALC880_ASUS_DIG),
3184 SND_PCI_QUIRK(0x1043, 0x814e, "ASUS P5GD1 w/SPDIF", ALC880_6ST_DIG),
3185 SND_PCI_QUIRK(0x1043, 0x8181, "ASUS P4GPL", ALC880_ASUS_DIG),
3186 SND_PCI_QUIRK(0x1043, 0x8196, "ASUS P5GD1", ALC880_6ST),
3187 SND_PCI_QUIRK(0x1043, 0x81b4, "ASUS", ALC880_6ST),
3188 SND_PCI_QUIRK(0x1043, 0, "ASUS", ALC880_ASUS), /* default ASUS */
3189 SND_PCI_QUIRK(0x104d, 0x81a0, "Sony", ALC880_3ST),
3190 SND_PCI_QUIRK(0x104d, 0x81d6, "Sony", ALC880_3ST),
3191 SND_PCI_QUIRK(0x107b, 0x3032, "Gateway", ALC880_5ST),
3192 SND_PCI_QUIRK(0x107b, 0x3033, "Gateway", ALC880_5ST),
3193 SND_PCI_QUIRK(0x107b, 0x4039, "Gateway", ALC880_5ST),
3194 SND_PCI_QUIRK(0x1297, 0xc790, "Shuttle ST20G5", ALC880_6ST_DIG),
3195 SND_PCI_QUIRK(0x1458, 0xa102, "Gigabyte K8", ALC880_6ST_DIG),
3196 SND_PCI_QUIRK(0x1462, 0x1150, "MSI", ALC880_6ST_DIG),
3197 SND_PCI_QUIRK(0x1509, 0x925d, "FIC P4M", ALC880_6ST_DIG),
3198 SND_PCI_QUIRK(0x1558, 0x0520, "Clevo m520G", ALC880_CLEVO),
3199 SND_PCI_QUIRK(0x1558, 0x0660, "Clevo m655n", ALC880_CLEVO),
3200 SND_PCI_QUIRK(0x1558, 0x5401, "ASUS", ALC880_ASUS_DIG2),
3201 SND_PCI_QUIRK(0x1565, 0x8202, "Biostar", ALC880_5ST_DIG),
3202 SND_PCI_QUIRK(0x1584, 0x9050, "Uniwill", ALC880_UNIWILL_DIG),
3203 SND_PCI_QUIRK(0x1584, 0x9054, "Uniwlll", ALC880_F1734),
3204 SND_PCI_QUIRK(0x1584, 0x9070, "Uniwill", ALC880_UNIWILL),
3205 SND_PCI_QUIRK(0x1584, 0x9077, "Uniwill P53", ALC880_UNIWILL_P53),
3206 SND_PCI_QUIRK(0x161f, 0x203d, "W810", ALC880_W810),
3207 SND_PCI_QUIRK(0x161f, 0x205d, "Medion Rim 2150", ALC880_MEDION_RIM),
3208 SND_PCI_QUIRK(0x1695, 0x400d, "EPoX", ALC880_5ST_DIG),
3209 SND_PCI_QUIRK(0x1695, 0x4012, "EPox EP-5LDA", ALC880_5ST_DIG),
3210 SND_PCI_QUIRK(0x1734, 0x107c, "FSC F1734", ALC880_F1734),
3211 SND_PCI_QUIRK(0x1734, 0x1094, "FSC Amilo M1451G", ALC880_FUJITSU),
3212 SND_PCI_QUIRK(0x1734, 0x10ac, "FSC", ALC880_UNIWILL),
3213 SND_PCI_QUIRK(0x1734, 0x10b0, "Fujitsu", ALC880_FUJITSU),
3214 SND_PCI_QUIRK(0x1854, 0x0018, "LG LW20", ALC880_LG_LW),
3215 SND_PCI_QUIRK(0x1854, 0x003b, "LG", ALC880_LG),
3216 SND_PCI_QUIRK(0x1854, 0x0068, "LG w1", ALC880_LG),
3217 SND_PCI_QUIRK(0x1854, 0x0077, "LG LW25", ALC880_LG_LW),
3218 SND_PCI_QUIRK(0x19db, 0x4188, "TCL S700", ALC880_TCL_S700),
3219 SND_PCI_QUIRK(0x2668, 0x8086, NULL, ALC880_6ST_DIG), /* broken BIOS */
3220 SND_PCI_QUIRK(0x8086, 0x2668, NULL, ALC880_6ST_DIG),
3221 SND_PCI_QUIRK(0x8086, 0xa100, "Intel mobo", ALC880_5ST_DIG),
3222 SND_PCI_QUIRK(0x8086, 0xd400, "Intel mobo", ALC880_5ST_DIG),
3223 SND_PCI_QUIRK(0x8086, 0xd401, "Intel mobo", ALC880_5ST_DIG),
3224 SND_PCI_QUIRK(0x8086, 0xd402, "Intel mobo", ALC880_3ST_DIG),
3225 SND_PCI_QUIRK(0x8086, 0xe224, "Intel mobo", ALC880_5ST_DIG),
3226 SND_PCI_QUIRK(0x8086, 0xe305, "Intel mobo", ALC880_3ST_DIG),
3227 SND_PCI_QUIRK(0x8086, 0xe308, "Intel mobo", ALC880_3ST_DIG),
3228 SND_PCI_QUIRK(0x8086, 0xe400, "Intel mobo", ALC880_5ST_DIG),
3229 SND_PCI_QUIRK(0x8086, 0xe401, "Intel mobo", ALC880_5ST_DIG),
3230 SND_PCI_QUIRK(0x8086, 0xe402, "Intel mobo", ALC880_5ST_DIG),
3231 SND_PCI_QUIRK(0x8086, 0, "Intel mobo", ALC880_3ST), /* default Intel */
3232 SND_PCI_QUIRK(0xa0a0, 0x0560, "AOpen i915GMm-HFS", ALC880_5ST_DIG),
3233 SND_PCI_QUIRK(0xe803, 0x1019, NULL, ALC880_6ST_DIG),
3238 * ALC880 codec presets
3240 static struct alc_config_preset alc880_presets[] = {
3242 .mixers = { alc880_three_stack_mixer },
3243 .init_verbs = { alc880_volume_init_verbs,
3244 alc880_pin_3stack_init_verbs },
3245 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
3246 .dac_nids = alc880_dac_nids,
3247 .num_channel_mode = ARRAY_SIZE(alc880_threestack_modes),
3248 .channel_mode = alc880_threestack_modes,
3250 .input_mux = &alc880_capture_source,
3252 [ALC880_3ST_DIG] = {
3253 .mixers = { alc880_three_stack_mixer },
3254 .init_verbs = { alc880_volume_init_verbs,
3255 alc880_pin_3stack_init_verbs },
3256 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
3257 .dac_nids = alc880_dac_nids,
3258 .dig_out_nid = ALC880_DIGOUT_NID,
3259 .num_channel_mode = ARRAY_SIZE(alc880_threestack_modes),
3260 .channel_mode = alc880_threestack_modes,
3262 .input_mux = &alc880_capture_source,
3264 [ALC880_TCL_S700] = {
3265 .mixers = { alc880_tcl_s700_mixer },
3266 .init_verbs = { alc880_volume_init_verbs,
3267 alc880_pin_tcl_S700_init_verbs,
3268 alc880_gpio2_init_verbs },
3269 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
3270 .dac_nids = alc880_dac_nids,
3272 .num_channel_mode = ARRAY_SIZE(alc880_2_jack_modes),
3273 .channel_mode = alc880_2_jack_modes,
3274 .input_mux = &alc880_capture_source,
3277 .mixers = { alc880_three_stack_mixer,
3278 alc880_five_stack_mixer},
3279 .init_verbs = { alc880_volume_init_verbs,
3280 alc880_pin_5stack_init_verbs },
3281 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
3282 .dac_nids = alc880_dac_nids,
3283 .num_channel_mode = ARRAY_SIZE(alc880_fivestack_modes),
3284 .channel_mode = alc880_fivestack_modes,
3285 .input_mux = &alc880_capture_source,
3287 [ALC880_5ST_DIG] = {
3288 .mixers = { alc880_three_stack_mixer,
3289 alc880_five_stack_mixer },
3290 .init_verbs = { alc880_volume_init_verbs,
3291 alc880_pin_5stack_init_verbs },
3292 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
3293 .dac_nids = alc880_dac_nids,
3294 .dig_out_nid = ALC880_DIGOUT_NID,
3295 .num_channel_mode = ARRAY_SIZE(alc880_fivestack_modes),
3296 .channel_mode = alc880_fivestack_modes,
3297 .input_mux = &alc880_capture_source,
3300 .mixers = { alc880_six_stack_mixer },
3301 .init_verbs = { alc880_volume_init_verbs,
3302 alc880_pin_6stack_init_verbs },
3303 .num_dacs = ARRAY_SIZE(alc880_6st_dac_nids),
3304 .dac_nids = alc880_6st_dac_nids,
3305 .num_channel_mode = ARRAY_SIZE(alc880_sixstack_modes),
3306 .channel_mode = alc880_sixstack_modes,
3307 .input_mux = &alc880_6stack_capture_source,
3309 [ALC880_6ST_DIG] = {
3310 .mixers = { alc880_six_stack_mixer },
3311 .init_verbs = { alc880_volume_init_verbs,
3312 alc880_pin_6stack_init_verbs },
3313 .num_dacs = ARRAY_SIZE(alc880_6st_dac_nids),
3314 .dac_nids = alc880_6st_dac_nids,
3315 .dig_out_nid = ALC880_DIGOUT_NID,
3316 .num_channel_mode = ARRAY_SIZE(alc880_sixstack_modes),
3317 .channel_mode = alc880_sixstack_modes,
3318 .input_mux = &alc880_6stack_capture_source,
3321 .mixers = { alc880_w810_base_mixer },
3322 .init_verbs = { alc880_volume_init_verbs,
3323 alc880_pin_w810_init_verbs,
3324 alc880_gpio2_init_verbs },
3325 .num_dacs = ARRAY_SIZE(alc880_w810_dac_nids),
3326 .dac_nids = alc880_w810_dac_nids,
3327 .dig_out_nid = ALC880_DIGOUT_NID,
3328 .num_channel_mode = ARRAY_SIZE(alc880_w810_modes),
3329 .channel_mode = alc880_w810_modes,
3330 .input_mux = &alc880_capture_source,
3333 .mixers = { alc880_z71v_mixer },
3334 .init_verbs = { alc880_volume_init_verbs,
3335 alc880_pin_z71v_init_verbs },
3336 .num_dacs = ARRAY_SIZE(alc880_z71v_dac_nids),
3337 .dac_nids = alc880_z71v_dac_nids,
3338 .dig_out_nid = ALC880_DIGOUT_NID,
3340 .num_channel_mode = ARRAY_SIZE(alc880_2_jack_modes),
3341 .channel_mode = alc880_2_jack_modes,
3342 .input_mux = &alc880_capture_source,
3345 .mixers = { alc880_f1734_mixer },
3346 .init_verbs = { alc880_volume_init_verbs,
3347 alc880_pin_f1734_init_verbs },
3348 .num_dacs = ARRAY_SIZE(alc880_f1734_dac_nids),
3349 .dac_nids = alc880_f1734_dac_nids,
3351 .num_channel_mode = ARRAY_SIZE(alc880_2_jack_modes),
3352 .channel_mode = alc880_2_jack_modes,
3353 .input_mux = &alc880_f1734_capture_source,
3354 .unsol_event = alc880_uniwill_p53_unsol_event,
3355 .init_hook = alc880_uniwill_p53_hp_automute,
3358 .mixers = { alc880_asus_mixer },
3359 .init_verbs = { alc880_volume_init_verbs,
3360 alc880_pin_asus_init_verbs,
3361 alc880_gpio1_init_verbs },
3362 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
3363 .dac_nids = alc880_asus_dac_nids,
3364 .num_channel_mode = ARRAY_SIZE(alc880_asus_modes),
3365 .channel_mode = alc880_asus_modes,
3367 .input_mux = &alc880_capture_source,
3369 [ALC880_ASUS_DIG] = {
3370 .mixers = { alc880_asus_mixer },
3371 .init_verbs = { alc880_volume_init_verbs,
3372 alc880_pin_asus_init_verbs,
3373 alc880_gpio1_init_verbs },
3374 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
3375 .dac_nids = alc880_asus_dac_nids,
3376 .dig_out_nid = ALC880_DIGOUT_NID,
3377 .num_channel_mode = ARRAY_SIZE(alc880_asus_modes),
3378 .channel_mode = alc880_asus_modes,
3380 .input_mux = &alc880_capture_source,
3382 [ALC880_ASUS_DIG2] = {
3383 .mixers = { alc880_asus_mixer },
3384 .init_verbs = { alc880_volume_init_verbs,
3385 alc880_pin_asus_init_verbs,
3386 alc880_gpio2_init_verbs }, /* use GPIO2 */
3387 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
3388 .dac_nids = alc880_asus_dac_nids,
3389 .dig_out_nid = ALC880_DIGOUT_NID,
3390 .num_channel_mode = ARRAY_SIZE(alc880_asus_modes),
3391 .channel_mode = alc880_asus_modes,
3393 .input_mux = &alc880_capture_source,
3395 [ALC880_ASUS_W1V] = {
3396 .mixers = { alc880_asus_mixer, alc880_asus_w1v_mixer },
3397 .init_verbs = { alc880_volume_init_verbs,
3398 alc880_pin_asus_init_verbs,
3399 alc880_gpio1_init_verbs },
3400 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
3401 .dac_nids = alc880_asus_dac_nids,
3402 .dig_out_nid = ALC880_DIGOUT_NID,
3403 .num_channel_mode = ARRAY_SIZE(alc880_asus_modes),
3404 .channel_mode = alc880_asus_modes,
3406 .input_mux = &alc880_capture_source,
3408 [ALC880_UNIWILL_DIG] = {
3409 .mixers = { alc880_asus_mixer, alc880_pcbeep_mixer },
3410 .init_verbs = { alc880_volume_init_verbs,
3411 alc880_pin_asus_init_verbs },
3412 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
3413 .dac_nids = alc880_asus_dac_nids,
3414 .dig_out_nid = ALC880_DIGOUT_NID,
3415 .num_channel_mode = ARRAY_SIZE(alc880_asus_modes),
3416 .channel_mode = alc880_asus_modes,
3418 .input_mux = &alc880_capture_source,
3420 [ALC880_UNIWILL] = {
3421 .mixers = { alc880_uniwill_mixer },
3422 .init_verbs = { alc880_volume_init_verbs,
3423 alc880_uniwill_init_verbs },
3424 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
3425 .dac_nids = alc880_asus_dac_nids,
3426 .dig_out_nid = ALC880_DIGOUT_NID,
3427 .num_channel_mode = ARRAY_SIZE(alc880_threestack_modes),
3428 .channel_mode = alc880_threestack_modes,
3430 .input_mux = &alc880_capture_source,
3431 .unsol_event = alc880_uniwill_unsol_event,
3432 .init_hook = alc880_uniwill_automute,
3434 [ALC880_UNIWILL_P53] = {
3435 .mixers = { alc880_uniwill_p53_mixer },
3436 .init_verbs = { alc880_volume_init_verbs,
3437 alc880_uniwill_p53_init_verbs },
3438 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
3439 .dac_nids = alc880_asus_dac_nids,
3440 .num_channel_mode = ARRAY_SIZE(alc880_w810_modes),
3441 .channel_mode = alc880_threestack_modes,
3442 .input_mux = &alc880_capture_source,
3443 .unsol_event = alc880_uniwill_p53_unsol_event,
3444 .init_hook = alc880_uniwill_p53_hp_automute,
3446 [ALC880_FUJITSU] = {
3447 .mixers = { alc880_fujitsu_mixer,
3448 alc880_pcbeep_mixer, },
3449 .init_verbs = { alc880_volume_init_verbs,
3450 alc880_uniwill_p53_init_verbs,
3451 alc880_beep_init_verbs },
3452 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
3453 .dac_nids = alc880_dac_nids,
3454 .dig_out_nid = ALC880_DIGOUT_NID,
3455 .num_channel_mode = ARRAY_SIZE(alc880_2_jack_modes),
3456 .channel_mode = alc880_2_jack_modes,
3457 .input_mux = &alc880_capture_source,
3458 .unsol_event = alc880_uniwill_p53_unsol_event,
3459 .init_hook = alc880_uniwill_p53_hp_automute,
3462 .mixers = { alc880_three_stack_mixer },
3463 .init_verbs = { alc880_volume_init_verbs,
3464 alc880_pin_clevo_init_verbs },
3465 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
3466 .dac_nids = alc880_dac_nids,
3468 .num_channel_mode = ARRAY_SIZE(alc880_threestack_modes),
3469 .channel_mode = alc880_threestack_modes,
3471 .input_mux = &alc880_capture_source,
3474 .mixers = { alc880_lg_mixer },
3475 .init_verbs = { alc880_volume_init_verbs,
3476 alc880_lg_init_verbs },
3477 .num_dacs = ARRAY_SIZE(alc880_lg_dac_nids),
3478 .dac_nids = alc880_lg_dac_nids,
3479 .dig_out_nid = ALC880_DIGOUT_NID,
3480 .num_channel_mode = ARRAY_SIZE(alc880_lg_ch_modes),
3481 .channel_mode = alc880_lg_ch_modes,
3483 .input_mux = &alc880_lg_capture_source,
3484 .unsol_event = alc880_lg_unsol_event,
3485 .init_hook = alc880_lg_automute,
3486 #ifdef CONFIG_SND_HDA_POWER_SAVE
3487 .loopbacks = alc880_lg_loopbacks,
3491 .mixers = { alc880_lg_lw_mixer },
3492 .init_verbs = { alc880_volume_init_verbs,
3493 alc880_lg_lw_init_verbs },
3494 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
3495 .dac_nids = alc880_dac_nids,
3496 .dig_out_nid = ALC880_DIGOUT_NID,
3497 .num_channel_mode = ARRAY_SIZE(alc880_lg_lw_modes),
3498 .channel_mode = alc880_lg_lw_modes,
3499 .input_mux = &alc880_lg_lw_capture_source,
3500 .unsol_event = alc880_lg_lw_unsol_event,
3501 .init_hook = alc880_lg_lw_automute,
3503 [ALC880_MEDION_RIM] = {
3504 .mixers = { alc880_medion_rim_mixer },
3505 .init_verbs = { alc880_volume_init_verbs,
3506 alc880_medion_rim_init_verbs,
3507 alc_gpio2_init_verbs },
3508 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
3509 .dac_nids = alc880_dac_nids,
3510 .dig_out_nid = ALC880_DIGOUT_NID,
3511 .num_channel_mode = ARRAY_SIZE(alc880_2_jack_modes),
3512 .channel_mode = alc880_2_jack_modes,
3513 .input_mux = &alc880_medion_rim_capture_source,
3514 .unsol_event = alc880_medion_rim_unsol_event,
3515 .init_hook = alc880_medion_rim_automute,
3517 #ifdef CONFIG_SND_DEBUG
3519 .mixers = { alc880_test_mixer },
3520 .init_verbs = { alc880_test_init_verbs },
3521 .num_dacs = ARRAY_SIZE(alc880_test_dac_nids),
3522 .dac_nids = alc880_test_dac_nids,
3523 .dig_out_nid = ALC880_DIGOUT_NID,
3524 .num_channel_mode = ARRAY_SIZE(alc880_test_modes),
3525 .channel_mode = alc880_test_modes,
3526 .input_mux = &alc880_test_capture_source,
3532 * Automatic parse of I/O pins from the BIOS configuration
3535 #define NUM_CONTROL_ALLOC 32
3536 #define NUM_VERB_ALLOC 32
3540 ALC_CTL_WIDGET_MUTE,
3543 static struct snd_kcontrol_new alc880_control_templates[] = {
3544 HDA_CODEC_VOLUME(NULL, 0, 0, 0),
3545 HDA_CODEC_MUTE(NULL, 0, 0, 0),
3546 HDA_BIND_MUTE(NULL, 0, 0, 0),
3549 /* add dynamic controls */
3550 static int add_control(struct alc_spec *spec, int type, const char *name,
3553 struct snd_kcontrol_new *knew;
3555 if (spec->num_kctl_used >= spec->num_kctl_alloc) {
3556 int num = spec->num_kctl_alloc + NUM_CONTROL_ALLOC;
3558 /* array + terminator */
3559 knew = kcalloc(num + 1, sizeof(*knew), GFP_KERNEL);
3562 if (spec->kctl_alloc) {
3563 memcpy(knew, spec->kctl_alloc,
3564 sizeof(*knew) * spec->num_kctl_alloc);
3565 kfree(spec->kctl_alloc);
3567 spec->kctl_alloc = knew;
3568 spec->num_kctl_alloc = num;
3571 knew = &spec->kctl_alloc[spec->num_kctl_used];
3572 *knew = alc880_control_templates[type];
3573 knew->name = kstrdup(name, GFP_KERNEL);
3576 knew->private_value = val;
3577 spec->num_kctl_used++;
3581 #define alc880_is_fixed_pin(nid) ((nid) >= 0x14 && (nid) <= 0x17)
3582 #define alc880_fixed_pin_idx(nid) ((nid) - 0x14)
3583 #define alc880_is_multi_pin(nid) ((nid) >= 0x18)
3584 #define alc880_multi_pin_idx(nid) ((nid) - 0x18)
3585 #define alc880_is_input_pin(nid) ((nid) >= 0x18)
3586 #define alc880_input_pin_idx(nid) ((nid) - 0x18)
3587 #define alc880_idx_to_dac(nid) ((nid) + 0x02)
3588 #define alc880_dac_to_idx(nid) ((nid) - 0x02)
3589 #define alc880_idx_to_mixer(nid) ((nid) + 0x0c)
3590 #define alc880_idx_to_selector(nid) ((nid) + 0x10)
3591 #define ALC880_PIN_CD_NID 0x1c
3593 /* fill in the dac_nids table from the parsed pin configuration */
3594 static int alc880_auto_fill_dac_nids(struct alc_spec *spec,
3595 const struct auto_pin_cfg *cfg)
3601 memset(assigned, 0, sizeof(assigned));
3602 spec->multiout.dac_nids = spec->private_dac_nids;
3604 /* check the pins hardwired to audio widget */
3605 for (i = 0; i < cfg->line_outs; i++) {
3606 nid = cfg->line_out_pins[i];
3607 if (alc880_is_fixed_pin(nid)) {
3608 int idx = alc880_fixed_pin_idx(nid);
3609 spec->multiout.dac_nids[i] = alc880_idx_to_dac(idx);
3613 /* left pins can be connect to any audio widget */
3614 for (i = 0; i < cfg->line_outs; i++) {
3615 nid = cfg->line_out_pins[i];
3616 if (alc880_is_fixed_pin(nid))
3618 /* search for an empty channel */
3619 for (j = 0; j < cfg->line_outs; j++) {
3621 spec->multiout.dac_nids[i] =
3622 alc880_idx_to_dac(j);
3628 spec->multiout.num_dacs = cfg->line_outs;
3632 /* add playback controls from the parsed DAC table */
3633 static int alc880_auto_create_multi_out_ctls(struct alc_spec *spec,
3634 const struct auto_pin_cfg *cfg)
3637 static const char *chname[4] = {
3638 "Front", "Surround", NULL /*CLFE*/, "Side"
3643 for (i = 0; i < cfg->line_outs; i++) {
3644 if (!spec->multiout.dac_nids[i])
3646 nid = alc880_idx_to_mixer(alc880_dac_to_idx(spec->multiout.dac_nids[i]));
3649 err = add_control(spec, ALC_CTL_WIDGET_VOL,
3650 "Center Playback Volume",
3651 HDA_COMPOSE_AMP_VAL(nid, 1, 0,
3655 err = add_control(spec, ALC_CTL_WIDGET_VOL,
3656 "LFE Playback Volume",
3657 HDA_COMPOSE_AMP_VAL(nid, 2, 0,
3661 err = add_control(spec, ALC_CTL_BIND_MUTE,
3662 "Center Playback Switch",
3663 HDA_COMPOSE_AMP_VAL(nid, 1, 2,
3667 err = add_control(spec, ALC_CTL_BIND_MUTE,
3668 "LFE Playback Switch",
3669 HDA_COMPOSE_AMP_VAL(nid, 2, 2,
3674 sprintf(name, "%s Playback Volume", chname[i]);
3675 err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
3676 HDA_COMPOSE_AMP_VAL(nid, 3, 0,
3680 sprintf(name, "%s Playback Switch", chname[i]);
3681 err = add_control(spec, ALC_CTL_BIND_MUTE, name,
3682 HDA_COMPOSE_AMP_VAL(nid, 3, 2,
3691 /* add playback controls for speaker and HP outputs */
3692 static int alc880_auto_create_extra_out(struct alc_spec *spec, hda_nid_t pin,
3702 if (alc880_is_fixed_pin(pin)) {
3703 nid = alc880_idx_to_dac(alc880_fixed_pin_idx(pin));
3704 /* specify the DAC as the extra output */
3705 if (!spec->multiout.hp_nid)
3706 spec->multiout.hp_nid = nid;
3708 spec->multiout.extra_out_nid[0] = nid;
3709 /* control HP volume/switch on the output mixer amp */
3710 nid = alc880_idx_to_mixer(alc880_fixed_pin_idx(pin));
3711 sprintf(name, "%s Playback Volume", pfx);
3712 err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
3713 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT));
3716 sprintf(name, "%s Playback Switch", pfx);
3717 err = add_control(spec, ALC_CTL_BIND_MUTE, name,
3718 HDA_COMPOSE_AMP_VAL(nid, 3, 2, HDA_INPUT));
3721 } else if (alc880_is_multi_pin(pin)) {
3722 /* set manual connection */
3723 /* we have only a switch on HP-out PIN */
3724 sprintf(name, "%s Playback Switch", pfx);
3725 err = add_control(spec, ALC_CTL_WIDGET_MUTE, name,
3726 HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_OUTPUT));
3733 /* create input playback/capture controls for the given pin */
3734 static int new_analog_input(struct alc_spec *spec, hda_nid_t pin,
3735 const char *ctlname,
3736 int idx, hda_nid_t mix_nid)
3741 sprintf(name, "%s Playback Volume", ctlname);
3742 err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
3743 HDA_COMPOSE_AMP_VAL(mix_nid, 3, idx, HDA_INPUT));
3746 sprintf(name, "%s Playback Switch", ctlname);
3747 err = add_control(spec, ALC_CTL_WIDGET_MUTE, name,
3748 HDA_COMPOSE_AMP_VAL(mix_nid, 3, idx, HDA_INPUT));
3754 /* create playback/capture controls for input pins */
3755 static int alc880_auto_create_analog_input_ctls(struct alc_spec *spec,
3756 const struct auto_pin_cfg *cfg)
3758 struct hda_input_mux *imux = &spec->private_imux;
3761 for (i = 0; i < AUTO_PIN_LAST; i++) {
3762 if (alc880_is_input_pin(cfg->input_pins[i])) {
3763 idx = alc880_input_pin_idx(cfg->input_pins[i]);
3764 err = new_analog_input(spec, cfg->input_pins[i],
3765 auto_pin_cfg_labels[i],
3769 imux->items[imux->num_items].label =
3770 auto_pin_cfg_labels[i];
3771 imux->items[imux->num_items].index =
3772 alc880_input_pin_idx(cfg->input_pins[i]);
3779 static void alc_set_pin_output(struct hda_codec *codec, hda_nid_t nid,
3780 unsigned int pin_type)
3782 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
3785 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
3789 static void alc880_auto_set_output_and_unmute(struct hda_codec *codec,
3790 hda_nid_t nid, int pin_type,
3793 alc_set_pin_output(codec, nid, pin_type);
3794 /* need the manual connection? */
3795 if (alc880_is_multi_pin(nid)) {
3796 struct alc_spec *spec = codec->spec;
3797 int idx = alc880_multi_pin_idx(nid);
3798 snd_hda_codec_write(codec, alc880_idx_to_selector(idx), 0,
3799 AC_VERB_SET_CONNECT_SEL,
3800 alc880_dac_to_idx(spec->multiout.dac_nids[dac_idx]));
3804 static int get_pin_type(int line_out_type)
3806 if (line_out_type == AUTO_PIN_HP_OUT)
3812 static void alc880_auto_init_multi_out(struct hda_codec *codec)
3814 struct alc_spec *spec = codec->spec;
3817 alc_subsystem_id(codec, 0x15, 0x1b, 0x14);
3818 for (i = 0; i < spec->autocfg.line_outs; i++) {
3819 hda_nid_t nid = spec->autocfg.line_out_pins[i];
3820 int pin_type = get_pin_type(spec->autocfg.line_out_type);
3821 alc880_auto_set_output_and_unmute(codec, nid, pin_type, i);
3825 static void alc880_auto_init_extra_out(struct hda_codec *codec)
3827 struct alc_spec *spec = codec->spec;
3830 pin = spec->autocfg.speaker_pins[0];
3831 if (pin) /* connect to front */
3832 alc880_auto_set_output_and_unmute(codec, pin, PIN_OUT, 0);
3833 pin = spec->autocfg.hp_pins[0];
3834 if (pin) /* connect to front */
3835 alc880_auto_set_output_and_unmute(codec, pin, PIN_HP, 0);
3838 static void alc880_auto_init_analog_input(struct hda_codec *codec)
3840 struct alc_spec *spec = codec->spec;
3843 for (i = 0; i < AUTO_PIN_LAST; i++) {
3844 hda_nid_t nid = spec->autocfg.input_pins[i];
3845 if (alc880_is_input_pin(nid)) {
3846 snd_hda_codec_write(codec, nid, 0,
3847 AC_VERB_SET_PIN_WIDGET_CONTROL,
3848 i <= AUTO_PIN_FRONT_MIC ?
3849 PIN_VREF80 : PIN_IN);
3850 if (nid != ALC880_PIN_CD_NID)
3851 snd_hda_codec_write(codec, nid, 0,
3852 AC_VERB_SET_AMP_GAIN_MUTE,
3858 /* parse the BIOS configuration and set up the alc_spec */
3859 /* return 1 if successful, 0 if the proper config is not found,
3860 * or a negative error code
3862 static int alc880_parse_auto_config(struct hda_codec *codec)
3864 struct alc_spec *spec = codec->spec;
3866 static hda_nid_t alc880_ignore[] = { 0x1d, 0 };
3868 err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
3872 if (!spec->autocfg.line_outs)
3873 return 0; /* can't find valid BIOS pin config */
3875 err = alc880_auto_fill_dac_nids(spec, &spec->autocfg);
3878 err = alc880_auto_create_multi_out_ctls(spec, &spec->autocfg);
3881 err = alc880_auto_create_extra_out(spec,
3882 spec->autocfg.speaker_pins[0],
3886 err = alc880_auto_create_extra_out(spec, spec->autocfg.hp_pins[0],
3890 err = alc880_auto_create_analog_input_ctls(spec, &spec->autocfg);
3894 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
3896 if (spec->autocfg.dig_out_pin)
3897 spec->multiout.dig_out_nid = ALC880_DIGOUT_NID;
3898 if (spec->autocfg.dig_in_pin)
3899 spec->dig_in_nid = ALC880_DIGIN_NID;
3901 if (spec->kctl_alloc)
3902 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
3904 spec->init_verbs[spec->num_init_verbs++] = alc880_volume_init_verbs;
3906 spec->num_mux_defs = 1;
3907 spec->input_mux = &spec->private_imux;
3909 store_pin_configs(codec);
3913 /* additional initialization for auto-configuration model */
3914 static void alc880_auto_init(struct hda_codec *codec)
3916 struct alc_spec *spec = codec->spec;
3917 alc880_auto_init_multi_out(codec);
3918 alc880_auto_init_extra_out(codec);
3919 alc880_auto_init_analog_input(codec);
3920 if (spec->unsol_event)
3921 alc_inithook(codec);
3925 * OK, here we have finally the patch for ALC880
3928 static int patch_alc880(struct hda_codec *codec)
3930 struct alc_spec *spec;
3934 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
3940 board_config = snd_hda_check_board_config(codec, ALC880_MODEL_LAST,
3943 if (board_config < 0) {
3944 printk(KERN_INFO "hda_codec: Unknown model for ALC880, "
3945 "trying auto-probe from BIOS...\n");
3946 board_config = ALC880_AUTO;
3949 if (board_config == ALC880_AUTO) {
3950 /* automatic parse from the BIOS config */
3951 err = alc880_parse_auto_config(codec);
3957 "hda_codec: Cannot set up configuration "
3958 "from BIOS. Using 3-stack mode...\n");
3959 board_config = ALC880_3ST;
3963 if (board_config != ALC880_AUTO)
3964 setup_preset(spec, &alc880_presets[board_config]);
3966 spec->stream_name_analog = "ALC880 Analog";
3967 spec->stream_analog_playback = &alc880_pcm_analog_playback;
3968 spec->stream_analog_capture = &alc880_pcm_analog_capture;
3969 spec->stream_analog_alt_capture = &alc880_pcm_analog_alt_capture;
3971 spec->stream_name_digital = "ALC880 Digital";
3972 spec->stream_digital_playback = &alc880_pcm_digital_playback;
3973 spec->stream_digital_capture = &alc880_pcm_digital_capture;
3975 if (!spec->adc_nids && spec->input_mux) {
3976 /* check whether NID 0x07 is valid */
3977 unsigned int wcap = get_wcaps(codec, alc880_adc_nids[0]);
3979 wcap = (wcap & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT;
3980 if (wcap != AC_WID_AUD_IN) {
3981 spec->adc_nids = alc880_adc_nids_alt;
3982 spec->num_adc_nids = ARRAY_SIZE(alc880_adc_nids_alt);
3983 spec->mixers[spec->num_mixers] =
3984 alc880_capture_alt_mixer;
3987 spec->adc_nids = alc880_adc_nids;
3988 spec->num_adc_nids = ARRAY_SIZE(alc880_adc_nids);
3989 spec->mixers[spec->num_mixers] = alc880_capture_mixer;
3994 spec->vmaster_nid = 0x0c;
3996 codec->patch_ops = alc_patch_ops;
3997 if (board_config == ALC880_AUTO)
3998 spec->init_hook = alc880_auto_init;
3999 #ifdef CONFIG_SND_HDA_POWER_SAVE
4000 if (!spec->loopback.amplist)
4001 spec->loopback.amplist = alc880_loopbacks;
4012 static hda_nid_t alc260_dac_nids[1] = {
4017 static hda_nid_t alc260_adc_nids[1] = {
4022 static hda_nid_t alc260_adc_nids_alt[1] = {
4027 static hda_nid_t alc260_hp_adc_nids[2] = {
4032 /* NIDs used when simultaneous access to both ADCs makes sense. Note that
4033 * alc260_capture_mixer assumes ADC0 (nid 0x04) is the first ADC.
4035 static hda_nid_t alc260_dual_adc_nids[2] = {
4040 #define ALC260_DIGOUT_NID 0x03
4041 #define ALC260_DIGIN_NID 0x06
4043 static struct hda_input_mux alc260_capture_source = {
4047 { "Front Mic", 0x1 },
4053 /* On Fujitsu S702x laptops capture only makes sense from Mic/LineIn jack,
4054 * headphone jack and the internal CD lines since these are the only pins at
4055 * which audio can appear. For flexibility, also allow the option of
4056 * recording the mixer output on the second ADC (ADC0 doesn't have a
4057 * connection to the mixer output).
4059 static struct hda_input_mux alc260_fujitsu_capture_sources[2] = {
4063 { "Mic/Line", 0x0 },
4065 { "Headphone", 0x2 },
4071 { "Mic/Line", 0x0 },
4073 { "Headphone", 0x2 },
4080 /* Acer TravelMate(/Extensa/Aspire) notebooks have similar configuration to
4081 * the Fujitsu S702x, but jacks are marked differently.
4083 static struct hda_input_mux alc260_acer_capture_sources[2] = {
4090 { "Headphone", 0x5 },
4099 { "Headphone", 0x6 },
4105 * This is just place-holder, so there's something for alc_build_pcms to look
4106 * at when it calculates the maximum number of channels. ALC260 has no mixer
4107 * element which allows changing the channel mode, so the verb list is
4110 static struct hda_channel_mode alc260_modes[1] = {
4115 /* Mixer combinations
4117 * basic: base_output + input + pc_beep + capture
4118 * HP: base_output + input + capture_alt
4119 * HP_3013: hp_3013 + input + capture
4120 * fujitsu: fujitsu + capture
4121 * acer: acer + capture
4124 static struct snd_kcontrol_new alc260_base_output_mixer[] = {
4125 HDA_CODEC_VOLUME("Front Playback Volume", 0x08, 0x0, HDA_OUTPUT),
4126 HDA_BIND_MUTE("Front Playback Switch", 0x08, 2, HDA_INPUT),
4127 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x09, 0x0, HDA_OUTPUT),
4128 HDA_BIND_MUTE("Headphone Playback Switch", 0x09, 2, HDA_INPUT),
4129 HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x0a, 1, 0x0, HDA_OUTPUT),
4130 HDA_BIND_MUTE_MONO("Mono Playback Switch", 0x0a, 1, 2, HDA_INPUT),
4134 static struct snd_kcontrol_new alc260_input_mixer[] = {
4135 HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT),
4136 HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT),
4137 HDA_CODEC_VOLUME("Line Playback Volume", 0x07, 0x02, HDA_INPUT),
4138 HDA_CODEC_MUTE("Line Playback Switch", 0x07, 0x02, HDA_INPUT),
4139 HDA_CODEC_VOLUME("Mic Playback Volume", 0x07, 0x0, HDA_INPUT),
4140 HDA_CODEC_MUTE("Mic Playback Switch", 0x07, 0x0, HDA_INPUT),
4141 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x07, 0x01, HDA_INPUT),
4142 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x07, 0x01, HDA_INPUT),
4146 static struct snd_kcontrol_new alc260_pc_beep_mixer[] = {
4147 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x07, 0x05, HDA_INPUT),
4148 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x07, 0x05, HDA_INPUT),
4152 /* update HP, line and mono out pins according to the master switch */
4153 static void alc260_hp_master_update(struct hda_codec *codec,
4154 hda_nid_t hp, hda_nid_t line,
4157 struct alc_spec *spec = codec->spec;
4158 unsigned int val = spec->master_sw ? PIN_HP : 0;
4159 /* change HP and line-out pins */
4160 snd_hda_codec_write(codec, 0x0f, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
4162 snd_hda_codec_write(codec, 0x10, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
4164 /* mono (speaker) depending on the HP jack sense */
4165 val = (val && !spec->jack_present) ? PIN_OUT : 0;
4166 snd_hda_codec_write(codec, 0x11, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
4170 static int alc260_hp_master_sw_get(struct snd_kcontrol *kcontrol,
4171 struct snd_ctl_elem_value *ucontrol)
4173 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
4174 struct alc_spec *spec = codec->spec;
4175 *ucontrol->value.integer.value = spec->master_sw;
4179 static int alc260_hp_master_sw_put(struct snd_kcontrol *kcontrol,
4180 struct snd_ctl_elem_value *ucontrol)
4182 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
4183 struct alc_spec *spec = codec->spec;
4184 int val = !!*ucontrol->value.integer.value;
4185 hda_nid_t hp, line, mono;
4187 if (val == spec->master_sw)
4189 spec->master_sw = val;
4190 hp = (kcontrol->private_value >> 16) & 0xff;
4191 line = (kcontrol->private_value >> 8) & 0xff;
4192 mono = kcontrol->private_value & 0xff;
4193 alc260_hp_master_update(codec, hp, line, mono);
4197 static struct snd_kcontrol_new alc260_hp_output_mixer[] = {
4199 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
4200 .name = "Master Playback Switch",
4201 .info = snd_ctl_boolean_mono_info,
4202 .get = alc260_hp_master_sw_get,
4203 .put = alc260_hp_master_sw_put,
4204 .private_value = (0x0f << 16) | (0x10 << 8) | 0x11
4206 HDA_CODEC_VOLUME("Front Playback Volume", 0x08, 0x0, HDA_OUTPUT),
4207 HDA_BIND_MUTE("Front Playback Switch", 0x08, 2, HDA_INPUT),
4208 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x09, 0x0, HDA_OUTPUT),
4209 HDA_BIND_MUTE("Headphone Playback Switch", 0x09, 2, HDA_INPUT),
4210 HDA_CODEC_VOLUME_MONO("Speaker Playback Volume", 0x0a, 1, 0x0,
4212 HDA_BIND_MUTE_MONO("Speaker Playback Switch", 0x0a, 1, 2, HDA_INPUT),
4216 static struct hda_verb alc260_hp_unsol_verbs[] = {
4217 {0x10, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
4221 static void alc260_hp_automute(struct hda_codec *codec)
4223 struct alc_spec *spec = codec->spec;
4224 unsigned int present;
4226 present = snd_hda_codec_read(codec, 0x10, 0,
4227 AC_VERB_GET_PIN_SENSE, 0);
4228 spec->jack_present = (present & AC_PINSENSE_PRESENCE) != 0;
4229 alc260_hp_master_update(codec, 0x0f, 0x10, 0x11);
4232 static void alc260_hp_unsol_event(struct hda_codec *codec, unsigned int res)
4234 if ((res >> 26) == ALC880_HP_EVENT)
4235 alc260_hp_automute(codec);
4238 static struct snd_kcontrol_new alc260_hp_3013_mixer[] = {
4240 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
4241 .name = "Master Playback Switch",
4242 .info = snd_ctl_boolean_mono_info,
4243 .get = alc260_hp_master_sw_get,
4244 .put = alc260_hp_master_sw_put,
4245 .private_value = (0x10 << 16) | (0x15 << 8) | 0x11
4247 HDA_CODEC_VOLUME("Front Playback Volume", 0x09, 0x0, HDA_OUTPUT),
4248 HDA_CODEC_MUTE("Front Playback Switch", 0x10, 0x0, HDA_OUTPUT),
4249 HDA_CODEC_VOLUME("Aux-In Playback Volume", 0x07, 0x06, HDA_INPUT),
4250 HDA_CODEC_MUTE("Aux-In Playback Switch", 0x07, 0x06, HDA_INPUT),
4251 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x08, 0x0, HDA_OUTPUT),
4252 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT),
4253 HDA_CODEC_VOLUME_MONO("Speaker Playback Volume", 0x0a, 1, 0x0, HDA_OUTPUT),
4254 HDA_CODEC_MUTE_MONO("Speaker Playback Switch", 0x11, 1, 0x0, HDA_OUTPUT),
4258 static struct hda_bind_ctls alc260_dc7600_bind_master_vol = {
4259 .ops = &snd_hda_bind_vol,
4261 HDA_COMPOSE_AMP_VAL(0x08, 3, 0, HDA_OUTPUT),
4262 HDA_COMPOSE_AMP_VAL(0x09, 3, 0, HDA_OUTPUT),
4263 HDA_COMPOSE_AMP_VAL(0x0a, 3, 0, HDA_OUTPUT),
4268 static struct hda_bind_ctls alc260_dc7600_bind_switch = {
4269 .ops = &snd_hda_bind_sw,
4271 HDA_COMPOSE_AMP_VAL(0x11, 3, 0, HDA_OUTPUT),
4272 HDA_COMPOSE_AMP_VAL(0x15, 3, 0, HDA_OUTPUT),
4277 static struct snd_kcontrol_new alc260_hp_dc7600_mixer[] = {
4278 HDA_BIND_VOL("Master Playback Volume", &alc260_dc7600_bind_master_vol),
4279 HDA_BIND_SW("LineOut Playback Switch", &alc260_dc7600_bind_switch),
4280 HDA_CODEC_MUTE("Speaker Playback Switch", 0x0f, 0x0, HDA_OUTPUT),
4281 HDA_CODEC_MUTE("Headphone Playback Switch", 0x10, 0x0, HDA_OUTPUT),
4285 static struct hda_verb alc260_hp_3013_unsol_verbs[] = {
4286 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
4290 static void alc260_hp_3013_automute(struct hda_codec *codec)
4292 struct alc_spec *spec = codec->spec;
4293 unsigned int present;
4295 present = snd_hda_codec_read(codec, 0x15, 0,
4296 AC_VERB_GET_PIN_SENSE, 0);
4297 spec->jack_present = (present & AC_PINSENSE_PRESENCE) != 0;
4298 alc260_hp_master_update(codec, 0x10, 0x15, 0x11);
4301 static void alc260_hp_3013_unsol_event(struct hda_codec *codec,
4304 if ((res >> 26) == ALC880_HP_EVENT)
4305 alc260_hp_3013_automute(codec);
4308 static void alc260_hp_3012_automute(struct hda_codec *codec)
4310 unsigned int present, bits;
4312 present = snd_hda_codec_read(codec, 0x10, 0,
4313 AC_VERB_GET_PIN_SENSE, 0) & AC_PINSENSE_PRESENCE;
4315 bits = present ? 0 : PIN_OUT;
4316 snd_hda_codec_write(codec, 0x0f, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
4318 snd_hda_codec_write(codec, 0x11, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
4320 snd_hda_codec_write(codec, 0x15, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
4324 static void alc260_hp_3012_unsol_event(struct hda_codec *codec,
4327 if ((res >> 26) == ALC880_HP_EVENT)
4328 alc260_hp_3012_automute(codec);
4331 /* Fujitsu S702x series laptops. ALC260 pin usage: Mic/Line jack = 0x12,
4332 * HP jack = 0x14, CD audio = 0x16, internal speaker = 0x10.
4334 static struct snd_kcontrol_new alc260_fujitsu_mixer[] = {
4335 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x08, 0x0, HDA_OUTPUT),
4336 HDA_BIND_MUTE("Headphone Playback Switch", 0x08, 2, HDA_INPUT),
4337 ALC_PIN_MODE("Headphone Jack Mode", 0x14, ALC_PIN_DIR_INOUT),
4338 HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT),
4339 HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT),
4340 HDA_CODEC_VOLUME("Mic/Line Playback Volume", 0x07, 0x0, HDA_INPUT),
4341 HDA_CODEC_MUTE("Mic/Line Playback Switch", 0x07, 0x0, HDA_INPUT),
4342 ALC_PIN_MODE("Mic/Line Jack Mode", 0x12, ALC_PIN_DIR_IN),
4343 HDA_CODEC_VOLUME("Beep Playback Volume", 0x07, 0x05, HDA_INPUT),
4344 HDA_CODEC_MUTE("Beep Playback Switch", 0x07, 0x05, HDA_INPUT),
4345 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x09, 0x0, HDA_OUTPUT),
4346 HDA_BIND_MUTE("Speaker Playback Switch", 0x09, 2, HDA_INPUT),
4350 /* Mixer for Acer TravelMate(/Extensa/Aspire) notebooks. Note that current
4351 * versions of the ALC260 don't act on requests to enable mic bias from NID
4352 * 0x0f (used to drive the headphone jack in these laptops). The ALC260
4353 * datasheet doesn't mention this restriction. At this stage it's not clear
4354 * whether this behaviour is intentional or is a hardware bug in chip
4355 * revisions available in early 2006. Therefore for now allow the
4356 * "Headphone Jack Mode" control to span all choices, but if it turns out
4357 * that the lack of mic bias for this NID is intentional we could change the
4358 * mode from ALC_PIN_DIR_INOUT to ALC_PIN_DIR_INOUT_NOMICBIAS.
4360 * In addition, Acer TravelMate(/Extensa/Aspire) notebooks in early 2006
4361 * don't appear to make the mic bias available from the "line" jack, even
4362 * though the NID used for this jack (0x14) can supply it. The theory is
4363 * that perhaps Acer have included blocking capacitors between the ALC260
4364 * and the output jack. If this turns out to be the case for all such
4365 * models the "Line Jack Mode" mode could be changed from ALC_PIN_DIR_INOUT
4366 * to ALC_PIN_DIR_INOUT_NOMICBIAS.
4368 * The C20x Tablet series have a mono internal speaker which is controlled
4369 * via the chip's Mono sum widget and pin complex, so include the necessary
4370 * controls for such models. On models without a "mono speaker" the control
4371 * won't do anything.
4373 static struct snd_kcontrol_new alc260_acer_mixer[] = {
4374 HDA_CODEC_VOLUME("Master Playback Volume", 0x08, 0x0, HDA_OUTPUT),
4375 HDA_BIND_MUTE("Master Playback Switch", 0x08, 2, HDA_INPUT),
4376 ALC_PIN_MODE("Headphone Jack Mode", 0x0f, ALC_PIN_DIR_INOUT),
4377 HDA_CODEC_VOLUME_MONO("Speaker Playback Volume", 0x0a, 1, 0x0,
4379 HDA_BIND_MUTE_MONO("Speaker Playback Switch", 0x0a, 1, 2,
4381 HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT),
4382 HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT),
4383 HDA_CODEC_VOLUME("Mic Playback Volume", 0x07, 0x0, HDA_INPUT),
4384 HDA_CODEC_MUTE("Mic Playback Switch", 0x07, 0x0, HDA_INPUT),
4385 ALC_PIN_MODE("Mic Jack Mode", 0x12, ALC_PIN_DIR_IN),
4386 HDA_CODEC_VOLUME("Line Playback Volume", 0x07, 0x02, HDA_INPUT),
4387 HDA_CODEC_MUTE("Line Playback Switch", 0x07, 0x02, HDA_INPUT),
4388 ALC_PIN_MODE("Line Jack Mode", 0x14, ALC_PIN_DIR_INOUT),
4389 HDA_CODEC_VOLUME("Beep Playback Volume", 0x07, 0x05, HDA_INPUT),
4390 HDA_CODEC_MUTE("Beep Playback Switch", 0x07, 0x05, HDA_INPUT),
4394 /* Packard bell V7900 ALC260 pin usage: HP = 0x0f, Mic jack = 0x12,
4395 * Line In jack = 0x14, CD audio = 0x16, pc beep = 0x17.
4397 static struct snd_kcontrol_new alc260_will_mixer[] = {
4398 HDA_CODEC_VOLUME("Master Playback Volume", 0x08, 0x0, HDA_OUTPUT),
4399 HDA_BIND_MUTE("Master Playback Switch", 0x08, 0x2, HDA_INPUT),
4400 HDA_CODEC_VOLUME("Mic Playback Volume", 0x07, 0x0, HDA_INPUT),
4401 HDA_CODEC_MUTE("Mic Playback Switch", 0x07, 0x0, HDA_INPUT),
4402 ALC_PIN_MODE("Mic Jack Mode", 0x12, ALC_PIN_DIR_IN),
4403 HDA_CODEC_VOLUME("Line Playback Volume", 0x07, 0x02, HDA_INPUT),
4404 HDA_CODEC_MUTE("Line Playback Switch", 0x07, 0x02, HDA_INPUT),
4405 ALC_PIN_MODE("Line Jack Mode", 0x14, ALC_PIN_DIR_INOUT),
4406 HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT),
4407 HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT),
4408 HDA_CODEC_VOLUME("Beep Playback Volume", 0x07, 0x05, HDA_INPUT),
4409 HDA_CODEC_MUTE("Beep Playback Switch", 0x07, 0x05, HDA_INPUT),
4413 /* Replacer 672V ALC260 pin usage: Mic jack = 0x12,
4414 * Line In jack = 0x14, ATAPI Mic = 0x13, speaker = 0x0f.
4416 static struct snd_kcontrol_new alc260_replacer_672v_mixer[] = {
4417 HDA_CODEC_VOLUME("Master Playback Volume", 0x08, 0x0, HDA_OUTPUT),
4418 HDA_BIND_MUTE("Master Playback Switch", 0x08, 0x2, HDA_INPUT),
4419 HDA_CODEC_VOLUME("Mic Playback Volume", 0x07, 0x0, HDA_INPUT),
4420 HDA_CODEC_MUTE("Mic Playback Switch", 0x07, 0x0, HDA_INPUT),
4421 ALC_PIN_MODE("Mic Jack Mode", 0x12, ALC_PIN_DIR_IN),
4422 HDA_CODEC_VOLUME("ATAPI Mic Playback Volume", 0x07, 0x1, HDA_INPUT),
4423 HDA_CODEC_MUTE("ATATI Mic Playback Switch", 0x07, 0x1, HDA_INPUT),
4424 HDA_CODEC_VOLUME("Line Playback Volume", 0x07, 0x02, HDA_INPUT),
4425 HDA_CODEC_MUTE("Line Playback Switch", 0x07, 0x02, HDA_INPUT),
4426 ALC_PIN_MODE("Line Jack Mode", 0x14, ALC_PIN_DIR_INOUT),
4430 /* capture mixer elements */
4431 static struct snd_kcontrol_new alc260_capture_mixer[] = {
4432 HDA_CODEC_VOLUME("Capture Volume", 0x04, 0x0, HDA_INPUT),
4433 HDA_CODEC_MUTE("Capture Switch", 0x04, 0x0, HDA_INPUT),
4434 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x05, 0x0, HDA_INPUT),
4435 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x05, 0x0, HDA_INPUT),
4437 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
4438 /* The multiple "Capture Source" controls confuse alsamixer
4439 * So call somewhat different..
4441 /* .name = "Capture Source", */
4442 .name = "Input Source",
4444 .info = alc_mux_enum_info,
4445 .get = alc_mux_enum_get,
4446 .put = alc_mux_enum_put,
4451 static struct snd_kcontrol_new alc260_capture_alt_mixer[] = {
4452 HDA_CODEC_VOLUME("Capture Volume", 0x05, 0x0, HDA_INPUT),
4453 HDA_CODEC_MUTE("Capture Switch", 0x05, 0x0, HDA_INPUT),
4455 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
4456 /* The multiple "Capture Source" controls confuse alsamixer
4457 * So call somewhat different..
4459 /* .name = "Capture Source", */
4460 .name = "Input Source",
4462 .info = alc_mux_enum_info,
4463 .get = alc_mux_enum_get,
4464 .put = alc_mux_enum_put,
4470 * initialization verbs
4472 static struct hda_verb alc260_init_verbs[] = {
4473 /* Line In pin widget for input */
4474 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
4475 /* CD pin widget for input */
4476 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
4477 /* Mic1 (rear panel) pin widget for input and vref at 80% */
4478 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
4479 /* Mic2 (front panel) pin widget for input and vref at 80% */
4480 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
4481 /* LINE-2 is used for line-out in rear */
4482 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4483 /* select line-out */
4484 {0x0e, AC_VERB_SET_CONNECT_SEL, 0x00},
4486 {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4488 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
4490 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4491 /* mute capture amp left and right */
4492 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4493 /* set connection select to line in (default select for this ADC) */
4494 {0x04, AC_VERB_SET_CONNECT_SEL, 0x02},
4495 /* mute capture amp left and right */
4496 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4497 /* set connection select to line in (default select for this ADC) */
4498 {0x05, AC_VERB_SET_CONNECT_SEL, 0x02},
4499 /* set vol=0 Line-Out mixer amp left and right */
4500 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4501 /* unmute pin widget amp left and right (no gain on this amp) */
4502 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4503 /* set vol=0 HP mixer amp left and right */
4504 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4505 /* unmute pin widget amp left and right (no gain on this amp) */
4506 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4507 /* set vol=0 Mono mixer amp left and right */
4508 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4509 /* unmute pin widget amp left and right (no gain on this amp) */
4510 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4511 /* unmute LINE-2 out pin */
4512 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4513 /* Amp Indexes: CD = 0x04, Line In 1 = 0x02, Mic 1 = 0x00 &
4516 /* mute analog inputs */
4517 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4518 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4519 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
4520 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
4521 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
4522 /* Amp Indexes: DAC = 0x01 & mixer = 0x00 */
4523 /* mute Front out path */
4524 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4525 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4526 /* mute Headphone out path */
4527 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4528 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4529 /* mute Mono out path */
4530 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4531 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4535 #if 0 /* should be identical with alc260_init_verbs? */
4536 static struct hda_verb alc260_hp_init_verbs[] = {
4537 /* Headphone and output */
4538 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0},
4540 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
4541 /* Mic1 (rear panel) pin widget for input and vref at 80% */
4542 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
4543 /* Mic2 (front panel) pin widget for input and vref at 80% */
4544 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
4545 /* Line In pin widget for input */
4546 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
4547 /* Line-2 pin widget for output */
4548 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
4549 /* CD pin widget for input */
4550 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
4551 /* unmute amp left and right */
4552 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000},
4553 /* set connection select to line in (default select for this ADC) */
4554 {0x04, AC_VERB_SET_CONNECT_SEL, 0x02},
4555 /* unmute Line-Out mixer amp left and right (volume = 0) */
4556 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
4557 /* mute pin widget amp left and right (no gain on this amp) */
4558 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
4559 /* unmute HP mixer amp left and right (volume = 0) */
4560 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
4561 /* mute pin widget amp left and right (no gain on this amp) */
4562 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
4563 /* Amp Indexes: CD = 0x04, Line In 1 = 0x02, Mic 1 = 0x00 &
4566 /* mute analog inputs */
4567 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4568 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4569 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
4570 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
4571 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
4572 /* Amp Indexes: DAC = 0x01 & mixer = 0x00 */
4573 /* Unmute Front out path */
4574 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
4575 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
4576 /* Unmute Headphone out path */
4577 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
4578 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
4579 /* Unmute Mono out path */
4580 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
4581 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
4586 static struct hda_verb alc260_hp_3013_init_verbs[] = {
4587 /* Line out and output */
4588 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
4590 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
4591 /* Mic1 (rear panel) pin widget for input and vref at 80% */
4592 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
4593 /* Mic2 (front panel) pin widget for input and vref at 80% */
4594 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
4595 /* Line In pin widget for input */
4596 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
4597 /* Headphone pin widget for output */
4598 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0},
4599 /* CD pin widget for input */
4600 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
4601 /* unmute amp left and right */
4602 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000},
4603 /* set connection select to line in (default select for this ADC) */
4604 {0x04, AC_VERB_SET_CONNECT_SEL, 0x02},
4605 /* unmute Line-Out mixer amp left and right (volume = 0) */
4606 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
4607 /* mute pin widget amp left and right (no gain on this amp) */
4608 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
4609 /* unmute HP mixer amp left and right (volume = 0) */
4610 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
4611 /* mute pin widget amp left and right (no gain on this amp) */
4612 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
4613 /* Amp Indexes: CD = 0x04, Line In 1 = 0x02, Mic 1 = 0x00 &
4616 /* mute analog inputs */
4617 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4618 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4619 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
4620 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
4621 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
4622 /* Amp Indexes: DAC = 0x01 & mixer = 0x00 */
4623 /* Unmute Front out path */
4624 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
4625 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
4626 /* Unmute Headphone out path */
4627 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
4628 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
4629 /* Unmute Mono out path */
4630 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
4631 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
4635 /* Initialisation sequence for ALC260 as configured in Fujitsu S702x
4636 * laptops. ALC260 pin usage: Mic/Line jack = 0x12, HP jack = 0x14, CD
4637 * audio = 0x16, internal speaker = 0x10.
4639 static struct hda_verb alc260_fujitsu_init_verbs[] = {
4640 /* Disable all GPIOs */
4641 {0x01, AC_VERB_SET_GPIO_MASK, 0},
4642 /* Internal speaker is connected to headphone pin */
4643 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
4644 /* Headphone/Line-out jack connects to Line1 pin; make it an output */
4645 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4646 /* Mic/Line-in jack is connected to mic1 pin, so make it an input */
4647 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
4648 /* Ensure all other unused pins are disabled and muted. */
4649 {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
4650 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4651 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
4652 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4653 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
4654 {0x13, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4655 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
4656 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4658 /* Disable digital (SPDIF) pins */
4659 {0x03, AC_VERB_SET_DIGI_CONVERT_1, 0},
4660 {0x06, AC_VERB_SET_DIGI_CONVERT_1, 0},
4662 /* Ensure Line1 pin widget takes its input from the OUT1 sum bus
4663 * when acting as an output.
4665 {0x0d, AC_VERB_SET_CONNECT_SEL, 0},
4667 /* Start with output sum widgets muted and their output gains at min */
4668 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4669 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4670 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4671 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4672 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4673 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4674 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4675 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4676 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4678 /* Unmute HP pin widget amp left and right (no equiv mixer ctrl) */
4679 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4680 /* Unmute Line1 pin widget output buffer since it starts as an output.
4681 * If the pin mode is changed by the user the pin mode control will
4682 * take care of enabling the pin's input/output buffers as needed.
4683 * Therefore there's no need to enable the input buffer at this
4686 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4687 /* Unmute input buffer of pin widget used for Line-in (no equiv
4690 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4692 /* Mute capture amp left and right */
4693 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4694 /* Set ADC connection select to match default mixer setting - line
4697 {0x04, AC_VERB_SET_CONNECT_SEL, 0x00},
4699 /* Do the same for the second ADC: mute capture input amp and
4700 * set ADC connection to line in (on mic1 pin)
4702 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4703 {0x05, AC_VERB_SET_CONNECT_SEL, 0x00},
4705 /* Mute all inputs to mixer widget (even unconnected ones) */
4706 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* mic1 pin */
4707 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, /* mic2 pin */
4708 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, /* line1 pin */
4709 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, /* line2 pin */
4710 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, /* CD pin */
4711 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)}, /* Beep-gen pin */
4712 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)}, /* Line-out pin */
4713 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)}, /* HP-pin pin */
4718 /* Initialisation sequence for ALC260 as configured in Acer TravelMate and
4719 * similar laptops (adapted from Fujitsu init verbs).
4721 static struct hda_verb alc260_acer_init_verbs[] = {
4722 /* On TravelMate laptops, GPIO 0 enables the internal speaker and
4723 * the headphone jack. Turn this on and rely on the standard mute
4724 * methods whenever the user wants to turn these outputs off.
4726 {0x01, AC_VERB_SET_GPIO_MASK, 0x01},
4727 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
4728 {0x01, AC_VERB_SET_GPIO_DATA, 0x01},
4729 /* Internal speaker/Headphone jack is connected to Line-out pin */
4730 {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
4731 /* Internal microphone/Mic jack is connected to Mic1 pin */
4732 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF50},
4733 /* Line In jack is connected to Line1 pin */
4734 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
4735 /* Some Acers (eg: C20x Tablets) use Mono pin for internal speaker */
4736 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
4737 /* Ensure all other unused pins are disabled and muted. */
4738 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
4739 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4740 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
4741 {0x13, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4742 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
4743 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4744 /* Disable digital (SPDIF) pins */
4745 {0x03, AC_VERB_SET_DIGI_CONVERT_1, 0},
4746 {0x06, AC_VERB_SET_DIGI_CONVERT_1, 0},
4748 /* Ensure Mic1 and Line1 pin widgets take input from the OUT1 sum
4749 * bus when acting as outputs.
4751 {0x0b, AC_VERB_SET_CONNECT_SEL, 0},
4752 {0x0d, AC_VERB_SET_CONNECT_SEL, 0},
4754 /* Start with output sum widgets muted and their output gains at min */
4755 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4756 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4757 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4758 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4759 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4760 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4761 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4762 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4763 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4765 /* Unmute Line-out pin widget amp left and right
4766 * (no equiv mixer ctrl)
4768 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4769 /* Unmute mono pin widget amp output (no equiv mixer ctrl) */
4770 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4771 /* Unmute Mic1 and Line1 pin widget input buffers since they start as
4772 * inputs. If the pin mode is changed by the user the pin mode control
4773 * will take care of enabling the pin's input/output buffers as needed.
4774 * Therefore there's no need to enable the input buffer at this
4777 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4778 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4780 /* Mute capture amp left and right */
4781 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4782 /* Set ADC connection select to match default mixer setting - mic
4785 {0x04, AC_VERB_SET_CONNECT_SEL, 0x00},
4787 /* Do similar with the second ADC: mute capture input amp and
4788 * set ADC connection to mic to match ALSA's default state.
4790 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4791 {0x05, AC_VERB_SET_CONNECT_SEL, 0x00},
4793 /* Mute all inputs to mixer widget (even unconnected ones) */
4794 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* mic1 pin */
4795 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, /* mic2 pin */
4796 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, /* line1 pin */
4797 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, /* line2 pin */
4798 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, /* CD pin */
4799 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)}, /* Beep-gen pin */
4800 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)}, /* Line-out pin */
4801 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)}, /* HP-pin pin */
4806 static struct hda_verb alc260_will_verbs[] = {
4807 {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
4808 {0x0b, AC_VERB_SET_CONNECT_SEL, 0x00},
4809 {0x0d, AC_VERB_SET_CONNECT_SEL, 0x00},
4810 {0x0f, AC_VERB_SET_EAPD_BTLENABLE, 0x02},
4811 {0x1a, AC_VERB_SET_COEF_INDEX, 0x07},
4812 {0x1a, AC_VERB_SET_PROC_COEF, 0x3040},
4816 static struct hda_verb alc260_replacer_672v_verbs[] = {
4817 {0x0f, AC_VERB_SET_EAPD_BTLENABLE, 0x02},
4818 {0x1a, AC_VERB_SET_COEF_INDEX, 0x07},
4819 {0x1a, AC_VERB_SET_PROC_COEF, 0x3050},
4821 {0x01, AC_VERB_SET_GPIO_MASK, 0x01},
4822 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
4823 {0x01, AC_VERB_SET_GPIO_DATA, 0x00},
4825 {0x0f, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
4829 /* toggle speaker-output according to the hp-jack state */
4830 static void alc260_replacer_672v_automute(struct hda_codec *codec)
4832 unsigned int present;
4834 /* speaker --> GPIO Data 0, hp or spdif --> GPIO data 1 */
4835 present = snd_hda_codec_read(codec, 0x0f, 0,
4836 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
4838 snd_hda_codec_write_cache(codec, 0x01, 0,
4839 AC_VERB_SET_GPIO_DATA, 1);
4840 snd_hda_codec_write_cache(codec, 0x0f, 0,
4841 AC_VERB_SET_PIN_WIDGET_CONTROL,
4844 snd_hda_codec_write_cache(codec, 0x01, 0,
4845 AC_VERB_SET_GPIO_DATA, 0);
4846 snd_hda_codec_write_cache(codec, 0x0f, 0,
4847 AC_VERB_SET_PIN_WIDGET_CONTROL,
4852 static void alc260_replacer_672v_unsol_event(struct hda_codec *codec,
4855 if ((res >> 26) == ALC880_HP_EVENT)
4856 alc260_replacer_672v_automute(codec);
4859 static struct hda_verb alc260_hp_dc7600_verbs[] = {
4860 {0x05, AC_VERB_SET_CONNECT_SEL, 0x01},
4861 {0x15, AC_VERB_SET_CONNECT_SEL, 0x01},
4862 {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4863 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
4864 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4865 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4866 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
4867 {0x10, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
4868 {0x11, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
4869 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
4873 /* Test configuration for debugging, modelled after the ALC880 test
4876 #ifdef CONFIG_SND_DEBUG
4877 static hda_nid_t alc260_test_dac_nids[1] = {
4880 static hda_nid_t alc260_test_adc_nids[2] = {
4883 /* For testing the ALC260, each input MUX needs its own definition since
4884 * the signal assignments are different. This assumes that the first ADC
4887 static struct hda_input_mux alc260_test_capture_sources[2] = {
4891 { "MIC1 pin", 0x0 },
4892 { "MIC2 pin", 0x1 },
4893 { "LINE1 pin", 0x2 },
4894 { "LINE2 pin", 0x3 },
4896 { "LINE-OUT pin", 0x5 },
4897 { "HP-OUT pin", 0x6 },
4903 { "MIC1 pin", 0x0 },
4904 { "MIC2 pin", 0x1 },
4905 { "LINE1 pin", 0x2 },
4906 { "LINE2 pin", 0x3 },
4909 { "LINE-OUT pin", 0x6 },
4910 { "HP-OUT pin", 0x7 },
4914 static struct snd_kcontrol_new alc260_test_mixer[] = {
4915 /* Output driver widgets */
4916 HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x0a, 1, 0x0, HDA_OUTPUT),
4917 HDA_BIND_MUTE_MONO("Mono Playback Switch", 0x0a, 1, 2, HDA_INPUT),
4918 HDA_CODEC_VOLUME("LOUT2 Playback Volume", 0x09, 0x0, HDA_OUTPUT),
4919 HDA_BIND_MUTE("LOUT2 Playback Switch", 0x09, 2, HDA_INPUT),
4920 HDA_CODEC_VOLUME("LOUT1 Playback Volume", 0x08, 0x0, HDA_OUTPUT),
4921 HDA_BIND_MUTE("LOUT1 Playback Switch", 0x08, 2, HDA_INPUT),
4923 /* Modes for retasking pin widgets
4924 * Note: the ALC260 doesn't seem to act on requests to enable mic
4925 * bias from NIDs 0x0f and 0x10. The ALC260 datasheet doesn't
4926 * mention this restriction. At this stage it's not clear whether
4927 * this behaviour is intentional or is a hardware bug in chip
4928 * revisions available at least up until early 2006. Therefore for
4929 * now allow the "HP-OUT" and "LINE-OUT" Mode controls to span all
4930 * choices, but if it turns out that the lack of mic bias for these
4931 * NIDs is intentional we could change their modes from
4932 * ALC_PIN_DIR_INOUT to ALC_PIN_DIR_INOUT_NOMICBIAS.
4934 ALC_PIN_MODE("HP-OUT pin mode", 0x10, ALC_PIN_DIR_INOUT),
4935 ALC_PIN_MODE("LINE-OUT pin mode", 0x0f, ALC_PIN_DIR_INOUT),
4936 ALC_PIN_MODE("LINE2 pin mode", 0x15, ALC_PIN_DIR_INOUT),
4937 ALC_PIN_MODE("LINE1 pin mode", 0x14, ALC_PIN_DIR_INOUT),
4938 ALC_PIN_MODE("MIC2 pin mode", 0x13, ALC_PIN_DIR_INOUT),
4939 ALC_PIN_MODE("MIC1 pin mode", 0x12, ALC_PIN_DIR_INOUT),
4941 /* Loopback mixer controls */
4942 HDA_CODEC_VOLUME("MIC1 Playback Volume", 0x07, 0x00, HDA_INPUT),
4943 HDA_CODEC_MUTE("MIC1 Playback Switch", 0x07, 0x00, HDA_INPUT),
4944 HDA_CODEC_VOLUME("MIC2 Playback Volume", 0x07, 0x01, HDA_INPUT),
4945 HDA_CODEC_MUTE("MIC2 Playback Switch", 0x07, 0x01, HDA_INPUT),
4946 HDA_CODEC_VOLUME("LINE1 Playback Volume", 0x07, 0x02, HDA_INPUT),
4947 HDA_CODEC_MUTE("LINE1 Playback Switch", 0x07, 0x02, HDA_INPUT),
4948 HDA_CODEC_VOLUME("LINE2 Playback Volume", 0x07, 0x03, HDA_INPUT),
4949 HDA_CODEC_MUTE("LINE2 Playback Switch", 0x07, 0x03, HDA_INPUT),
4950 HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT),
4951 HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT),
4952 HDA_CODEC_VOLUME("Beep Playback Volume", 0x07, 0x05, HDA_INPUT),
4953 HDA_CODEC_MUTE("Beep Playback Switch", 0x07, 0x05, HDA_INPUT),
4954 HDA_CODEC_VOLUME("LINE-OUT loopback Playback Volume", 0x07, 0x06, HDA_INPUT),
4955 HDA_CODEC_MUTE("LINE-OUT loopback Playback Switch", 0x07, 0x06, HDA_INPUT),
4956 HDA_CODEC_VOLUME("HP-OUT loopback Playback Volume", 0x07, 0x7, HDA_INPUT),
4957 HDA_CODEC_MUTE("HP-OUT loopback Playback Switch", 0x07, 0x7, HDA_INPUT),
4959 /* Controls for GPIO pins, assuming they are configured as outputs */
4960 ALC_GPIO_DATA_SWITCH("GPIO pin 0", 0x01, 0x01),
4961 ALC_GPIO_DATA_SWITCH("GPIO pin 1", 0x01, 0x02),
4962 ALC_GPIO_DATA_SWITCH("GPIO pin 2", 0x01, 0x04),
4963 ALC_GPIO_DATA_SWITCH("GPIO pin 3", 0x01, 0x08),
4965 /* Switches to allow the digital IO pins to be enabled. The datasheet
4966 * is ambigious as to which NID is which; testing on laptops which
4967 * make this output available should provide clarification.
4969 ALC_SPDIF_CTRL_SWITCH("SPDIF Playback Switch", 0x03, 0x01),
4970 ALC_SPDIF_CTRL_SWITCH("SPDIF Capture Switch", 0x06, 0x01),
4972 /* A switch allowing EAPD to be enabled. Some laptops seem to use
4973 * this output to turn on an external amplifier.
4975 ALC_EAPD_CTRL_SWITCH("LINE-OUT EAPD Enable Switch", 0x0f, 0x02),
4976 ALC_EAPD_CTRL_SWITCH("HP-OUT EAPD Enable Switch", 0x10, 0x02),
4980 static struct hda_verb alc260_test_init_verbs[] = {
4981 /* Enable all GPIOs as outputs with an initial value of 0 */
4982 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x0f},
4983 {0x01, AC_VERB_SET_GPIO_DATA, 0x00},
4984 {0x01, AC_VERB_SET_GPIO_MASK, 0x0f},
4986 /* Enable retasking pins as output, initially without power amp */
4987 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4988 {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4989 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4990 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4991 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4992 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4994 /* Disable digital (SPDIF) pins initially, but users can enable
4995 * them via a mixer switch. In the case of SPDIF-out, this initverb
4996 * payload also sets the generation to 0, output to be in "consumer"
4997 * PCM format, copyright asserted, no pre-emphasis and no validity
5000 {0x03, AC_VERB_SET_DIGI_CONVERT_1, 0},
5001 {0x06, AC_VERB_SET_DIGI_CONVERT_1, 0},
5003 /* Ensure mic1, mic2, line1 and line2 pin widgets take input from the
5004 * OUT1 sum bus when acting as an output.
5006 {0x0b, AC_VERB_SET_CONNECT_SEL, 0},
5007 {0x0c, AC_VERB_SET_CONNECT_SEL, 0},
5008 {0x0d, AC_VERB_SET_CONNECT_SEL, 0},
5009 {0x0e, AC_VERB_SET_CONNECT_SEL, 0},
5011 /* Start with output sum widgets muted and their output gains at min */
5012 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5013 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5014 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5015 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5016 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5017 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5018 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5019 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5020 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5022 /* Unmute retasking pin widget output buffers since the default
5023 * state appears to be output. As the pin mode is changed by the
5024 * user the pin mode control will take care of enabling the pin's
5025 * input/output buffers as needed.
5027 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5028 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5029 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5030 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5031 {0x13, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5032 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5033 /* Also unmute the mono-out pin widget */
5034 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5036 /* Mute capture amp left and right */
5037 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5038 /* Set ADC connection select to match default mixer setting (mic1
5041 {0x04, AC_VERB_SET_CONNECT_SEL, 0x00},
5043 /* Do the same for the second ADC: mute capture input amp and
5044 * set ADC connection to mic1 pin
5046 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5047 {0x05, AC_VERB_SET_CONNECT_SEL, 0x00},
5049 /* Mute all inputs to mixer widget (even unconnected ones) */
5050 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* mic1 pin */
5051 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, /* mic2 pin */
5052 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, /* line1 pin */
5053 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, /* line2 pin */
5054 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, /* CD pin */
5055 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)}, /* Beep-gen pin */
5056 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)}, /* Line-out pin */
5057 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)}, /* HP-pin pin */
5063 #define alc260_pcm_analog_playback alc880_pcm_analog_alt_playback
5064 #define alc260_pcm_analog_capture alc880_pcm_analog_capture
5066 #define alc260_pcm_digital_playback alc880_pcm_digital_playback
5067 #define alc260_pcm_digital_capture alc880_pcm_digital_capture
5070 * for BIOS auto-configuration
5073 static int alc260_add_playback_controls(struct alc_spec *spec, hda_nid_t nid,
5074 const char *pfx, int *vol_bits)
5077 unsigned long vol_val, sw_val;
5081 if (nid >= 0x0f && nid < 0x11) {
5082 nid_vol = nid - 0x7;
5083 vol_val = HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0, HDA_OUTPUT);
5084 sw_val = HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT);
5085 } else if (nid == 0x11) {
5086 nid_vol = nid - 0x7;
5087 vol_val = HDA_COMPOSE_AMP_VAL(nid_vol, 2, 0, HDA_OUTPUT);
5088 sw_val = HDA_COMPOSE_AMP_VAL(nid, 2, 0, HDA_OUTPUT);
5089 } else if (nid >= 0x12 && nid <= 0x15) {
5091 vol_val = HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0, HDA_OUTPUT);
5092 sw_val = HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT);
5096 if (!(*vol_bits & (1 << nid_vol))) {
5097 /* first control for the volume widget */
5098 snprintf(name, sizeof(name), "%s Playback Volume", pfx);
5099 err = add_control(spec, ALC_CTL_WIDGET_VOL, name, vol_val);
5102 *vol_bits |= (1 << nid_vol);
5104 snprintf(name, sizeof(name), "%s Playback Switch", pfx);
5105 err = add_control(spec, ALC_CTL_WIDGET_MUTE, name, sw_val);
5111 /* add playback controls from the parsed DAC table */
5112 static int alc260_auto_create_multi_out_ctls(struct alc_spec *spec,
5113 const struct auto_pin_cfg *cfg)
5119 spec->multiout.num_dacs = 1;
5120 spec->multiout.dac_nids = spec->private_dac_nids;
5121 spec->multiout.dac_nids[0] = 0x02;
5123 nid = cfg->line_out_pins[0];
5125 err = alc260_add_playback_controls(spec, nid, "Front", &vols);
5130 nid = cfg->speaker_pins[0];
5132 err = alc260_add_playback_controls(spec, nid, "Speaker", &vols);
5137 nid = cfg->hp_pins[0];
5139 err = alc260_add_playback_controls(spec, nid, "Headphone",
5147 /* create playback/capture controls for input pins */
5148 static int alc260_auto_create_analog_input_ctls(struct alc_spec *spec,
5149 const struct auto_pin_cfg *cfg)
5151 struct hda_input_mux *imux = &spec->private_imux;
5154 for (i = 0; i < AUTO_PIN_LAST; i++) {
5155 if (cfg->input_pins[i] >= 0x12) {
5156 idx = cfg->input_pins[i] - 0x12;
5157 err = new_analog_input(spec, cfg->input_pins[i],
5158 auto_pin_cfg_labels[i], idx,
5162 imux->items[imux->num_items].label =
5163 auto_pin_cfg_labels[i];
5164 imux->items[imux->num_items].index = idx;
5167 if (cfg->input_pins[i] >= 0x0f && cfg->input_pins[i] <= 0x10){
5168 idx = cfg->input_pins[i] - 0x09;
5169 err = new_analog_input(spec, cfg->input_pins[i],
5170 auto_pin_cfg_labels[i], idx,
5174 imux->items[imux->num_items].label =
5175 auto_pin_cfg_labels[i];
5176 imux->items[imux->num_items].index = idx;
5183 static void alc260_auto_set_output_and_unmute(struct hda_codec *codec,
5184 hda_nid_t nid, int pin_type,
5187 alc_set_pin_output(codec, nid, pin_type);
5188 /* need the manual connection? */
5190 int idx = nid - 0x12;
5191 snd_hda_codec_write(codec, idx + 0x0b, 0,
5192 AC_VERB_SET_CONNECT_SEL, sel_idx);
5196 static void alc260_auto_init_multi_out(struct hda_codec *codec)
5198 struct alc_spec *spec = codec->spec;
5201 alc_subsystem_id(codec, 0x10, 0x15, 0x0f);
5202 nid = spec->autocfg.line_out_pins[0];
5204 int pin_type = get_pin_type(spec->autocfg.line_out_type);
5205 alc260_auto_set_output_and_unmute(codec, nid, pin_type, 0);
5208 nid = spec->autocfg.speaker_pins[0];
5210 alc260_auto_set_output_and_unmute(codec, nid, PIN_OUT, 0);
5212 nid = spec->autocfg.hp_pins[0];
5214 alc260_auto_set_output_and_unmute(codec, nid, PIN_HP, 0);
5217 #define ALC260_PIN_CD_NID 0x16
5218 static void alc260_auto_init_analog_input(struct hda_codec *codec)
5220 struct alc_spec *spec = codec->spec;
5223 for (i = 0; i < AUTO_PIN_LAST; i++) {
5224 hda_nid_t nid = spec->autocfg.input_pins[i];
5226 snd_hda_codec_write(codec, nid, 0,
5227 AC_VERB_SET_PIN_WIDGET_CONTROL,
5228 i <= AUTO_PIN_FRONT_MIC ?
5229 PIN_VREF80 : PIN_IN);
5230 if (nid != ALC260_PIN_CD_NID)
5231 snd_hda_codec_write(codec, nid, 0,
5232 AC_VERB_SET_AMP_GAIN_MUTE,
5239 * generic initialization of ADC, input mixers and output mixers
5241 static struct hda_verb alc260_volume_init_verbs[] = {
5243 * Unmute ADC0-1 and set the default input to mic-in
5245 {0x04, AC_VERB_SET_CONNECT_SEL, 0x00},
5246 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5247 {0x05, AC_VERB_SET_CONNECT_SEL, 0x00},
5248 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5250 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
5252 * Note: PASD motherboards uses the Line In 2 as the input for
5253 * front panel mic (mic 2)
5255 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
5256 /* mute analog inputs */
5257 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5258 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5259 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
5260 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
5261 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
5264 * Set up output mixers (0x08 - 0x0a)
5266 /* set vol=0 to output mixers */
5267 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5268 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5269 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5270 /* set up input amps for analog loopback */
5271 /* Amp Indices: DAC = 0, mixer = 1 */
5272 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5273 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5274 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5275 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5276 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5277 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5282 static int alc260_parse_auto_config(struct hda_codec *codec)
5284 struct alc_spec *spec = codec->spec;
5287 static hda_nid_t alc260_ignore[] = { 0x17, 0 };
5289 err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
5293 err = alc260_auto_create_multi_out_ctls(spec, &spec->autocfg);
5296 if (!spec->kctl_alloc)
5297 return 0; /* can't find valid BIOS pin config */
5298 err = alc260_auto_create_analog_input_ctls(spec, &spec->autocfg);
5302 spec->multiout.max_channels = 2;
5304 if (spec->autocfg.dig_out_pin)
5305 spec->multiout.dig_out_nid = ALC260_DIGOUT_NID;
5306 if (spec->kctl_alloc)
5307 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
5309 spec->init_verbs[spec->num_init_verbs++] = alc260_volume_init_verbs;
5311 spec->num_mux_defs = 1;
5312 spec->input_mux = &spec->private_imux;
5314 /* check whether NID 0x04 is valid */
5315 wcap = get_wcaps(codec, 0x04);
5316 wcap = (wcap & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT; /* get type */
5317 if (wcap != AC_WID_AUD_IN || spec->input_mux->num_items == 1) {
5318 spec->adc_nids = alc260_adc_nids_alt;
5319 spec->num_adc_nids = ARRAY_SIZE(alc260_adc_nids_alt);
5320 spec->mixers[spec->num_mixers] = alc260_capture_alt_mixer;
5322 spec->adc_nids = alc260_adc_nids;
5323 spec->num_adc_nids = ARRAY_SIZE(alc260_adc_nids);
5324 spec->mixers[spec->num_mixers] = alc260_capture_mixer;
5328 store_pin_configs(codec);
5332 /* additional initialization for auto-configuration model */
5333 static void alc260_auto_init(struct hda_codec *codec)
5335 struct alc_spec *spec = codec->spec;
5336 alc260_auto_init_multi_out(codec);
5337 alc260_auto_init_analog_input(codec);
5338 if (spec->unsol_event)
5339 alc_inithook(codec);
5342 #ifdef CONFIG_SND_HDA_POWER_SAVE
5343 static struct hda_amp_list alc260_loopbacks[] = {
5344 { 0x07, HDA_INPUT, 0 },
5345 { 0x07, HDA_INPUT, 1 },
5346 { 0x07, HDA_INPUT, 2 },
5347 { 0x07, HDA_INPUT, 3 },
5348 { 0x07, HDA_INPUT, 4 },
5354 * ALC260 configurations
5356 static const char *alc260_models[ALC260_MODEL_LAST] = {
5357 [ALC260_BASIC] = "basic",
5359 [ALC260_HP_3013] = "hp-3013",
5360 [ALC260_HP_DC7600] = "hp-dc7600",
5361 [ALC260_FUJITSU_S702X] = "fujitsu",
5362 [ALC260_ACER] = "acer",
5363 [ALC260_WILL] = "will",
5364 [ALC260_REPLACER_672V] = "replacer",
5365 #ifdef CONFIG_SND_DEBUG
5366 [ALC260_TEST] = "test",
5368 [ALC260_AUTO] = "auto",
5371 static struct snd_pci_quirk alc260_cfg_tbl[] = {
5372 SND_PCI_QUIRK(0x1025, 0x007b, "Acer C20x", ALC260_ACER),
5373 SND_PCI_QUIRK(0x1025, 0x008f, "Acer", ALC260_ACER),
5374 SND_PCI_QUIRK(0x103c, 0x2808, "HP d5700", ALC260_HP_3013),
5375 SND_PCI_QUIRK(0x103c, 0x280a, "HP d5750", ALC260_HP_3013),
5376 SND_PCI_QUIRK(0x103c, 0x3010, "HP", ALC260_HP_3013),
5377 SND_PCI_QUIRK(0x103c, 0x3011, "HP", ALC260_HP_3013),
5378 SND_PCI_QUIRK(0x103c, 0x3012, "HP", ALC260_HP_DC7600),
5379 SND_PCI_QUIRK(0x103c, 0x3013, "HP", ALC260_HP_3013),
5380 SND_PCI_QUIRK(0x103c, 0x3014, "HP", ALC260_HP),
5381 SND_PCI_QUIRK(0x103c, 0x3015, "HP", ALC260_HP),
5382 SND_PCI_QUIRK(0x103c, 0x3016, "HP", ALC260_HP),
5383 SND_PCI_QUIRK(0x104d, 0x81bb, "Sony VAIO", ALC260_BASIC),
5384 SND_PCI_QUIRK(0x104d, 0x81cc, "Sony VAIO", ALC260_BASIC),
5385 SND_PCI_QUIRK(0x104d, 0x81cd, "Sony VAIO", ALC260_BASIC),
5386 SND_PCI_QUIRK(0x10cf, 0x1326, "Fujitsu S702X", ALC260_FUJITSU_S702X),
5387 SND_PCI_QUIRK(0x152d, 0x0729, "CTL U553W", ALC260_BASIC),
5388 SND_PCI_QUIRK(0x161f, 0x2057, "Replacer 672V", ALC260_REPLACER_672V),
5389 SND_PCI_QUIRK(0x1631, 0xc017, "PB V7900", ALC260_WILL),
5393 static struct alc_config_preset alc260_presets[] = {
5395 .mixers = { alc260_base_output_mixer,
5397 alc260_pc_beep_mixer,
5398 alc260_capture_mixer },
5399 .init_verbs = { alc260_init_verbs },
5400 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
5401 .dac_nids = alc260_dac_nids,
5402 .num_adc_nids = ARRAY_SIZE(alc260_adc_nids),
5403 .adc_nids = alc260_adc_nids,
5404 .num_channel_mode = ARRAY_SIZE(alc260_modes),
5405 .channel_mode = alc260_modes,
5406 .input_mux = &alc260_capture_source,
5409 .mixers = { alc260_hp_output_mixer,
5411 alc260_capture_alt_mixer },
5412 .init_verbs = { alc260_init_verbs,
5413 alc260_hp_unsol_verbs },
5414 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
5415 .dac_nids = alc260_dac_nids,
5416 .num_adc_nids = ARRAY_SIZE(alc260_hp_adc_nids),
5417 .adc_nids = alc260_hp_adc_nids,
5418 .num_channel_mode = ARRAY_SIZE(alc260_modes),
5419 .channel_mode = alc260_modes,
5420 .input_mux = &alc260_capture_source,
5421 .unsol_event = alc260_hp_unsol_event,
5422 .init_hook = alc260_hp_automute,
5424 [ALC260_HP_DC7600] = {
5425 .mixers = { alc260_hp_dc7600_mixer,
5427 alc260_capture_alt_mixer },
5428 .init_verbs = { alc260_init_verbs,
5429 alc260_hp_dc7600_verbs },
5430 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
5431 .dac_nids = alc260_dac_nids,
5432 .num_adc_nids = ARRAY_SIZE(alc260_hp_adc_nids),
5433 .adc_nids = alc260_hp_adc_nids,
5434 .num_channel_mode = ARRAY_SIZE(alc260_modes),
5435 .channel_mode = alc260_modes,
5436 .input_mux = &alc260_capture_source,
5437 .unsol_event = alc260_hp_3012_unsol_event,
5438 .init_hook = alc260_hp_3012_automute,
5440 [ALC260_HP_3013] = {
5441 .mixers = { alc260_hp_3013_mixer,
5443 alc260_capture_alt_mixer },
5444 .init_verbs = { alc260_hp_3013_init_verbs,
5445 alc260_hp_3013_unsol_verbs },
5446 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
5447 .dac_nids = alc260_dac_nids,
5448 .num_adc_nids = ARRAY_SIZE(alc260_hp_adc_nids),
5449 .adc_nids = alc260_hp_adc_nids,
5450 .num_channel_mode = ARRAY_SIZE(alc260_modes),
5451 .channel_mode = alc260_modes,
5452 .input_mux = &alc260_capture_source,
5453 .unsol_event = alc260_hp_3013_unsol_event,
5454 .init_hook = alc260_hp_3013_automute,
5456 [ALC260_FUJITSU_S702X] = {
5457 .mixers = { alc260_fujitsu_mixer,
5458 alc260_capture_mixer },
5459 .init_verbs = { alc260_fujitsu_init_verbs },
5460 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
5461 .dac_nids = alc260_dac_nids,
5462 .num_adc_nids = ARRAY_SIZE(alc260_dual_adc_nids),
5463 .adc_nids = alc260_dual_adc_nids,
5464 .num_channel_mode = ARRAY_SIZE(alc260_modes),
5465 .channel_mode = alc260_modes,
5466 .num_mux_defs = ARRAY_SIZE(alc260_fujitsu_capture_sources),
5467 .input_mux = alc260_fujitsu_capture_sources,
5470 .mixers = { alc260_acer_mixer,
5471 alc260_capture_mixer },
5472 .init_verbs = { alc260_acer_init_verbs },
5473 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
5474 .dac_nids = alc260_dac_nids,
5475 .num_adc_nids = ARRAY_SIZE(alc260_dual_adc_nids),
5476 .adc_nids = alc260_dual_adc_nids,
5477 .num_channel_mode = ARRAY_SIZE(alc260_modes),
5478 .channel_mode = alc260_modes,
5479 .num_mux_defs = ARRAY_SIZE(alc260_acer_capture_sources),
5480 .input_mux = alc260_acer_capture_sources,
5483 .mixers = { alc260_will_mixer,
5484 alc260_capture_mixer },
5485 .init_verbs = { alc260_init_verbs, alc260_will_verbs },
5486 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
5487 .dac_nids = alc260_dac_nids,
5488 .num_adc_nids = ARRAY_SIZE(alc260_adc_nids),
5489 .adc_nids = alc260_adc_nids,
5490 .dig_out_nid = ALC260_DIGOUT_NID,
5491 .num_channel_mode = ARRAY_SIZE(alc260_modes),
5492 .channel_mode = alc260_modes,
5493 .input_mux = &alc260_capture_source,
5495 [ALC260_REPLACER_672V] = {
5496 .mixers = { alc260_replacer_672v_mixer,
5497 alc260_capture_mixer },
5498 .init_verbs = { alc260_init_verbs, alc260_replacer_672v_verbs },
5499 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
5500 .dac_nids = alc260_dac_nids,
5501 .num_adc_nids = ARRAY_SIZE(alc260_adc_nids),
5502 .adc_nids = alc260_adc_nids,
5503 .dig_out_nid = ALC260_DIGOUT_NID,
5504 .num_channel_mode = ARRAY_SIZE(alc260_modes),
5505 .channel_mode = alc260_modes,
5506 .input_mux = &alc260_capture_source,
5507 .unsol_event = alc260_replacer_672v_unsol_event,
5508 .init_hook = alc260_replacer_672v_automute,
5510 #ifdef CONFIG_SND_DEBUG
5512 .mixers = { alc260_test_mixer,
5513 alc260_capture_mixer },
5514 .init_verbs = { alc260_test_init_verbs },
5515 .num_dacs = ARRAY_SIZE(alc260_test_dac_nids),
5516 .dac_nids = alc260_test_dac_nids,
5517 .num_adc_nids = ARRAY_SIZE(alc260_test_adc_nids),
5518 .adc_nids = alc260_test_adc_nids,
5519 .num_channel_mode = ARRAY_SIZE(alc260_modes),
5520 .channel_mode = alc260_modes,
5521 .num_mux_defs = ARRAY_SIZE(alc260_test_capture_sources),
5522 .input_mux = alc260_test_capture_sources,
5527 static int patch_alc260(struct hda_codec *codec)
5529 struct alc_spec *spec;
5530 int err, board_config;
5532 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
5538 board_config = snd_hda_check_board_config(codec, ALC260_MODEL_LAST,
5541 if (board_config < 0) {
5542 snd_printd(KERN_INFO "hda_codec: Unknown model for ALC260, "
5543 "trying auto-probe from BIOS...\n");
5544 board_config = ALC260_AUTO;
5547 if (board_config == ALC260_AUTO) {
5548 /* automatic parse from the BIOS config */
5549 err = alc260_parse_auto_config(codec);
5555 "hda_codec: Cannot set up configuration "
5556 "from BIOS. Using base mode...\n");
5557 board_config = ALC260_BASIC;
5561 if (board_config != ALC260_AUTO)
5562 setup_preset(spec, &alc260_presets[board_config]);
5564 spec->stream_name_analog = "ALC260 Analog";
5565 spec->stream_analog_playback = &alc260_pcm_analog_playback;
5566 spec->stream_analog_capture = &alc260_pcm_analog_capture;
5568 spec->stream_name_digital = "ALC260 Digital";
5569 spec->stream_digital_playback = &alc260_pcm_digital_playback;
5570 spec->stream_digital_capture = &alc260_pcm_digital_capture;
5572 spec->vmaster_nid = 0x08;
5574 codec->patch_ops = alc_patch_ops;
5575 if (board_config == ALC260_AUTO)
5576 spec->init_hook = alc260_auto_init;
5577 #ifdef CONFIG_SND_HDA_POWER_SAVE
5578 if (!spec->loopback.amplist)
5579 spec->loopback.amplist = alc260_loopbacks;
5589 * ALC882 is almost identical with ALC880 but has cleaner and more flexible
5590 * configuration. Each pin widget can choose any input DACs and a mixer.
5591 * Each ADC is connected from a mixer of all inputs. This makes possible
5592 * 6-channel independent captures.
5594 * In addition, an independent DAC for the multi-playback (not used in this
5597 #define ALC882_DIGOUT_NID 0x06
5598 #define ALC882_DIGIN_NID 0x0a
5600 static struct hda_channel_mode alc882_ch_modes[1] = {
5604 static hda_nid_t alc882_dac_nids[4] = {
5605 /* front, rear, clfe, rear_surr */
5606 0x02, 0x03, 0x04, 0x05
5609 /* identical with ALC880 */
5610 #define alc882_adc_nids alc880_adc_nids
5611 #define alc882_adc_nids_alt alc880_adc_nids_alt
5613 static hda_nid_t alc882_capsrc_nids[3] = { 0x24, 0x23, 0x22 };
5614 static hda_nid_t alc882_capsrc_nids_alt[2] = { 0x23, 0x22 };
5617 /* FIXME: should be a matrix-type input source selection */
5619 static struct hda_input_mux alc882_capture_source = {
5623 { "Front Mic", 0x1 },
5628 #define alc882_mux_enum_info alc_mux_enum_info
5629 #define alc882_mux_enum_get alc_mux_enum_get
5631 static int alc882_mux_enum_put(struct snd_kcontrol *kcontrol,
5632 struct snd_ctl_elem_value *ucontrol)
5634 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
5635 struct alc_spec *spec = codec->spec;
5636 const struct hda_input_mux *imux = spec->input_mux;
5637 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
5638 hda_nid_t nid = spec->capsrc_nids ?
5639 spec->capsrc_nids[adc_idx] : spec->adc_nids[adc_idx];
5640 unsigned int *cur_val = &spec->cur_mux[adc_idx];
5641 unsigned int i, idx;
5643 idx = ucontrol->value.enumerated.item[0];
5644 if (idx >= imux->num_items)
5645 idx = imux->num_items - 1;
5646 if (*cur_val == idx)
5648 for (i = 0; i < imux->num_items; i++) {
5649 unsigned int v = (i == idx) ? 0 : HDA_AMP_MUTE;
5650 snd_hda_codec_amp_stereo(codec, nid, HDA_INPUT,
5651 imux->items[i].index,
5661 static struct hda_verb alc882_3ST_ch2_init[] = {
5662 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
5663 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
5664 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
5665 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
5672 static struct hda_verb alc882_3ST_ch6_init[] = {
5673 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
5674 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
5675 { 0x18, AC_VERB_SET_CONNECT_SEL, 0x02 },
5676 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
5677 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
5678 { 0x1a, AC_VERB_SET_CONNECT_SEL, 0x01 },
5682 static struct hda_channel_mode alc882_3ST_6ch_modes[2] = {
5683 { 2, alc882_3ST_ch2_init },
5684 { 6, alc882_3ST_ch6_init },
5690 static struct hda_verb alc882_sixstack_ch6_init[] = {
5691 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
5692 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
5693 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
5694 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
5701 static struct hda_verb alc882_sixstack_ch8_init[] = {
5702 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
5703 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
5704 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
5705 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
5709 static struct hda_channel_mode alc882_sixstack_modes[2] = {
5710 { 6, alc882_sixstack_ch6_init },
5711 { 8, alc882_sixstack_ch8_init },
5715 * macbook pro ALC885 can switch LineIn to LineOut without loosing Mic
5721 static struct hda_verb alc885_mbp_ch2_init[] = {
5722 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
5723 { 0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5724 { 0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5731 static struct hda_verb alc885_mbp_ch6_init[] = {
5732 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
5733 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5734 { 0x1a, AC_VERB_SET_CONNECT_SEL, 0x01 },
5735 { 0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5736 { 0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5740 static struct hda_channel_mode alc885_mbp_6ch_modes[2] = {
5741 { 2, alc885_mbp_ch2_init },
5742 { 6, alc885_mbp_ch6_init },
5746 /* Pin assignment: Front=0x14, Rear=0x15, CLFE=0x16, Side=0x17
5747 * Mic=0x18, Front Mic=0x19, Line-In=0x1a, HP=0x1b
5749 static struct snd_kcontrol_new alc882_base_mixer[] = {
5750 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
5751 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
5752 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
5753 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
5754 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
5755 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
5756 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
5757 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
5758 HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
5759 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT),
5760 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
5761 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
5762 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
5763 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
5764 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
5765 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
5766 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
5767 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
5768 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
5769 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
5770 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
5771 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
5772 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
5776 static struct snd_kcontrol_new alc885_mbp3_mixer[] = {
5777 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x00, HDA_OUTPUT),
5778 HDA_BIND_MUTE ("Front Playback Switch", 0x0c, 0x02, HDA_INPUT),
5779 HDA_CODEC_MUTE ("Speaker Playback Switch", 0x14, 0x00, HDA_OUTPUT),
5780 HDA_CODEC_VOLUME("Line-Out Playback Volume", 0x0d, 0x00, HDA_OUTPUT),
5781 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
5782 HDA_CODEC_MUTE ("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
5783 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x00, HDA_INPUT),
5784 HDA_CODEC_MUTE ("Mic Playback Switch", 0x0b, 0x00, HDA_INPUT),
5785 HDA_CODEC_VOLUME("Line Boost", 0x1a, 0x00, HDA_INPUT),
5786 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0x00, HDA_INPUT),
5789 static struct snd_kcontrol_new alc882_w2jc_mixer[] = {
5790 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
5791 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
5792 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
5793 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
5794 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
5795 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
5796 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
5797 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
5798 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
5799 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
5800 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
5804 static struct snd_kcontrol_new alc882_targa_mixer[] = {
5805 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
5806 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
5807 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
5808 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
5809 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
5810 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
5811 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
5812 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
5813 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
5814 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
5815 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
5816 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
5817 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
5821 /* Pin assignment: Front=0x14, HP = 0x15, Front = 0x16, ???
5822 * Front Mic=0x18, Line In = 0x1a, Line In = 0x1b, CD = 0x1c
5824 static struct snd_kcontrol_new alc882_asus_a7j_mixer[] = {
5825 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
5826 HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT),
5827 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT),
5828 HDA_CODEC_MUTE("Mobile Front Playback Switch", 0x16, 0x0, HDA_OUTPUT),
5829 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
5830 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
5831 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
5832 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
5833 HDA_CODEC_VOLUME("Mobile Line Playback Volume", 0x0b, 0x03, HDA_INPUT),
5834 HDA_CODEC_MUTE("Mobile Line Playback Switch", 0x0b, 0x03, HDA_INPUT),
5835 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
5836 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
5837 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
5841 static struct snd_kcontrol_new alc882_asus_a7m_mixer[] = {
5842 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
5843 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
5844 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT),
5845 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
5846 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
5847 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
5848 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
5849 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
5850 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
5851 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
5852 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
5853 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
5857 static struct snd_kcontrol_new alc882_chmode_mixer[] = {
5859 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
5860 .name = "Channel Mode",
5861 .info = alc_ch_mode_info,
5862 .get = alc_ch_mode_get,
5863 .put = alc_ch_mode_put,
5868 static struct hda_verb alc882_init_verbs[] = {
5869 /* Front mixer: unmute input/output amp left and right (volume = 0) */
5870 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5871 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5872 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5874 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5875 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5876 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5878 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5879 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5880 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5882 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5883 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5884 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5886 /* Front Pin: output 0 (0x0c) */
5887 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5888 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5889 {0x14, AC_VERB_SET_CONNECT_SEL, 0x00},
5890 /* Rear Pin: output 1 (0x0d) */
5891 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5892 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5893 {0x15, AC_VERB_SET_CONNECT_SEL, 0x01},
5894 /* CLFE Pin: output 2 (0x0e) */
5895 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5896 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5897 {0x16, AC_VERB_SET_CONNECT_SEL, 0x02},
5898 /* Side Pin: output 3 (0x0f) */
5899 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5900 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5901 {0x17, AC_VERB_SET_CONNECT_SEL, 0x03},
5902 /* Mic (rear) pin: input vref at 80% */
5903 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
5904 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5905 /* Front Mic pin: input vref at 80% */
5906 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
5907 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5908 /* Line In pin: input */
5909 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
5910 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5911 /* Line-2 In: Headphone output (output 0 - 0x0c) */
5912 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
5913 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5914 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
5915 /* CD pin widget for input */
5916 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
5918 /* FIXME: use matrix-type input source selection */
5919 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
5920 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
5921 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5922 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
5923 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
5924 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
5926 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5927 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
5928 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
5929 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
5931 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5932 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
5933 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
5934 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
5935 /* ADC1: mute amp left and right */
5936 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5937 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
5938 /* ADC2: mute amp left and right */
5939 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5940 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
5941 /* ADC3: mute amp left and right */
5942 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5943 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
5948 static struct hda_verb alc882_eapd_verbs[] = {
5949 /* change to EAPD mode */
5950 {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
5951 {0x20, AC_VERB_SET_PROC_COEF, 0x3060},
5956 static struct snd_kcontrol_new alc882_macpro_mixer[] = {
5957 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
5958 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
5959 HDA_CODEC_MUTE("Headphone Playback Switch", 0x18, 0x0, HDA_OUTPUT),
5960 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x01, HDA_INPUT),
5961 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x01, HDA_INPUT),
5962 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x02, HDA_INPUT),
5963 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x02, HDA_INPUT),
5967 static struct hda_verb alc882_macpro_init_verbs[] = {
5968 /* Front mixer: unmute input/output amp left and right (volume = 0) */
5969 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5970 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5971 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5972 /* Front Pin: output 0 (0x0c) */
5973 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5974 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5975 {0x15, AC_VERB_SET_CONNECT_SEL, 0x00},
5976 /* Front Mic pin: input vref at 80% */
5977 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
5978 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5979 /* Speaker: output */
5980 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5981 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5982 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x04},
5983 /* Headphone output (output 0 - 0x0c) */
5984 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
5985 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5986 {0x18, AC_VERB_SET_CONNECT_SEL, 0x00},
5988 /* FIXME: use matrix-type input source selection */
5989 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
5990 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
5991 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5992 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
5993 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
5994 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
5996 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5997 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
5998 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
5999 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
6001 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6002 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
6003 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
6004 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
6005 /* ADC1: mute amp left and right */
6006 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
6007 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
6008 /* ADC2: mute amp left and right */
6009 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
6010 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
6011 /* ADC3: mute amp left and right */
6012 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
6013 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
6018 /* Macbook Pro rev3 */
6019 static struct hda_verb alc885_mbp3_init_verbs[] = {
6020 /* Front mixer: unmute input/output amp left and right (volume = 0) */
6021 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6022 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
6023 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
6025 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6026 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
6027 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
6028 /* Front Pin: output 0 (0x0c) */
6029 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
6030 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
6031 {0x14, AC_VERB_SET_CONNECT_SEL, 0x00},
6032 /* HP Pin: output 0 (0x0d) */
6033 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc4},
6034 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
6035 {0x15, AC_VERB_SET_CONNECT_SEL, 0x00},
6036 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
6037 /* Mic (rear) pin: input vref at 80% */
6038 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
6039 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
6040 /* Front Mic pin: input vref at 80% */
6041 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
6042 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
6043 /* Line In pin: use output 1 when in LineOut mode */
6044 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
6045 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
6046 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x01},
6048 /* FIXME: use matrix-type input source selection */
6049 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
6050 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
6051 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6052 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
6053 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
6054 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
6056 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6057 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
6058 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
6059 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
6061 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6062 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
6063 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
6064 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
6065 /* ADC1: mute amp left and right */
6066 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
6067 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
6068 /* ADC2: mute amp left and right */
6069 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
6070 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
6071 /* ADC3: mute amp left and right */
6072 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
6073 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
6078 /* iMac 24 mixer. */
6079 static struct snd_kcontrol_new alc885_imac24_mixer[] = {
6080 HDA_CODEC_VOLUME("Master Playback Volume", 0x0c, 0x00, HDA_OUTPUT),
6081 HDA_CODEC_MUTE("Master Playback Switch", 0x0c, 0x00, HDA_INPUT),
6085 /* iMac 24 init verbs. */
6086 static struct hda_verb alc885_imac24_init_verbs[] = {
6087 /* Internal speakers: output 0 (0x0c) */
6088 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
6089 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
6090 {0x18, AC_VERB_SET_CONNECT_SEL, 0x00},
6091 /* Internal speakers: output 0 (0x0c) */
6092 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
6093 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
6094 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x00},
6095 /* Headphone: output 0 (0x0c) */
6096 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
6097 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
6098 {0x14, AC_VERB_SET_CONNECT_SEL, 0x00},
6099 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
6100 /* Front Mic: input vref at 80% */
6101 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
6102 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
6106 /* Toggle speaker-output according to the hp-jack state */
6107 static void alc885_imac24_automute(struct hda_codec *codec)
6109 unsigned int present;
6111 present = snd_hda_codec_read(codec, 0x14, 0,
6112 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
6113 snd_hda_codec_amp_stereo(codec, 0x18, HDA_OUTPUT, 0,
6114 HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0);
6115 snd_hda_codec_amp_stereo(codec, 0x1a, HDA_OUTPUT, 0,
6116 HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0);
6119 /* Processes unsolicited events. */
6120 static void alc885_imac24_unsol_event(struct hda_codec *codec,
6123 /* Headphone insertion or removal. */
6124 if ((res >> 26) == ALC880_HP_EVENT)
6125 alc885_imac24_automute(codec);
6128 static void alc885_mbp3_automute(struct hda_codec *codec)
6130 unsigned int present;
6132 present = snd_hda_codec_read(codec, 0x15, 0,
6133 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
6134 snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0,
6135 HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0);
6136 snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0,
6137 HDA_AMP_MUTE, present ? 0 : HDA_AMP_MUTE);
6140 static void alc885_mbp3_unsol_event(struct hda_codec *codec,
6143 /* Headphone insertion or removal. */
6144 if ((res >> 26) == ALC880_HP_EVENT)
6145 alc885_mbp3_automute(codec);
6149 static struct hda_verb alc882_targa_verbs[] = {
6150 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6151 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6153 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
6154 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
6156 {0x18, AC_VERB_SET_CONNECT_SEL, 0x02}, /* mic/clfe */
6157 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x01}, /* line/surround */
6158 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
6160 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
6161 {0x01, AC_VERB_SET_GPIO_MASK, 0x03},
6162 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x03},
6163 {0x01, AC_VERB_SET_GPIO_DATA, 0x03},
6167 /* toggle speaker-output according to the hp-jack state */
6168 static void alc882_targa_automute(struct hda_codec *codec)
6170 unsigned int present;
6172 present = snd_hda_codec_read(codec, 0x14, 0,
6173 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
6174 snd_hda_codec_amp_stereo(codec, 0x1b, HDA_OUTPUT, 0,
6175 HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0);
6176 snd_hda_codec_write_cache(codec, 1, 0, AC_VERB_SET_GPIO_DATA,
6180 static void alc882_targa_unsol_event(struct hda_codec *codec, unsigned int res)
6182 /* Looks like the unsol event is incompatible with the standard
6183 * definition. 4bit tag is placed at 26 bit!
6185 if (((res >> 26) == ALC880_HP_EVENT)) {
6186 alc882_targa_automute(codec);
6190 static struct hda_verb alc882_asus_a7j_verbs[] = {
6191 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6192 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6194 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
6195 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
6196 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
6198 {0x14, AC_VERB_SET_CONNECT_SEL, 0x00}, /* Front */
6199 {0x15, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
6200 {0x16, AC_VERB_SET_CONNECT_SEL, 0x00}, /* Front */
6202 {0x18, AC_VERB_SET_CONNECT_SEL, 0x02}, /* mic/clfe */
6203 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x01}, /* line/surround */
6204 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
6208 static struct hda_verb alc882_asus_a7m_verbs[] = {
6209 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6210 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6212 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
6213 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
6214 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
6216 {0x14, AC_VERB_SET_CONNECT_SEL, 0x00}, /* Front */
6217 {0x15, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
6218 {0x16, AC_VERB_SET_CONNECT_SEL, 0x00}, /* Front */
6220 {0x18, AC_VERB_SET_CONNECT_SEL, 0x02}, /* mic/clfe */
6221 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x01}, /* line/surround */
6222 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
6226 static void alc882_gpio_mute(struct hda_codec *codec, int pin, int muted)
6228 unsigned int gpiostate, gpiomask, gpiodir;
6230 gpiostate = snd_hda_codec_read(codec, codec->afg, 0,
6231 AC_VERB_GET_GPIO_DATA, 0);
6234 gpiostate |= (1 << pin);
6236 gpiostate &= ~(1 << pin);
6238 gpiomask = snd_hda_codec_read(codec, codec->afg, 0,
6239 AC_VERB_GET_GPIO_MASK, 0);
6240 gpiomask |= (1 << pin);
6242 gpiodir = snd_hda_codec_read(codec, codec->afg, 0,
6243 AC_VERB_GET_GPIO_DIRECTION, 0);
6244 gpiodir |= (1 << pin);
6247 snd_hda_codec_write(codec, codec->afg, 0,
6248 AC_VERB_SET_GPIO_MASK, gpiomask);
6249 snd_hda_codec_write(codec, codec->afg, 0,
6250 AC_VERB_SET_GPIO_DIRECTION, gpiodir);
6254 snd_hda_codec_write(codec, codec->afg, 0,
6255 AC_VERB_SET_GPIO_DATA, gpiostate);
6258 /* set up GPIO at initialization */
6259 static void alc885_macpro_init_hook(struct hda_codec *codec)
6261 alc882_gpio_mute(codec, 0, 0);
6262 alc882_gpio_mute(codec, 1, 0);
6265 /* set up GPIO and update auto-muting at initialization */
6266 static void alc885_imac24_init_hook(struct hda_codec *codec)
6268 alc885_macpro_init_hook(codec);
6269 alc885_imac24_automute(codec);
6273 * generic initialization of ADC, input mixers and output mixers
6275 static struct hda_verb alc882_auto_init_verbs[] = {
6277 * Unmute ADC0-2 and set the default input to mic-in
6279 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
6280 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6281 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
6282 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6283 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
6284 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6286 /* Mute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
6288 * Note: PASD motherboards uses the Line In 2 as the input for
6289 * front panel mic (mic 2)
6291 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
6292 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
6293 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
6294 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
6295 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
6296 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
6299 * Set up output mixers (0x0c - 0x0f)
6301 /* set vol=0 to output mixers */
6302 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6303 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6304 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6305 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6306 /* set up input amps for analog loopback */
6307 /* Amp Indices: DAC = 0, mixer = 1 */
6308 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6309 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6310 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6311 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6312 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6313 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6314 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6315 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6316 {0x26, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6317 {0x26, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6319 /* FIXME: use matrix-type input source selection */
6320 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
6321 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
6322 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
6323 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
6324 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
6325 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
6327 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
6328 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
6329 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
6330 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
6332 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
6333 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
6334 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
6335 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
6340 /* capture mixer elements */
6341 static struct snd_kcontrol_new alc882_capture_alt_mixer[] = {
6342 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
6343 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
6344 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
6345 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
6347 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
6348 /* The multiple "Capture Source" controls confuse alsamixer
6349 * So call somewhat different..
6351 /* .name = "Capture Source", */
6352 .name = "Input Source",
6354 .info = alc882_mux_enum_info,
6355 .get = alc882_mux_enum_get,
6356 .put = alc882_mux_enum_put,
6361 static struct snd_kcontrol_new alc882_capture_mixer[] = {
6362 HDA_CODEC_VOLUME("Capture Volume", 0x07, 0x0, HDA_INPUT),
6363 HDA_CODEC_MUTE("Capture Switch", 0x07, 0x0, HDA_INPUT),
6364 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x08, 0x0, HDA_INPUT),
6365 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x08, 0x0, HDA_INPUT),
6366 HDA_CODEC_VOLUME_IDX("Capture Volume", 2, 0x09, 0x0, HDA_INPUT),
6367 HDA_CODEC_MUTE_IDX("Capture Switch", 2, 0x09, 0x0, HDA_INPUT),
6369 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
6370 /* The multiple "Capture Source" controls confuse alsamixer
6371 * So call somewhat different..
6373 /* .name = "Capture Source", */
6374 .name = "Input Source",
6376 .info = alc882_mux_enum_info,
6377 .get = alc882_mux_enum_get,
6378 .put = alc882_mux_enum_put,
6383 #ifdef CONFIG_SND_HDA_POWER_SAVE
6384 #define alc882_loopbacks alc880_loopbacks
6387 /* pcm configuration: identiacal with ALC880 */
6388 #define alc882_pcm_analog_playback alc880_pcm_analog_playback
6389 #define alc882_pcm_analog_capture alc880_pcm_analog_capture
6390 #define alc882_pcm_digital_playback alc880_pcm_digital_playback
6391 #define alc882_pcm_digital_capture alc880_pcm_digital_capture
6394 * configuration and preset
6396 static const char *alc882_models[ALC882_MODEL_LAST] = {
6397 [ALC882_3ST_DIG] = "3stack-dig",
6398 [ALC882_6ST_DIG] = "6stack-dig",
6399 [ALC882_ARIMA] = "arima",
6400 [ALC882_W2JC] = "w2jc",
6401 [ALC882_TARGA] = "targa",
6402 [ALC882_ASUS_A7J] = "asus-a7j",
6403 [ALC882_ASUS_A7M] = "asus-a7m",
6404 [ALC885_MACPRO] = "macpro",
6405 [ALC885_MBP3] = "mbp3",
6406 [ALC885_IMAC24] = "imac24",
6407 [ALC882_AUTO] = "auto",
6410 static struct snd_pci_quirk alc882_cfg_tbl[] = {
6411 SND_PCI_QUIRK(0x1019, 0x6668, "ECS", ALC882_6ST_DIG),
6412 SND_PCI_QUIRK(0x1043, 0x060d, "Asus A7J", ALC882_ASUS_A7J),
6413 SND_PCI_QUIRK(0x1043, 0x1243, "Asus A7J", ALC882_ASUS_A7J),
6414 SND_PCI_QUIRK(0x1043, 0x13c2, "Asus A7M", ALC882_ASUS_A7M),
6415 SND_PCI_QUIRK(0x1043, 0x1971, "Asus W2JC", ALC882_W2JC),
6416 SND_PCI_QUIRK(0x1043, 0x817f, "Asus P5LD2", ALC882_6ST_DIG),
6417 SND_PCI_QUIRK(0x1043, 0x81d8, "Asus P5WD", ALC882_6ST_DIG),
6418 SND_PCI_QUIRK(0x105b, 0x6668, "Foxconn", ALC882_6ST_DIG),
6419 SND_PCI_QUIRK(0x1458, 0xa002, "Gigabyte P35 DS3R", ALC882_6ST_DIG),
6420 SND_PCI_QUIRK(0x1462, 0x28fb, "Targa T8", ALC882_TARGA), /* MSI-1049 T8 */
6421 SND_PCI_QUIRK(0x1462, 0x6668, "MSI", ALC882_6ST_DIG),
6422 SND_PCI_QUIRK(0x161f, 0x2054, "Arima W820", ALC882_ARIMA),
6426 static struct alc_config_preset alc882_presets[] = {
6427 [ALC882_3ST_DIG] = {
6428 .mixers = { alc882_base_mixer },
6429 .init_verbs = { alc882_init_verbs },
6430 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
6431 .dac_nids = alc882_dac_nids,
6432 .dig_out_nid = ALC882_DIGOUT_NID,
6433 .dig_in_nid = ALC882_DIGIN_NID,
6434 .num_channel_mode = ARRAY_SIZE(alc882_ch_modes),
6435 .channel_mode = alc882_ch_modes,
6437 .input_mux = &alc882_capture_source,
6439 [ALC882_6ST_DIG] = {
6440 .mixers = { alc882_base_mixer, alc882_chmode_mixer },
6441 .init_verbs = { alc882_init_verbs },
6442 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
6443 .dac_nids = alc882_dac_nids,
6444 .dig_out_nid = ALC882_DIGOUT_NID,
6445 .dig_in_nid = ALC882_DIGIN_NID,
6446 .num_channel_mode = ARRAY_SIZE(alc882_sixstack_modes),
6447 .channel_mode = alc882_sixstack_modes,
6448 .input_mux = &alc882_capture_source,
6451 .mixers = { alc882_base_mixer, alc882_chmode_mixer },
6452 .init_verbs = { alc882_init_verbs, alc882_eapd_verbs },
6453 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
6454 .dac_nids = alc882_dac_nids,
6455 .num_channel_mode = ARRAY_SIZE(alc882_sixstack_modes),
6456 .channel_mode = alc882_sixstack_modes,
6457 .input_mux = &alc882_capture_source,
6460 .mixers = { alc882_w2jc_mixer, alc882_chmode_mixer },
6461 .init_verbs = { alc882_init_verbs, alc882_eapd_verbs,
6462 alc880_gpio1_init_verbs },
6463 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
6464 .dac_nids = alc882_dac_nids,
6465 .num_channel_mode = ARRAY_SIZE(alc880_threestack_modes),
6466 .channel_mode = alc880_threestack_modes,
6468 .input_mux = &alc882_capture_source,
6469 .dig_out_nid = ALC882_DIGOUT_NID,
6472 .mixers = { alc885_mbp3_mixer, alc882_chmode_mixer },
6473 .init_verbs = { alc885_mbp3_init_verbs,
6474 alc880_gpio1_init_verbs },
6475 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
6476 .dac_nids = alc882_dac_nids,
6477 .channel_mode = alc885_mbp_6ch_modes,
6478 .num_channel_mode = ARRAY_SIZE(alc885_mbp_6ch_modes),
6479 .input_mux = &alc882_capture_source,
6480 .dig_out_nid = ALC882_DIGOUT_NID,
6481 .dig_in_nid = ALC882_DIGIN_NID,
6482 .unsol_event = alc885_mbp3_unsol_event,
6483 .init_hook = alc885_mbp3_automute,
6486 .mixers = { alc882_macpro_mixer },
6487 .init_verbs = { alc882_macpro_init_verbs },
6488 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
6489 .dac_nids = alc882_dac_nids,
6490 .dig_out_nid = ALC882_DIGOUT_NID,
6491 .dig_in_nid = ALC882_DIGIN_NID,
6492 .num_channel_mode = ARRAY_SIZE(alc882_ch_modes),
6493 .channel_mode = alc882_ch_modes,
6494 .input_mux = &alc882_capture_source,
6495 .init_hook = alc885_macpro_init_hook,
6498 .mixers = { alc885_imac24_mixer },
6499 .init_verbs = { alc885_imac24_init_verbs },
6500 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
6501 .dac_nids = alc882_dac_nids,
6502 .dig_out_nid = ALC882_DIGOUT_NID,
6503 .dig_in_nid = ALC882_DIGIN_NID,
6504 .num_channel_mode = ARRAY_SIZE(alc882_ch_modes),
6505 .channel_mode = alc882_ch_modes,
6506 .input_mux = &alc882_capture_source,
6507 .unsol_event = alc885_imac24_unsol_event,
6508 .init_hook = alc885_imac24_init_hook,
6511 .mixers = { alc882_targa_mixer, alc882_chmode_mixer,
6512 alc882_capture_mixer },
6513 .init_verbs = { alc882_init_verbs, alc882_targa_verbs},
6514 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
6515 .dac_nids = alc882_dac_nids,
6516 .dig_out_nid = ALC882_DIGOUT_NID,
6517 .num_adc_nids = ARRAY_SIZE(alc882_adc_nids),
6518 .adc_nids = alc882_adc_nids,
6519 .capsrc_nids = alc882_capsrc_nids,
6520 .num_channel_mode = ARRAY_SIZE(alc882_3ST_6ch_modes),
6521 .channel_mode = alc882_3ST_6ch_modes,
6523 .input_mux = &alc882_capture_source,
6524 .unsol_event = alc882_targa_unsol_event,
6525 .init_hook = alc882_targa_automute,
6527 [ALC882_ASUS_A7J] = {
6528 .mixers = { alc882_asus_a7j_mixer, alc882_chmode_mixer,
6529 alc882_capture_mixer },
6530 .init_verbs = { alc882_init_verbs, alc882_asus_a7j_verbs},
6531 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
6532 .dac_nids = alc882_dac_nids,
6533 .dig_out_nid = ALC882_DIGOUT_NID,
6534 .num_adc_nids = ARRAY_SIZE(alc882_adc_nids),
6535 .adc_nids = alc882_adc_nids,
6536 .capsrc_nids = alc882_capsrc_nids,
6537 .num_channel_mode = ARRAY_SIZE(alc882_3ST_6ch_modes),
6538 .channel_mode = alc882_3ST_6ch_modes,
6540 .input_mux = &alc882_capture_source,
6542 [ALC882_ASUS_A7M] = {
6543 .mixers = { alc882_asus_a7m_mixer, alc882_chmode_mixer },
6544 .init_verbs = { alc882_init_verbs, alc882_eapd_verbs,
6545 alc880_gpio1_init_verbs,
6546 alc882_asus_a7m_verbs },
6547 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
6548 .dac_nids = alc882_dac_nids,
6549 .dig_out_nid = ALC882_DIGOUT_NID,
6550 .num_channel_mode = ARRAY_SIZE(alc880_threestack_modes),
6551 .channel_mode = alc880_threestack_modes,
6553 .input_mux = &alc882_capture_source,
6562 PINFIX_ABIT_AW9D_MAX
6565 static struct alc_pincfg alc882_abit_aw9d_pinfix[] = {
6566 { 0x15, 0x01080104 }, /* side */
6567 { 0x16, 0x01011012 }, /* rear */
6568 { 0x17, 0x01016011 }, /* clfe */
6572 static const struct alc_pincfg *alc882_pin_fixes[] = {
6573 [PINFIX_ABIT_AW9D_MAX] = alc882_abit_aw9d_pinfix,
6576 static struct snd_pci_quirk alc882_pinfix_tbl[] = {
6577 SND_PCI_QUIRK(0x147b, 0x107a, "Abit AW9D-MAX", PINFIX_ABIT_AW9D_MAX),
6582 * BIOS auto configuration
6584 static void alc882_auto_set_output_and_unmute(struct hda_codec *codec,
6585 hda_nid_t nid, int pin_type,
6589 struct alc_spec *spec = codec->spec;
6592 alc_set_pin_output(codec, nid, pin_type);
6593 if (spec->multiout.dac_nids[dac_idx] == 0x25)
6596 idx = spec->multiout.dac_nids[dac_idx] - 2;
6597 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CONNECT_SEL, idx);
6601 static void alc882_auto_init_multi_out(struct hda_codec *codec)
6603 struct alc_spec *spec = codec->spec;
6606 alc_subsystem_id(codec, 0x15, 0x1b, 0x14);
6607 for (i = 0; i <= HDA_SIDE; i++) {
6608 hda_nid_t nid = spec->autocfg.line_out_pins[i];
6609 int pin_type = get_pin_type(spec->autocfg.line_out_type);
6611 alc882_auto_set_output_and_unmute(codec, nid, pin_type,
6616 static void alc882_auto_init_hp_out(struct hda_codec *codec)
6618 struct alc_spec *spec = codec->spec;
6621 pin = spec->autocfg.hp_pins[0];
6622 if (pin) /* connect to front */
6624 alc882_auto_set_output_and_unmute(codec, pin, PIN_HP, 0);
6625 pin = spec->autocfg.speaker_pins[0];
6627 alc882_auto_set_output_and_unmute(codec, pin, PIN_OUT, 0);
6630 #define alc882_is_input_pin(nid) alc880_is_input_pin(nid)
6631 #define ALC882_PIN_CD_NID ALC880_PIN_CD_NID
6633 static void alc882_auto_init_analog_input(struct hda_codec *codec)
6635 struct alc_spec *spec = codec->spec;
6638 for (i = 0; i < AUTO_PIN_LAST; i++) {
6639 hda_nid_t nid = spec->autocfg.input_pins[i];
6644 if (1 /*i <= AUTO_PIN_FRONT_MIC*/) {
6645 unsigned int pincap;
6646 pincap = snd_hda_param_read(codec, nid, AC_PAR_PIN_CAP);
6647 if ((pincap >> AC_PINCAP_VREF_SHIFT) &
6651 snd_hda_codec_write(codec, nid, 0,
6652 AC_VERB_SET_PIN_WIDGET_CONTROL, vref);
6653 if (get_wcaps(codec, nid) & AC_WCAP_OUT_AMP)
6654 snd_hda_codec_write(codec, nid, 0,
6655 AC_VERB_SET_AMP_GAIN_MUTE,
6660 static void alc882_auto_init_input_src(struct hda_codec *codec)
6662 struct alc_spec *spec = codec->spec;
6663 const struct hda_input_mux *imux = spec->input_mux;
6666 for (c = 0; c < spec->num_adc_nids; c++) {
6667 hda_nid_t conn_list[HDA_MAX_NUM_INPUTS];
6668 hda_nid_t nid = spec->capsrc_nids[c];
6669 int conns, mute, idx, item;
6671 conns = snd_hda_get_connections(codec, nid, conn_list,
6672 ARRAY_SIZE(conn_list));
6675 for (idx = 0; idx < conns; idx++) {
6676 /* if the current connection is the selected one,
6677 * unmute it as default - otherwise mute it
6679 mute = AMP_IN_MUTE(idx);
6680 for (item = 0; item < imux->num_items; item++) {
6681 if (imux->items[item].index == idx) {
6682 if (spec->cur_mux[c] == item)
6683 mute = AMP_IN_UNMUTE(idx);
6687 snd_hda_codec_write(codec, nid, 0,
6688 AC_VERB_SET_AMP_GAIN_MUTE, mute);
6693 /* add mic boosts if needed */
6694 static int alc_auto_add_mic_boost(struct hda_codec *codec)
6696 struct alc_spec *spec = codec->spec;
6700 nid = spec->autocfg.input_pins[AUTO_PIN_MIC];
6701 if (nid && (get_wcaps(codec, nid) & AC_WCAP_IN_AMP)) {
6702 err = add_control(spec, ALC_CTL_WIDGET_VOL,
6704 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_INPUT));
6708 nid = spec->autocfg.input_pins[AUTO_PIN_FRONT_MIC];
6709 if (nid && (get_wcaps(codec, nid) & AC_WCAP_IN_AMP)) {
6710 err = add_control(spec, ALC_CTL_WIDGET_VOL,
6712 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_INPUT));
6719 /* almost identical with ALC880 parser... */
6720 static int alc882_parse_auto_config(struct hda_codec *codec)
6722 struct alc_spec *spec = codec->spec;
6723 int err = alc880_parse_auto_config(codec);
6728 return 0; /* no config found */
6730 err = alc_auto_add_mic_boost(codec);
6734 /* hack - override the init verbs */
6735 spec->init_verbs[0] = alc882_auto_init_verbs;
6737 return 1; /* config found */
6740 /* additional initialization for auto-configuration model */
6741 static void alc882_auto_init(struct hda_codec *codec)
6743 struct alc_spec *spec = codec->spec;
6744 alc882_auto_init_multi_out(codec);
6745 alc882_auto_init_hp_out(codec);
6746 alc882_auto_init_analog_input(codec);
6747 alc882_auto_init_input_src(codec);
6748 if (spec->unsol_event)
6749 alc_inithook(codec);
6752 static int patch_alc883(struct hda_codec *codec); /* called in patch_alc882() */
6754 static int patch_alc882(struct hda_codec *codec)
6756 struct alc_spec *spec;
6757 int err, board_config;
6759 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
6765 board_config = snd_hda_check_board_config(codec, ALC882_MODEL_LAST,
6769 if (board_config < 0 || board_config >= ALC882_MODEL_LAST) {
6770 /* Pick up systems that don't supply PCI SSID */
6771 switch (codec->subsystem_id) {
6772 case 0x106b0c00: /* Mac Pro */
6773 board_config = ALC885_MACPRO;
6775 case 0x106b1000: /* iMac 24 */
6776 case 0x106b2800: /* AppleTV */
6777 board_config = ALC885_IMAC24;
6779 case 0x106b00a1: /* Macbook (might be wrong - PCI SSID?) */
6780 case 0x106b00a4: /* MacbookPro4,1 */
6781 case 0x106b2c00: /* Macbook Pro rev3 */
6782 case 0x106b3600: /* Macbook 3.1 */
6783 board_config = ALC885_MBP3;
6786 /* ALC889A is handled better as ALC888-compatible */
6787 if (codec->revision_id == 0x100101 ||
6788 codec->revision_id == 0x100103) {
6790 return patch_alc883(codec);
6792 printk(KERN_INFO "hda_codec: Unknown model for ALC882, "
6793 "trying auto-probe from BIOS...\n");
6794 board_config = ALC882_AUTO;
6798 alc_fix_pincfg(codec, alc882_pinfix_tbl, alc882_pin_fixes);
6800 if (board_config == ALC882_AUTO) {
6801 /* automatic parse from the BIOS config */
6802 err = alc882_parse_auto_config(codec);
6808 "hda_codec: Cannot set up configuration "
6809 "from BIOS. Using base mode...\n");
6810 board_config = ALC882_3ST_DIG;
6814 if (board_config != ALC882_AUTO)
6815 setup_preset(spec, &alc882_presets[board_config]);
6817 if (codec->vendor_id == 0x10ec0885) {
6818 spec->stream_name_analog = "ALC885 Analog";
6819 spec->stream_name_digital = "ALC885 Digital";
6821 spec->stream_name_analog = "ALC882 Analog";
6822 spec->stream_name_digital = "ALC882 Digital";
6825 spec->stream_analog_playback = &alc882_pcm_analog_playback;
6826 spec->stream_analog_capture = &alc882_pcm_analog_capture;
6827 /* FIXME: setup DAC5 */
6828 /*spec->stream_analog_alt_playback = &alc880_pcm_analog_alt_playback;*/
6829 spec->stream_analog_alt_capture = &alc880_pcm_analog_alt_capture;
6831 spec->stream_digital_playback = &alc882_pcm_digital_playback;
6832 spec->stream_digital_capture = &alc882_pcm_digital_capture;
6834 if (!spec->adc_nids && spec->input_mux) {
6835 /* check whether NID 0x07 is valid */
6836 unsigned int wcap = get_wcaps(codec, 0x07);
6838 wcap = (wcap & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT;
6839 if (wcap != AC_WID_AUD_IN) {
6840 spec->adc_nids = alc882_adc_nids_alt;
6841 spec->num_adc_nids = ARRAY_SIZE(alc882_adc_nids_alt);
6842 spec->capsrc_nids = alc882_capsrc_nids_alt;
6843 spec->mixers[spec->num_mixers] =
6844 alc882_capture_alt_mixer;
6847 spec->adc_nids = alc882_adc_nids;
6848 spec->num_adc_nids = ARRAY_SIZE(alc882_adc_nids);
6849 spec->capsrc_nids = alc882_capsrc_nids;
6850 spec->mixers[spec->num_mixers] = alc882_capture_mixer;
6855 spec->vmaster_nid = 0x0c;
6857 codec->patch_ops = alc_patch_ops;
6858 if (board_config == ALC882_AUTO)
6859 spec->init_hook = alc882_auto_init;
6860 #ifdef CONFIG_SND_HDA_POWER_SAVE
6861 if (!spec->loopback.amplist)
6862 spec->loopback.amplist = alc882_loopbacks;
6871 * ALC883 is almost identical with ALC880 but has cleaner and more flexible
6872 * configuration. Each pin widget can choose any input DACs and a mixer.
6873 * Each ADC is connected from a mixer of all inputs. This makes possible
6874 * 6-channel independent captures.
6876 * In addition, an independent DAC for the multi-playback (not used in this
6879 #define ALC883_DIGOUT_NID 0x06
6880 #define ALC883_DIGIN_NID 0x0a
6882 static hda_nid_t alc883_dac_nids[4] = {
6883 /* front, rear, clfe, rear_surr */
6884 0x02, 0x03, 0x04, 0x05
6887 static hda_nid_t alc883_adc_nids[2] = {
6892 static hda_nid_t alc883_capsrc_nids[2] = { 0x23, 0x22 };
6895 /* FIXME: should be a matrix-type input source selection */
6897 static struct hda_input_mux alc883_capture_source = {
6901 { "Front Mic", 0x1 },
6907 static struct hda_input_mux alc883_3stack_6ch_intel = {
6911 { "Front Mic", 0x0 },
6917 static struct hda_input_mux alc883_lenovo_101e_capture_source = {
6925 static struct hda_input_mux alc883_lenovo_nb0763_capture_source = {
6935 static struct hda_input_mux alc883_fujitsu_pi2515_capture_source = {
6943 static struct hda_input_mux alc883_lenovo_sky_capture_source = {
6947 { "Front Mic", 0x1 },
6952 static struct hda_input_mux alc883_asus_eee1601_capture_source = {
6960 #define alc883_mux_enum_info alc_mux_enum_info
6961 #define alc883_mux_enum_get alc_mux_enum_get
6962 /* ALC883 has the ALC882-type input selection */
6963 #define alc883_mux_enum_put alc882_mux_enum_put
6968 static struct hda_channel_mode alc883_3ST_2ch_modes[1] = {
6975 static struct hda_verb alc883_3ST_ch2_init[] = {
6976 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
6977 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
6978 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
6979 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
6986 static struct hda_verb alc883_3ST_ch4_init[] = {
6987 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
6988 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
6989 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
6990 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
6991 { 0x1a, AC_VERB_SET_CONNECT_SEL, 0x01 },
6998 static struct hda_verb alc883_3ST_ch6_init[] = {
6999 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
7000 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
7001 { 0x18, AC_VERB_SET_CONNECT_SEL, 0x02 },
7002 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
7003 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
7004 { 0x1a, AC_VERB_SET_CONNECT_SEL, 0x01 },
7008 static struct hda_channel_mode alc883_3ST_6ch_modes[3] = {
7009 { 2, alc883_3ST_ch2_init },
7010 { 4, alc883_3ST_ch4_init },
7011 { 6, alc883_3ST_ch6_init },
7017 static struct hda_verb alc883_3ST_ch2_intel_init[] = {
7018 { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
7019 { 0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
7020 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
7021 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
7028 static struct hda_verb alc883_3ST_ch4_intel_init[] = {
7029 { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
7030 { 0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
7031 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
7032 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
7033 { 0x1a, AC_VERB_SET_CONNECT_SEL, 0x01 },
7040 static struct hda_verb alc883_3ST_ch6_intel_init[] = {
7041 { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
7042 { 0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
7043 { 0x19, AC_VERB_SET_CONNECT_SEL, 0x02 },
7044 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
7045 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
7046 { 0x1a, AC_VERB_SET_CONNECT_SEL, 0x01 },
7050 static struct hda_channel_mode alc883_3ST_6ch_intel_modes[3] = {
7051 { 2, alc883_3ST_ch2_intel_init },
7052 { 4, alc883_3ST_ch4_intel_init },
7053 { 6, alc883_3ST_ch6_intel_init },
7059 static struct hda_verb alc883_sixstack_ch6_init[] = {
7060 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
7061 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
7062 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
7063 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
7070 static struct hda_verb alc883_sixstack_ch8_init[] = {
7071 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
7072 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
7073 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
7074 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
7078 static struct hda_channel_mode alc883_sixstack_modes[2] = {
7079 { 6, alc883_sixstack_ch6_init },
7080 { 8, alc883_sixstack_ch8_init },
7083 static struct hda_verb alc883_medion_eapd_verbs[] = {
7084 /* eanable EAPD on medion laptop */
7085 {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
7086 {0x20, AC_VERB_SET_PROC_COEF, 0x3070},
7090 /* Pin assignment: Front=0x14, Rear=0x15, CLFE=0x16, Side=0x17
7091 * Mic=0x18, Front Mic=0x19, Line-In=0x1a, HP=0x1b
7094 static struct snd_kcontrol_new alc883_base_mixer[] = {
7095 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
7096 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
7097 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
7098 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
7099 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
7100 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
7101 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
7102 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
7103 HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
7104 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT),
7105 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
7106 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
7107 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
7108 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
7109 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
7110 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
7111 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
7112 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
7113 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
7114 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
7115 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
7116 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
7117 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
7118 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
7119 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
7120 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
7121 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
7123 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
7124 /* .name = "Capture Source", */
7125 .name = "Input Source",
7127 .info = alc883_mux_enum_info,
7128 .get = alc883_mux_enum_get,
7129 .put = alc883_mux_enum_put,
7134 static struct snd_kcontrol_new alc883_mitac_mixer[] = {
7135 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
7136 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
7137 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
7138 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
7139 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
7140 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
7141 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT),
7142 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
7143 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
7144 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
7145 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
7146 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
7147 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
7148 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
7149 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
7150 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
7151 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
7153 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
7154 /* .name = "Capture Source", */
7155 .name = "Input Source",
7157 .info = alc883_mux_enum_info,
7158 .get = alc883_mux_enum_get,
7159 .put = alc883_mux_enum_put,
7164 static struct snd_kcontrol_new alc883_clevo_m720_mixer[] = {
7165 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
7166 HDA_BIND_MUTE("Headphone Playback Switch", 0x0c, 2, HDA_INPUT),
7167 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
7168 HDA_BIND_MUTE("Speaker Playback Switch", 0x0d, 2, HDA_INPUT),
7169 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
7170 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
7171 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
7172 HDA_CODEC_VOLUME("Int Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
7173 HDA_CODEC_VOLUME("Int Mic Boost", 0x19, 0, HDA_INPUT),
7174 HDA_CODEC_MUTE("Int Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
7175 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
7176 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
7177 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
7178 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
7180 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
7181 /* .name = "Capture Source", */
7182 .name = "Input Source",
7184 .info = alc883_mux_enum_info,
7185 .get = alc883_mux_enum_get,
7186 .put = alc883_mux_enum_put,
7191 static struct snd_kcontrol_new alc883_2ch_fujitsu_pi2515_mixer[] = {
7192 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
7193 HDA_BIND_MUTE("Headphone Playback Switch", 0x0c, 2, HDA_INPUT),
7194 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
7195 HDA_BIND_MUTE("Speaker Playback Switch", 0x0d, 2, HDA_INPUT),
7196 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
7197 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
7198 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
7199 HDA_CODEC_VOLUME("Int Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
7200 HDA_CODEC_VOLUME("Int Mic Boost", 0x19, 0, HDA_INPUT),
7201 HDA_CODEC_MUTE("Int Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
7202 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
7203 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
7204 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
7205 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
7207 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
7208 /* .name = "Capture Source", */
7209 .name = "Input Source",
7211 .info = alc883_mux_enum_info,
7212 .get = alc883_mux_enum_get,
7213 .put = alc883_mux_enum_put,
7218 static struct snd_kcontrol_new alc883_3ST_2ch_mixer[] = {
7219 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
7220 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
7221 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
7222 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
7223 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
7224 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
7225 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
7226 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
7227 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
7228 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
7229 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
7230 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
7231 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
7232 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
7233 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
7234 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
7235 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
7236 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
7237 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
7239 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
7240 /* .name = "Capture Source", */
7241 .name = "Input Source",
7243 .info = alc883_mux_enum_info,
7244 .get = alc883_mux_enum_get,
7245 .put = alc883_mux_enum_put,
7250 static struct snd_kcontrol_new alc883_3ST_6ch_mixer[] = {
7251 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
7252 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
7253 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
7254 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
7255 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
7256 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
7257 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
7258 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
7259 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
7260 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
7261 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
7262 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
7263 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
7264 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
7265 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
7266 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
7267 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
7268 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
7269 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
7270 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
7271 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
7272 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
7273 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
7275 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
7276 /* .name = "Capture Source", */
7277 .name = "Input Source",
7279 .info = alc883_mux_enum_info,
7280 .get = alc883_mux_enum_get,
7281 .put = alc883_mux_enum_put,
7286 static struct snd_kcontrol_new alc883_3ST_6ch_intel_mixer[] = {
7287 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
7288 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
7289 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
7290 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
7291 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0,
7293 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
7294 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
7295 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
7296 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT),
7297 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
7298 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
7299 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
7300 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
7301 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
7302 HDA_CODEC_VOLUME("Mic Boost", 0x19, 0, HDA_INPUT),
7303 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
7304 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
7305 HDA_CODEC_VOLUME("Front Mic Boost", 0x18, 0, HDA_INPUT),
7306 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
7307 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
7308 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
7309 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
7310 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
7311 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
7312 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
7314 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
7315 /* .name = "Capture Source", */
7316 .name = "Input Source",
7318 .info = alc883_mux_enum_info,
7319 .get = alc883_mux_enum_get,
7320 .put = alc883_mux_enum_put,
7325 static struct snd_kcontrol_new alc883_fivestack_mixer[] = {
7326 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
7327 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
7328 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
7329 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
7330 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
7331 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
7332 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
7333 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
7334 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
7335 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
7336 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
7337 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
7338 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
7339 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
7340 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
7341 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
7342 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
7343 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
7344 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
7345 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
7346 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
7347 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
7348 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
7351 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
7352 /* .name = "Capture Source", */
7353 .name = "Input Source",
7355 .info = alc883_mux_enum_info,
7356 .get = alc883_mux_enum_get,
7357 .put = alc883_mux_enum_put,
7362 static struct snd_kcontrol_new alc883_tagra_mixer[] = {
7363 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
7364 HDA_CODEC_MUTE("Headphone Playback Switch", 0x14, 0x0, HDA_OUTPUT),
7365 HDA_CODEC_MUTE("Front Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
7366 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
7367 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
7368 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
7369 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
7370 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
7371 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
7372 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
7373 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
7374 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
7375 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
7376 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
7377 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
7378 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
7379 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
7380 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
7381 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
7382 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
7384 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
7385 /* .name = "Capture Source", */
7386 .name = "Input Source",
7388 .info = alc883_mux_enum_info,
7389 .get = alc883_mux_enum_get,
7390 .put = alc883_mux_enum_put,
7395 static struct snd_kcontrol_new alc883_tagra_2ch_mixer[] = {
7396 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
7397 HDA_CODEC_MUTE("Headphone Playback Switch", 0x14, 0x0, HDA_OUTPUT),
7398 HDA_CODEC_MUTE("Front Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
7399 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
7400 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
7401 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
7402 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
7403 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
7404 HDA_CODEC_VOLUME("Int Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
7405 HDA_CODEC_VOLUME("Int Mic Boost", 0x19, 0, HDA_INPUT),
7406 HDA_CODEC_MUTE("Int Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
7407 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
7408 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
7409 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
7410 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
7412 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
7413 /* .name = "Capture Source", */
7414 .name = "Input Source",
7416 .info = alc883_mux_enum_info,
7417 .get = alc883_mux_enum_get,
7418 .put = alc883_mux_enum_put,
7423 static struct snd_kcontrol_new alc883_lenovo_101e_2ch_mixer[] = {
7424 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
7425 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
7426 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
7427 HDA_BIND_MUTE("Speaker Playback Switch", 0x0d, 2, HDA_INPUT),
7428 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
7429 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
7430 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
7431 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
7432 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
7433 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
7435 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
7436 /* .name = "Capture Source", */
7437 .name = "Input Source",
7439 .info = alc883_mux_enum_info,
7440 .get = alc883_mux_enum_get,
7441 .put = alc883_mux_enum_put,
7446 static struct snd_kcontrol_new alc883_lenovo_nb0763_mixer[] = {
7447 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
7448 HDA_BIND_MUTE("Speaker Playback Switch", 0x0c, 2, HDA_INPUT),
7449 HDA_CODEC_MUTE("Headphone Playback Switch", 0x14, 0x0, HDA_OUTPUT),
7450 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
7451 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
7452 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
7453 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
7454 HDA_CODEC_VOLUME("iMic Playback Volume", 0x0b, 0x1, HDA_INPUT),
7455 HDA_CODEC_MUTE("iMic Playback Switch", 0x0b, 0x1, HDA_INPUT),
7456 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
7457 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
7458 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
7459 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
7461 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
7462 /* .name = "Capture Source", */
7463 .name = "Input Source",
7465 .info = alc883_mux_enum_info,
7466 .get = alc883_mux_enum_get,
7467 .put = alc883_mux_enum_put,
7472 static struct snd_kcontrol_new alc883_medion_md2_mixer[] = {
7473 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
7474 HDA_CODEC_MUTE("Headphone Playback Switch", 0x14, 0x0, HDA_OUTPUT),
7475 HDA_CODEC_MUTE("Front Playback Switch", 0x15, 0x0, HDA_OUTPUT),
7476 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
7477 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
7478 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
7479 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
7480 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
7481 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
7482 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
7483 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
7484 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
7485 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
7487 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
7488 /* .name = "Capture Source", */
7489 .name = "Input Source",
7491 .info = alc883_mux_enum_info,
7492 .get = alc883_mux_enum_get,
7493 .put = alc883_mux_enum_put,
7498 static struct snd_kcontrol_new alc883_acer_aspire_mixer[] = {
7499 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
7500 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
7501 HDA_CODEC_MUTE("Headphone Playback Switch", 0x14, 0x0, HDA_OUTPUT),
7502 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
7503 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
7504 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
7505 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
7506 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
7507 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
7508 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
7509 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
7510 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
7512 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
7513 /* .name = "Capture Source", */
7514 .name = "Input Source",
7516 .info = alc883_mux_enum_info,
7517 .get = alc883_mux_enum_get,
7518 .put = alc883_mux_enum_put,
7523 static struct snd_kcontrol_new alc888_lenovo_sky_mixer[] = {
7524 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
7525 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
7526 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0e, 0x0, HDA_OUTPUT),
7527 HDA_BIND_MUTE("Surround Playback Switch", 0x0e, 2, HDA_INPUT),
7528 HDA_CODEC_VOLUME_MONO("Center Playback Volume",
7529 0x0d, 1, 0x0, HDA_OUTPUT),
7530 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0d, 2, 0x0, HDA_OUTPUT),
7531 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0d, 1, 2, HDA_INPUT),
7532 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0d, 2, 2, HDA_INPUT),
7533 HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
7534 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT),
7535 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
7536 HDA_CODEC_MUTE("iSpeaker Playback Switch", 0x1a, 0x0, HDA_OUTPUT),
7537 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
7538 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
7539 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
7540 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
7541 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
7542 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
7543 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
7544 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
7545 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
7546 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
7547 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
7548 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
7549 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
7550 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
7552 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
7553 /* .name = "Capture Source", */
7554 .name = "Input Source",
7556 .info = alc883_mux_enum_info,
7557 .get = alc883_mux_enum_get,
7558 .put = alc883_mux_enum_put,
7563 static struct hda_bind_ctls alc883_bind_cap_vol = {
7564 .ops = &snd_hda_bind_vol,
7566 HDA_COMPOSE_AMP_VAL(0x08, 3, 0, HDA_INPUT),
7567 HDA_COMPOSE_AMP_VAL(0x09, 3, 0, HDA_INPUT),
7572 static struct hda_bind_ctls alc883_bind_cap_switch = {
7573 .ops = &snd_hda_bind_sw,
7575 HDA_COMPOSE_AMP_VAL(0x08, 3, 0, HDA_INPUT),
7576 HDA_COMPOSE_AMP_VAL(0x09, 3, 0, HDA_INPUT),
7581 static struct snd_kcontrol_new alc883_asus_eee1601_mixer[] = {
7582 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
7583 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
7584 HDA_CODEC_MUTE("Headphone Playback Switch", 0x14, 0x0, HDA_OUTPUT),
7585 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
7586 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
7587 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
7588 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
7589 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
7590 HDA_BIND_VOL("Capture Volume", &alc883_bind_cap_vol),
7591 HDA_BIND_SW("Capture Switch", &alc883_bind_cap_switch),
7593 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
7594 /* .name = "Capture Source", */
7595 .name = "Input Source",
7597 .info = alc883_mux_enum_info,
7598 .get = alc883_mux_enum_get,
7599 .put = alc883_mux_enum_put,
7604 static struct snd_kcontrol_new alc883_chmode_mixer[] = {
7606 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
7607 .name = "Channel Mode",
7608 .info = alc_ch_mode_info,
7609 .get = alc_ch_mode_get,
7610 .put = alc_ch_mode_put,
7615 static struct hda_verb alc883_init_verbs[] = {
7616 /* ADC1: mute amp left and right */
7617 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7618 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
7619 /* ADC2: mute amp left and right */
7620 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
7621 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
7622 /* Front mixer: unmute input/output amp left and right (volume = 0) */
7623 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
7624 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
7625 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
7627 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
7628 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
7629 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
7631 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
7632 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
7633 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
7635 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
7636 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
7637 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
7639 /* mute analog input loopbacks */
7640 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
7641 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
7642 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
7643 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
7644 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
7646 /* Front Pin: output 0 (0x0c) */
7647 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
7648 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
7649 {0x14, AC_VERB_SET_CONNECT_SEL, 0x00},
7650 /* Rear Pin: output 1 (0x0d) */
7651 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
7652 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
7653 {0x15, AC_VERB_SET_CONNECT_SEL, 0x01},
7654 /* CLFE Pin: output 2 (0x0e) */
7655 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
7656 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
7657 {0x16, AC_VERB_SET_CONNECT_SEL, 0x02},
7658 /* Side Pin: output 3 (0x0f) */
7659 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
7660 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
7661 {0x17, AC_VERB_SET_CONNECT_SEL, 0x03},
7662 /* Mic (rear) pin: input vref at 80% */
7663 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
7664 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
7665 /* Front Mic pin: input vref at 80% */
7666 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
7667 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
7668 /* Line In pin: input */
7669 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
7670 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
7671 /* Line-2 In: Headphone output (output 0 - 0x0c) */
7672 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
7673 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
7674 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
7675 /* CD pin widget for input */
7676 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
7678 /* FIXME: use matrix-type input source selection */
7679 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
7681 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7682 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
7683 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
7684 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
7686 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7687 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
7688 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
7689 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
7693 /* toggle speaker-output according to the hp-jack state */
7694 static void alc883_mitac_hp_automute(struct hda_codec *codec)
7696 unsigned int present;
7698 present = snd_hda_codec_read(codec, 0x15, 0,
7699 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
7700 snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0,
7701 HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0);
7702 snd_hda_codec_amp_stereo(codec, 0x17, HDA_OUTPUT, 0,
7703 HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0);
7706 /* auto-toggle front mic */
7708 static void alc883_mitac_mic_automute(struct hda_codec *codec)
7710 unsigned int present;
7713 present = snd_hda_codec_read(codec, 0x18, 0,
7714 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
7715 bits = present ? HDA_AMP_MUTE : 0;
7716 snd_hda_codec_amp_stereo(codec, 0x0b, HDA_INPUT, 1, HDA_AMP_MUTE, bits);
7720 static void alc883_mitac_automute(struct hda_codec *codec)
7722 alc883_mitac_hp_automute(codec);
7723 /* alc883_mitac_mic_automute(codec); */
7726 static void alc883_mitac_unsol_event(struct hda_codec *codec,
7729 switch (res >> 26) {
7730 case ALC880_HP_EVENT:
7731 alc883_mitac_hp_automute(codec);
7733 case ALC880_MIC_EVENT:
7734 /* alc883_mitac_mic_automute(codec); */
7739 static struct hda_verb alc883_mitac_verbs[] = {
7741 {0x15, AC_VERB_SET_CONNECT_SEL, 0x00},
7742 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
7744 {0x17, AC_VERB_SET_CONNECT_SEL, 0x02},
7745 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
7747 /* enable unsolicited event */
7748 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
7749 /* {0x18, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_MIC_EVENT | AC_USRSP_EN}, */
7754 static struct hda_verb alc883_clevo_m720_verbs[] = {
7756 {0x15, AC_VERB_SET_CONNECT_SEL, 0x00},
7757 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
7759 {0x14, AC_VERB_SET_CONNECT_SEL, 0x01},
7760 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
7762 /* enable unsolicited event */
7763 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
7764 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_MIC_EVENT | AC_USRSP_EN},
7769 static struct hda_verb alc883_2ch_fujitsu_pi2515_verbs[] = {
7771 {0x14, AC_VERB_SET_CONNECT_SEL, 0x00},
7772 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
7774 {0x15, AC_VERB_SET_CONNECT_SEL, 0x01},
7775 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
7777 /* enable unsolicited event */
7778 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
7783 static struct hda_verb alc883_tagra_verbs[] = {
7784 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7785 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7787 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
7788 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
7790 {0x18, AC_VERB_SET_CONNECT_SEL, 0x02}, /* mic/clfe */
7791 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x01}, /* line/surround */
7792 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
7794 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
7795 {0x01, AC_VERB_SET_GPIO_MASK, 0x03},
7796 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x03},
7797 {0x01, AC_VERB_SET_GPIO_DATA, 0x03},
7802 static struct hda_verb alc883_lenovo_101e_verbs[] = {
7803 {0x15, AC_VERB_SET_CONNECT_SEL, 0x00},
7804 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_FRONT_EVENT|AC_USRSP_EN},
7805 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT|AC_USRSP_EN},
7809 static struct hda_verb alc883_lenovo_nb0763_verbs[] = {
7810 {0x15, AC_VERB_SET_CONNECT_SEL, 0x00},
7811 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
7812 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
7813 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
7817 static struct hda_verb alc888_lenovo_ms7195_verbs[] = {
7818 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7819 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7820 {0x15, AC_VERB_SET_CONNECT_SEL, 0x00},
7821 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_FRONT_EVENT | AC_USRSP_EN},
7822 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
7826 static struct hda_verb alc883_haier_w66_verbs[] = {
7827 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7828 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7830 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
7832 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
7833 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
7834 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
7835 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
7839 static struct hda_verb alc888_lenovo_sky_verbs[] = {
7840 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7841 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7842 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7843 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7844 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7845 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
7846 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x00},
7847 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
7851 static struct hda_verb alc888_3st_hp_verbs[] = {
7852 {0x14, AC_VERB_SET_CONNECT_SEL, 0x00}, /* Front: output 0 (0x0c) */
7853 {0x16, AC_VERB_SET_CONNECT_SEL, 0x01}, /* Rear : output 1 (0x0d) */
7854 {0x18, AC_VERB_SET_CONNECT_SEL, 0x02}, /* CLFE : output 2 (0x0e) */
7858 static struct hda_verb alc888_6st_dell_verbs[] = {
7859 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
7863 static struct hda_verb alc888_3st_hp_2ch_init[] = {
7864 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
7865 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
7866 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
7867 { 0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
7871 static struct hda_verb alc888_3st_hp_6ch_init[] = {
7872 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
7873 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
7874 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
7875 { 0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
7879 static struct hda_channel_mode alc888_3st_hp_modes[2] = {
7880 { 2, alc888_3st_hp_2ch_init },
7881 { 6, alc888_3st_hp_6ch_init },
7884 /* toggle front-jack and RCA according to the hp-jack state */
7885 static void alc888_lenovo_ms7195_front_automute(struct hda_codec *codec)
7887 unsigned int present;
7889 present = snd_hda_codec_read(codec, 0x1b, 0,
7890 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
7891 snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0,
7892 HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0);
7893 snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0,
7894 HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0);
7897 /* toggle RCA according to the front-jack state */
7898 static void alc888_lenovo_ms7195_rca_automute(struct hda_codec *codec)
7900 unsigned int present;
7902 present = snd_hda_codec_read(codec, 0x14, 0,
7903 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
7904 snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0,
7905 HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0);
7908 static void alc883_lenovo_ms7195_unsol_event(struct hda_codec *codec,
7911 if ((res >> 26) == ALC880_HP_EVENT)
7912 alc888_lenovo_ms7195_front_automute(codec);
7913 if ((res >> 26) == ALC880_FRONT_EVENT)
7914 alc888_lenovo_ms7195_rca_automute(codec);
7917 static struct hda_verb alc883_medion_md2_verbs[] = {
7918 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7919 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7921 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
7923 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
7927 /* toggle speaker-output according to the hp-jack state */
7928 static void alc883_medion_md2_automute(struct hda_codec *codec)
7930 unsigned int present;
7932 present = snd_hda_codec_read(codec, 0x14, 0,
7933 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
7934 snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0,
7935 HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0);
7938 static void alc883_medion_md2_unsol_event(struct hda_codec *codec,
7941 if ((res >> 26) == ALC880_HP_EVENT)
7942 alc883_medion_md2_automute(codec);
7945 /* toggle speaker-output according to the hp-jack state */
7946 static void alc883_tagra_automute(struct hda_codec *codec)
7948 unsigned int present;
7951 present = snd_hda_codec_read(codec, 0x14, 0,
7952 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
7953 bits = present ? HDA_AMP_MUTE : 0;
7954 snd_hda_codec_amp_stereo(codec, 0x1b, HDA_OUTPUT, 0,
7955 HDA_AMP_MUTE, bits);
7956 snd_hda_codec_write_cache(codec, 1, 0, AC_VERB_SET_GPIO_DATA,
7960 static void alc883_tagra_unsol_event(struct hda_codec *codec, unsigned int res)
7962 if ((res >> 26) == ALC880_HP_EVENT)
7963 alc883_tagra_automute(codec);
7966 /* toggle speaker-output according to the hp-jack state */
7967 static void alc883_clevo_m720_hp_automute(struct hda_codec *codec)
7969 unsigned int present;
7972 present = snd_hda_codec_read(codec, 0x15, 0, AC_VERB_GET_PIN_SENSE, 0)
7973 & AC_PINSENSE_PRESENCE;
7974 bits = present ? HDA_AMP_MUTE : 0;
7975 snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0,
7976 HDA_AMP_MUTE, bits);
7979 static void alc883_clevo_m720_mic_automute(struct hda_codec *codec)
7981 unsigned int present;
7983 present = snd_hda_codec_read(codec, 0x18, 0,
7984 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
7985 snd_hda_codec_amp_stereo(codec, 0x0b, HDA_INPUT, 1,
7986 HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0);
7989 static void alc883_clevo_m720_automute(struct hda_codec *codec)
7991 alc883_clevo_m720_hp_automute(codec);
7992 alc883_clevo_m720_mic_automute(codec);
7995 static void alc883_clevo_m720_unsol_event(struct hda_codec *codec,
7998 switch (res >> 26) {
7999 case ALC880_HP_EVENT:
8000 alc883_clevo_m720_hp_automute(codec);
8002 case ALC880_MIC_EVENT:
8003 alc883_clevo_m720_mic_automute(codec);
8008 /* toggle speaker-output according to the hp-jack state */
8009 static void alc883_2ch_fujitsu_pi2515_automute(struct hda_codec *codec)
8011 unsigned int present;
8014 present = snd_hda_codec_read(codec, 0x14, 0, AC_VERB_GET_PIN_SENSE, 0)
8015 & AC_PINSENSE_PRESENCE;
8016 bits = present ? HDA_AMP_MUTE : 0;
8017 snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0,
8018 HDA_AMP_MUTE, bits);
8021 static void alc883_2ch_fujitsu_pi2515_unsol_event(struct hda_codec *codec,
8024 if ((res >> 26) == ALC880_HP_EVENT)
8025 alc883_2ch_fujitsu_pi2515_automute(codec);
8028 static void alc883_haier_w66_automute(struct hda_codec *codec)
8030 unsigned int present;
8033 present = snd_hda_codec_read(codec, 0x1b, 0,
8034 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
8035 bits = present ? 0x80 : 0;
8036 snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0,
8040 static void alc883_haier_w66_unsol_event(struct hda_codec *codec,
8043 if ((res >> 26) == ALC880_HP_EVENT)
8044 alc883_haier_w66_automute(codec);
8047 static void alc883_lenovo_101e_ispeaker_automute(struct hda_codec *codec)
8049 unsigned int present;
8052 present = snd_hda_codec_read(codec, 0x14, 0,
8053 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
8054 bits = present ? HDA_AMP_MUTE : 0;
8055 snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0,
8056 HDA_AMP_MUTE, bits);
8059 static void alc883_lenovo_101e_all_automute(struct hda_codec *codec)
8061 unsigned int present;
8064 present = snd_hda_codec_read(codec, 0x1b, 0,
8065 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
8066 bits = present ? HDA_AMP_MUTE : 0;
8067 snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0,
8068 HDA_AMP_MUTE, bits);
8069 snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0,
8070 HDA_AMP_MUTE, bits);
8073 static void alc883_lenovo_101e_unsol_event(struct hda_codec *codec,
8076 if ((res >> 26) == ALC880_HP_EVENT)
8077 alc883_lenovo_101e_all_automute(codec);
8078 if ((res >> 26) == ALC880_FRONT_EVENT)
8079 alc883_lenovo_101e_ispeaker_automute(codec);
8082 /* toggle speaker-output according to the hp-jack state */
8083 static void alc883_acer_aspire_automute(struct hda_codec *codec)
8085 unsigned int present;
8087 present = snd_hda_codec_read(codec, 0x14, 0,
8088 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
8089 snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0,
8090 HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0);
8091 snd_hda_codec_amp_stereo(codec, 0x16, HDA_OUTPUT, 0,
8092 HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0);
8095 static void alc883_acer_aspire_unsol_event(struct hda_codec *codec,
8098 if ((res >> 26) == ALC880_HP_EVENT)
8099 alc883_acer_aspire_automute(codec);
8102 static struct hda_verb alc883_acer_eapd_verbs[] = {
8103 /* HP Pin: output 0 (0x0c) */
8104 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
8105 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
8106 {0x14, AC_VERB_SET_CONNECT_SEL, 0x00},
8107 /* Front Pin: output 0 (0x0c) */
8108 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
8109 {0x15, AC_VERB_SET_CONNECT_SEL, 0x00},
8110 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
8111 {0x16, AC_VERB_SET_CONNECT_SEL, 0x00},
8112 /* eanable EAPD on medion laptop */
8113 {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
8114 {0x20, AC_VERB_SET_PROC_COEF, 0x3050},
8115 /* enable unsolicited event */
8116 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
8120 static void alc888_6st_dell_front_automute(struct hda_codec *codec)
8122 unsigned int present;
8124 present = snd_hda_codec_read(codec, 0x1b, 0,
8125 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
8126 snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0,
8127 HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0);
8128 snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0,
8129 HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0);
8130 snd_hda_codec_amp_stereo(codec, 0x16, HDA_OUTPUT, 0,
8131 HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0);
8132 snd_hda_codec_amp_stereo(codec, 0x17, HDA_OUTPUT, 0,
8133 HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0);
8136 static void alc888_6st_dell_unsol_event(struct hda_codec *codec,
8139 switch (res >> 26) {
8140 case ALC880_HP_EVENT:
8141 printk("hp_event\n");
8142 alc888_6st_dell_front_automute(codec);
8147 static void alc888_lenovo_sky_front_automute(struct hda_codec *codec)
8150 unsigned int present;
8152 snd_hda_codec_read(codec, 0x1b, 0, AC_VERB_SET_PIN_SENSE, 0);
8153 present = snd_hda_codec_read(codec, 0x1b, 0,
8154 AC_VERB_GET_PIN_SENSE, 0);
8155 present = (present & 0x80000000) != 0;
8157 /* mute internal speaker */
8158 snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0,
8159 HDA_AMP_MUTE, HDA_AMP_MUTE);
8160 snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0,
8161 HDA_AMP_MUTE, HDA_AMP_MUTE);
8162 snd_hda_codec_amp_stereo(codec, 0x16, HDA_OUTPUT, 0,
8163 HDA_AMP_MUTE, HDA_AMP_MUTE);
8164 snd_hda_codec_amp_stereo(codec, 0x17, HDA_OUTPUT, 0,
8165 HDA_AMP_MUTE, HDA_AMP_MUTE);
8166 snd_hda_codec_amp_stereo(codec, 0x1a, HDA_OUTPUT, 0,
8167 HDA_AMP_MUTE, HDA_AMP_MUTE);
8169 /* unmute internal speaker if necessary */
8170 mute = snd_hda_codec_amp_read(codec, 0x1b, 0, HDA_OUTPUT, 0);
8171 snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0,
8172 HDA_AMP_MUTE, mute);
8173 snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0,
8174 HDA_AMP_MUTE, mute);
8175 snd_hda_codec_amp_stereo(codec, 0x16, HDA_OUTPUT, 0,
8176 HDA_AMP_MUTE, mute);
8177 snd_hda_codec_amp_stereo(codec, 0x17, HDA_OUTPUT, 0,
8178 HDA_AMP_MUTE, mute);
8179 snd_hda_codec_amp_stereo(codec, 0x1a, HDA_OUTPUT, 0,
8180 HDA_AMP_MUTE, mute);
8184 static void alc883_lenovo_sky_unsol_event(struct hda_codec *codec,
8187 if ((res >> 26) == ALC880_HP_EVENT)
8188 alc888_lenovo_sky_front_automute(codec);
8192 * generic initialization of ADC, input mixers and output mixers
8194 static struct hda_verb alc883_auto_init_verbs[] = {
8196 * Unmute ADC0-2 and set the default input to mic-in
8198 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
8199 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8200 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
8201 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8203 /* Mute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
8205 * Note: PASD motherboards uses the Line In 2 as the input for
8206 * front panel mic (mic 2)
8208 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
8209 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
8210 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
8211 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
8212 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
8213 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
8216 * Set up output mixers (0x0c - 0x0f)
8218 /* set vol=0 to output mixers */
8219 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
8220 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
8221 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
8222 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
8223 /* set up input amps for analog loopback */
8224 /* Amp Indices: DAC = 0, mixer = 1 */
8225 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8226 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8227 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8228 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8229 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8230 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8231 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8232 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8233 {0x26, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8234 {0x26, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8236 /* FIXME: use matrix-type input source selection */
8237 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
8239 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8240 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8241 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
8242 /* {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)}, */
8243 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
8245 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8246 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8247 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
8248 /* {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)}, */
8249 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
8254 /* capture mixer elements */
8255 static struct snd_kcontrol_new alc883_capture_mixer[] = {
8256 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
8257 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
8258 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
8259 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
8261 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
8262 /* The multiple "Capture Source" controls confuse alsamixer
8263 * So call somewhat different..
8265 /* .name = "Capture Source", */
8266 .name = "Input Source",
8268 .info = alc882_mux_enum_info,
8269 .get = alc882_mux_enum_get,
8270 .put = alc882_mux_enum_put,
8275 static struct hda_verb alc888_asus_m90v_verbs[] = {
8276 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
8277 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
8278 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8279 /* enable unsolicited event */
8280 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
8281 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_MIC_EVENT | AC_USRSP_EN},
8285 static void alc883_nb_mic_automute(struct hda_codec *codec)
8287 unsigned int present;
8289 present = snd_hda_codec_read(codec, 0x18, 0,
8290 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
8291 snd_hda_codec_write(codec, 0x23, 0, AC_VERB_SET_AMP_GAIN_MUTE,
8292 0x7000 | (0x00 << 8) | (present ? 0 : 0x80));
8293 snd_hda_codec_write(codec, 0x23, 0, AC_VERB_SET_AMP_GAIN_MUTE,
8294 0x7000 | (0x01 << 8) | (present ? 0x80 : 0));
8297 static void alc883_M90V_speaker_automute(struct hda_codec *codec)
8299 unsigned int present;
8302 present = snd_hda_codec_read(codec, 0x1b, 0,
8303 AC_VERB_GET_PIN_SENSE, 0)
8304 & AC_PINSENSE_PRESENCE;
8305 bits = present ? 0 : PIN_OUT;
8306 snd_hda_codec_write(codec, 0x14, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
8308 snd_hda_codec_write(codec, 0x15, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
8310 snd_hda_codec_write(codec, 0x16, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
8314 static void alc883_mode2_unsol_event(struct hda_codec *codec,
8317 switch (res >> 26) {
8318 case ALC880_HP_EVENT:
8319 alc883_M90V_speaker_automute(codec);
8321 case ALC880_MIC_EVENT:
8322 alc883_nb_mic_automute(codec);
8327 static void alc883_mode2_inithook(struct hda_codec *codec)
8329 alc883_M90V_speaker_automute(codec);
8330 alc883_nb_mic_automute(codec);
8333 static struct hda_verb alc888_asus_eee1601_verbs[] = {
8334 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
8335 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
8336 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
8337 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8338 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
8339 {0x20, AC_VERB_SET_COEF_INDEX, 0x0b},
8340 {0x20, AC_VERB_SET_PROC_COEF, 0x0838},
8341 /* enable unsolicited event */
8342 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
8346 static void alc883_eee1601_speaker_automute(struct hda_codec *codec)
8348 unsigned int present;
8351 present = snd_hda_codec_read(codec, 0x14, 0,
8352 AC_VERB_GET_PIN_SENSE, 0)
8353 & AC_PINSENSE_PRESENCE;
8354 bits = present ? 0 : PIN_OUT;
8355 snd_hda_codec_write(codec, 0x1b, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
8359 static void alc883_eee1601_unsol_event(struct hda_codec *codec,
8362 switch (res >> 26) {
8363 case ALC880_HP_EVENT:
8364 alc883_eee1601_speaker_automute(codec);
8369 static void alc883_eee1601_inithook(struct hda_codec *codec)
8371 alc883_eee1601_speaker_automute(codec);
8374 #ifdef CONFIG_SND_HDA_POWER_SAVE
8375 #define alc883_loopbacks alc880_loopbacks
8378 /* pcm configuration: identiacal with ALC880 */
8379 #define alc883_pcm_analog_playback alc880_pcm_analog_playback
8380 #define alc883_pcm_analog_capture alc880_pcm_analog_capture
8381 #define alc883_pcm_analog_alt_capture alc880_pcm_analog_alt_capture
8382 #define alc883_pcm_digital_playback alc880_pcm_digital_playback
8383 #define alc883_pcm_digital_capture alc880_pcm_digital_capture
8386 * configuration and preset
8388 static const char *alc883_models[ALC883_MODEL_LAST] = {
8389 [ALC883_3ST_2ch_DIG] = "3stack-dig",
8390 [ALC883_3ST_6ch_DIG] = "3stack-6ch-dig",
8391 [ALC883_3ST_6ch] = "3stack-6ch",
8392 [ALC883_6ST_DIG] = "6stack-dig",
8393 [ALC883_TARGA_DIG] = "targa-dig",
8394 [ALC883_TARGA_2ch_DIG] = "targa-2ch-dig",
8395 [ALC883_ACER] = "acer",
8396 [ALC883_ACER_ASPIRE] = "acer-aspire",
8397 [ALC883_MEDION] = "medion",
8398 [ALC883_MEDION_MD2] = "medion-md2",
8399 [ALC883_LAPTOP_EAPD] = "laptop-eapd",
8400 [ALC883_LENOVO_101E_2ch] = "lenovo-101e",
8401 [ALC883_LENOVO_NB0763] = "lenovo-nb0763",
8402 [ALC888_LENOVO_MS7195_DIG] = "lenovo-ms7195-dig",
8403 [ALC888_LENOVO_SKY] = "lenovo-sky",
8404 [ALC883_HAIER_W66] = "haier-w66",
8405 [ALC888_3ST_HP] = "3stack-hp",
8406 [ALC888_6ST_DELL] = "6stack-dell",
8407 [ALC883_MITAC] = "mitac",
8408 [ALC883_CLEVO_M720] = "clevo-m720",
8409 [ALC883_FUJITSU_PI2515] = "fujitsu-pi2515",
8410 [ALC883_3ST_6ch_INTEL] = "3stack-6ch-intel",
8411 [ALC883_AUTO] = "auto",
8414 static struct snd_pci_quirk alc883_cfg_tbl[] = {
8415 SND_PCI_QUIRK(0x1019, 0x6668, "ECS", ALC883_3ST_6ch_DIG),
8416 SND_PCI_QUIRK(0x1025, 0x006c, "Acer Aspire 9810", ALC883_ACER_ASPIRE),
8417 SND_PCI_QUIRK(0x1025, 0x0090, "Acer Aspire", ALC883_ACER_ASPIRE),
8418 SND_PCI_QUIRK(0x1025, 0x0110, "Acer Aspire", ALC883_ACER_ASPIRE),
8419 SND_PCI_QUIRK(0x1025, 0x0112, "Acer Aspire 9303", ALC883_ACER_ASPIRE),
8420 SND_PCI_QUIRK(0x1025, 0x0121, "Acer Aspire 5920G", ALC883_ACER_ASPIRE),
8421 SND_PCI_QUIRK(0x1025, 0, "Acer laptop", ALC883_ACER), /* default Acer */
8422 SND_PCI_QUIRK(0x1028, 0x020d, "Dell Inspiron 530", ALC888_6ST_DELL),
8423 SND_PCI_QUIRK(0x103c, 0x2a3d, "HP Pavillion", ALC883_6ST_DIG),
8424 SND_PCI_QUIRK(0x103c, 0x2a4f, "HP Samba", ALC888_3ST_HP),
8425 SND_PCI_QUIRK(0x103c, 0x2a60, "HP Lucknow", ALC888_3ST_HP),
8426 SND_PCI_QUIRK(0x103c, 0x2a61, "HP Nettle", ALC883_6ST_DIG),
8427 SND_PCI_QUIRK(0x1043, 0x1873, "Asus M90V", ALC888_ASUS_M90V),
8428 SND_PCI_QUIRK(0x1043, 0x8249, "Asus M2A-VM HDMI", ALC883_3ST_6ch_DIG),
8429 SND_PCI_QUIRK(0x1043, 0x835f, "Asus Eee 1601", ALC888_ASUS_EEE1601),
8430 SND_PCI_QUIRK(0x105b, 0x0ce8, "Foxconn P35AX-S", ALC883_6ST_DIG),
8431 SND_PCI_QUIRK(0x105b, 0x6668, "Foxconn", ALC883_6ST_DIG),
8432 SND_PCI_QUIRK(0x1071, 0x8253, "Mitac 8252d", ALC883_MITAC),
8433 SND_PCI_QUIRK(0x1071, 0x8258, "Evesham Voyaeger", ALC883_LAPTOP_EAPD),
8434 SND_PCI_QUIRK(0x10f1, 0x2350, "TYAN-S2350", ALC888_6ST_DELL),
8435 SND_PCI_QUIRK(0x108e, 0x534d, NULL, ALC883_3ST_6ch),
8436 SND_PCI_QUIRK(0x1458, 0xa002, "MSI", ALC883_6ST_DIG),
8437 SND_PCI_QUIRK(0x1462, 0x0349, "MSI", ALC883_TARGA_2ch_DIG),
8438 SND_PCI_QUIRK(0x1462, 0x040d, "MSI", ALC883_TARGA_2ch_DIG),
8439 SND_PCI_QUIRK(0x1462, 0x0579, "MSI", ALC883_TARGA_2ch_DIG),
8440 SND_PCI_QUIRK(0x1462, 0x2fb3, "MSI", ALC883_TARGA_2ch_DIG),
8441 SND_PCI_QUIRK(0x1462, 0x3729, "MSI S420", ALC883_TARGA_DIG),
8442 SND_PCI_QUIRK(0x1462, 0x3783, "NEC S970", ALC883_TARGA_DIG),
8443 SND_PCI_QUIRK(0x1462, 0x3b7f, "MSI", ALC883_TARGA_2ch_DIG),
8444 SND_PCI_QUIRK(0x1462, 0x3ef9, "MSI", ALC883_TARGA_DIG),
8445 SND_PCI_QUIRK(0x1462, 0x3fc1, "MSI", ALC883_TARGA_DIG),
8446 SND_PCI_QUIRK(0x1462, 0x3fc3, "MSI", ALC883_TARGA_DIG),
8447 SND_PCI_QUIRK(0x1462, 0x3fcc, "MSI", ALC883_TARGA_DIG),
8448 SND_PCI_QUIRK(0x1462, 0x3fdf, "MSI", ALC883_TARGA_DIG),
8449 SND_PCI_QUIRK(0x1462, 0x4314, "MSI", ALC883_TARGA_DIG),
8450 SND_PCI_QUIRK(0x1462, 0x4319, "MSI", ALC883_TARGA_DIG),
8451 SND_PCI_QUIRK(0x1462, 0x4324, "MSI", ALC883_TARGA_DIG),
8452 SND_PCI_QUIRK(0x1462, 0x6668, "MSI", ALC883_6ST_DIG),
8453 SND_PCI_QUIRK(0x1462, 0x7187, "MSI", ALC883_6ST_DIG),
8454 SND_PCI_QUIRK(0x1462, 0x7250, "MSI", ALC883_6ST_DIG),
8455 SND_PCI_QUIRK(0x1462, 0x7267, "MSI", ALC883_3ST_6ch_DIG),
8456 SND_PCI_QUIRK(0x1462, 0x7280, "MSI", ALC883_6ST_DIG),
8457 SND_PCI_QUIRK(0x1462, 0x7327, "MSI", ALC883_6ST_DIG),
8458 SND_PCI_QUIRK(0x1462, 0xa422, "MSI", ALC883_TARGA_2ch_DIG),
8459 SND_PCI_QUIRK(0x147b, 0x1083, "Abit IP35-PRO", ALC883_6ST_DIG),
8460 SND_PCI_QUIRK(0x1558, 0x0721, "Clevo laptop M720R", ALC883_CLEVO_M720),
8461 SND_PCI_QUIRK(0x1558, 0x0722, "Clevo laptop M720SR", ALC883_CLEVO_M720),
8462 SND_PCI_QUIRK(0x1558, 0, "Clevo laptop", ALC883_LAPTOP_EAPD),
8463 SND_PCI_QUIRK(0x15d9, 0x8780, "Supermicro PDSBA", ALC883_3ST_6ch),
8464 SND_PCI_QUIRK(0x161f, 0x2054, "Medion laptop", ALC883_MEDION),
8465 SND_PCI_QUIRK(0x1734, 0x1108, "Fujitsu AMILO Pi2515", ALC883_FUJITSU_PI2515),
8466 SND_PCI_QUIRK(0x17aa, 0x101e, "Lenovo 101e", ALC883_LENOVO_101E_2ch),
8467 SND_PCI_QUIRK(0x17aa, 0x2085, "Lenovo NB0763", ALC883_LENOVO_NB0763),
8468 SND_PCI_QUIRK(0x17aa, 0x3bfc, "Lenovo NB0763", ALC883_LENOVO_NB0763),
8469 SND_PCI_QUIRK(0x17aa, 0x3bfd, "Lenovo NB0763", ALC883_LENOVO_NB0763),
8470 SND_PCI_QUIRK(0x17aa, 0x101d, "Lenovo Sky", ALC888_LENOVO_SKY),
8471 SND_PCI_QUIRK(0x17c0, 0x4071, "MEDION MD2", ALC883_MEDION_MD2),
8472 SND_PCI_QUIRK(0x17c0, 0x4085, "MEDION MD96630", ALC888_LENOVO_MS7195_DIG),
8473 SND_PCI_QUIRK(0x17f2, 0x5000, "Albatron KI690-AM2", ALC883_6ST_DIG),
8474 SND_PCI_QUIRK(0x1991, 0x5625, "Haier W66", ALC883_HAIER_W66),
8475 SND_PCI_QUIRK(0x8086, 0x0001, "DG33BUC", ALC883_3ST_6ch_INTEL),
8476 SND_PCI_QUIRK(0x8086, 0x0002, "DG33FBC", ALC883_3ST_6ch_INTEL),
8477 SND_PCI_QUIRK(0x8086, 0xd601, "D102GGC", ALC883_3ST_6ch),
8481 static struct alc_config_preset alc883_presets[] = {
8482 [ALC883_3ST_2ch_DIG] = {
8483 .mixers = { alc883_3ST_2ch_mixer },
8484 .init_verbs = { alc883_init_verbs },
8485 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
8486 .dac_nids = alc883_dac_nids,
8487 .dig_out_nid = ALC883_DIGOUT_NID,
8488 .dig_in_nid = ALC883_DIGIN_NID,
8489 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
8490 .channel_mode = alc883_3ST_2ch_modes,
8491 .input_mux = &alc883_capture_source,
8493 [ALC883_3ST_6ch_DIG] = {
8494 .mixers = { alc883_3ST_6ch_mixer, alc883_chmode_mixer },
8495 .init_verbs = { alc883_init_verbs },
8496 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
8497 .dac_nids = alc883_dac_nids,
8498 .dig_out_nid = ALC883_DIGOUT_NID,
8499 .dig_in_nid = ALC883_DIGIN_NID,
8500 .num_channel_mode = ARRAY_SIZE(alc883_3ST_6ch_modes),
8501 .channel_mode = alc883_3ST_6ch_modes,
8503 .input_mux = &alc883_capture_source,
8505 [ALC883_3ST_6ch] = {
8506 .mixers = { alc883_3ST_6ch_mixer, alc883_chmode_mixer },
8507 .init_verbs = { alc883_init_verbs },
8508 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
8509 .dac_nids = alc883_dac_nids,
8510 .num_channel_mode = ARRAY_SIZE(alc883_3ST_6ch_modes),
8511 .channel_mode = alc883_3ST_6ch_modes,
8513 .input_mux = &alc883_capture_source,
8515 [ALC883_3ST_6ch_INTEL] = {
8516 .mixers = { alc883_3ST_6ch_intel_mixer, alc883_chmode_mixer },
8517 .init_verbs = { alc883_init_verbs },
8518 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
8519 .dac_nids = alc883_dac_nids,
8520 .dig_out_nid = ALC883_DIGOUT_NID,
8521 .dig_in_nid = ALC883_DIGIN_NID,
8522 .num_channel_mode = ARRAY_SIZE(alc883_3ST_6ch_intel_modes),
8523 .channel_mode = alc883_3ST_6ch_intel_modes,
8525 .input_mux = &alc883_3stack_6ch_intel,
8527 [ALC883_6ST_DIG] = {
8528 .mixers = { alc883_base_mixer, alc883_chmode_mixer },
8529 .init_verbs = { alc883_init_verbs },
8530 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
8531 .dac_nids = alc883_dac_nids,
8532 .dig_out_nid = ALC883_DIGOUT_NID,
8533 .dig_in_nid = ALC883_DIGIN_NID,
8534 .num_channel_mode = ARRAY_SIZE(alc883_sixstack_modes),
8535 .channel_mode = alc883_sixstack_modes,
8536 .input_mux = &alc883_capture_source,
8538 [ALC883_TARGA_DIG] = {
8539 .mixers = { alc883_tagra_mixer, alc883_chmode_mixer },
8540 .init_verbs = { alc883_init_verbs, alc883_tagra_verbs},
8541 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
8542 .dac_nids = alc883_dac_nids,
8543 .dig_out_nid = ALC883_DIGOUT_NID,
8544 .num_channel_mode = ARRAY_SIZE(alc883_3ST_6ch_modes),
8545 .channel_mode = alc883_3ST_6ch_modes,
8547 .input_mux = &alc883_capture_source,
8548 .unsol_event = alc883_tagra_unsol_event,
8549 .init_hook = alc883_tagra_automute,
8551 [ALC883_TARGA_2ch_DIG] = {
8552 .mixers = { alc883_tagra_2ch_mixer},
8553 .init_verbs = { alc883_init_verbs, alc883_tagra_verbs},
8554 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
8555 .dac_nids = alc883_dac_nids,
8556 .dig_out_nid = ALC883_DIGOUT_NID,
8557 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
8558 .channel_mode = alc883_3ST_2ch_modes,
8559 .input_mux = &alc883_capture_source,
8560 .unsol_event = alc883_tagra_unsol_event,
8561 .init_hook = alc883_tagra_automute,
8564 .mixers = { alc883_base_mixer },
8565 /* On TravelMate laptops, GPIO 0 enables the internal speaker
8566 * and the headphone jack. Turn this on and rely on the
8567 * standard mute methods whenever the user wants to turn
8568 * these outputs off.
8570 .init_verbs = { alc883_init_verbs, alc880_gpio1_init_verbs },
8571 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
8572 .dac_nids = alc883_dac_nids,
8573 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
8574 .channel_mode = alc883_3ST_2ch_modes,
8575 .input_mux = &alc883_capture_source,
8577 [ALC883_ACER_ASPIRE] = {
8578 .mixers = { alc883_acer_aspire_mixer },
8579 .init_verbs = { alc883_init_verbs, alc883_acer_eapd_verbs },
8580 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
8581 .dac_nids = alc883_dac_nids,
8582 .dig_out_nid = ALC883_DIGOUT_NID,
8583 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
8584 .channel_mode = alc883_3ST_2ch_modes,
8585 .input_mux = &alc883_capture_source,
8586 .unsol_event = alc883_acer_aspire_unsol_event,
8587 .init_hook = alc883_acer_aspire_automute,
8590 .mixers = { alc883_fivestack_mixer,
8591 alc883_chmode_mixer },
8592 .init_verbs = { alc883_init_verbs,
8593 alc883_medion_eapd_verbs },
8594 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
8595 .dac_nids = alc883_dac_nids,
8596 .num_channel_mode = ARRAY_SIZE(alc883_sixstack_modes),
8597 .channel_mode = alc883_sixstack_modes,
8598 .input_mux = &alc883_capture_source,
8600 [ALC883_MEDION_MD2] = {
8601 .mixers = { alc883_medion_md2_mixer},
8602 .init_verbs = { alc883_init_verbs, alc883_medion_md2_verbs},
8603 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
8604 .dac_nids = alc883_dac_nids,
8605 .dig_out_nid = ALC883_DIGOUT_NID,
8606 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
8607 .channel_mode = alc883_3ST_2ch_modes,
8608 .input_mux = &alc883_capture_source,
8609 .unsol_event = alc883_medion_md2_unsol_event,
8610 .init_hook = alc883_medion_md2_automute,
8612 [ALC883_LAPTOP_EAPD] = {
8613 .mixers = { alc883_base_mixer },
8614 .init_verbs = { alc883_init_verbs, alc882_eapd_verbs },
8615 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
8616 .dac_nids = alc883_dac_nids,
8617 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
8618 .channel_mode = alc883_3ST_2ch_modes,
8619 .input_mux = &alc883_capture_source,
8621 [ALC883_CLEVO_M720] = {
8622 .mixers = { alc883_clevo_m720_mixer },
8623 .init_verbs = { alc883_init_verbs, alc883_clevo_m720_verbs },
8624 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
8625 .dac_nids = alc883_dac_nids,
8626 .dig_out_nid = ALC883_DIGOUT_NID,
8627 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
8628 .channel_mode = alc883_3ST_2ch_modes,
8629 .input_mux = &alc883_capture_source,
8630 .unsol_event = alc883_clevo_m720_unsol_event,
8631 .init_hook = alc883_clevo_m720_automute,
8633 [ALC883_LENOVO_101E_2ch] = {
8634 .mixers = { alc883_lenovo_101e_2ch_mixer},
8635 .init_verbs = { alc883_init_verbs, alc883_lenovo_101e_verbs},
8636 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
8637 .dac_nids = alc883_dac_nids,
8638 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
8639 .channel_mode = alc883_3ST_2ch_modes,
8640 .input_mux = &alc883_lenovo_101e_capture_source,
8641 .unsol_event = alc883_lenovo_101e_unsol_event,
8642 .init_hook = alc883_lenovo_101e_all_automute,
8644 [ALC883_LENOVO_NB0763] = {
8645 .mixers = { alc883_lenovo_nb0763_mixer },
8646 .init_verbs = { alc883_init_verbs, alc883_lenovo_nb0763_verbs},
8647 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
8648 .dac_nids = alc883_dac_nids,
8649 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
8650 .channel_mode = alc883_3ST_2ch_modes,
8652 .input_mux = &alc883_lenovo_nb0763_capture_source,
8653 .unsol_event = alc883_medion_md2_unsol_event,
8654 .init_hook = alc883_medion_md2_automute,
8656 [ALC888_LENOVO_MS7195_DIG] = {
8657 .mixers = { alc883_3ST_6ch_mixer, alc883_chmode_mixer },
8658 .init_verbs = { alc883_init_verbs, alc888_lenovo_ms7195_verbs},
8659 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
8660 .dac_nids = alc883_dac_nids,
8661 .dig_out_nid = ALC883_DIGOUT_NID,
8662 .num_channel_mode = ARRAY_SIZE(alc883_3ST_6ch_modes),
8663 .channel_mode = alc883_3ST_6ch_modes,
8665 .input_mux = &alc883_capture_source,
8666 .unsol_event = alc883_lenovo_ms7195_unsol_event,
8667 .init_hook = alc888_lenovo_ms7195_front_automute,
8669 [ALC883_HAIER_W66] = {
8670 .mixers = { alc883_tagra_2ch_mixer},
8671 .init_verbs = { alc883_init_verbs, alc883_haier_w66_verbs},
8672 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
8673 .dac_nids = alc883_dac_nids,
8674 .dig_out_nid = ALC883_DIGOUT_NID,
8675 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
8676 .channel_mode = alc883_3ST_2ch_modes,
8677 .input_mux = &alc883_capture_source,
8678 .unsol_event = alc883_haier_w66_unsol_event,
8679 .init_hook = alc883_haier_w66_automute,
8682 .mixers = { alc883_3ST_6ch_mixer, alc883_chmode_mixer },
8683 .init_verbs = { alc883_init_verbs, alc888_3st_hp_verbs },
8684 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
8685 .dac_nids = alc883_dac_nids,
8686 .num_channel_mode = ARRAY_SIZE(alc888_3st_hp_modes),
8687 .channel_mode = alc888_3st_hp_modes,
8689 .input_mux = &alc883_capture_source,
8691 [ALC888_6ST_DELL] = {
8692 .mixers = { alc883_base_mixer, alc883_chmode_mixer },
8693 .init_verbs = { alc883_init_verbs, alc888_6st_dell_verbs },
8694 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
8695 .dac_nids = alc883_dac_nids,
8696 .dig_out_nid = ALC883_DIGOUT_NID,
8697 .dig_in_nid = ALC883_DIGIN_NID,
8698 .num_channel_mode = ARRAY_SIZE(alc883_sixstack_modes),
8699 .channel_mode = alc883_sixstack_modes,
8700 .input_mux = &alc883_capture_source,
8701 .unsol_event = alc888_6st_dell_unsol_event,
8702 .init_hook = alc888_6st_dell_front_automute,
8705 .mixers = { alc883_mitac_mixer },
8706 .init_verbs = { alc883_init_verbs, alc883_mitac_verbs },
8707 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
8708 .dac_nids = alc883_dac_nids,
8709 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
8710 .channel_mode = alc883_3ST_2ch_modes,
8711 .input_mux = &alc883_capture_source,
8712 .unsol_event = alc883_mitac_unsol_event,
8713 .init_hook = alc883_mitac_automute,
8715 [ALC883_FUJITSU_PI2515] = {
8716 .mixers = { alc883_2ch_fujitsu_pi2515_mixer },
8717 .init_verbs = { alc883_init_verbs,
8718 alc883_2ch_fujitsu_pi2515_verbs},
8719 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
8720 .dac_nids = alc883_dac_nids,
8721 .dig_out_nid = ALC883_DIGOUT_NID,
8722 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
8723 .channel_mode = alc883_3ST_2ch_modes,
8724 .input_mux = &alc883_fujitsu_pi2515_capture_source,
8725 .unsol_event = alc883_2ch_fujitsu_pi2515_unsol_event,
8726 .init_hook = alc883_2ch_fujitsu_pi2515_automute,
8728 [ALC888_LENOVO_SKY] = {
8729 .mixers = { alc888_lenovo_sky_mixer, alc883_chmode_mixer },
8730 .init_verbs = { alc883_init_verbs, alc888_lenovo_sky_verbs},
8731 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
8732 .dac_nids = alc883_dac_nids,
8733 .dig_out_nid = ALC883_DIGOUT_NID,
8734 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
8735 .adc_nids = alc883_adc_nids,
8736 .num_channel_mode = ARRAY_SIZE(alc883_sixstack_modes),
8737 .channel_mode = alc883_sixstack_modes,
8739 .input_mux = &alc883_lenovo_sky_capture_source,
8740 .unsol_event = alc883_lenovo_sky_unsol_event,
8741 .init_hook = alc888_lenovo_sky_front_automute,
8743 [ALC888_ASUS_M90V] = {
8744 .mixers = { alc883_3ST_6ch_mixer, alc883_chmode_mixer },
8745 .init_verbs = { alc883_init_verbs, alc888_asus_m90v_verbs },
8746 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
8747 .dac_nids = alc883_dac_nids,
8748 .dig_out_nid = ALC883_DIGOUT_NID,
8749 .dig_in_nid = ALC883_DIGIN_NID,
8750 .num_channel_mode = ARRAY_SIZE(alc883_3ST_6ch_modes),
8751 .channel_mode = alc883_3ST_6ch_modes,
8753 .input_mux = &alc883_fujitsu_pi2515_capture_source,
8754 .unsol_event = alc883_mode2_unsol_event,
8755 .init_hook = alc883_mode2_inithook,
8757 [ALC888_ASUS_EEE1601] = {
8758 .mixers = { alc883_asus_eee1601_mixer },
8759 .init_verbs = { alc883_init_verbs, alc888_asus_eee1601_verbs },
8760 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
8761 .dac_nids = alc883_dac_nids,
8762 .dig_out_nid = ALC883_DIGOUT_NID,
8763 .dig_in_nid = ALC883_DIGIN_NID,
8764 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
8765 .channel_mode = alc883_3ST_2ch_modes,
8767 .input_mux = &alc883_asus_eee1601_capture_source,
8768 .unsol_event = alc883_eee1601_unsol_event,
8769 .init_hook = alc883_eee1601_inithook,
8775 * BIOS auto configuration
8777 static void alc883_auto_set_output_and_unmute(struct hda_codec *codec,
8778 hda_nid_t nid, int pin_type,
8782 struct alc_spec *spec = codec->spec;
8785 alc_set_pin_output(codec, nid, pin_type);
8786 if (spec->multiout.dac_nids[dac_idx] == 0x25)
8789 idx = spec->multiout.dac_nids[dac_idx] - 2;
8790 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CONNECT_SEL, idx);
8794 static void alc883_auto_init_multi_out(struct hda_codec *codec)
8796 struct alc_spec *spec = codec->spec;
8799 alc_subsystem_id(codec, 0x15, 0x1b, 0x14);
8800 for (i = 0; i <= HDA_SIDE; i++) {
8801 hda_nid_t nid = spec->autocfg.line_out_pins[i];
8802 int pin_type = get_pin_type(spec->autocfg.line_out_type);
8804 alc883_auto_set_output_and_unmute(codec, nid, pin_type,
8809 static void alc883_auto_init_hp_out(struct hda_codec *codec)
8811 struct alc_spec *spec = codec->spec;
8814 pin = spec->autocfg.hp_pins[0];
8815 if (pin) /* connect to front */
8817 alc883_auto_set_output_and_unmute(codec, pin, PIN_HP, 0);
8818 pin = spec->autocfg.speaker_pins[0];
8820 alc883_auto_set_output_and_unmute(codec, pin, PIN_OUT, 0);
8823 #define alc883_is_input_pin(nid) alc880_is_input_pin(nid)
8824 #define ALC883_PIN_CD_NID ALC880_PIN_CD_NID
8826 static void alc883_auto_init_analog_input(struct hda_codec *codec)
8828 struct alc_spec *spec = codec->spec;
8831 for (i = 0; i < AUTO_PIN_LAST; i++) {
8832 hda_nid_t nid = spec->autocfg.input_pins[i];
8833 if (alc883_is_input_pin(nid)) {
8834 snd_hda_codec_write(codec, nid, 0,
8835 AC_VERB_SET_PIN_WIDGET_CONTROL,
8836 (i <= AUTO_PIN_FRONT_MIC ?
8837 PIN_VREF80 : PIN_IN));
8838 if (nid != ALC883_PIN_CD_NID)
8839 snd_hda_codec_write(codec, nid, 0,
8840 AC_VERB_SET_AMP_GAIN_MUTE,
8846 #define alc883_auto_init_input_src alc882_auto_init_input_src
8848 /* almost identical with ALC880 parser... */
8849 static int alc883_parse_auto_config(struct hda_codec *codec)
8851 struct alc_spec *spec = codec->spec;
8852 int err = alc880_parse_auto_config(codec);
8857 return 0; /* no config found */
8859 err = alc_auto_add_mic_boost(codec);
8863 /* hack - override the init verbs */
8864 spec->init_verbs[0] = alc883_auto_init_verbs;
8865 spec->mixers[spec->num_mixers] = alc883_capture_mixer;
8868 return 1; /* config found */
8871 /* additional initialization for auto-configuration model */
8872 static void alc883_auto_init(struct hda_codec *codec)
8874 struct alc_spec *spec = codec->spec;
8875 alc883_auto_init_multi_out(codec);
8876 alc883_auto_init_hp_out(codec);
8877 alc883_auto_init_analog_input(codec);
8878 alc883_auto_init_input_src(codec);
8879 if (spec->unsol_event)
8880 alc_inithook(codec);
8883 static int patch_alc883(struct hda_codec *codec)
8885 struct alc_spec *spec;
8886 int err, board_config;
8888 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
8894 alc_fix_pll_init(codec, 0x20, 0x0a, 10);
8896 board_config = snd_hda_check_board_config(codec, ALC883_MODEL_LAST,
8899 if (board_config < 0) {
8900 printk(KERN_INFO "hda_codec: Unknown model for ALC883, "
8901 "trying auto-probe from BIOS...\n");
8902 board_config = ALC883_AUTO;
8905 if (board_config == ALC883_AUTO) {
8906 /* automatic parse from the BIOS config */
8907 err = alc883_parse_auto_config(codec);
8913 "hda_codec: Cannot set up configuration "
8914 "from BIOS. Using base mode...\n");
8915 board_config = ALC883_3ST_2ch_DIG;
8919 if (board_config != ALC883_AUTO)
8920 setup_preset(spec, &alc883_presets[board_config]);
8922 switch (codec->vendor_id) {
8924 if (codec->revision_id == 0x100101) {
8925 spec->stream_name_analog = "ALC1200 Analog";
8926 spec->stream_name_digital = "ALC1200 Digital";
8928 spec->stream_name_analog = "ALC888 Analog";
8929 spec->stream_name_digital = "ALC888 Digital";
8933 spec->stream_name_analog = "ALC889 Analog";
8934 spec->stream_name_digital = "ALC889 Digital";
8937 spec->stream_name_analog = "ALC883 Analog";
8938 spec->stream_name_digital = "ALC883 Digital";
8942 spec->stream_analog_playback = &alc883_pcm_analog_playback;
8943 spec->stream_analog_capture = &alc883_pcm_analog_capture;
8944 spec->stream_analog_alt_capture = &alc883_pcm_analog_alt_capture;
8946 spec->stream_digital_playback = &alc883_pcm_digital_playback;
8947 spec->stream_digital_capture = &alc883_pcm_digital_capture;
8949 spec->num_adc_nids = ARRAY_SIZE(alc883_adc_nids);
8950 spec->adc_nids = alc883_adc_nids;
8951 spec->capsrc_nids = alc883_capsrc_nids;
8953 spec->vmaster_nid = 0x0c;
8955 codec->patch_ops = alc_patch_ops;
8956 if (board_config == ALC883_AUTO)
8957 spec->init_hook = alc883_auto_init;
8959 #ifdef CONFIG_SND_HDA_POWER_SAVE
8960 if (!spec->loopback.amplist)
8961 spec->loopback.amplist = alc883_loopbacks;
8971 #define ALC262_DIGOUT_NID ALC880_DIGOUT_NID
8972 #define ALC262_DIGIN_NID ALC880_DIGIN_NID
8974 #define alc262_dac_nids alc260_dac_nids
8975 #define alc262_adc_nids alc882_adc_nids
8976 #define alc262_adc_nids_alt alc882_adc_nids_alt
8977 #define alc262_capsrc_nids alc882_capsrc_nids
8978 #define alc262_capsrc_nids_alt alc882_capsrc_nids_alt
8980 #define alc262_modes alc260_modes
8981 #define alc262_capture_source alc882_capture_source
8983 static hda_nid_t alc262_dmic_adc_nids[1] = {
8988 static hda_nid_t alc262_dmic_capsrc_nids[1] = { 0x22 };
8990 static struct snd_kcontrol_new alc262_base_mixer[] = {
8991 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
8992 HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT),
8993 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
8994 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
8995 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
8996 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
8997 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
8998 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
8999 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
9000 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x01, HDA_INPUT),
9001 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x01, HDA_INPUT),
9002 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
9003 /* HDA_CODEC_VOLUME("PC Beep Playback Volume", 0x0b, 0x05, HDA_INPUT),
9004 HDA_CODEC_MUTE("PC Beep Playback Switch", 0x0b, 0x05, HDA_INPUT), */
9005 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0D, 0x0, HDA_OUTPUT),
9006 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT),
9007 HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
9008 HDA_CODEC_MUTE_MONO("Mono Playback Switch", 0x16, 2, 0x0, HDA_OUTPUT),
9012 static struct snd_kcontrol_new alc262_hippo1_mixer[] = {
9013 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
9014 HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT),
9015 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
9016 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
9017 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
9018 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
9019 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
9020 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
9021 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
9022 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x01, HDA_INPUT),
9023 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x01, HDA_INPUT),
9024 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
9025 /* HDA_CODEC_VOLUME("PC Beep Playback Volume", 0x0b, 0x05, HDA_INPUT),
9026 HDA_CODEC_MUTE("PC Beep Playback Switch", 0x0b, 0x05, HDA_INPUT), */
9027 /*HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0D, 0x0, HDA_OUTPUT),*/
9028 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
9032 /* update HP, line and mono-out pins according to the master switch */
9033 static void alc262_hp_master_update(struct hda_codec *codec)
9035 struct alc_spec *spec = codec->spec;
9036 int val = spec->master_sw;
9039 snd_hda_codec_write_cache(codec, 0x1b, 0,
9040 AC_VERB_SET_PIN_WIDGET_CONTROL,
9042 snd_hda_codec_write_cache(codec, 0x15, 0,
9043 AC_VERB_SET_PIN_WIDGET_CONTROL,
9045 /* mono (speaker) depending on the HP jack sense */
9046 val = val && !spec->jack_present;
9047 snd_hda_codec_write_cache(codec, 0x16, 0,
9048 AC_VERB_SET_PIN_WIDGET_CONTROL,
9052 static void alc262_hp_bpc_automute(struct hda_codec *codec)
9054 struct alc_spec *spec = codec->spec;
9055 unsigned int presence;
9056 presence = snd_hda_codec_read(codec, 0x1b, 0,
9057 AC_VERB_GET_PIN_SENSE, 0);
9058 spec->jack_present = !!(presence & AC_PINSENSE_PRESENCE);
9059 alc262_hp_master_update(codec);
9062 static void alc262_hp_bpc_unsol_event(struct hda_codec *codec, unsigned int res)
9064 if ((res >> 26) != ALC880_HP_EVENT)
9066 alc262_hp_bpc_automute(codec);
9069 static void alc262_hp_wildwest_automute(struct hda_codec *codec)
9071 struct alc_spec *spec = codec->spec;
9072 unsigned int presence;
9073 presence = snd_hda_codec_read(codec, 0x15, 0,
9074 AC_VERB_GET_PIN_SENSE, 0);
9075 spec->jack_present = !!(presence & AC_PINSENSE_PRESENCE);
9076 alc262_hp_master_update(codec);
9079 static void alc262_hp_wildwest_unsol_event(struct hda_codec *codec,
9082 if ((res >> 26) != ALC880_HP_EVENT)
9084 alc262_hp_wildwest_automute(codec);
9087 static int alc262_hp_master_sw_get(struct snd_kcontrol *kcontrol,
9088 struct snd_ctl_elem_value *ucontrol)
9090 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
9091 struct alc_spec *spec = codec->spec;
9092 *ucontrol->value.integer.value = spec->master_sw;
9096 static int alc262_hp_master_sw_put(struct snd_kcontrol *kcontrol,
9097 struct snd_ctl_elem_value *ucontrol)
9099 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
9100 struct alc_spec *spec = codec->spec;
9101 int val = !!*ucontrol->value.integer.value;
9103 if (val == spec->master_sw)
9105 spec->master_sw = val;
9106 alc262_hp_master_update(codec);
9110 static struct snd_kcontrol_new alc262_HP_BPC_mixer[] = {
9112 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
9113 .name = "Master Playback Switch",
9114 .info = snd_ctl_boolean_mono_info,
9115 .get = alc262_hp_master_sw_get,
9116 .put = alc262_hp_master_sw_put,
9118 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
9119 HDA_CODEC_MUTE("Front Playback Switch", 0x15, 0x0, HDA_OUTPUT),
9120 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
9121 HDA_CODEC_VOLUME_MONO("Speaker Playback Volume", 0x0e, 2, 0x0,
9123 HDA_CODEC_MUTE_MONO("Speaker Playback Switch", 0x16, 2, 0x0,
9125 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
9126 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
9127 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
9128 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x01, HDA_INPUT),
9129 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x01, HDA_INPUT),
9130 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
9131 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
9132 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
9133 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
9134 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
9135 HDA_CODEC_VOLUME("PC Beep Playback Volume", 0x0b, 0x05, HDA_INPUT),
9136 HDA_CODEC_MUTE("PC Beep Playback Switch", 0x0b, 0x05, HDA_INPUT),
9137 HDA_CODEC_VOLUME("AUX IN Playback Volume", 0x0b, 0x06, HDA_INPUT),
9138 HDA_CODEC_MUTE("AUX IN Playback Switch", 0x0b, 0x06, HDA_INPUT),
9142 static struct snd_kcontrol_new alc262_HP_BPC_WildWest_mixer[] = {
9144 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
9145 .name = "Master Playback Switch",
9146 .info = snd_ctl_boolean_mono_info,
9147 .get = alc262_hp_master_sw_get,
9148 .put = alc262_hp_master_sw_put,
9150 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
9151 HDA_CODEC_MUTE("Front Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
9152 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
9153 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT),
9154 HDA_CODEC_VOLUME_MONO("Speaker Playback Volume", 0x0e, 2, 0x0,
9156 HDA_CODEC_MUTE_MONO("Speaker Playback Switch", 0x16, 2, 0x0,
9158 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x02, HDA_INPUT),
9159 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x02, HDA_INPUT),
9160 HDA_CODEC_VOLUME("Front Mic Boost", 0x1a, 0, HDA_INPUT),
9161 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x01, HDA_INPUT),
9162 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x01, HDA_INPUT),
9163 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
9164 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
9165 HDA_CODEC_VOLUME("PC Beep Playback Volume", 0x0b, 0x05, HDA_INPUT),
9166 HDA_CODEC_MUTE("PC Beep Playback Switch", 0x0b, 0x05, HDA_INPUT),
9170 static struct snd_kcontrol_new alc262_HP_BPC_WildWest_option_mixer[] = {
9171 HDA_CODEC_VOLUME("Rear Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
9172 HDA_CODEC_MUTE("Rear Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
9173 HDA_CODEC_VOLUME("Rear Mic Boost", 0x18, 0, HDA_INPUT),
9177 /* mute/unmute internal speaker according to the hp jack and mute state */
9178 static void alc262_hp_t5735_automute(struct hda_codec *codec, int force)
9180 struct alc_spec *spec = codec->spec;
9182 if (force || !spec->sense_updated) {
9183 unsigned int present;
9184 present = snd_hda_codec_read(codec, 0x15, 0,
9185 AC_VERB_GET_PIN_SENSE, 0);
9186 spec->jack_present = (present & AC_PINSENSE_PRESENCE) != 0;
9187 spec->sense_updated = 1;
9189 snd_hda_codec_amp_stereo(codec, 0x0c, HDA_OUTPUT, 0, HDA_AMP_MUTE,
9190 spec->jack_present ? HDA_AMP_MUTE : 0);
9193 static void alc262_hp_t5735_unsol_event(struct hda_codec *codec,
9196 if ((res >> 26) != ALC880_HP_EVENT)
9198 alc262_hp_t5735_automute(codec, 1);
9201 static void alc262_hp_t5735_init_hook(struct hda_codec *codec)
9203 alc262_hp_t5735_automute(codec, 1);
9206 static struct snd_kcontrol_new alc262_hp_t5735_mixer[] = {
9207 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
9208 HDA_CODEC_MUTE("Speaker Playback Switch", 0x14, 0x0, HDA_OUTPUT),
9209 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
9210 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT),
9211 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
9212 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
9213 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
9217 static struct hda_verb alc262_hp_t5735_verbs[] = {
9218 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
9219 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
9221 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
9225 static struct snd_kcontrol_new alc262_hp_rp5700_mixer[] = {
9226 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
9227 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
9228 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0e, 0x0, HDA_OUTPUT),
9229 HDA_CODEC_MUTE("Speaker Playback Switch", 0x16, 0x0, HDA_OUTPUT),
9230 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x01, HDA_INPUT),
9231 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x01, HDA_INPUT),
9235 static struct hda_verb alc262_hp_rp5700_verbs[] = {
9236 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9237 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9238 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
9239 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
9240 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
9241 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
9242 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
9243 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
9244 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x00 << 8))},
9245 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x00 << 8))},
9249 static struct hda_input_mux alc262_hp_rp5700_capture_source = {
9256 /* bind hp and internal speaker mute (with plug check) */
9257 static int alc262_sony_master_sw_put(struct snd_kcontrol *kcontrol,
9258 struct snd_ctl_elem_value *ucontrol)
9260 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
9261 long *valp = ucontrol->value.integer.value;
9264 /* change hp mute */
9265 change = snd_hda_codec_amp_update(codec, 0x15, 0, HDA_OUTPUT, 0,
9267 valp[0] ? 0 : HDA_AMP_MUTE);
9268 change |= snd_hda_codec_amp_update(codec, 0x15, 1, HDA_OUTPUT, 0,
9270 valp[1] ? 0 : HDA_AMP_MUTE);
9272 /* change speaker according to HP jack state */
9273 struct alc_spec *spec = codec->spec;
9275 if (spec->jack_present)
9276 mute = HDA_AMP_MUTE;
9278 mute = snd_hda_codec_amp_read(codec, 0x15, 0,
9280 snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0,
9281 HDA_AMP_MUTE, mute);
9286 static struct snd_kcontrol_new alc262_sony_mixer[] = {
9287 HDA_CODEC_VOLUME("Master Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
9289 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
9290 .name = "Master Playback Switch",
9291 .info = snd_hda_mixer_amp_switch_info,
9292 .get = snd_hda_mixer_amp_switch_get,
9293 .put = alc262_sony_master_sw_put,
9294 .private_value = HDA_COMPOSE_AMP_VAL(0x15, 3, 0, HDA_OUTPUT),
9296 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
9297 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
9298 HDA_CODEC_VOLUME("ATAPI Mic Playback Volume", 0x0b, 0x01, HDA_INPUT),
9299 HDA_CODEC_MUTE("ATAPI Mic Playback Switch", 0x0b, 0x01, HDA_INPUT),
9303 static struct snd_kcontrol_new alc262_benq_t31_mixer[] = {
9304 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
9305 HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT),
9306 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT),
9307 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
9308 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
9309 HDA_CODEC_VOLUME("ATAPI Mic Playback Volume", 0x0b, 0x01, HDA_INPUT),
9310 HDA_CODEC_MUTE("ATAPI Mic Playback Switch", 0x0b, 0x01, HDA_INPUT),
9314 #define alc262_capture_mixer alc882_capture_mixer
9315 #define alc262_capture_alt_mixer alc882_capture_alt_mixer
9318 * generic initialization of ADC, input mixers and output mixers
9320 static struct hda_verb alc262_init_verbs[] = {
9322 * Unmute ADC0-2 and set the default input to mic-in
9324 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
9325 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9326 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
9327 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9328 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
9329 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9331 /* Mute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
9333 * Note: PASD motherboards uses the Line In 2 as the input for
9334 * front panel mic (mic 2)
9336 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
9337 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
9338 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
9339 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
9340 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
9341 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
9344 * Set up output mixers (0x0c - 0x0e)
9346 /* set vol=0 to output mixers */
9347 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
9348 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
9349 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
9350 /* set up input amps for analog loopback */
9351 /* Amp Indices: DAC = 0, mixer = 1 */
9352 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9353 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9354 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9355 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9356 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9357 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9359 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
9360 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0},
9361 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
9362 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
9363 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
9364 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
9366 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
9367 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
9368 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
9369 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
9370 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
9372 {0x14, AC_VERB_SET_CONNECT_SEL, 0x00},
9373 {0x15, AC_VERB_SET_CONNECT_SEL, 0x01},
9375 /* FIXME: use matrix-type input source selection */
9376 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
9377 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
9378 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
9379 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
9380 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
9381 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
9383 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
9384 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
9385 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
9386 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
9388 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
9389 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
9390 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
9391 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
9396 static struct hda_verb alc262_eapd_verbs[] = {
9397 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 2},
9398 {0x15, AC_VERB_SET_EAPD_BTLENABLE, 2},
9402 static struct hda_verb alc262_hippo_unsol_verbs[] = {
9403 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
9404 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
9408 static struct hda_verb alc262_hippo1_unsol_verbs[] = {
9409 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0},
9410 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
9411 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
9413 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
9414 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
9418 static struct hda_verb alc262_sony_unsol_verbs[] = {
9419 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0},
9420 {0x15, AC_VERB_SET_CONNECT_SEL, 0x00},
9421 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24}, // Front Mic
9423 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
9424 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
9428 static struct hda_input_mux alc262_dmic_capture_source = {
9431 { "Int DMic", 0x9 },
9436 static struct snd_kcontrol_new alc262_toshiba_s06_mixer[] = {
9437 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
9438 HDA_CODEC_MUTE("Speaker Playback Switch", 0x14, 0x0, HDA_OUTPUT),
9439 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT),
9440 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
9441 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
9442 HDA_CODEC_VOLUME("Capture Volume", 0x09, 0x0, HDA_INPUT),
9443 HDA_CODEC_MUTE("Capture Switch", 0x09, 0x0, HDA_INPUT),
9445 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
9446 /* The multiple "Capture Source" controls confuse alsamixer
9447 * So call somewhat different..
9449 /* .name = "Capture Source", */
9450 .name = "Input Source",
9452 .info = alc_mux_enum_info,
9453 .get = alc_mux_enum_get,
9454 .put = alc_mux_enum_put,
9459 static struct hda_verb alc262_toshiba_s06_verbs[] = {
9460 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
9461 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
9462 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
9463 {0x15, AC_VERB_SET_CONNECT_SEL, 0x00},
9464 {0x22, AC_VERB_SET_CONNECT_SEL, 0x09},
9465 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
9466 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_MIC_EVENT},
9467 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
9471 static void alc262_dmic_automute(struct hda_codec *codec)
9473 unsigned int present;
9475 present = snd_hda_codec_read(codec, 0x18, 0,
9476 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
9477 snd_hda_codec_write(codec, 0x22, 0,
9478 AC_VERB_SET_CONNECT_SEL, present ? 0x0 : 0x09);
9481 /* toggle speaker-output according to the hp-jack state */
9482 static void alc262_toshiba_s06_speaker_automute(struct hda_codec *codec)
9484 unsigned int present;
9487 present = snd_hda_codec_read(codec, 0x15, 0,
9488 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
9489 bits = present ? 0 : PIN_OUT;
9490 snd_hda_codec_write(codec, 0x14, 0,
9491 AC_VERB_SET_PIN_WIDGET_CONTROL, bits);
9496 /* unsolicited event for HP jack sensing */
9497 static void alc262_toshiba_s06_unsol_event(struct hda_codec *codec,
9500 if ((res >> 26) == ALC880_HP_EVENT)
9501 alc262_toshiba_s06_speaker_automute(codec);
9502 if ((res >> 26) == ALC880_MIC_EVENT)
9503 alc262_dmic_automute(codec);
9507 static void alc262_toshiba_s06_init_hook(struct hda_codec *codec)
9509 alc262_toshiba_s06_speaker_automute(codec);
9510 alc262_dmic_automute(codec);
9513 /* mute/unmute internal speaker according to the hp jack and mute state */
9514 static void alc262_hippo_automute(struct hda_codec *codec)
9516 struct alc_spec *spec = codec->spec;
9518 unsigned int present;
9520 /* need to execute and sync at first */
9521 snd_hda_codec_read(codec, 0x15, 0, AC_VERB_SET_PIN_SENSE, 0);
9522 present = snd_hda_codec_read(codec, 0x15, 0,
9523 AC_VERB_GET_PIN_SENSE, 0);
9524 spec->jack_present = (present & 0x80000000) != 0;
9525 if (spec->jack_present) {
9526 /* mute internal speaker */
9527 snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0,
9528 HDA_AMP_MUTE, HDA_AMP_MUTE);
9530 /* unmute internal speaker if necessary */
9531 mute = snd_hda_codec_amp_read(codec, 0x15, 0, HDA_OUTPUT, 0);
9532 snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0,
9533 HDA_AMP_MUTE, mute);
9537 /* unsolicited event for HP jack sensing */
9538 static void alc262_hippo_unsol_event(struct hda_codec *codec,
9541 if ((res >> 26) != ALC880_HP_EVENT)
9543 alc262_hippo_automute(codec);
9546 static void alc262_hippo1_automute(struct hda_codec *codec)
9549 unsigned int present;
9551 snd_hda_codec_read(codec, 0x1b, 0, AC_VERB_SET_PIN_SENSE, 0);
9552 present = snd_hda_codec_read(codec, 0x1b, 0,
9553 AC_VERB_GET_PIN_SENSE, 0);
9554 present = (present & 0x80000000) != 0;
9556 /* mute internal speaker */
9557 snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0,
9558 HDA_AMP_MUTE, HDA_AMP_MUTE);
9560 /* unmute internal speaker if necessary */
9561 mute = snd_hda_codec_amp_read(codec, 0x1b, 0, HDA_OUTPUT, 0);
9562 snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0,
9563 HDA_AMP_MUTE, mute);
9567 /* unsolicited event for HP jack sensing */
9568 static void alc262_hippo1_unsol_event(struct hda_codec *codec,
9571 if ((res >> 26) != ALC880_HP_EVENT)
9573 alc262_hippo1_automute(codec);
9579 * 0x16 = internal speaker
9580 * 0x18 = external mic
9583 static struct snd_kcontrol_new alc262_nec_mixer[] = {
9584 HDA_CODEC_VOLUME_MONO("Speaker Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
9585 HDA_CODEC_MUTE_MONO("Speaker Playback Switch", 0x16, 0, 0x0, HDA_OUTPUT),
9587 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
9588 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
9589 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
9591 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
9592 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT),
9596 static struct hda_verb alc262_nec_verbs[] = {
9597 /* Unmute Speaker */
9598 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9601 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
9602 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
9604 /* External mic to headphone */
9605 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9606 /* External mic to speaker */
9607 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9613 * 0x14 = headphone/spdif-out, 0x15 = internal speaker,
9614 * 0x1b = port replicator headphone out
9617 #define ALC_HP_EVENT 0x37
9619 static struct hda_verb alc262_fujitsu_unsol_verbs[] = {
9620 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC_HP_EVENT},
9621 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
9622 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC_HP_EVENT},
9623 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
9627 static struct hda_verb alc262_lenovo_3000_unsol_verbs[] = {
9628 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC_HP_EVENT},
9629 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
9633 static struct hda_input_mux alc262_fujitsu_capture_source = {
9642 static struct hda_input_mux alc262_HP_capture_source = {
9646 { "Front Mic", 0x1 },
9653 static struct hda_input_mux alc262_HP_D7000_capture_source = {
9657 { "Front Mic", 0x2 },
9663 /* mute/unmute internal speaker according to the hp jacks and mute state */
9664 static void alc262_fujitsu_automute(struct hda_codec *codec, int force)
9666 struct alc_spec *spec = codec->spec;
9669 if (force || !spec->sense_updated) {
9670 unsigned int present;
9671 /* need to execute and sync at first */
9672 snd_hda_codec_read(codec, 0x14, 0, AC_VERB_SET_PIN_SENSE, 0);
9673 /* check laptop HP jack */
9674 present = snd_hda_codec_read(codec, 0x14, 0,
9675 AC_VERB_GET_PIN_SENSE, 0);
9676 /* need to execute and sync at first */
9677 snd_hda_codec_read(codec, 0x1b, 0, AC_VERB_SET_PIN_SENSE, 0);
9678 /* check docking HP jack */
9679 present |= snd_hda_codec_read(codec, 0x1b, 0,
9680 AC_VERB_GET_PIN_SENSE, 0);
9681 if (present & AC_PINSENSE_PRESENCE)
9682 spec->jack_present = 1;
9684 spec->jack_present = 0;
9685 spec->sense_updated = 1;
9687 /* unmute internal speaker only if both HPs are unplugged and
9688 * master switch is on
9690 if (spec->jack_present)
9691 mute = HDA_AMP_MUTE;
9693 mute = snd_hda_codec_amp_read(codec, 0x14, 0, HDA_OUTPUT, 0);
9694 snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0,
9695 HDA_AMP_MUTE, mute);
9698 /* unsolicited event for HP jack sensing */
9699 static void alc262_fujitsu_unsol_event(struct hda_codec *codec,
9702 if ((res >> 26) != ALC_HP_EVENT)
9704 alc262_fujitsu_automute(codec, 1);
9707 static void alc262_fujitsu_init_hook(struct hda_codec *codec)
9709 alc262_fujitsu_automute(codec, 1);
9712 /* bind volumes of both NID 0x0c and 0x0d */
9713 static struct hda_bind_ctls alc262_fujitsu_bind_master_vol = {
9714 .ops = &snd_hda_bind_vol,
9716 HDA_COMPOSE_AMP_VAL(0x0c, 3, 0, HDA_OUTPUT),
9717 HDA_COMPOSE_AMP_VAL(0x0d, 3, 0, HDA_OUTPUT),
9722 /* mute/unmute internal speaker according to the hp jack and mute state */
9723 static void alc262_lenovo_3000_automute(struct hda_codec *codec, int force)
9725 struct alc_spec *spec = codec->spec;
9728 if (force || !spec->sense_updated) {
9729 unsigned int present_int_hp;
9730 /* need to execute and sync at first */
9731 snd_hda_codec_read(codec, 0x1b, 0, AC_VERB_SET_PIN_SENSE, 0);
9732 present_int_hp = snd_hda_codec_read(codec, 0x1b, 0,
9733 AC_VERB_GET_PIN_SENSE, 0);
9734 spec->jack_present = (present_int_hp & 0x80000000) != 0;
9735 spec->sense_updated = 1;
9737 if (spec->jack_present) {
9738 /* mute internal speaker */
9739 snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0,
9740 HDA_AMP_MUTE, HDA_AMP_MUTE);
9741 snd_hda_codec_amp_stereo(codec, 0x16, HDA_OUTPUT, 0,
9742 HDA_AMP_MUTE, HDA_AMP_MUTE);
9744 /* unmute internal speaker if necessary */
9745 mute = snd_hda_codec_amp_read(codec, 0x1b, 0, HDA_OUTPUT, 0);
9746 snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0,
9747 HDA_AMP_MUTE, mute);
9748 snd_hda_codec_amp_stereo(codec, 0x16, HDA_OUTPUT, 0,
9749 HDA_AMP_MUTE, mute);
9753 /* unsolicited event for HP jack sensing */
9754 static void alc262_lenovo_3000_unsol_event(struct hda_codec *codec,
9757 if ((res >> 26) != ALC_HP_EVENT)
9759 alc262_lenovo_3000_automute(codec, 1);
9762 /* bind hp and internal speaker mute (with plug check) */
9763 static int alc262_fujitsu_master_sw_put(struct snd_kcontrol *kcontrol,
9764 struct snd_ctl_elem_value *ucontrol)
9766 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
9767 long *valp = ucontrol->value.integer.value;
9770 change = snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0,
9772 valp ? 0 : HDA_AMP_MUTE);
9773 change |= snd_hda_codec_amp_stereo(codec, 0x1b, HDA_OUTPUT, 0,
9775 valp ? 0 : HDA_AMP_MUTE);
9778 alc262_fujitsu_automute(codec, 0);
9782 static struct snd_kcontrol_new alc262_fujitsu_mixer[] = {
9783 HDA_BIND_VOL("Master Playback Volume", &alc262_fujitsu_bind_master_vol),
9785 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
9786 .name = "Master Playback Switch",
9787 .info = snd_hda_mixer_amp_switch_info,
9788 .get = snd_hda_mixer_amp_switch_get,
9789 .put = alc262_fujitsu_master_sw_put,
9790 .private_value = HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT),
9792 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
9793 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
9794 HDA_CODEC_VOLUME("PC Speaker Volume", 0x0b, 0x05, HDA_INPUT),
9795 HDA_CODEC_MUTE("PC Speaker Switch", 0x0b, 0x05, HDA_INPUT),
9796 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
9797 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
9798 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
9799 HDA_CODEC_VOLUME("Int Mic Boost", 0x19, 0, HDA_INPUT),
9800 HDA_CODEC_VOLUME("Int Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
9801 HDA_CODEC_MUTE("Int Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
9805 /* bind hp and internal speaker mute (with plug check) */
9806 static int alc262_lenovo_3000_master_sw_put(struct snd_kcontrol *kcontrol,
9807 struct snd_ctl_elem_value *ucontrol)
9809 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
9810 long *valp = ucontrol->value.integer.value;
9813 change = snd_hda_codec_amp_stereo(codec, 0x1b, HDA_OUTPUT, 0,
9815 valp ? 0 : HDA_AMP_MUTE);
9818 alc262_lenovo_3000_automute(codec, 0);
9822 static struct snd_kcontrol_new alc262_lenovo_3000_mixer[] = {
9823 HDA_BIND_VOL("Master Playback Volume", &alc262_fujitsu_bind_master_vol),
9825 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
9826 .name = "Master Playback Switch",
9827 .info = snd_hda_mixer_amp_switch_info,
9828 .get = snd_hda_mixer_amp_switch_get,
9829 .put = alc262_lenovo_3000_master_sw_put,
9830 .private_value = HDA_COMPOSE_AMP_VAL(0x1b, 3, 0, HDA_OUTPUT),
9832 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
9833 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
9834 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
9835 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
9836 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
9837 HDA_CODEC_VOLUME("Int Mic Boost", 0x19, 0, HDA_INPUT),
9838 HDA_CODEC_VOLUME("Int Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
9839 HDA_CODEC_MUTE("Int Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
9843 static struct snd_kcontrol_new alc262_toshiba_rx1_mixer[] = {
9844 HDA_BIND_VOL("Master Playback Volume", &alc262_fujitsu_bind_master_vol),
9846 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
9847 .name = "Master Playback Switch",
9848 .info = snd_hda_mixer_amp_switch_info,
9849 .get = snd_hda_mixer_amp_switch_get,
9850 .put = alc262_sony_master_sw_put,
9851 .private_value = HDA_COMPOSE_AMP_VAL(0x15, 3, 0, HDA_OUTPUT),
9853 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
9854 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
9855 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
9856 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x01, HDA_INPUT),
9857 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x01, HDA_INPUT),
9858 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
9862 /* additional init verbs for Benq laptops */
9863 static struct hda_verb alc262_EAPD_verbs[] = {
9864 {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
9865 {0x20, AC_VERB_SET_PROC_COEF, 0x3070},
9869 static struct hda_verb alc262_benq_t31_EAPD_verbs[] = {
9870 {0x15, AC_VERB_SET_CONNECT_SEL, 0x00},
9871 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
9873 {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
9874 {0x20, AC_VERB_SET_PROC_COEF, 0x3050},
9878 /* Samsung Q1 Ultra Vista model setup */
9879 static struct snd_kcontrol_new alc262_ultra_mixer[] = {
9880 HDA_CODEC_VOLUME("Master Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
9881 HDA_BIND_MUTE("Master Playback Switch", 0x0c, 2, HDA_INPUT),
9882 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x01, HDA_INPUT),
9883 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x01, HDA_INPUT),
9884 HDA_CODEC_VOLUME("Mic Boost", 0x19, 0, HDA_INPUT),
9885 HDA_CODEC_VOLUME("Headphone Mic Boost", 0x15, 0, HDA_INPUT),
9889 static struct hda_verb alc262_ultra_verbs[] = {
9891 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
9892 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
9893 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
9895 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
9896 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
9897 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9898 {0x14, AC_VERB_SET_CONNECT_SEL, 0x00},
9900 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
9901 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
9902 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9903 {0x15, AC_VERB_SET_CONNECT_SEL, 0x00},
9904 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
9906 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
9907 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
9908 /* ADC, choose mic */
9909 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
9910 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
9911 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9912 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
9913 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
9914 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
9915 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)},
9916 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)},
9917 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)},
9918 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(8)},
9922 /* mute/unmute internal speaker according to the hp jack and mute state */
9923 static void alc262_ultra_automute(struct hda_codec *codec)
9925 struct alc_spec *spec = codec->spec;
9929 /* auto-mute only when HP is used as HP */
9930 if (!spec->cur_mux[0]) {
9931 unsigned int present;
9932 /* need to execute and sync at first */
9933 snd_hda_codec_read(codec, 0x15, 0, AC_VERB_SET_PIN_SENSE, 0);
9934 present = snd_hda_codec_read(codec, 0x15, 0,
9935 AC_VERB_GET_PIN_SENSE, 0);
9936 spec->jack_present = (present & AC_PINSENSE_PRESENCE) != 0;
9937 if (spec->jack_present)
9938 mute = HDA_AMP_MUTE;
9940 /* mute/unmute internal speaker */
9941 snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0,
9942 HDA_AMP_MUTE, mute);
9943 /* mute/unmute HP */
9944 snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0,
9945 HDA_AMP_MUTE, mute ? 0 : HDA_AMP_MUTE);
9948 /* unsolicited event for HP jack sensing */
9949 static void alc262_ultra_unsol_event(struct hda_codec *codec,
9952 if ((res >> 26) != ALC880_HP_EVENT)
9954 alc262_ultra_automute(codec);
9957 static struct hda_input_mux alc262_ultra_capture_source = {
9961 { "Headphone", 0x7 },
9965 static int alc262_ultra_mux_enum_put(struct snd_kcontrol *kcontrol,
9966 struct snd_ctl_elem_value *ucontrol)
9968 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
9969 struct alc_spec *spec = codec->spec;
9972 ret = alc882_mux_enum_put(kcontrol, ucontrol);
9975 /* reprogram the HP pin as mic or HP according to the input source */
9976 snd_hda_codec_write_cache(codec, 0x15, 0,
9977 AC_VERB_SET_PIN_WIDGET_CONTROL,
9978 spec->cur_mux[0] ? PIN_VREF80 : PIN_HP);
9979 alc262_ultra_automute(codec); /* mute/unmute HP */
9983 static struct snd_kcontrol_new alc262_ultra_capture_mixer[] = {
9984 HDA_CODEC_VOLUME("Capture Volume", 0x07, 0x0, HDA_INPUT),
9985 HDA_CODEC_MUTE("Capture Switch", 0x07, 0x0, HDA_INPUT),
9987 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
9988 .name = "Capture Source",
9989 .info = alc882_mux_enum_info,
9990 .get = alc882_mux_enum_get,
9991 .put = alc262_ultra_mux_enum_put,
9996 /* add playback controls from the parsed DAC table */
9997 static int alc262_auto_create_multi_out_ctls(struct alc_spec *spec,
9998 const struct auto_pin_cfg *cfg)
10003 spec->multiout.num_dacs = 1; /* only use one dac */
10004 spec->multiout.dac_nids = spec->private_dac_nids;
10005 spec->multiout.dac_nids[0] = 2;
10007 nid = cfg->line_out_pins[0];
10009 err = add_control(spec, ALC_CTL_WIDGET_VOL,
10010 "Front Playback Volume",
10011 HDA_COMPOSE_AMP_VAL(0x0c, 3, 0, HDA_OUTPUT));
10014 err = add_control(spec, ALC_CTL_WIDGET_MUTE,
10015 "Front Playback Switch",
10016 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT));
10021 nid = cfg->speaker_pins[0];
10024 err = add_control(spec, ALC_CTL_WIDGET_VOL,
10025 "Speaker Playback Volume",
10026 HDA_COMPOSE_AMP_VAL(0x0e, 2, 0,
10030 err = add_control(spec, ALC_CTL_WIDGET_MUTE,
10031 "Speaker Playback Switch",
10032 HDA_COMPOSE_AMP_VAL(nid, 2, 0,
10037 err = add_control(spec, ALC_CTL_WIDGET_MUTE,
10038 "Speaker Playback Switch",
10039 HDA_COMPOSE_AMP_VAL(nid, 3, 0,
10045 nid = cfg->hp_pins[0];
10047 /* spec->multiout.hp_nid = 2; */
10049 err = add_control(spec, ALC_CTL_WIDGET_VOL,
10050 "Headphone Playback Volume",
10051 HDA_COMPOSE_AMP_VAL(0x0e, 2, 0,
10055 err = add_control(spec, ALC_CTL_WIDGET_MUTE,
10056 "Headphone Playback Switch",
10057 HDA_COMPOSE_AMP_VAL(nid, 2, 0,
10062 err = add_control(spec, ALC_CTL_WIDGET_MUTE,
10063 "Headphone Playback Switch",
10064 HDA_COMPOSE_AMP_VAL(nid, 3, 0,
10073 /* identical with ALC880 */
10074 #define alc262_auto_create_analog_input_ctls \
10075 alc880_auto_create_analog_input_ctls
10078 * generic initialization of ADC, input mixers and output mixers
10080 static struct hda_verb alc262_volume_init_verbs[] = {
10082 * Unmute ADC0-2 and set the default input to mic-in
10084 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
10085 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
10086 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
10087 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
10088 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
10089 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
10091 /* Mute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
10093 * Note: PASD motherboards uses the Line In 2 as the input for
10094 * front panel mic (mic 2)
10096 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
10097 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
10098 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
10099 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
10100 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
10101 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
10104 * Set up output mixers (0x0c - 0x0f)
10106 /* set vol=0 to output mixers */
10107 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
10108 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
10109 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
10111 /* set up input amps for analog loopback */
10112 /* Amp Indices: DAC = 0, mixer = 1 */
10113 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
10114 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
10115 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
10116 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
10117 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
10118 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
10120 /* FIXME: use matrix-type input source selection */
10121 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
10122 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
10123 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
10124 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
10125 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
10126 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
10128 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
10129 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
10130 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
10131 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
10133 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
10134 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
10135 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
10136 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
10141 static struct hda_verb alc262_HP_BPC_init_verbs[] = {
10143 * Unmute ADC0-2 and set the default input to mic-in
10145 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
10146 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
10147 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
10148 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
10149 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
10150 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
10152 /* Mute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
10154 * Note: PASD motherboards uses the Line In 2 as the input for
10155 * front panel mic (mic 2)
10157 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
10158 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
10159 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
10160 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
10161 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
10162 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
10163 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)},
10164 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)},
10167 * Set up output mixers (0x0c - 0x0e)
10169 /* set vol=0 to output mixers */
10170 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
10171 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
10172 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
10174 /* set up input amps for analog loopback */
10175 /* Amp Indices: DAC = 0, mixer = 1 */
10176 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
10177 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
10178 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
10179 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
10180 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
10181 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
10183 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
10184 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
10185 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
10187 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
10188 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
10190 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
10191 {0x15, AC_VERB_SET_CONNECT_SEL, 0x00},
10193 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
10194 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
10195 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
10196 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
10197 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
10199 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, 0x7023 },
10200 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000 },
10201 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000 },
10202 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, 0x7023 },
10203 {0x1c, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000 },
10204 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000 },
10207 /* FIXME: use matrix-type input source selection */
10208 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
10209 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
10210 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
10211 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x03 << 8))},
10212 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))},
10213 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x04 << 8))},
10215 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
10216 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x03 << 8))},
10217 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))},
10218 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x04 << 8))},
10220 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
10221 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x03 << 8))},
10222 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))},
10223 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x04 << 8))},
10225 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
10230 static struct hda_verb alc262_HP_BPC_WildWest_init_verbs[] = {
10232 * Unmute ADC0-2 and set the default input to mic-in
10234 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
10235 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
10236 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
10237 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
10238 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
10239 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
10241 /* Mute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
10243 * Note: PASD motherboards uses the Line In 2 as the input for front
10244 * panel mic (mic 2)
10246 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
10247 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
10248 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
10249 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
10250 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
10251 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
10252 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)},
10253 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)},
10254 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)},
10256 * Set up output mixers (0x0c - 0x0e)
10258 /* set vol=0 to output mixers */
10259 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
10260 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
10261 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
10263 /* set up input amps for analog loopback */
10264 /* Amp Indices: DAC = 0, mixer = 1 */
10265 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
10266 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
10267 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
10268 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
10269 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
10270 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
10273 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP }, /* HP */
10274 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT }, /* Mono */
10275 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 }, /* rear MIC */
10276 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN }, /* Line in */
10277 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 }, /* Front MIC */
10278 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT }, /* Line out */
10279 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN }, /* CD in */
10281 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
10282 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
10284 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
10285 {0x15, AC_VERB_SET_CONNECT_SEL, 0x01},
10287 /* {0x14, AC_VERB_SET_AMP_GAIN_MUTE, 0x7023 }, */
10288 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000 },
10289 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000 },
10290 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, 0x7023 },
10291 {0x1c, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000 },
10292 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000 },
10294 /* FIXME: use matrix-type input source selection */
10295 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
10296 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
10297 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))}, /*rear MIC*/
10298 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))}, /*Line in*/
10299 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))}, /*F MIC*/
10300 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x03 << 8))}, /*Front*/
10301 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x04 << 8))}, /*CD*/
10302 /* {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x06 << 8))}, */
10303 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x07 << 8))}, /*HP*/
10305 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
10306 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
10307 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))},
10308 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x03 << 8))},
10309 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x04 << 8))},
10310 /* {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x06 << 8))}, */
10311 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x07 << 8))},
10313 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
10314 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
10315 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))},
10316 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x03 << 8))},
10317 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x04 << 8))},
10318 /* {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x06 << 8))}, */
10319 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x07 << 8))},
10321 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
10326 static struct hda_verb alc262_toshiba_rx1_unsol_verbs[] = {
10328 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT }, /* Front Speaker */
10329 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
10330 {0x14, AC_VERB_SET_CONNECT_SEL, 0x01},
10332 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 }, /* MIC jack */
10333 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 }, /* Front MIC */
10334 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) },
10335 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0) },
10337 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP }, /* HP jack */
10338 {0x15, AC_VERB_SET_CONNECT_SEL, 0x00},
10339 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
10344 #ifdef CONFIG_SND_HDA_POWER_SAVE
10345 #define alc262_loopbacks alc880_loopbacks
10348 /* pcm configuration: identiacal with ALC880 */
10349 #define alc262_pcm_analog_playback alc880_pcm_analog_playback
10350 #define alc262_pcm_analog_capture alc880_pcm_analog_capture
10351 #define alc262_pcm_digital_playback alc880_pcm_digital_playback
10352 #define alc262_pcm_digital_capture alc880_pcm_digital_capture
10355 * BIOS auto configuration
10357 static int alc262_parse_auto_config(struct hda_codec *codec)
10359 struct alc_spec *spec = codec->spec;
10361 static hda_nid_t alc262_ignore[] = { 0x1d, 0 };
10363 err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
10367 if (!spec->autocfg.line_outs)
10368 return 0; /* can't find valid BIOS pin config */
10369 err = alc262_auto_create_multi_out_ctls(spec, &spec->autocfg);
10372 err = alc262_auto_create_analog_input_ctls(spec, &spec->autocfg);
10376 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
10378 if (spec->autocfg.dig_out_pin)
10379 spec->multiout.dig_out_nid = ALC262_DIGOUT_NID;
10380 if (spec->autocfg.dig_in_pin)
10381 spec->dig_in_nid = ALC262_DIGIN_NID;
10383 if (spec->kctl_alloc)
10384 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
10386 spec->init_verbs[spec->num_init_verbs++] = alc262_volume_init_verbs;
10387 spec->num_mux_defs = 1;
10388 spec->input_mux = &spec->private_imux;
10390 err = alc_auto_add_mic_boost(codec);
10394 store_pin_configs(codec);
10398 #define alc262_auto_init_multi_out alc882_auto_init_multi_out
10399 #define alc262_auto_init_hp_out alc882_auto_init_hp_out
10400 #define alc262_auto_init_analog_input alc882_auto_init_analog_input
10401 #define alc262_auto_init_input_src alc882_auto_init_input_src
10404 /* init callback for auto-configuration model -- overriding the default init */
10405 static void alc262_auto_init(struct hda_codec *codec)
10407 struct alc_spec *spec = codec->spec;
10408 alc262_auto_init_multi_out(codec);
10409 alc262_auto_init_hp_out(codec);
10410 alc262_auto_init_analog_input(codec);
10411 alc262_auto_init_input_src(codec);
10412 if (spec->unsol_event)
10413 alc_inithook(codec);
10417 * configuration and preset
10419 static const char *alc262_models[ALC262_MODEL_LAST] = {
10420 [ALC262_BASIC] = "basic",
10421 [ALC262_HIPPO] = "hippo",
10422 [ALC262_HIPPO_1] = "hippo_1",
10423 [ALC262_FUJITSU] = "fujitsu",
10424 [ALC262_HP_BPC] = "hp-bpc",
10425 [ALC262_HP_BPC_D7000_WL]= "hp-bpc-d7000",
10426 [ALC262_HP_TC_T5735] = "hp-tc-t5735",
10427 [ALC262_HP_RP5700] = "hp-rp5700",
10428 [ALC262_BENQ_ED8] = "benq",
10429 [ALC262_BENQ_T31] = "benq-t31",
10430 [ALC262_SONY_ASSAMD] = "sony-assamd",
10431 [ALC262_TOSHIBA_S06] = "toshiba-s06",
10432 [ALC262_TOSHIBA_RX1] = "toshiba-rx1",
10433 [ALC262_ULTRA] = "ultra",
10434 [ALC262_LENOVO_3000] = "lenovo-3000",
10435 [ALC262_NEC] = "nec",
10436 [ALC262_AUTO] = "auto",
10439 static struct snd_pci_quirk alc262_cfg_tbl[] = {
10440 SND_PCI_QUIRK(0x1002, 0x437b, "Hippo", ALC262_HIPPO),
10441 SND_PCI_QUIRK(0x1033, 0x8895, "NEC Versa S9100", ALC262_NEC),
10442 SND_PCI_QUIRK(0x103c, 0x12fe, "HP xw9400", ALC262_HP_BPC),
10443 SND_PCI_QUIRK(0x103c, 0x12ff, "HP xw4550", ALC262_HP_BPC),
10444 SND_PCI_QUIRK(0x103c, 0x1306, "HP xw8600", ALC262_HP_BPC),
10445 SND_PCI_QUIRK(0x103c, 0x1307, "HP xw6600", ALC262_HP_BPC),
10446 SND_PCI_QUIRK(0x103c, 0x1308, "HP xw4600", ALC262_HP_BPC),
10447 SND_PCI_QUIRK(0x103c, 0x1309, "HP xw4*00", ALC262_HP_BPC),
10448 SND_PCI_QUIRK(0x103c, 0x130a, "HP xw6*00", ALC262_HP_BPC),
10449 SND_PCI_QUIRK(0x103c, 0x130b, "HP xw8*00", ALC262_HP_BPC),
10450 SND_PCI_QUIRK(0x103c, 0x2800, "HP D7000", ALC262_HP_BPC_D7000_WL),
10451 SND_PCI_QUIRK(0x103c, 0x2801, "HP D7000", ALC262_HP_BPC_D7000_WF),
10452 SND_PCI_QUIRK(0x103c, 0x2802, "HP D7000", ALC262_HP_BPC_D7000_WL),
10453 SND_PCI_QUIRK(0x103c, 0x2803, "HP D7000", ALC262_HP_BPC_D7000_WF),
10454 SND_PCI_QUIRK(0x103c, 0x2804, "HP D7000", ALC262_HP_BPC_D7000_WL),
10455 SND_PCI_QUIRK(0x103c, 0x2805, "HP D7000", ALC262_HP_BPC_D7000_WF),
10456 SND_PCI_QUIRK(0x103c, 0x2806, "HP D7000", ALC262_HP_BPC_D7000_WL),
10457 SND_PCI_QUIRK(0x103c, 0x2807, "HP D7000", ALC262_HP_BPC_D7000_WF),
10458 SND_PCI_QUIRK(0x103c, 0x280c, "HP xw4400", ALC262_HP_BPC),
10459 SND_PCI_QUIRK(0x103c, 0x3014, "HP xw6400", ALC262_HP_BPC),
10460 SND_PCI_QUIRK(0x103c, 0x3015, "HP xw8400", ALC262_HP_BPC),
10461 SND_PCI_QUIRK(0x103c, 0x302f, "HP Thin Client T5735",
10462 ALC262_HP_TC_T5735),
10463 SND_PCI_QUIRK(0x103c, 0x2817, "HP RP5700", ALC262_HP_RP5700),
10464 SND_PCI_QUIRK(0x104d, 0x1f00, "Sony ASSAMD", ALC262_SONY_ASSAMD),
10465 SND_PCI_QUIRK(0x104d, 0x8203, "Sony UX-90", ALC262_HIPPO),
10466 SND_PCI_QUIRK(0x104d, 0x820f, "Sony ASSAMD", ALC262_SONY_ASSAMD),
10467 SND_PCI_QUIRK(0x104d, 0x900e, "Sony ASSAMD", ALC262_SONY_ASSAMD),
10468 SND_PCI_QUIRK(0x104d, 0x9015, "Sony 0x9015", ALC262_SONY_ASSAMD),
10469 SND_PCI_QUIRK(0x1179, 0x0001, "Toshiba dynabook SS RX1",
10470 ALC262_TOSHIBA_RX1),
10471 SND_PCI_QUIRK(0x1179, 0xff7b, "Toshiba S06", ALC262_TOSHIBA_S06),
10472 SND_PCI_QUIRK(0x10cf, 0x1397, "Fujitsu", ALC262_FUJITSU),
10473 SND_PCI_QUIRK(0x10cf, 0x142d, "Fujitsu Lifebook E8410", ALC262_FUJITSU),
10474 SND_PCI_QUIRK(0x144d, 0xc032, "Samsung Q1 Ultra", ALC262_ULTRA),
10475 SND_PCI_QUIRK(0x144d, 0xc039, "Samsung Q1U EL", ALC262_ULTRA),
10476 SND_PCI_QUIRK(0x17aa, 0x384e, "Lenovo 3000 y410", ALC262_LENOVO_3000),
10477 SND_PCI_QUIRK(0x17ff, 0x0560, "Benq ED8", ALC262_BENQ_ED8),
10478 SND_PCI_QUIRK(0x17ff, 0x058d, "Benq T31-16", ALC262_BENQ_T31),
10479 SND_PCI_QUIRK(0x17ff, 0x058f, "Benq Hippo", ALC262_HIPPO_1),
10483 static struct alc_config_preset alc262_presets[] = {
10485 .mixers = { alc262_base_mixer },
10486 .init_verbs = { alc262_init_verbs },
10487 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
10488 .dac_nids = alc262_dac_nids,
10490 .num_channel_mode = ARRAY_SIZE(alc262_modes),
10491 .channel_mode = alc262_modes,
10492 .input_mux = &alc262_capture_source,
10495 .mixers = { alc262_base_mixer },
10496 .init_verbs = { alc262_init_verbs, alc262_hippo_unsol_verbs},
10497 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
10498 .dac_nids = alc262_dac_nids,
10500 .dig_out_nid = ALC262_DIGOUT_NID,
10501 .num_channel_mode = ARRAY_SIZE(alc262_modes),
10502 .channel_mode = alc262_modes,
10503 .input_mux = &alc262_capture_source,
10504 .unsol_event = alc262_hippo_unsol_event,
10505 .init_hook = alc262_hippo_automute,
10507 [ALC262_HIPPO_1] = {
10508 .mixers = { alc262_hippo1_mixer },
10509 .init_verbs = { alc262_init_verbs, alc262_hippo1_unsol_verbs},
10510 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
10511 .dac_nids = alc262_dac_nids,
10513 .dig_out_nid = ALC262_DIGOUT_NID,
10514 .num_channel_mode = ARRAY_SIZE(alc262_modes),
10515 .channel_mode = alc262_modes,
10516 .input_mux = &alc262_capture_source,
10517 .unsol_event = alc262_hippo1_unsol_event,
10518 .init_hook = alc262_hippo1_automute,
10520 [ALC262_FUJITSU] = {
10521 .mixers = { alc262_fujitsu_mixer },
10522 .init_verbs = { alc262_init_verbs, alc262_EAPD_verbs,
10523 alc262_fujitsu_unsol_verbs },
10524 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
10525 .dac_nids = alc262_dac_nids,
10527 .dig_out_nid = ALC262_DIGOUT_NID,
10528 .num_channel_mode = ARRAY_SIZE(alc262_modes),
10529 .channel_mode = alc262_modes,
10530 .input_mux = &alc262_fujitsu_capture_source,
10531 .unsol_event = alc262_fujitsu_unsol_event,
10532 .init_hook = alc262_fujitsu_init_hook,
10534 [ALC262_HP_BPC] = {
10535 .mixers = { alc262_HP_BPC_mixer },
10536 .init_verbs = { alc262_HP_BPC_init_verbs },
10537 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
10538 .dac_nids = alc262_dac_nids,
10540 .num_channel_mode = ARRAY_SIZE(alc262_modes),
10541 .channel_mode = alc262_modes,
10542 .input_mux = &alc262_HP_capture_source,
10543 .unsol_event = alc262_hp_bpc_unsol_event,
10544 .init_hook = alc262_hp_bpc_automute,
10546 [ALC262_HP_BPC_D7000_WF] = {
10547 .mixers = { alc262_HP_BPC_WildWest_mixer },
10548 .init_verbs = { alc262_HP_BPC_WildWest_init_verbs },
10549 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
10550 .dac_nids = alc262_dac_nids,
10552 .num_channel_mode = ARRAY_SIZE(alc262_modes),
10553 .channel_mode = alc262_modes,
10554 .input_mux = &alc262_HP_D7000_capture_source,
10555 .unsol_event = alc262_hp_wildwest_unsol_event,
10556 .init_hook = alc262_hp_wildwest_automute,
10558 [ALC262_HP_BPC_D7000_WL] = {
10559 .mixers = { alc262_HP_BPC_WildWest_mixer,
10560 alc262_HP_BPC_WildWest_option_mixer },
10561 .init_verbs = { alc262_HP_BPC_WildWest_init_verbs },
10562 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
10563 .dac_nids = alc262_dac_nids,
10565 .num_channel_mode = ARRAY_SIZE(alc262_modes),
10566 .channel_mode = alc262_modes,
10567 .input_mux = &alc262_HP_D7000_capture_source,
10568 .unsol_event = alc262_hp_wildwest_unsol_event,
10569 .init_hook = alc262_hp_wildwest_automute,
10571 [ALC262_HP_TC_T5735] = {
10572 .mixers = { alc262_hp_t5735_mixer },
10573 .init_verbs = { alc262_init_verbs, alc262_hp_t5735_verbs },
10574 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
10575 .dac_nids = alc262_dac_nids,
10577 .num_channel_mode = ARRAY_SIZE(alc262_modes),
10578 .channel_mode = alc262_modes,
10579 .input_mux = &alc262_capture_source,
10580 .unsol_event = alc262_hp_t5735_unsol_event,
10581 .init_hook = alc262_hp_t5735_init_hook,
10583 [ALC262_HP_RP5700] = {
10584 .mixers = { alc262_hp_rp5700_mixer },
10585 .init_verbs = { alc262_init_verbs, alc262_hp_rp5700_verbs },
10586 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
10587 .dac_nids = alc262_dac_nids,
10588 .num_channel_mode = ARRAY_SIZE(alc262_modes),
10589 .channel_mode = alc262_modes,
10590 .input_mux = &alc262_hp_rp5700_capture_source,
10592 [ALC262_BENQ_ED8] = {
10593 .mixers = { alc262_base_mixer },
10594 .init_verbs = { alc262_init_verbs, alc262_EAPD_verbs },
10595 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
10596 .dac_nids = alc262_dac_nids,
10598 .num_channel_mode = ARRAY_SIZE(alc262_modes),
10599 .channel_mode = alc262_modes,
10600 .input_mux = &alc262_capture_source,
10602 [ALC262_SONY_ASSAMD] = {
10603 .mixers = { alc262_sony_mixer },
10604 .init_verbs = { alc262_init_verbs, alc262_sony_unsol_verbs},
10605 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
10606 .dac_nids = alc262_dac_nids,
10608 .num_channel_mode = ARRAY_SIZE(alc262_modes),
10609 .channel_mode = alc262_modes,
10610 .input_mux = &alc262_capture_source,
10611 .unsol_event = alc262_hippo_unsol_event,
10612 .init_hook = alc262_hippo_automute,
10614 [ALC262_BENQ_T31] = {
10615 .mixers = { alc262_benq_t31_mixer },
10616 .init_verbs = { alc262_init_verbs, alc262_benq_t31_EAPD_verbs, alc262_hippo_unsol_verbs },
10617 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
10618 .dac_nids = alc262_dac_nids,
10620 .num_channel_mode = ARRAY_SIZE(alc262_modes),
10621 .channel_mode = alc262_modes,
10622 .input_mux = &alc262_capture_source,
10623 .unsol_event = alc262_hippo_unsol_event,
10624 .init_hook = alc262_hippo_automute,
10627 .mixers = { alc262_ultra_mixer, alc262_ultra_capture_mixer },
10628 .init_verbs = { alc262_ultra_verbs },
10629 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
10630 .dac_nids = alc262_dac_nids,
10631 .num_channel_mode = ARRAY_SIZE(alc262_modes),
10632 .channel_mode = alc262_modes,
10633 .input_mux = &alc262_ultra_capture_source,
10634 .adc_nids = alc262_adc_nids, /* ADC0 */
10635 .capsrc_nids = alc262_capsrc_nids,
10636 .num_adc_nids = 1, /* single ADC */
10637 .unsol_event = alc262_ultra_unsol_event,
10638 .init_hook = alc262_ultra_automute,
10640 [ALC262_LENOVO_3000] = {
10641 .mixers = { alc262_lenovo_3000_mixer },
10642 .init_verbs = { alc262_init_verbs, alc262_EAPD_verbs,
10643 alc262_lenovo_3000_unsol_verbs },
10644 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
10645 .dac_nids = alc262_dac_nids,
10647 .dig_out_nid = ALC262_DIGOUT_NID,
10648 .num_channel_mode = ARRAY_SIZE(alc262_modes),
10649 .channel_mode = alc262_modes,
10650 .input_mux = &alc262_fujitsu_capture_source,
10651 .unsol_event = alc262_lenovo_3000_unsol_event,
10654 .mixers = { alc262_nec_mixer },
10655 .init_verbs = { alc262_nec_verbs },
10656 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
10657 .dac_nids = alc262_dac_nids,
10659 .num_channel_mode = ARRAY_SIZE(alc262_modes),
10660 .channel_mode = alc262_modes,
10661 .input_mux = &alc262_capture_source,
10663 [ALC262_TOSHIBA_S06] = {
10664 .mixers = { alc262_toshiba_s06_mixer },
10665 .init_verbs = { alc262_init_verbs, alc262_toshiba_s06_verbs,
10666 alc262_eapd_verbs },
10667 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
10668 .capsrc_nids = alc262_dmic_capsrc_nids,
10669 .dac_nids = alc262_dac_nids,
10670 .adc_nids = alc262_dmic_adc_nids, /* ADC0 */
10671 .dig_out_nid = ALC262_DIGOUT_NID,
10672 .num_channel_mode = ARRAY_SIZE(alc262_modes),
10673 .channel_mode = alc262_modes,
10674 .input_mux = &alc262_dmic_capture_source,
10675 .unsol_event = alc262_toshiba_s06_unsol_event,
10676 .init_hook = alc262_toshiba_s06_init_hook,
10678 [ALC262_TOSHIBA_RX1] = {
10679 .mixers = { alc262_toshiba_rx1_mixer },
10680 .init_verbs = { alc262_init_verbs, alc262_toshiba_rx1_unsol_verbs },
10681 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
10682 .dac_nids = alc262_dac_nids,
10684 .num_channel_mode = ARRAY_SIZE(alc262_modes),
10685 .channel_mode = alc262_modes,
10686 .input_mux = &alc262_capture_source,
10687 .unsol_event = alc262_hippo_unsol_event,
10688 .init_hook = alc262_hippo_automute,
10692 static int patch_alc262(struct hda_codec *codec)
10694 struct alc_spec *spec;
10698 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
10702 codec->spec = spec;
10704 /* pshou 07/11/05 set a zero PCM sample to DAC when FIFO is
10709 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_COEF_INDEX, 7);
10710 tmp = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_PROC_COEF, 0);
10711 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_COEF_INDEX, 7);
10712 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_PROC_COEF, tmp | 0x80);
10716 alc_fix_pll_init(codec, 0x20, 0x0a, 10);
10718 board_config = snd_hda_check_board_config(codec, ALC262_MODEL_LAST,
10722 if (board_config < 0) {
10723 printk(KERN_INFO "hda_codec: Unknown model for ALC262, "
10724 "trying auto-probe from BIOS...\n");
10725 board_config = ALC262_AUTO;
10728 if (board_config == ALC262_AUTO) {
10729 /* automatic parse from the BIOS config */
10730 err = alc262_parse_auto_config(codec);
10736 "hda_codec: Cannot set up configuration "
10737 "from BIOS. Using base mode...\n");
10738 board_config = ALC262_BASIC;
10742 if (board_config != ALC262_AUTO)
10743 setup_preset(spec, &alc262_presets[board_config]);
10745 spec->stream_name_analog = "ALC262 Analog";
10746 spec->stream_analog_playback = &alc262_pcm_analog_playback;
10747 spec->stream_analog_capture = &alc262_pcm_analog_capture;
10749 spec->stream_name_digital = "ALC262 Digital";
10750 spec->stream_digital_playback = &alc262_pcm_digital_playback;
10751 spec->stream_digital_capture = &alc262_pcm_digital_capture;
10753 if (!spec->adc_nids && spec->input_mux) {
10754 /* check whether NID 0x07 is valid */
10755 unsigned int wcap = get_wcaps(codec, 0x07);
10758 wcap = (wcap & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT;
10759 if (wcap != AC_WID_AUD_IN) {
10760 spec->adc_nids = alc262_adc_nids_alt;
10761 spec->num_adc_nids = ARRAY_SIZE(alc262_adc_nids_alt);
10762 spec->capsrc_nids = alc262_capsrc_nids_alt;
10763 spec->mixers[spec->num_mixers] =
10764 alc262_capture_alt_mixer;
10765 spec->num_mixers++;
10767 spec->adc_nids = alc262_adc_nids;
10768 spec->num_adc_nids = ARRAY_SIZE(alc262_adc_nids);
10769 spec->capsrc_nids = alc262_capsrc_nids;
10770 spec->mixers[spec->num_mixers] = alc262_capture_mixer;
10771 spec->num_mixers++;
10775 spec->vmaster_nid = 0x0c;
10777 codec->patch_ops = alc_patch_ops;
10778 if (board_config == ALC262_AUTO)
10779 spec->init_hook = alc262_auto_init;
10780 #ifdef CONFIG_SND_HDA_POWER_SAVE
10781 if (!spec->loopback.amplist)
10782 spec->loopback.amplist = alc262_loopbacks;
10789 * ALC268 channel source setting (2 channel)
10791 #define ALC268_DIGOUT_NID ALC880_DIGOUT_NID
10792 #define alc268_modes alc260_modes
10794 static hda_nid_t alc268_dac_nids[2] = {
10799 static hda_nid_t alc268_adc_nids[2] = {
10804 static hda_nid_t alc268_adc_nids_alt[1] = {
10809 static hda_nid_t alc268_capsrc_nids[2] = { 0x23, 0x24 };
10811 static struct snd_kcontrol_new alc268_base_mixer[] = {
10812 /* output mixer control */
10813 HDA_CODEC_VOLUME("Front Playback Volume", 0x2, 0x0, HDA_OUTPUT),
10814 HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT),
10815 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x3, 0x0, HDA_OUTPUT),
10816 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT),
10817 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
10818 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
10819 HDA_CODEC_VOLUME("Line In Boost", 0x1a, 0, HDA_INPUT),
10823 /* bind Beep switches of both NID 0x0f and 0x10 */
10824 static struct hda_bind_ctls alc268_bind_beep_sw = {
10825 .ops = &snd_hda_bind_sw,
10827 HDA_COMPOSE_AMP_VAL(0x0f, 3, 1, HDA_INPUT),
10828 HDA_COMPOSE_AMP_VAL(0x10, 3, 1, HDA_INPUT),
10833 static struct snd_kcontrol_new alc268_beep_mixer[] = {
10834 HDA_CODEC_VOLUME("Beep Playback Volume", 0x1d, 0x0, HDA_INPUT),
10835 HDA_BIND_SW("Beep Playback Switch", &alc268_bind_beep_sw),
10839 static struct hda_verb alc268_eapd_verbs[] = {
10840 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 2},
10841 {0x15, AC_VERB_SET_EAPD_BTLENABLE, 2},
10845 /* Toshiba specific */
10846 #define alc268_toshiba_automute alc262_hippo_automute
10848 static struct hda_verb alc268_toshiba_verbs[] = {
10849 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
10853 static struct hda_input_mux alc268_acer_lc_capture_source = {
10861 /* Acer specific */
10862 /* bind volumes of both NID 0x02 and 0x03 */
10863 static struct hda_bind_ctls alc268_acer_bind_master_vol = {
10864 .ops = &snd_hda_bind_vol,
10866 HDA_COMPOSE_AMP_VAL(0x02, 3, 0, HDA_OUTPUT),
10867 HDA_COMPOSE_AMP_VAL(0x03, 3, 0, HDA_OUTPUT),
10872 /* mute/unmute internal speaker according to the hp jack and mute state */
10873 static void alc268_acer_automute(struct hda_codec *codec, int force)
10875 struct alc_spec *spec = codec->spec;
10878 if (force || !spec->sense_updated) {
10879 unsigned int present;
10880 present = snd_hda_codec_read(codec, 0x14, 0,
10881 AC_VERB_GET_PIN_SENSE, 0);
10882 spec->jack_present = (present & 0x80000000) != 0;
10883 spec->sense_updated = 1;
10885 if (spec->jack_present)
10886 mute = HDA_AMP_MUTE; /* mute internal speaker */
10887 else /* unmute internal speaker if necessary */
10888 mute = snd_hda_codec_amp_read(codec, 0x14, 0, HDA_OUTPUT, 0);
10889 snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0,
10890 HDA_AMP_MUTE, mute);
10894 /* bind hp and internal speaker mute (with plug check) */
10895 static int alc268_acer_master_sw_put(struct snd_kcontrol *kcontrol,
10896 struct snd_ctl_elem_value *ucontrol)
10898 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
10899 long *valp = ucontrol->value.integer.value;
10902 change = snd_hda_codec_amp_update(codec, 0x14, 0, HDA_OUTPUT, 0,
10904 valp[0] ? 0 : HDA_AMP_MUTE);
10905 change |= snd_hda_codec_amp_update(codec, 0x14, 1, HDA_OUTPUT, 0,
10907 valp[1] ? 0 : HDA_AMP_MUTE);
10909 alc268_acer_automute(codec, 0);
10913 static struct snd_kcontrol_new alc268_acer_aspire_one_mixer[] = {
10914 /* output mixer control */
10915 HDA_BIND_VOL("Master Playback Volume", &alc268_acer_bind_master_vol),
10917 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
10918 .name = "Master Playback Switch",
10919 .info = snd_hda_mixer_amp_switch_info,
10920 .get = snd_hda_mixer_amp_switch_get,
10921 .put = alc268_acer_master_sw_put,
10922 .private_value = HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT),
10924 HDA_CODEC_VOLUME("Mic Boost Capture Volume", 0x18, 0, HDA_INPUT),
10928 static struct snd_kcontrol_new alc268_acer_mixer[] = {
10929 /* output mixer control */
10930 HDA_BIND_VOL("Master Playback Volume", &alc268_acer_bind_master_vol),
10932 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
10933 .name = "Master Playback Switch",
10934 .info = snd_hda_mixer_amp_switch_info,
10935 .get = snd_hda_mixer_amp_switch_get,
10936 .put = alc268_acer_master_sw_put,
10937 .private_value = HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT),
10939 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
10940 HDA_CODEC_VOLUME("Internal Mic Boost", 0x19, 0, HDA_INPUT),
10941 HDA_CODEC_VOLUME("Line In Boost", 0x1a, 0, HDA_INPUT),
10945 static struct hda_verb alc268_acer_aspire_one_verbs[] = {
10946 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
10947 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
10948 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
10949 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_MIC_EVENT},
10950 {0x23, AC_VERB_SET_CONNECT_SEL, 0x06},
10951 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, 0xa017},
10955 static struct hda_verb alc268_acer_verbs[] = {
10956 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN}, /* internal dmic? */
10957 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
10958 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
10959 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
10960 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
10961 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
10962 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
10966 /* unsolicited event for HP jack sensing */
10967 static void alc268_toshiba_unsol_event(struct hda_codec *codec,
10970 if ((res >> 26) != ALC880_HP_EVENT)
10972 alc268_toshiba_automute(codec);
10975 static void alc268_acer_unsol_event(struct hda_codec *codec,
10978 if ((res >> 26) != ALC880_HP_EVENT)
10980 alc268_acer_automute(codec, 1);
10983 static void alc268_acer_init_hook(struct hda_codec *codec)
10985 alc268_acer_automute(codec, 1);
10988 /* toggle speaker-output according to the hp-jack state */
10989 static void alc268_aspire_one_speaker_automute(struct hda_codec *codec)
10991 unsigned int present;
10992 unsigned char bits;
10994 present = snd_hda_codec_read(codec, 0x15, 0,
10995 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
10996 bits = present ? AMP_IN_MUTE(0) : 0;
10997 snd_hda_codec_amp_stereo(codec, 0x0f, HDA_INPUT, 0,
10998 AMP_IN_MUTE(0), bits);
10999 snd_hda_codec_amp_stereo(codec, 0x0f, HDA_INPUT, 1,
11000 AMP_IN_MUTE(0), bits);
11004 static void alc268_acer_mic_automute(struct hda_codec *codec)
11006 unsigned int present;
11008 present = snd_hda_codec_read(codec, 0x18, 0,
11009 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
11010 snd_hda_codec_write(codec, 0x23, 0, AC_VERB_SET_CONNECT_SEL,
11011 present ? 0x0 : 0x6);
11014 static void alc268_acer_lc_unsol_event(struct hda_codec *codec,
11017 if ((res >> 26) == ALC880_HP_EVENT)
11018 alc268_aspire_one_speaker_automute(codec);
11019 if ((res >> 26) == ALC880_MIC_EVENT)
11020 alc268_acer_mic_automute(codec);
11023 static void alc268_acer_lc_init_hook(struct hda_codec *codec)
11025 alc268_aspire_one_speaker_automute(codec);
11026 alc268_acer_mic_automute(codec);
11029 static struct snd_kcontrol_new alc268_dell_mixer[] = {
11030 /* output mixer control */
11031 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x02, 0x0, HDA_OUTPUT),
11032 HDA_CODEC_MUTE("Speaker Playback Switch", 0x14, 0x0, HDA_OUTPUT),
11033 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x03, 0x0, HDA_OUTPUT),
11034 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT),
11035 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
11036 HDA_CODEC_VOLUME("Internal Mic Boost", 0x19, 0, HDA_INPUT),
11040 static struct hda_verb alc268_dell_verbs[] = {
11041 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
11042 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
11043 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
11047 /* mute/unmute internal speaker according to the hp jack and mute state */
11048 static void alc268_dell_automute(struct hda_codec *codec)
11050 unsigned int present;
11053 present = snd_hda_codec_read(codec, 0x15, 0, AC_VERB_GET_PIN_SENSE, 0);
11054 if (present & 0x80000000)
11055 mute = HDA_AMP_MUTE;
11057 mute = snd_hda_codec_amp_read(codec, 0x15, 0, HDA_OUTPUT, 0);
11058 snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0,
11059 HDA_AMP_MUTE, mute);
11062 static void alc268_dell_unsol_event(struct hda_codec *codec,
11065 if ((res >> 26) != ALC880_HP_EVENT)
11067 alc268_dell_automute(codec);
11070 #define alc268_dell_init_hook alc268_dell_automute
11072 static struct snd_kcontrol_new alc267_quanta_il1_mixer[] = {
11073 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x2, 0x0, HDA_OUTPUT),
11074 HDA_CODEC_MUTE("Speaker Playback Switch", 0x14, 0x0, HDA_OUTPUT),
11075 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x3, 0x0, HDA_OUTPUT),
11076 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT),
11077 HDA_CODEC_VOLUME("Mic Capture Volume", 0x23, 0x0, HDA_OUTPUT),
11078 HDA_BIND_MUTE("Mic Capture Switch", 0x23, 2, HDA_OUTPUT),
11079 HDA_CODEC_VOLUME("Ext Mic Boost", 0x18, 0, HDA_INPUT),
11080 HDA_CODEC_VOLUME("Int Mic Boost", 0x19, 0, HDA_INPUT),
11084 static struct hda_verb alc267_quanta_il1_verbs[] = {
11085 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
11086 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_MIC_EVENT | AC_USRSP_EN},
11090 static void alc267_quanta_il1_hp_automute(struct hda_codec *codec)
11092 unsigned int present;
11094 present = snd_hda_codec_read(codec, 0x15, 0, AC_VERB_GET_PIN_SENSE, 0)
11095 & AC_PINSENSE_PRESENCE;
11096 snd_hda_codec_write(codec, 0x14, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
11097 present ? 0 : PIN_OUT);
11100 static void alc267_quanta_il1_mic_automute(struct hda_codec *codec)
11102 unsigned int present;
11104 present = snd_hda_codec_read(codec, 0x18, 0,
11105 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
11106 snd_hda_codec_write(codec, 0x23, 0,
11107 AC_VERB_SET_CONNECT_SEL,
11108 present ? 0x00 : 0x01);
11111 static void alc267_quanta_il1_automute(struct hda_codec *codec)
11113 alc267_quanta_il1_hp_automute(codec);
11114 alc267_quanta_il1_mic_automute(codec);
11117 static void alc267_quanta_il1_unsol_event(struct hda_codec *codec,
11120 switch (res >> 26) {
11121 case ALC880_HP_EVENT:
11122 alc267_quanta_il1_hp_automute(codec);
11124 case ALC880_MIC_EVENT:
11125 alc267_quanta_il1_mic_automute(codec);
11131 * generic initialization of ADC, input mixers and output mixers
11133 static struct hda_verb alc268_base_init_verbs[] = {
11134 /* Unmute DAC0-1 and set vol = 0 */
11135 {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
11136 {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
11137 {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
11138 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
11139 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
11140 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
11143 * Set up output mixers (0x0c - 0x0e)
11145 /* set vol=0 to output mixers */
11146 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
11147 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
11148 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
11149 {0x0e, AC_VERB_SET_CONNECT_SEL, 0x00},
11151 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
11152 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
11154 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
11155 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0},
11156 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
11157 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
11158 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
11159 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
11160 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
11161 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
11163 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
11164 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
11165 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
11166 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
11167 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
11168 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
11169 {0x1c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
11171 /* set PCBEEP vol = 0, mute connections */
11172 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
11173 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
11174 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
11176 /* Unmute Selector 23h,24h and set the default input to mic-in */
11178 {0x23, AC_VERB_SET_CONNECT_SEL, 0x00},
11179 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
11180 {0x24, AC_VERB_SET_CONNECT_SEL, 0x00},
11181 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
11187 * generic initialization of ADC, input mixers and output mixers
11189 static struct hda_verb alc268_volume_init_verbs[] = {
11190 /* set output DAC */
11191 {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
11192 {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
11193 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
11194 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
11196 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
11197 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
11198 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
11199 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
11200 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
11202 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
11203 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
11204 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
11205 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
11206 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
11208 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
11209 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
11210 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
11211 {0x1c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
11213 /* set PCBEEP vol = 0, mute connections */
11214 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
11215 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
11216 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
11221 #define alc268_mux_enum_info alc_mux_enum_info
11222 #define alc268_mux_enum_get alc_mux_enum_get
11223 #define alc268_mux_enum_put alc_mux_enum_put
11225 static struct snd_kcontrol_new alc268_capture_alt_mixer[] = {
11226 HDA_CODEC_VOLUME("Capture Volume", 0x23, 0x0, HDA_OUTPUT),
11227 HDA_CODEC_MUTE("Capture Switch", 0x23, 0x0, HDA_OUTPUT),
11229 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
11230 /* The multiple "Capture Source" controls confuse alsamixer
11231 * So call somewhat different..
11233 /* .name = "Capture Source", */
11234 .name = "Input Source",
11236 .info = alc268_mux_enum_info,
11237 .get = alc268_mux_enum_get,
11238 .put = alc268_mux_enum_put,
11243 static struct snd_kcontrol_new alc268_capture_mixer[] = {
11244 HDA_CODEC_VOLUME("Capture Volume", 0x23, 0x0, HDA_OUTPUT),
11245 HDA_CODEC_MUTE("Capture Switch", 0x23, 0x0, HDA_OUTPUT),
11246 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x24, 0x0, HDA_OUTPUT),
11247 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x24, 0x0, HDA_OUTPUT),
11249 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
11250 /* The multiple "Capture Source" controls confuse alsamixer
11251 * So call somewhat different..
11253 /* .name = "Capture Source", */
11254 .name = "Input Source",
11256 .info = alc268_mux_enum_info,
11257 .get = alc268_mux_enum_get,
11258 .put = alc268_mux_enum_put,
11263 static struct hda_input_mux alc268_capture_source = {
11267 { "Front Mic", 0x1 },
11273 static struct hda_input_mux alc268_acer_capture_source = {
11277 { "Internal Mic", 0x6 },
11282 #ifdef CONFIG_SND_DEBUG
11283 static struct snd_kcontrol_new alc268_test_mixer[] = {
11284 /* Volume widgets */
11285 HDA_CODEC_VOLUME("LOUT1 Playback Volume", 0x02, 0x0, HDA_OUTPUT),
11286 HDA_CODEC_VOLUME("LOUT2 Playback Volume", 0x03, 0x0, HDA_OUTPUT),
11287 HDA_BIND_MUTE_MONO("Mono sum Playback Switch", 0x0e, 1, 2, HDA_INPUT),
11288 HDA_BIND_MUTE("LINE-OUT sum Playback Switch", 0x0f, 2, HDA_INPUT),
11289 HDA_BIND_MUTE("HP-OUT sum Playback Switch", 0x10, 2, HDA_INPUT),
11290 HDA_BIND_MUTE("LINE-OUT Playback Switch", 0x14, 2, HDA_OUTPUT),
11291 HDA_BIND_MUTE("HP-OUT Playback Switch", 0x15, 2, HDA_OUTPUT),
11292 HDA_BIND_MUTE("Mono Playback Switch", 0x16, 2, HDA_OUTPUT),
11293 HDA_CODEC_VOLUME("MIC1 Capture Volume", 0x18, 0x0, HDA_INPUT),
11294 HDA_BIND_MUTE("MIC1 Capture Switch", 0x18, 2, HDA_OUTPUT),
11295 HDA_CODEC_VOLUME("MIC2 Capture Volume", 0x19, 0x0, HDA_INPUT),
11296 HDA_CODEC_VOLUME("LINE1 Capture Volume", 0x1a, 0x0, HDA_INPUT),
11297 HDA_BIND_MUTE("LINE1 Capture Switch", 0x1a, 2, HDA_OUTPUT),
11298 /* The below appears problematic on some hardwares */
11299 /*HDA_CODEC_VOLUME("PCBEEP Playback Volume", 0x1d, 0x0, HDA_INPUT),*/
11300 HDA_CODEC_VOLUME("PCM-IN1 Capture Volume", 0x23, 0x0, HDA_OUTPUT),
11301 HDA_BIND_MUTE("PCM-IN1 Capture Switch", 0x23, 2, HDA_OUTPUT),
11302 HDA_CODEC_VOLUME("PCM-IN2 Capture Volume", 0x24, 0x0, HDA_OUTPUT),
11303 HDA_BIND_MUTE("PCM-IN2 Capture Switch", 0x24, 2, HDA_OUTPUT),
11305 /* Modes for retasking pin widgets */
11306 ALC_PIN_MODE("LINE-OUT pin mode", 0x14, ALC_PIN_DIR_INOUT),
11307 ALC_PIN_MODE("HP-OUT pin mode", 0x15, ALC_PIN_DIR_INOUT),
11308 ALC_PIN_MODE("MIC1 pin mode", 0x18, ALC_PIN_DIR_INOUT),
11309 ALC_PIN_MODE("LINE1 pin mode", 0x1a, ALC_PIN_DIR_INOUT),
11311 /* Controls for GPIO pins, assuming they are configured as outputs */
11312 ALC_GPIO_DATA_SWITCH("GPIO pin 0", 0x01, 0x01),
11313 ALC_GPIO_DATA_SWITCH("GPIO pin 1", 0x01, 0x02),
11314 ALC_GPIO_DATA_SWITCH("GPIO pin 2", 0x01, 0x04),
11315 ALC_GPIO_DATA_SWITCH("GPIO pin 3", 0x01, 0x08),
11317 /* Switches to allow the digital SPDIF output pin to be enabled.
11318 * The ALC268 does not have an SPDIF input.
11320 ALC_SPDIF_CTRL_SWITCH("SPDIF Playback Switch", 0x06, 0x01),
11322 /* A switch allowing EAPD to be enabled. Some laptops seem to use
11323 * this output to turn on an external amplifier.
11325 ALC_EAPD_CTRL_SWITCH("LINE-OUT EAPD Enable Switch", 0x0f, 0x02),
11326 ALC_EAPD_CTRL_SWITCH("HP-OUT EAPD Enable Switch", 0x10, 0x02),
11332 /* create input playback/capture controls for the given pin */
11333 static int alc268_new_analog_output(struct alc_spec *spec, hda_nid_t nid,
11334 const char *ctlname, int idx)
11339 sprintf(name, "%s Playback Volume", ctlname);
11341 err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
11342 HDA_COMPOSE_AMP_VAL(0x02, 3, idx,
11346 } else if (nid == 0x15) {
11347 err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
11348 HDA_COMPOSE_AMP_VAL(0x03, 3, idx,
11354 sprintf(name, "%s Playback Switch", ctlname);
11355 err = add_control(spec, ALC_CTL_WIDGET_MUTE, name,
11356 HDA_COMPOSE_AMP_VAL(nid, 3, idx, HDA_OUTPUT));
11362 /* add playback controls from the parsed DAC table */
11363 static int alc268_auto_create_multi_out_ctls(struct alc_spec *spec,
11364 const struct auto_pin_cfg *cfg)
11369 spec->multiout.num_dacs = 2; /* only use one dac */
11370 spec->multiout.dac_nids = spec->private_dac_nids;
11371 spec->multiout.dac_nids[0] = 2;
11372 spec->multiout.dac_nids[1] = 3;
11374 nid = cfg->line_out_pins[0];
11376 alc268_new_analog_output(spec, nid, "Front", 0);
11378 nid = cfg->speaker_pins[0];
11380 err = add_control(spec, ALC_CTL_WIDGET_VOL,
11381 "Speaker Playback Volume",
11382 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_INPUT));
11386 nid = cfg->hp_pins[0];
11388 alc268_new_analog_output(spec, nid, "Headphone", 0);
11390 nid = cfg->line_out_pins[1] | cfg->line_out_pins[2];
11392 err = add_control(spec, ALC_CTL_WIDGET_MUTE,
11393 "Mono Playback Switch",
11394 HDA_COMPOSE_AMP_VAL(nid, 2, 0, HDA_INPUT));
11401 /* create playback/capture controls for input pins */
11402 static int alc268_auto_create_analog_input_ctls(struct alc_spec *spec,
11403 const struct auto_pin_cfg *cfg)
11405 struct hda_input_mux *imux = &spec->private_imux;
11408 for (i = 0; i < AUTO_PIN_LAST; i++) {
11409 switch(cfg->input_pins[i]) {
11411 idx1 = 0; /* Mic 1 */
11414 idx1 = 1; /* Mic 2 */
11417 idx1 = 2; /* Line In */
11424 idx1 = 6; /* digital mics */
11429 imux->items[imux->num_items].label = auto_pin_cfg_labels[i];
11430 imux->items[imux->num_items].index = idx1;
11436 static void alc268_auto_init_mono_speaker_out(struct hda_codec *codec)
11438 struct alc_spec *spec = codec->spec;
11439 hda_nid_t speaker_nid = spec->autocfg.speaker_pins[0];
11440 hda_nid_t hp_nid = spec->autocfg.hp_pins[0];
11441 hda_nid_t line_nid = spec->autocfg.line_out_pins[0];
11442 unsigned int dac_vol1, dac_vol2;
11445 snd_hda_codec_write(codec, speaker_nid, 0,
11446 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
11447 snd_hda_codec_write(codec, 0x0f, 0,
11448 AC_VERB_SET_AMP_GAIN_MUTE,
11450 snd_hda_codec_write(codec, 0x10, 0,
11451 AC_VERB_SET_AMP_GAIN_MUTE,
11454 snd_hda_codec_write(codec, 0x0f, 0,
11455 AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1));
11456 snd_hda_codec_write(codec, 0x10, 0,
11457 AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1));
11460 dac_vol1 = dac_vol2 = 0xb000 | 0x40; /* set max volume */
11461 if (line_nid == 0x14)
11462 dac_vol2 = AMP_OUT_ZERO;
11463 else if (line_nid == 0x15)
11464 dac_vol1 = AMP_OUT_ZERO;
11465 if (hp_nid == 0x14)
11466 dac_vol2 = AMP_OUT_ZERO;
11467 else if (hp_nid == 0x15)
11468 dac_vol1 = AMP_OUT_ZERO;
11469 if (line_nid != 0x16 || hp_nid != 0x16 ||
11470 spec->autocfg.line_out_pins[1] != 0x16 ||
11471 spec->autocfg.line_out_pins[2] != 0x16)
11472 dac_vol1 = dac_vol2 = AMP_OUT_ZERO;
11474 snd_hda_codec_write(codec, 0x02, 0,
11475 AC_VERB_SET_AMP_GAIN_MUTE, dac_vol1);
11476 snd_hda_codec_write(codec, 0x03, 0,
11477 AC_VERB_SET_AMP_GAIN_MUTE, dac_vol2);
11480 /* pcm configuration: identiacal with ALC880 */
11481 #define alc268_pcm_analog_playback alc880_pcm_analog_playback
11482 #define alc268_pcm_analog_capture alc880_pcm_analog_capture
11483 #define alc268_pcm_analog_alt_capture alc880_pcm_analog_alt_capture
11484 #define alc268_pcm_digital_playback alc880_pcm_digital_playback
11487 * BIOS auto configuration
11489 static int alc268_parse_auto_config(struct hda_codec *codec)
11491 struct alc_spec *spec = codec->spec;
11493 static hda_nid_t alc268_ignore[] = { 0 };
11495 err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
11499 if (!spec->autocfg.line_outs)
11500 return 0; /* can't find valid BIOS pin config */
11502 err = alc268_auto_create_multi_out_ctls(spec, &spec->autocfg);
11505 err = alc268_auto_create_analog_input_ctls(spec, &spec->autocfg);
11509 spec->multiout.max_channels = 2;
11511 /* digital only support output */
11512 if (spec->autocfg.dig_out_pin)
11513 spec->multiout.dig_out_nid = ALC268_DIGOUT_NID;
11515 if (spec->kctl_alloc)
11516 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
11518 if (spec->autocfg.speaker_pins[0] != 0x1d)
11519 spec->mixers[spec->num_mixers++] = alc268_beep_mixer;
11521 spec->init_verbs[spec->num_init_verbs++] = alc268_volume_init_verbs;
11522 spec->num_mux_defs = 1;
11523 spec->input_mux = &spec->private_imux;
11525 err = alc_auto_add_mic_boost(codec);
11529 store_pin_configs(codec);
11533 #define alc268_auto_init_multi_out alc882_auto_init_multi_out
11534 #define alc268_auto_init_hp_out alc882_auto_init_hp_out
11535 #define alc268_auto_init_analog_input alc882_auto_init_analog_input
11537 /* init callback for auto-configuration model -- overriding the default init */
11538 static void alc268_auto_init(struct hda_codec *codec)
11540 struct alc_spec *spec = codec->spec;
11541 alc268_auto_init_multi_out(codec);
11542 alc268_auto_init_hp_out(codec);
11543 alc268_auto_init_mono_speaker_out(codec);
11544 alc268_auto_init_analog_input(codec);
11545 if (spec->unsol_event)
11546 alc_inithook(codec);
11550 * configuration and preset
11552 static const char *alc268_models[ALC268_MODEL_LAST] = {
11553 [ALC267_QUANTA_IL1] = "quanta-il1",
11554 [ALC268_3ST] = "3stack",
11555 [ALC268_TOSHIBA] = "toshiba",
11556 [ALC268_ACER] = "acer",
11557 [ALC268_ACER_ASPIRE_ONE] = "acer-aspire",
11558 [ALC268_DELL] = "dell",
11559 [ALC268_ZEPTO] = "zepto",
11560 #ifdef CONFIG_SND_DEBUG
11561 [ALC268_TEST] = "test",
11563 [ALC268_AUTO] = "auto",
11566 static struct snd_pci_quirk alc268_cfg_tbl[] = {
11567 SND_PCI_QUIRK(0x1025, 0x011e, "Acer Aspire 5720z", ALC268_ACER),
11568 SND_PCI_QUIRK(0x1025, 0x0126, "Acer", ALC268_ACER),
11569 SND_PCI_QUIRK(0x1025, 0x012e, "Acer Aspire 5310", ALC268_ACER),
11570 SND_PCI_QUIRK(0x1025, 0x0130, "Acer Extensa 5210", ALC268_ACER),
11571 SND_PCI_QUIRK(0x1025, 0x0136, "Acer Aspire 5315", ALC268_ACER),
11572 SND_PCI_QUIRK(0x1025, 0x015b, "Acer Aspire One",
11573 ALC268_ACER_ASPIRE_ONE),
11574 SND_PCI_QUIRK(0x1028, 0x0253, "Dell OEM", ALC268_DELL),
11575 SND_PCI_QUIRK(0x103c, 0x30cc, "TOSHIBA", ALC268_TOSHIBA),
11576 SND_PCI_QUIRK(0x1043, 0x1205, "ASUS W7J", ALC268_3ST),
11577 SND_PCI_QUIRK(0x1179, 0xff10, "TOSHIBA A205", ALC268_TOSHIBA),
11578 SND_PCI_QUIRK(0x1179, 0xff50, "TOSHIBA A305", ALC268_TOSHIBA),
11579 SND_PCI_QUIRK(0x1179, 0xff64, "TOSHIBA L305", ALC268_TOSHIBA),
11580 SND_PCI_QUIRK(0x14c0, 0x0025, "COMPAL IFL90/JFL-92", ALC268_TOSHIBA),
11581 SND_PCI_QUIRK(0x152d, 0x0763, "Diverse (CPR2000)", ALC268_ACER),
11582 SND_PCI_QUIRK(0x152d, 0x0771, "Quanta IL1", ALC267_QUANTA_IL1),
11583 SND_PCI_QUIRK(0x1170, 0x0040, "ZEPTO", ALC268_ZEPTO),
11587 static struct alc_config_preset alc268_presets[] = {
11588 [ALC267_QUANTA_IL1] = {
11589 .mixers = { alc267_quanta_il1_mixer },
11590 .init_verbs = { alc268_base_init_verbs, alc268_eapd_verbs,
11591 alc267_quanta_il1_verbs },
11592 .num_dacs = ARRAY_SIZE(alc268_dac_nids),
11593 .dac_nids = alc268_dac_nids,
11594 .num_adc_nids = ARRAY_SIZE(alc268_adc_nids_alt),
11595 .adc_nids = alc268_adc_nids_alt,
11597 .num_channel_mode = ARRAY_SIZE(alc268_modes),
11598 .channel_mode = alc268_modes,
11599 .input_mux = &alc268_capture_source,
11600 .unsol_event = alc267_quanta_il1_unsol_event,
11601 .init_hook = alc267_quanta_il1_automute,
11604 .mixers = { alc268_base_mixer, alc268_capture_alt_mixer,
11605 alc268_beep_mixer },
11606 .init_verbs = { alc268_base_init_verbs },
11607 .num_dacs = ARRAY_SIZE(alc268_dac_nids),
11608 .dac_nids = alc268_dac_nids,
11609 .num_adc_nids = ARRAY_SIZE(alc268_adc_nids_alt),
11610 .adc_nids = alc268_adc_nids_alt,
11611 .capsrc_nids = alc268_capsrc_nids,
11613 .dig_out_nid = ALC268_DIGOUT_NID,
11614 .num_channel_mode = ARRAY_SIZE(alc268_modes),
11615 .channel_mode = alc268_modes,
11616 .input_mux = &alc268_capture_source,
11618 [ALC268_TOSHIBA] = {
11619 .mixers = { alc268_base_mixer, alc268_capture_alt_mixer,
11620 alc268_beep_mixer },
11621 .init_verbs = { alc268_base_init_verbs, alc268_eapd_verbs,
11622 alc268_toshiba_verbs },
11623 .num_dacs = ARRAY_SIZE(alc268_dac_nids),
11624 .dac_nids = alc268_dac_nids,
11625 .num_adc_nids = ARRAY_SIZE(alc268_adc_nids_alt),
11626 .adc_nids = alc268_adc_nids_alt,
11627 .capsrc_nids = alc268_capsrc_nids,
11629 .num_channel_mode = ARRAY_SIZE(alc268_modes),
11630 .channel_mode = alc268_modes,
11631 .input_mux = &alc268_capture_source,
11632 .unsol_event = alc268_toshiba_unsol_event,
11633 .init_hook = alc268_toshiba_automute,
11636 .mixers = { alc268_acer_mixer, alc268_capture_alt_mixer,
11637 alc268_beep_mixer },
11638 .init_verbs = { alc268_base_init_verbs, alc268_eapd_verbs,
11639 alc268_acer_verbs },
11640 .num_dacs = ARRAY_SIZE(alc268_dac_nids),
11641 .dac_nids = alc268_dac_nids,
11642 .num_adc_nids = ARRAY_SIZE(alc268_adc_nids_alt),
11643 .adc_nids = alc268_adc_nids_alt,
11644 .capsrc_nids = alc268_capsrc_nids,
11646 .num_channel_mode = ARRAY_SIZE(alc268_modes),
11647 .channel_mode = alc268_modes,
11648 .input_mux = &alc268_acer_capture_source,
11649 .unsol_event = alc268_acer_unsol_event,
11650 .init_hook = alc268_acer_init_hook,
11652 [ALC268_ACER_ASPIRE_ONE] = {
11653 .mixers = { alc268_acer_aspire_one_mixer,
11654 alc268_capture_alt_mixer },
11655 .init_verbs = { alc268_base_init_verbs, alc268_eapd_verbs,
11656 alc268_acer_aspire_one_verbs },
11657 .num_dacs = ARRAY_SIZE(alc268_dac_nids),
11658 .dac_nids = alc268_dac_nids,
11659 .num_adc_nids = ARRAY_SIZE(alc268_adc_nids_alt),
11660 .adc_nids = alc268_adc_nids_alt,
11661 .capsrc_nids = alc268_capsrc_nids,
11663 .num_channel_mode = ARRAY_SIZE(alc268_modes),
11664 .channel_mode = alc268_modes,
11665 .input_mux = &alc268_acer_lc_capture_source,
11666 .unsol_event = alc268_acer_lc_unsol_event,
11667 .init_hook = alc268_acer_lc_init_hook,
11670 .mixers = { alc268_dell_mixer, alc268_beep_mixer },
11671 .init_verbs = { alc268_base_init_verbs, alc268_eapd_verbs,
11672 alc268_dell_verbs },
11673 .num_dacs = ARRAY_SIZE(alc268_dac_nids),
11674 .dac_nids = alc268_dac_nids,
11676 .num_channel_mode = ARRAY_SIZE(alc268_modes),
11677 .channel_mode = alc268_modes,
11678 .unsol_event = alc268_dell_unsol_event,
11679 .init_hook = alc268_dell_init_hook,
11680 .input_mux = &alc268_capture_source,
11683 .mixers = { alc268_base_mixer, alc268_capture_alt_mixer,
11684 alc268_beep_mixer },
11685 .init_verbs = { alc268_base_init_verbs, alc268_eapd_verbs,
11686 alc268_toshiba_verbs },
11687 .num_dacs = ARRAY_SIZE(alc268_dac_nids),
11688 .dac_nids = alc268_dac_nids,
11689 .num_adc_nids = ARRAY_SIZE(alc268_adc_nids_alt),
11690 .adc_nids = alc268_adc_nids_alt,
11691 .capsrc_nids = alc268_capsrc_nids,
11693 .dig_out_nid = ALC268_DIGOUT_NID,
11694 .num_channel_mode = ARRAY_SIZE(alc268_modes),
11695 .channel_mode = alc268_modes,
11696 .input_mux = &alc268_capture_source,
11697 .unsol_event = alc268_toshiba_unsol_event,
11698 .init_hook = alc268_toshiba_automute
11700 #ifdef CONFIG_SND_DEBUG
11702 .mixers = { alc268_test_mixer, alc268_capture_mixer },
11703 .init_verbs = { alc268_base_init_verbs, alc268_eapd_verbs,
11704 alc268_volume_init_verbs },
11705 .num_dacs = ARRAY_SIZE(alc268_dac_nids),
11706 .dac_nids = alc268_dac_nids,
11707 .num_adc_nids = ARRAY_SIZE(alc268_adc_nids_alt),
11708 .adc_nids = alc268_adc_nids_alt,
11709 .capsrc_nids = alc268_capsrc_nids,
11711 .dig_out_nid = ALC268_DIGOUT_NID,
11712 .num_channel_mode = ARRAY_SIZE(alc268_modes),
11713 .channel_mode = alc268_modes,
11714 .input_mux = &alc268_capture_source,
11719 static int patch_alc268(struct hda_codec *codec)
11721 struct alc_spec *spec;
11725 spec = kcalloc(1, sizeof(*spec), GFP_KERNEL);
11729 codec->spec = spec;
11731 board_config = snd_hda_check_board_config(codec, ALC268_MODEL_LAST,
11735 if (board_config < 0 || board_config >= ALC268_MODEL_LAST) {
11736 printk(KERN_INFO "hda_codec: Unknown model for ALC268, "
11737 "trying auto-probe from BIOS...\n");
11738 board_config = ALC268_AUTO;
11741 if (board_config == ALC268_AUTO) {
11742 /* automatic parse from the BIOS config */
11743 err = alc268_parse_auto_config(codec);
11749 "hda_codec: Cannot set up configuration "
11750 "from BIOS. Using base mode...\n");
11751 board_config = ALC268_3ST;
11755 if (board_config != ALC268_AUTO)
11756 setup_preset(spec, &alc268_presets[board_config]);
11758 if (codec->vendor_id == 0x10ec0267) {
11759 spec->stream_name_analog = "ALC267 Analog";
11760 spec->stream_name_digital = "ALC267 Digital";
11762 spec->stream_name_analog = "ALC268 Analog";
11763 spec->stream_name_digital = "ALC268 Digital";
11766 spec->stream_analog_playback = &alc268_pcm_analog_playback;
11767 spec->stream_analog_capture = &alc268_pcm_analog_capture;
11768 spec->stream_analog_alt_capture = &alc268_pcm_analog_alt_capture;
11770 spec->stream_digital_playback = &alc268_pcm_digital_playback;
11772 if (!query_amp_caps(codec, 0x1d, HDA_INPUT))
11773 /* override the amp caps for beep generator */
11774 snd_hda_override_amp_caps(codec, 0x1d, HDA_INPUT,
11775 (0x0c << AC_AMPCAP_OFFSET_SHIFT) |
11776 (0x0c << AC_AMPCAP_NUM_STEPS_SHIFT) |
11777 (0x07 << AC_AMPCAP_STEP_SIZE_SHIFT) |
11778 (0 << AC_AMPCAP_MUTE_SHIFT));
11780 if (!spec->adc_nids && spec->input_mux) {
11781 /* check whether NID 0x07 is valid */
11782 unsigned int wcap = get_wcaps(codec, 0x07);
11786 wcap = (wcap & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT;
11787 if (wcap != AC_WID_AUD_IN || spec->input_mux->num_items == 1) {
11788 spec->adc_nids = alc268_adc_nids_alt;
11789 spec->num_adc_nids = ARRAY_SIZE(alc268_adc_nids_alt);
11790 spec->mixers[spec->num_mixers] =
11791 alc268_capture_alt_mixer;
11792 spec->num_mixers++;
11794 spec->adc_nids = alc268_adc_nids;
11795 spec->num_adc_nids = ARRAY_SIZE(alc268_adc_nids);
11796 spec->mixers[spec->num_mixers] =
11797 alc268_capture_mixer;
11798 spec->num_mixers++;
11800 spec->capsrc_nids = alc268_capsrc_nids;
11801 /* set default input source */
11802 for (i = 0; i < spec->num_adc_nids; i++)
11803 snd_hda_codec_write_cache(codec, alc268_capsrc_nids[i],
11804 0, AC_VERB_SET_CONNECT_SEL,
11805 spec->input_mux->items[0].index);
11808 spec->vmaster_nid = 0x02;
11810 codec->patch_ops = alc_patch_ops;
11811 if (board_config == ALC268_AUTO)
11812 spec->init_hook = alc268_auto_init;
11818 * ALC269 channel source setting (2 channel)
11820 #define ALC269_DIGOUT_NID ALC880_DIGOUT_NID
11822 #define alc269_dac_nids alc260_dac_nids
11824 static hda_nid_t alc269_adc_nids[1] = {
11829 static hda_nid_t alc269_capsrc_nids[1] = {
11833 /* NOTE: ADC2 (0x07) is connected from a recording *MIXER* (0x24),
11837 static struct hda_input_mux alc269_eeepc_dmic_capture_source = {
11845 static struct hda_input_mux alc269_eeepc_amic_capture_source = {
11853 #define alc269_modes alc260_modes
11854 #define alc269_capture_source alc880_lg_lw_capture_source
11856 static struct snd_kcontrol_new alc269_base_mixer[] = {
11857 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT),
11858 HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT),
11859 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
11860 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
11861 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
11862 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
11863 HDA_CODEC_VOLUME("Beep Playback Volume", 0x0b, 0x4, HDA_INPUT),
11864 HDA_CODEC_MUTE("Beep Playback Switch", 0x0b, 0x4, HDA_INPUT),
11865 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
11866 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x01, HDA_INPUT),
11867 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x01, HDA_INPUT),
11868 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
11869 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT),
11870 HDA_CODEC_MUTE_MONO("Mono Playback Switch", 0x16, 2, 0x0, HDA_OUTPUT),
11874 static struct snd_kcontrol_new alc269_quanta_fl1_mixer[] = {
11875 /* output mixer control */
11876 HDA_BIND_VOL("Master Playback Volume", &alc268_acer_bind_master_vol),
11878 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
11879 .name = "Master Playback Switch",
11880 .info = snd_hda_mixer_amp_switch_info,
11881 .get = snd_hda_mixer_amp_switch_get,
11882 .put = alc268_acer_master_sw_put,
11883 .private_value = HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT),
11885 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
11886 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
11887 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
11888 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x0b, 0x01, HDA_INPUT),
11889 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x0b, 0x01, HDA_INPUT),
11890 HDA_CODEC_VOLUME("Internal Mic Boost", 0x19, 0, HDA_INPUT),
11891 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x04, HDA_INPUT),
11892 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x04, HDA_INPUT),
11896 /* bind volumes of both NID 0x0c and 0x0d */
11897 static struct hda_bind_ctls alc269_epc_bind_vol = {
11898 .ops = &snd_hda_bind_vol,
11900 HDA_COMPOSE_AMP_VAL(0x02, 3, 0, HDA_OUTPUT),
11901 HDA_COMPOSE_AMP_VAL(0x03, 3, 0, HDA_OUTPUT),
11906 static struct snd_kcontrol_new alc269_eeepc_mixer[] = {
11907 HDA_CODEC_MUTE("iSpeaker Playback Switch", 0x14, 0x0, HDA_OUTPUT),
11908 HDA_BIND_VOL("LineOut Playback Volume", &alc269_epc_bind_vol),
11909 HDA_CODEC_MUTE("LineOut Playback Switch", 0x15, 0x0, HDA_OUTPUT),
11913 /* capture mixer elements */
11914 static struct snd_kcontrol_new alc269_capture_mixer[] = {
11915 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
11916 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
11918 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
11919 /* The multiple "Capture Source" controls confuse alsamixer
11920 * So call somewhat different..
11922 /* .name = "Capture Source", */
11923 .name = "Input Source",
11925 .info = alc_mux_enum_info,
11926 .get = alc_mux_enum_get,
11927 .put = alc_mux_enum_put,
11932 /* capture mixer elements */
11933 static struct snd_kcontrol_new alc269_epc_capture_mixer[] = {
11934 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
11935 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
11940 static struct snd_kcontrol_new alc269_beep_mixer[] = {
11941 HDA_CODEC_VOLUME("Beep Playback Volume", 0x0b, 0x4, HDA_INPUT),
11942 HDA_CODEC_MUTE("Beep Playback Switch", 0x0b, 0x4, HDA_INPUT),
11946 static struct hda_verb alc269_quanta_fl1_verbs[] = {
11947 {0x15, AC_VERB_SET_CONNECT_SEL, 0x01},
11948 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
11949 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
11950 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
11951 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_MIC_EVENT},
11952 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
11956 /* toggle speaker-output according to the hp-jack state */
11957 static void alc269_quanta_fl1_speaker_automute(struct hda_codec *codec)
11959 unsigned int present;
11960 unsigned char bits;
11962 present = snd_hda_codec_read(codec, 0x15, 0,
11963 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
11964 bits = present ? AMP_IN_MUTE(0) : 0;
11965 snd_hda_codec_amp_stereo(codec, 0x0c, HDA_INPUT, 0,
11966 AMP_IN_MUTE(0), bits);
11967 snd_hda_codec_amp_stereo(codec, 0x0c, HDA_INPUT, 1,
11968 AMP_IN_MUTE(0), bits);
11970 snd_hda_codec_write(codec, 0x20, 0,
11971 AC_VERB_SET_COEF_INDEX, 0x0c);
11972 snd_hda_codec_write(codec, 0x20, 0,
11973 AC_VERB_SET_PROC_COEF, 0x680);
11975 snd_hda_codec_write(codec, 0x20, 0,
11976 AC_VERB_SET_COEF_INDEX, 0x0c);
11977 snd_hda_codec_write(codec, 0x20, 0,
11978 AC_VERB_SET_PROC_COEF, 0x480);
11981 static void alc269_quanta_fl1_mic_automute(struct hda_codec *codec)
11983 unsigned int present;
11985 present = snd_hda_codec_read(codec, 0x18, 0,
11986 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
11987 snd_hda_codec_write(codec, 0x23, 0,
11988 AC_VERB_SET_CONNECT_SEL, present ? 0x0 : 0x1);
11991 static void alc269_quanta_fl1_unsol_event(struct hda_codec *codec,
11994 if ((res >> 26) == ALC880_HP_EVENT)
11995 alc269_quanta_fl1_speaker_automute(codec);
11996 if ((res >> 26) == ALC880_MIC_EVENT)
11997 alc269_quanta_fl1_mic_automute(codec);
12000 static void alc269_quanta_fl1_init_hook(struct hda_codec *codec)
12002 alc269_quanta_fl1_speaker_automute(codec);
12003 alc269_quanta_fl1_mic_automute(codec);
12006 static struct hda_verb alc269_eeepc_dmic_init_verbs[] = {
12007 {0x15, AC_VERB_SET_CONNECT_SEL, 0x01},
12008 {0x23, AC_VERB_SET_CONNECT_SEL, 0x05},
12009 {0x02, AC_VERB_SET_AMP_GAIN_MUTE, 0xb026 },
12010 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, (0x7019 | (0x00 << 8))},
12011 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
12012 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_MIC_EVENT},
12013 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
12017 static struct hda_verb alc269_eeepc_amic_init_verbs[] = {
12018 {0x15, AC_VERB_SET_CONNECT_SEL, 0x01},
12019 {0x23, AC_VERB_SET_CONNECT_SEL, 0x01},
12020 {0x02, AC_VERB_SET_AMP_GAIN_MUTE, 0xb026 },
12021 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, (0x701b | (0x00 << 8))},
12022 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_MIC_EVENT},
12023 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
12027 /* toggle speaker-output according to the hp-jack state */
12028 static void alc269_speaker_automute(struct hda_codec *codec)
12030 unsigned int present;
12031 unsigned char bits;
12033 present = snd_hda_codec_read(codec, 0x15, 0,
12034 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
12035 bits = present ? AMP_IN_MUTE(0) : 0;
12036 snd_hda_codec_amp_stereo(codec, 0x0c, HDA_INPUT, 0,
12037 AMP_IN_MUTE(0), bits);
12038 snd_hda_codec_amp_stereo(codec, 0x0c, HDA_INPUT, 1,
12039 AMP_IN_MUTE(0), bits);
12042 static void alc269_eeepc_dmic_automute(struct hda_codec *codec)
12044 unsigned int present;
12046 present = snd_hda_codec_read(codec, 0x18, 0,
12047 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
12048 snd_hda_codec_write(codec, 0x23, 0,
12049 AC_VERB_SET_CONNECT_SEL, (present ? 0 : 5));
12052 static void alc269_eeepc_amic_automute(struct hda_codec *codec)
12054 unsigned int present;
12056 present = snd_hda_codec_read(codec, 0x18, 0,
12057 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
12058 snd_hda_codec_write(codec, 0x24, 0, AC_VERB_SET_AMP_GAIN_MUTE,
12059 0x7000 | (0x00 << 8) | (present ? 0 : 0x80));
12060 snd_hda_codec_write(codec, 0x24, 0, AC_VERB_SET_AMP_GAIN_MUTE,
12061 0x7000 | (0x01 << 8) | (present ? 0x80 : 0));
12064 /* unsolicited event for HP jack sensing */
12065 static void alc269_eeepc_dmic_unsol_event(struct hda_codec *codec,
12068 if ((res >> 26) == ALC880_HP_EVENT)
12069 alc269_speaker_automute(codec);
12071 if ((res >> 26) == ALC880_MIC_EVENT)
12072 alc269_eeepc_dmic_automute(codec);
12075 static void alc269_eeepc_dmic_inithook(struct hda_codec *codec)
12077 alc269_speaker_automute(codec);
12078 alc269_eeepc_dmic_automute(codec);
12081 /* unsolicited event for HP jack sensing */
12082 static void alc269_eeepc_amic_unsol_event(struct hda_codec *codec,
12085 if ((res >> 26) == ALC880_HP_EVENT)
12086 alc269_speaker_automute(codec);
12088 if ((res >> 26) == ALC880_MIC_EVENT)
12089 alc269_eeepc_amic_automute(codec);
12092 static void alc269_eeepc_amic_inithook(struct hda_codec *codec)
12094 alc269_speaker_automute(codec);
12095 alc269_eeepc_amic_automute(codec);
12099 * generic initialization of ADC, input mixers and output mixers
12101 static struct hda_verb alc269_init_verbs[] = {
12103 * Unmute ADC0 and set the default input to mic-in
12105 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
12107 /* Mute input amps (PCBeep, Line In, Mic 1 & Mic 2) of the
12108 * analog-loopback mixer widget
12109 * Note: PASD motherboards uses the Line In 2 as the input for
12110 * front panel mic (mic 2)
12112 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
12113 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
12114 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
12115 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
12116 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
12117 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
12120 * Set up output mixers (0x0c - 0x0e)
12122 /* set vol=0 to output mixers */
12123 {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
12124 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
12126 /* set up input amps for analog loopback */
12127 /* Amp Indices: DAC = 0, mixer = 1 */
12128 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
12129 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
12130 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
12131 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
12132 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
12133 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
12135 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
12136 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
12137 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
12138 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
12139 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
12140 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
12141 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
12143 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
12144 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
12145 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
12146 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
12147 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
12148 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
12149 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
12151 {0x14, AC_VERB_SET_CONNECT_SEL, 0x00},
12152 {0x15, AC_VERB_SET_CONNECT_SEL, 0x00},
12154 /* FIXME: use matrix-type input source selection */
12155 /* Mixer elements: 0x18, 19, 1a, 1b, 1d, 0b */
12156 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
12157 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
12158 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
12159 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
12160 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
12163 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 2},
12164 {0x15, AC_VERB_SET_EAPD_BTLENABLE, 2},
12168 /* add playback controls from the parsed DAC table */
12169 static int alc269_auto_create_multi_out_ctls(struct alc_spec *spec,
12170 const struct auto_pin_cfg *cfg)
12175 spec->multiout.num_dacs = 1; /* only use one dac */
12176 spec->multiout.dac_nids = spec->private_dac_nids;
12177 spec->multiout.dac_nids[0] = 2;
12179 nid = cfg->line_out_pins[0];
12181 err = add_control(spec, ALC_CTL_WIDGET_VOL,
12182 "Front Playback Volume",
12183 HDA_COMPOSE_AMP_VAL(0x02, 3, 0, HDA_OUTPUT));
12186 err = add_control(spec, ALC_CTL_WIDGET_MUTE,
12187 "Front Playback Switch",
12188 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT));
12193 nid = cfg->speaker_pins[0];
12195 if (!cfg->line_out_pins[0]) {
12196 err = add_control(spec, ALC_CTL_WIDGET_VOL,
12197 "Speaker Playback Volume",
12198 HDA_COMPOSE_AMP_VAL(0x02, 3, 0,
12204 err = add_control(spec, ALC_CTL_WIDGET_MUTE,
12205 "Speaker Playback Switch",
12206 HDA_COMPOSE_AMP_VAL(nid, 2, 0,
12211 err = add_control(spec, ALC_CTL_WIDGET_MUTE,
12212 "Speaker Playback Switch",
12213 HDA_COMPOSE_AMP_VAL(nid, 3, 0,
12219 nid = cfg->hp_pins[0];
12221 /* spec->multiout.hp_nid = 2; */
12222 if (!cfg->line_out_pins[0] && !cfg->speaker_pins[0]) {
12223 err = add_control(spec, ALC_CTL_WIDGET_VOL,
12224 "Headphone Playback Volume",
12225 HDA_COMPOSE_AMP_VAL(0x02, 3, 0,
12231 err = add_control(spec, ALC_CTL_WIDGET_MUTE,
12232 "Headphone Playback Switch",
12233 HDA_COMPOSE_AMP_VAL(nid, 2, 0,
12238 err = add_control(spec, ALC_CTL_WIDGET_MUTE,
12239 "Headphone Playback Switch",
12240 HDA_COMPOSE_AMP_VAL(nid, 3, 0,
12249 static int alc269_auto_create_analog_input_ctls(struct alc_spec *spec,
12250 const struct auto_pin_cfg *cfg)
12254 err = alc880_auto_create_analog_input_ctls(spec, cfg);
12257 /* digital-mic input pin is excluded in alc880_auto_create..()
12258 * because it's under 0x18
12260 if (cfg->input_pins[AUTO_PIN_MIC] == 0x12 ||
12261 cfg->input_pins[AUTO_PIN_FRONT_MIC] == 0x12) {
12262 struct hda_input_mux *imux = &spec->private_imux;
12263 imux->items[imux->num_items].label = "Int Mic";
12264 imux->items[imux->num_items].index = 0x05;
12270 #ifdef CONFIG_SND_HDA_POWER_SAVE
12271 #define alc269_loopbacks alc880_loopbacks
12274 /* pcm configuration: identiacal with ALC880 */
12275 #define alc269_pcm_analog_playback alc880_pcm_analog_playback
12276 #define alc269_pcm_analog_capture alc880_pcm_analog_capture
12277 #define alc269_pcm_digital_playback alc880_pcm_digital_playback
12278 #define alc269_pcm_digital_capture alc880_pcm_digital_capture
12281 * BIOS auto configuration
12283 static int alc269_parse_auto_config(struct hda_codec *codec)
12285 struct alc_spec *spec = codec->spec;
12287 static hda_nid_t alc269_ignore[] = { 0x1d, 0 };
12289 err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
12294 err = alc269_auto_create_multi_out_ctls(spec, &spec->autocfg);
12297 err = alc269_auto_create_analog_input_ctls(spec, &spec->autocfg);
12301 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
12303 if (spec->autocfg.dig_out_pin)
12304 spec->multiout.dig_out_nid = ALC269_DIGOUT_NID;
12306 if (spec->kctl_alloc)
12307 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
12309 /* create a beep mixer control if the pin 0x1d isn't assigned */
12310 for (i = 0; i < ARRAY_SIZE(spec->autocfg.input_pins); i++)
12311 if (spec->autocfg.input_pins[i] == 0x1d)
12313 if (i >= ARRAY_SIZE(spec->autocfg.input_pins))
12314 spec->mixers[spec->num_mixers++] = alc269_beep_mixer;
12316 spec->init_verbs[spec->num_init_verbs++] = alc269_init_verbs;
12317 spec->num_mux_defs = 1;
12318 spec->input_mux = &spec->private_imux;
12319 /* set default input source */
12320 snd_hda_codec_write_cache(codec, alc269_capsrc_nids[0],
12321 0, AC_VERB_SET_CONNECT_SEL,
12322 spec->input_mux->items[0].index);
12324 err = alc_auto_add_mic_boost(codec);
12328 spec->mixers[spec->num_mixers] = alc269_capture_mixer;
12329 spec->num_mixers++;
12331 store_pin_configs(codec);
12335 #define alc269_auto_init_multi_out alc882_auto_init_multi_out
12336 #define alc269_auto_init_hp_out alc882_auto_init_hp_out
12337 #define alc269_auto_init_analog_input alc882_auto_init_analog_input
12340 /* init callback for auto-configuration model -- overriding the default init */
12341 static void alc269_auto_init(struct hda_codec *codec)
12343 struct alc_spec *spec = codec->spec;
12344 alc269_auto_init_multi_out(codec);
12345 alc269_auto_init_hp_out(codec);
12346 alc269_auto_init_analog_input(codec);
12347 if (spec->unsol_event)
12348 alc_inithook(codec);
12352 * configuration and preset
12354 static const char *alc269_models[ALC269_MODEL_LAST] = {
12355 [ALC269_BASIC] = "basic",
12356 [ALC269_QUANTA_FL1] = "quanta",
12357 [ALC269_ASUS_EEEPC_P703] = "eeepc-p703",
12358 [ALC269_ASUS_EEEPC_P901] = "eeepc-p901"
12361 static struct snd_pci_quirk alc269_cfg_tbl[] = {
12362 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_QUANTA_FL1),
12363 SND_PCI_QUIRK(0x1043, 0x8330, "ASUS Eeepc P703 P900A",
12364 ALC269_ASUS_EEEPC_P703),
12365 SND_PCI_QUIRK(0x1043, 0x831a, "ASUS Eeepc P901",
12366 ALC269_ASUS_EEEPC_P901),
12367 SND_PCI_QUIRK(0x1043, 0x834a, "ASUS Eeepc S101",
12368 ALC269_ASUS_EEEPC_P901),
12372 static struct alc_config_preset alc269_presets[] = {
12374 .mixers = { alc269_base_mixer, alc269_capture_mixer },
12375 .init_verbs = { alc269_init_verbs },
12376 .num_dacs = ARRAY_SIZE(alc269_dac_nids),
12377 .dac_nids = alc269_dac_nids,
12379 .num_channel_mode = ARRAY_SIZE(alc269_modes),
12380 .channel_mode = alc269_modes,
12381 .input_mux = &alc269_capture_source,
12383 [ALC269_QUANTA_FL1] = {
12384 .mixers = { alc269_quanta_fl1_mixer },
12385 .init_verbs = { alc269_init_verbs, alc269_quanta_fl1_verbs },
12386 .num_dacs = ARRAY_SIZE(alc269_dac_nids),
12387 .dac_nids = alc269_dac_nids,
12389 .num_channel_mode = ARRAY_SIZE(alc269_modes),
12390 .channel_mode = alc269_modes,
12391 .input_mux = &alc269_capture_source,
12392 .unsol_event = alc269_quanta_fl1_unsol_event,
12393 .init_hook = alc269_quanta_fl1_init_hook,
12395 [ALC269_ASUS_EEEPC_P703] = {
12396 .mixers = { alc269_eeepc_mixer, alc269_epc_capture_mixer },
12397 .init_verbs = { alc269_init_verbs,
12398 alc269_eeepc_amic_init_verbs },
12399 .num_dacs = ARRAY_SIZE(alc269_dac_nids),
12400 .dac_nids = alc269_dac_nids,
12402 .num_channel_mode = ARRAY_SIZE(alc269_modes),
12403 .channel_mode = alc269_modes,
12404 .input_mux = &alc269_eeepc_amic_capture_source,
12405 .unsol_event = alc269_eeepc_amic_unsol_event,
12406 .init_hook = alc269_eeepc_amic_inithook,
12408 [ALC269_ASUS_EEEPC_P901] = {
12409 .mixers = { alc269_eeepc_mixer, alc269_epc_capture_mixer},
12410 .init_verbs = { alc269_init_verbs,
12411 alc269_eeepc_dmic_init_verbs },
12412 .num_dacs = ARRAY_SIZE(alc269_dac_nids),
12413 .dac_nids = alc269_dac_nids,
12415 .num_channel_mode = ARRAY_SIZE(alc269_modes),
12416 .channel_mode = alc269_modes,
12417 .input_mux = &alc269_eeepc_dmic_capture_source,
12418 .unsol_event = alc269_eeepc_dmic_unsol_event,
12419 .init_hook = alc269_eeepc_dmic_inithook,
12423 static int patch_alc269(struct hda_codec *codec)
12425 struct alc_spec *spec;
12429 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
12433 codec->spec = spec;
12435 alc_fix_pll_init(codec, 0x20, 0x04, 15);
12437 board_config = snd_hda_check_board_config(codec, ALC269_MODEL_LAST,
12441 if (board_config < 0) {
12442 printk(KERN_INFO "hda_codec: Unknown model for ALC269, "
12443 "trying auto-probe from BIOS...\n");
12444 board_config = ALC269_AUTO;
12447 if (board_config == ALC269_AUTO) {
12448 /* automatic parse from the BIOS config */
12449 err = alc269_parse_auto_config(codec);
12455 "hda_codec: Cannot set up configuration "
12456 "from BIOS. Using base mode...\n");
12457 board_config = ALC269_BASIC;
12461 if (board_config != ALC269_AUTO)
12462 setup_preset(spec, &alc269_presets[board_config]);
12464 spec->stream_name_analog = "ALC269 Analog";
12465 spec->stream_analog_playback = &alc269_pcm_analog_playback;
12466 spec->stream_analog_capture = &alc269_pcm_analog_capture;
12468 spec->stream_name_digital = "ALC269 Digital";
12469 spec->stream_digital_playback = &alc269_pcm_digital_playback;
12470 spec->stream_digital_capture = &alc269_pcm_digital_capture;
12472 spec->adc_nids = alc269_adc_nids;
12473 spec->num_adc_nids = ARRAY_SIZE(alc269_adc_nids);
12474 spec->capsrc_nids = alc269_capsrc_nids;
12476 codec->patch_ops = alc_patch_ops;
12477 if (board_config == ALC269_AUTO)
12478 spec->init_hook = alc269_auto_init;
12479 #ifdef CONFIG_SND_HDA_POWER_SAVE
12480 if (!spec->loopback.amplist)
12481 spec->loopback.amplist = alc269_loopbacks;
12488 * ALC861 channel source setting (2/6 channel selection for 3-stack)
12492 * set the path ways for 2 channel output
12493 * need to set the codec line out and mic 1 pin widgets to inputs
12495 static struct hda_verb alc861_threestack_ch2_init[] = {
12496 /* set pin widget 1Ah (line in) for input */
12497 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
12498 /* set pin widget 18h (mic1/2) for input, for mic also enable
12501 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
12503 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c },
12505 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8)) }, /*mic*/
12506 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8)) }, /*line-in*/
12512 * need to set the codec line out and mic 1 pin widgets to outputs
12514 static struct hda_verb alc861_threestack_ch6_init[] = {
12515 /* set pin widget 1Ah (line in) for output (Back Surround)*/
12516 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
12517 /* set pin widget 18h (mic1) for output (CLFE)*/
12518 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
12520 { 0x0c, AC_VERB_SET_CONNECT_SEL, 0x00 },
12521 { 0x0d, AC_VERB_SET_CONNECT_SEL, 0x00 },
12523 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080 },
12525 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x01 << 8)) }, /*mic*/
12526 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8)) }, /*line in*/
12531 static struct hda_channel_mode alc861_threestack_modes[2] = {
12532 { 2, alc861_threestack_ch2_init },
12533 { 6, alc861_threestack_ch6_init },
12535 /* Set mic1 as input and unmute the mixer */
12536 static struct hda_verb alc861_uniwill_m31_ch2_init[] = {
12537 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
12538 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x01 << 8)) }, /*mic*/
12541 /* Set mic1 as output and mute mixer */
12542 static struct hda_verb alc861_uniwill_m31_ch4_init[] = {
12543 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
12544 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8)) }, /*mic*/
12548 static struct hda_channel_mode alc861_uniwill_m31_modes[2] = {
12549 { 2, alc861_uniwill_m31_ch2_init },
12550 { 4, alc861_uniwill_m31_ch4_init },
12553 /* Set mic1 and line-in as input and unmute the mixer */
12554 static struct hda_verb alc861_asus_ch2_init[] = {
12555 /* set pin widget 1Ah (line in) for input */
12556 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
12557 /* set pin widget 18h (mic1/2) for input, for mic also enable
12560 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
12562 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c },
12564 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8)) }, /*mic*/
12565 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8)) }, /*line-in*/
12569 /* Set mic1 nad line-in as output and mute mixer */
12570 static struct hda_verb alc861_asus_ch6_init[] = {
12571 /* set pin widget 1Ah (line in) for output (Back Surround)*/
12572 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
12573 /* { 0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE }, */
12574 /* set pin widget 18h (mic1) for output (CLFE)*/
12575 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
12576 /* { 0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE }, */
12577 { 0x0c, AC_VERB_SET_CONNECT_SEL, 0x00 },
12578 { 0x0d, AC_VERB_SET_CONNECT_SEL, 0x00 },
12580 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080 },
12582 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x01 << 8)) }, /*mic*/
12583 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8)) }, /*line in*/
12588 static struct hda_channel_mode alc861_asus_modes[2] = {
12589 { 2, alc861_asus_ch2_init },
12590 { 6, alc861_asus_ch6_init },
12595 static struct snd_kcontrol_new alc861_base_mixer[] = {
12596 /* output mixer control */
12597 HDA_CODEC_MUTE("Front Playback Switch", 0x03, 0x0, HDA_OUTPUT),
12598 HDA_CODEC_MUTE("Surround Playback Switch", 0x06, 0x0, HDA_OUTPUT),
12599 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x05, 1, 0x0, HDA_OUTPUT),
12600 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x05, 2, 0x0, HDA_OUTPUT),
12601 HDA_CODEC_MUTE("Side Playback Switch", 0x04, 0x0, HDA_OUTPUT),
12603 /*Input mixer control */
12604 /* HDA_CODEC_VOLUME("Input Playback Volume", 0x15, 0x0, HDA_OUTPUT),
12605 HDA_CODEC_MUTE("Input Playback Switch", 0x15, 0x0, HDA_OUTPUT), */
12606 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT),
12607 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT),
12608 HDA_CODEC_VOLUME("Line Playback Volume", 0x15, 0x02, HDA_INPUT),
12609 HDA_CODEC_MUTE("Line Playback Switch", 0x15, 0x02, HDA_INPUT),
12610 HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT),
12611 HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT),
12612 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x10, 0x01, HDA_OUTPUT),
12613 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x03, HDA_INPUT),
12615 /* Capture mixer control */
12616 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
12617 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
12619 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
12620 .name = "Capture Source",
12622 .info = alc_mux_enum_info,
12623 .get = alc_mux_enum_get,
12624 .put = alc_mux_enum_put,
12629 static struct snd_kcontrol_new alc861_3ST_mixer[] = {
12630 /* output mixer control */
12631 HDA_CODEC_MUTE("Front Playback Switch", 0x03, 0x0, HDA_OUTPUT),
12632 HDA_CODEC_MUTE("Surround Playback Switch", 0x06, 0x0, HDA_OUTPUT),
12633 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x05, 1, 0x0, HDA_OUTPUT),
12634 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x05, 2, 0x0, HDA_OUTPUT),
12635 /*HDA_CODEC_MUTE("Side Playback Switch", 0x04, 0x0, HDA_OUTPUT), */
12637 /* Input mixer control */
12638 /* HDA_CODEC_VOLUME("Input Playback Volume", 0x15, 0x0, HDA_OUTPUT),
12639 HDA_CODEC_MUTE("Input Playback Switch", 0x15, 0x0, HDA_OUTPUT), */
12640 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT),
12641 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT),
12642 HDA_CODEC_VOLUME("Line Playback Volume", 0x15, 0x02, HDA_INPUT),
12643 HDA_CODEC_MUTE("Line Playback Switch", 0x15, 0x02, HDA_INPUT),
12644 HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT),
12645 HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT),
12646 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x10, 0x01, HDA_OUTPUT),
12647 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x03, HDA_INPUT),
12649 /* Capture mixer control */
12650 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
12651 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
12653 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
12654 .name = "Capture Source",
12656 .info = alc_mux_enum_info,
12657 .get = alc_mux_enum_get,
12658 .put = alc_mux_enum_put,
12661 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
12662 .name = "Channel Mode",
12663 .info = alc_ch_mode_info,
12664 .get = alc_ch_mode_get,
12665 .put = alc_ch_mode_put,
12666 .private_value = ARRAY_SIZE(alc861_threestack_modes),
12671 static struct snd_kcontrol_new alc861_toshiba_mixer[] = {
12672 /* output mixer control */
12673 HDA_CODEC_MUTE("Master Playback Switch", 0x03, 0x0, HDA_OUTPUT),
12674 HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT),
12675 HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT),
12677 /*Capture mixer control */
12678 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
12679 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
12681 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
12682 .name = "Capture Source",
12684 .info = alc_mux_enum_info,
12685 .get = alc_mux_enum_get,
12686 .put = alc_mux_enum_put,
12692 static struct snd_kcontrol_new alc861_uniwill_m31_mixer[] = {
12693 /* output mixer control */
12694 HDA_CODEC_MUTE("Front Playback Switch", 0x03, 0x0, HDA_OUTPUT),
12695 HDA_CODEC_MUTE("Surround Playback Switch", 0x06, 0x0, HDA_OUTPUT),
12696 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x05, 1, 0x0, HDA_OUTPUT),
12697 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x05, 2, 0x0, HDA_OUTPUT),
12698 /*HDA_CODEC_MUTE("Side Playback Switch", 0x04, 0x0, HDA_OUTPUT), */
12700 /* Input mixer control */
12701 /* HDA_CODEC_VOLUME("Input Playback Volume", 0x15, 0x0, HDA_OUTPUT),
12702 HDA_CODEC_MUTE("Input Playback Switch", 0x15, 0x0, HDA_OUTPUT), */
12703 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT),
12704 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT),
12705 HDA_CODEC_VOLUME("Line Playback Volume", 0x15, 0x02, HDA_INPUT),
12706 HDA_CODEC_MUTE("Line Playback Switch", 0x15, 0x02, HDA_INPUT),
12707 HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT),
12708 HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT),
12709 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x10, 0x01, HDA_OUTPUT),
12710 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x03, HDA_INPUT),
12712 /* Capture mixer control */
12713 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
12714 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
12716 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
12717 .name = "Capture Source",
12719 .info = alc_mux_enum_info,
12720 .get = alc_mux_enum_get,
12721 .put = alc_mux_enum_put,
12724 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
12725 .name = "Channel Mode",
12726 .info = alc_ch_mode_info,
12727 .get = alc_ch_mode_get,
12728 .put = alc_ch_mode_put,
12729 .private_value = ARRAY_SIZE(alc861_uniwill_m31_modes),
12734 static struct snd_kcontrol_new alc861_asus_mixer[] = {
12735 /* output mixer control */
12736 HDA_CODEC_MUTE("Front Playback Switch", 0x03, 0x0, HDA_OUTPUT),
12737 HDA_CODEC_MUTE("Surround Playback Switch", 0x06, 0x0, HDA_OUTPUT),
12738 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x05, 1, 0x0, HDA_OUTPUT),
12739 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x05, 2, 0x0, HDA_OUTPUT),
12740 HDA_CODEC_MUTE("Side Playback Switch", 0x04, 0x0, HDA_OUTPUT),
12742 /* Input mixer control */
12743 HDA_CODEC_VOLUME("Input Playback Volume", 0x15, 0x0, HDA_OUTPUT),
12744 HDA_CODEC_MUTE("Input Playback Switch", 0x15, 0x0, HDA_OUTPUT),
12745 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT),
12746 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT),
12747 HDA_CODEC_VOLUME("Line Playback Volume", 0x15, 0x02, HDA_INPUT),
12748 HDA_CODEC_MUTE("Line Playback Switch", 0x15, 0x02, HDA_INPUT),
12749 HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT),
12750 HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT),
12751 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x10, 0x01, HDA_OUTPUT),
12752 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x03, HDA_OUTPUT),
12754 /* Capture mixer control */
12755 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
12756 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
12758 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
12759 .name = "Capture Source",
12761 .info = alc_mux_enum_info,
12762 .get = alc_mux_enum_get,
12763 .put = alc_mux_enum_put,
12766 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
12767 .name = "Channel Mode",
12768 .info = alc_ch_mode_info,
12769 .get = alc_ch_mode_get,
12770 .put = alc_ch_mode_put,
12771 .private_value = ARRAY_SIZE(alc861_asus_modes),
12776 /* additional mixer */
12777 static struct snd_kcontrol_new alc861_asus_laptop_mixer[] = {
12778 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT),
12779 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT),
12780 HDA_CODEC_VOLUME("PC Beep Playback Volume", 0x23, 0x0, HDA_OUTPUT),
12781 HDA_CODEC_MUTE("PC Beep Playback Switch", 0x23, 0x0, HDA_OUTPUT),
12786 * generic initialization of ADC, input mixers and output mixers
12788 static struct hda_verb alc861_base_init_verbs[] = {
12790 * Unmute ADC0 and set the default input to mic-in
12792 /* port-A for surround (rear panel) */
12793 { 0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
12794 { 0x0e, AC_VERB_SET_CONNECT_SEL, 0x00 },
12795 /* port-B for mic-in (rear panel) with vref */
12796 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
12797 /* port-C for line-in (rear panel) */
12798 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
12799 /* port-D for Front */
12800 { 0x0b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
12801 { 0x0b, AC_VERB_SET_CONNECT_SEL, 0x00 },
12802 /* port-E for HP out (front panel) */
12803 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0 },
12804 /* route front PCM to HP */
12805 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x00 },
12806 /* port-F for mic-in (front panel) with vref */
12807 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
12808 /* port-G for CLFE (rear panel) */
12809 { 0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
12810 { 0x1f, AC_VERB_SET_CONNECT_SEL, 0x00 },
12811 /* port-H for side (rear panel) */
12812 { 0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
12813 { 0x20, AC_VERB_SET_CONNECT_SEL, 0x00 },
12815 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
12816 /* route front mic to ADC1*/
12817 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
12818 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
12820 /* Unmute DAC0~3 & spdif out*/
12821 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
12822 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
12823 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
12824 {0x06, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
12825 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
12827 /* Unmute Mixer 14 (mic) 1c (Line in)*/
12828 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
12829 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
12830 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
12831 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
12833 /* Unmute Stereo Mixer 15 */
12834 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
12835 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
12836 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
12837 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c}, /* Output 0~12 step */
12839 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
12840 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
12841 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
12842 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
12843 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
12844 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
12845 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
12846 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
12847 /* hp used DAC 3 (Front) */
12848 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
12849 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
12854 static struct hda_verb alc861_threestack_init_verbs[] = {
12856 * Unmute ADC0 and set the default input to mic-in
12858 /* port-A for surround (rear panel) */
12859 { 0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
12860 /* port-B for mic-in (rear panel) with vref */
12861 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
12862 /* port-C for line-in (rear panel) */
12863 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
12864 /* port-D for Front */
12865 { 0x0b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
12866 { 0x0b, AC_VERB_SET_CONNECT_SEL, 0x00 },
12867 /* port-E for HP out (front panel) */
12868 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0 },
12869 /* route front PCM to HP */
12870 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x00 },
12871 /* port-F for mic-in (front panel) with vref */
12872 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
12873 /* port-G for CLFE (rear panel) */
12874 { 0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
12875 /* port-H for side (rear panel) */
12876 { 0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
12878 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
12879 /* route front mic to ADC1*/
12880 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
12881 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
12882 /* Unmute DAC0~3 & spdif out*/
12883 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
12884 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
12885 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
12886 {0x06, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
12887 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
12889 /* Unmute Mixer 14 (mic) 1c (Line in)*/
12890 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
12891 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
12892 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
12893 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
12895 /* Unmute Stereo Mixer 15 */
12896 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
12897 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
12898 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
12899 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c}, /* Output 0~12 step */
12901 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
12902 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
12903 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
12904 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
12905 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
12906 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
12907 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
12908 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
12909 /* hp used DAC 3 (Front) */
12910 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
12911 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
12915 static struct hda_verb alc861_uniwill_m31_init_verbs[] = {
12917 * Unmute ADC0 and set the default input to mic-in
12919 /* port-A for surround (rear panel) */
12920 { 0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
12921 /* port-B for mic-in (rear panel) with vref */
12922 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
12923 /* port-C for line-in (rear panel) */
12924 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
12925 /* port-D for Front */
12926 { 0x0b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
12927 { 0x0b, AC_VERB_SET_CONNECT_SEL, 0x00 },
12928 /* port-E for HP out (front panel) */
12929 /* this has to be set to VREF80 */
12930 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
12931 /* route front PCM to HP */
12932 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x00 },
12933 /* port-F for mic-in (front panel) with vref */
12934 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
12935 /* port-G for CLFE (rear panel) */
12936 { 0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
12937 /* port-H for side (rear panel) */
12938 { 0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
12940 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
12941 /* route front mic to ADC1*/
12942 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
12943 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
12944 /* Unmute DAC0~3 & spdif out*/
12945 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
12946 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
12947 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
12948 {0x06, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
12949 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
12951 /* Unmute Mixer 14 (mic) 1c (Line in)*/
12952 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
12953 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
12954 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
12955 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
12957 /* Unmute Stereo Mixer 15 */
12958 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
12959 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
12960 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
12961 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c}, /* Output 0~12 step */
12963 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
12964 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
12965 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
12966 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
12967 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
12968 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
12969 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
12970 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
12971 /* hp used DAC 3 (Front) */
12972 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
12973 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
12977 static struct hda_verb alc861_asus_init_verbs[] = {
12979 * Unmute ADC0 and set the default input to mic-in
12981 /* port-A for surround (rear panel)
12982 * according to codec#0 this is the HP jack
12984 { 0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0 }, /* was 0x00 */
12985 /* route front PCM to HP */
12986 { 0x0e, AC_VERB_SET_CONNECT_SEL, 0x01 },
12987 /* port-B for mic-in (rear panel) with vref */
12988 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
12989 /* port-C for line-in (rear panel) */
12990 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
12991 /* port-D for Front */
12992 { 0x0b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
12993 { 0x0b, AC_VERB_SET_CONNECT_SEL, 0x00 },
12994 /* port-E for HP out (front panel) */
12995 /* this has to be set to VREF80 */
12996 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
12997 /* route front PCM to HP */
12998 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x00 },
12999 /* port-F for mic-in (front panel) with vref */
13000 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
13001 /* port-G for CLFE (rear panel) */
13002 { 0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
13003 /* port-H for side (rear panel) */
13004 { 0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
13006 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
13007 /* route front mic to ADC1*/
13008 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
13009 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
13010 /* Unmute DAC0~3 & spdif out*/
13011 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
13012 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
13013 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
13014 {0x06, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
13015 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
13016 /* Unmute Mixer 14 (mic) 1c (Line in)*/
13017 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
13018 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
13019 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
13020 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
13022 /* Unmute Stereo Mixer 15 */
13023 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
13024 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
13025 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
13026 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c}, /* Output 0~12 step */
13028 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
13029 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
13030 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
13031 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
13032 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
13033 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
13034 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
13035 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
13036 /* hp used DAC 3 (Front) */
13037 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
13038 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
13042 /* additional init verbs for ASUS laptops */
13043 static struct hda_verb alc861_asus_laptop_init_verbs[] = {
13044 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x45 }, /* HP-out */
13045 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2) }, /* mute line-in */
13050 * generic initialization of ADC, input mixers and output mixers
13052 static struct hda_verb alc861_auto_init_verbs[] = {
13054 * Unmute ADC0 and set the default input to mic-in
13056 /* {0x08, AC_VERB_SET_CONNECT_SEL, 0x00}, */
13057 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
13059 /* Unmute DAC0~3 & spdif out*/
13060 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
13061 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
13062 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
13063 {0x06, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
13064 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
13066 /* Unmute Mixer 14 (mic) 1c (Line in)*/
13067 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
13068 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
13069 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
13070 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
13072 /* Unmute Stereo Mixer 15 */
13073 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
13074 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
13075 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
13076 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c},
13078 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
13079 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
13080 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
13081 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
13082 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
13083 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
13084 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
13085 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
13087 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
13088 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
13089 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
13090 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
13091 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
13092 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
13093 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
13094 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
13096 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00}, /* set Mic 1 */
13101 static struct hda_verb alc861_toshiba_init_verbs[] = {
13102 {0x0f, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
13107 /* toggle speaker-output according to the hp-jack state */
13108 static void alc861_toshiba_automute(struct hda_codec *codec)
13110 unsigned int present;
13112 present = snd_hda_codec_read(codec, 0x0f, 0,
13113 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
13114 snd_hda_codec_amp_stereo(codec, 0x16, HDA_INPUT, 0,
13115 HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0);
13116 snd_hda_codec_amp_stereo(codec, 0x1a, HDA_INPUT, 3,
13117 HDA_AMP_MUTE, present ? 0 : HDA_AMP_MUTE);
13120 static void alc861_toshiba_unsol_event(struct hda_codec *codec,
13123 if ((res >> 26) == ALC880_HP_EVENT)
13124 alc861_toshiba_automute(codec);
13127 /* pcm configuration: identiacal with ALC880 */
13128 #define alc861_pcm_analog_playback alc880_pcm_analog_playback
13129 #define alc861_pcm_analog_capture alc880_pcm_analog_capture
13130 #define alc861_pcm_digital_playback alc880_pcm_digital_playback
13131 #define alc861_pcm_digital_capture alc880_pcm_digital_capture
13134 #define ALC861_DIGOUT_NID 0x07
13136 static struct hda_channel_mode alc861_8ch_modes[1] = {
13140 static hda_nid_t alc861_dac_nids[4] = {
13141 /* front, surround, clfe, side */
13142 0x03, 0x06, 0x05, 0x04
13145 static hda_nid_t alc660_dac_nids[3] = {
13146 /* front, clfe, surround */
13150 static hda_nid_t alc861_adc_nids[1] = {
13155 static struct hda_input_mux alc861_capture_source = {
13159 { "Front Mic", 0x3 },
13166 /* fill in the dac_nids table from the parsed pin configuration */
13167 static int alc861_auto_fill_dac_nids(struct alc_spec *spec,
13168 const struct auto_pin_cfg *cfg)
13173 spec->multiout.dac_nids = spec->private_dac_nids;
13174 for (i = 0; i < cfg->line_outs; i++) {
13175 nid = cfg->line_out_pins[i];
13177 if (i >= ARRAY_SIZE(alc861_dac_nids))
13179 spec->multiout.dac_nids[i] = alc861_dac_nids[i];
13182 spec->multiout.num_dacs = cfg->line_outs;
13186 /* add playback controls from the parsed DAC table */
13187 static int alc861_auto_create_multi_out_ctls(struct alc_spec *spec,
13188 const struct auto_pin_cfg *cfg)
13191 static const char *chname[4] = {
13192 "Front", "Surround", NULL /*CLFE*/, "Side"
13197 for (i = 0; i < cfg->line_outs; i++) {
13198 nid = spec->multiout.dac_nids[i];
13203 err = add_control(spec, ALC_CTL_BIND_MUTE,
13204 "Center Playback Switch",
13205 HDA_COMPOSE_AMP_VAL(nid, 1, 0,
13209 err = add_control(spec, ALC_CTL_BIND_MUTE,
13210 "LFE Playback Switch",
13211 HDA_COMPOSE_AMP_VAL(nid, 2, 0,
13216 for (idx = 0; idx < ARRAY_SIZE(alc861_dac_nids) - 1;
13218 if (nid == alc861_dac_nids[idx])
13220 sprintf(name, "%s Playback Switch", chname[idx]);
13221 err = add_control(spec, ALC_CTL_BIND_MUTE, name,
13222 HDA_COMPOSE_AMP_VAL(nid, 3, 0,
13231 static int alc861_auto_create_hp_ctls(struct alc_spec *spec, hda_nid_t pin)
13239 if ((pin >= 0x0b && pin <= 0x10) || pin == 0x1f || pin == 0x20) {
13241 err = add_control(spec, ALC_CTL_WIDGET_MUTE,
13242 "Headphone Playback Switch",
13243 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT));
13246 spec->multiout.hp_nid = nid;
13251 /* create playback/capture controls for input pins */
13252 static int alc861_auto_create_analog_input_ctls(struct alc_spec *spec,
13253 const struct auto_pin_cfg *cfg)
13255 struct hda_input_mux *imux = &spec->private_imux;
13256 int i, err, idx, idx1;
13258 for (i = 0; i < AUTO_PIN_LAST; i++) {
13259 switch (cfg->input_pins[i]) {
13262 idx = 2; /* Line In */
13266 idx = 2; /* Line In */
13270 idx = 1; /* Mic In */
13274 idx = 1; /* Mic In */
13284 err = new_analog_input(spec, cfg->input_pins[i],
13285 auto_pin_cfg_labels[i], idx, 0x15);
13289 imux->items[imux->num_items].label = auto_pin_cfg_labels[i];
13290 imux->items[imux->num_items].index = idx1;
13296 static struct snd_kcontrol_new alc861_capture_mixer[] = {
13297 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
13298 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
13301 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
13302 /* The multiple "Capture Source" controls confuse alsamixer
13303 * So call somewhat different..
13305 /* .name = "Capture Source", */
13306 .name = "Input Source",
13308 .info = alc_mux_enum_info,
13309 .get = alc_mux_enum_get,
13310 .put = alc_mux_enum_put,
13315 static void alc861_auto_set_output_and_unmute(struct hda_codec *codec,
13317 int pin_type, int dac_idx)
13319 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
13321 snd_hda_codec_write(codec, dac_idx, 0, AC_VERB_SET_AMP_GAIN_MUTE,
13325 static void alc861_auto_init_multi_out(struct hda_codec *codec)
13327 struct alc_spec *spec = codec->spec;
13330 alc_subsystem_id(codec, 0x0e, 0x0f, 0x0b);
13331 for (i = 0; i < spec->autocfg.line_outs; i++) {
13332 hda_nid_t nid = spec->autocfg.line_out_pins[i];
13333 int pin_type = get_pin_type(spec->autocfg.line_out_type);
13335 alc861_auto_set_output_and_unmute(codec, nid, pin_type,
13336 spec->multiout.dac_nids[i]);
13340 static void alc861_auto_init_hp_out(struct hda_codec *codec)
13342 struct alc_spec *spec = codec->spec;
13345 pin = spec->autocfg.hp_pins[0];
13346 if (pin) /* connect to front */
13347 alc861_auto_set_output_and_unmute(codec, pin, PIN_HP,
13348 spec->multiout.dac_nids[0]);
13349 pin = spec->autocfg.speaker_pins[0];
13351 alc861_auto_set_output_and_unmute(codec, pin, PIN_OUT, 0);
13354 static void alc861_auto_init_analog_input(struct hda_codec *codec)
13356 struct alc_spec *spec = codec->spec;
13359 for (i = 0; i < AUTO_PIN_LAST; i++) {
13360 hda_nid_t nid = spec->autocfg.input_pins[i];
13361 if (nid >= 0x0c && nid <= 0x11) {
13362 snd_hda_codec_write(codec, nid, 0,
13363 AC_VERB_SET_PIN_WIDGET_CONTROL,
13364 i <= AUTO_PIN_FRONT_MIC ?
13365 PIN_VREF80 : PIN_IN);
13370 /* parse the BIOS configuration and set up the alc_spec */
13371 /* return 1 if successful, 0 if the proper config is not found,
13372 * or a negative error code
13374 static int alc861_parse_auto_config(struct hda_codec *codec)
13376 struct alc_spec *spec = codec->spec;
13378 static hda_nid_t alc861_ignore[] = { 0x1d, 0 };
13380 err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
13384 if (!spec->autocfg.line_outs)
13385 return 0; /* can't find valid BIOS pin config */
13387 err = alc861_auto_fill_dac_nids(spec, &spec->autocfg);
13390 err = alc861_auto_create_multi_out_ctls(spec, &spec->autocfg);
13393 err = alc861_auto_create_hp_ctls(spec, spec->autocfg.hp_pins[0]);
13396 err = alc861_auto_create_analog_input_ctls(spec, &spec->autocfg);
13400 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
13402 if (spec->autocfg.dig_out_pin)
13403 spec->multiout.dig_out_nid = ALC861_DIGOUT_NID;
13405 if (spec->kctl_alloc)
13406 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
13408 spec->init_verbs[spec->num_init_verbs++] = alc861_auto_init_verbs;
13410 spec->num_mux_defs = 1;
13411 spec->input_mux = &spec->private_imux;
13413 spec->adc_nids = alc861_adc_nids;
13414 spec->num_adc_nids = ARRAY_SIZE(alc861_adc_nids);
13415 spec->mixers[spec->num_mixers] = alc861_capture_mixer;
13416 spec->num_mixers++;
13418 store_pin_configs(codec);
13422 /* additional initialization for auto-configuration model */
13423 static void alc861_auto_init(struct hda_codec *codec)
13425 struct alc_spec *spec = codec->spec;
13426 alc861_auto_init_multi_out(codec);
13427 alc861_auto_init_hp_out(codec);
13428 alc861_auto_init_analog_input(codec);
13429 if (spec->unsol_event)
13430 alc_inithook(codec);
13433 #ifdef CONFIG_SND_HDA_POWER_SAVE
13434 static struct hda_amp_list alc861_loopbacks[] = {
13435 { 0x15, HDA_INPUT, 0 },
13436 { 0x15, HDA_INPUT, 1 },
13437 { 0x15, HDA_INPUT, 2 },
13438 { 0x15, HDA_INPUT, 3 },
13445 * configuration and preset
13447 static const char *alc861_models[ALC861_MODEL_LAST] = {
13448 [ALC861_3ST] = "3stack",
13449 [ALC660_3ST] = "3stack-660",
13450 [ALC861_3ST_DIG] = "3stack-dig",
13451 [ALC861_6ST_DIG] = "6stack-dig",
13452 [ALC861_UNIWILL_M31] = "uniwill-m31",
13453 [ALC861_TOSHIBA] = "toshiba",
13454 [ALC861_ASUS] = "asus",
13455 [ALC861_ASUS_LAPTOP] = "asus-laptop",
13456 [ALC861_AUTO] = "auto",
13459 static struct snd_pci_quirk alc861_cfg_tbl[] = {
13460 SND_PCI_QUIRK(0x1043, 0x1205, "ASUS W7J", ALC861_3ST),
13461 SND_PCI_QUIRK(0x1043, 0x1335, "ASUS F2/3", ALC861_ASUS_LAPTOP),
13462 SND_PCI_QUIRK(0x1043, 0x1338, "ASUS F2/3", ALC861_ASUS_LAPTOP),
13463 SND_PCI_QUIRK(0x1043, 0x1393, "ASUS", ALC861_ASUS),
13464 SND_PCI_QUIRK(0x1043, 0x13d7, "ASUS A9rp", ALC861_ASUS_LAPTOP),
13465 SND_PCI_QUIRK(0x1043, 0x81cb, "ASUS P1-AH2", ALC861_3ST_DIG),
13466 SND_PCI_QUIRK(0x1179, 0xff00, "Toshiba", ALC861_TOSHIBA),
13467 /* FIXME: the entry below breaks Toshiba A100 (model=auto works!)
13468 * Any other models that need this preset?
13470 /* SND_PCI_QUIRK(0x1179, 0xff10, "Toshiba", ALC861_TOSHIBA), */
13471 SND_PCI_QUIRK(0x1462, 0x7254, "HP dx2200 (MSI MS-7254)", ALC861_3ST),
13472 SND_PCI_QUIRK(0x1462, 0x7297, "HP dx2250 (MSI MS-7297)", ALC861_3ST),
13473 SND_PCI_QUIRK(0x1584, 0x2b01, "Uniwill X40AIx", ALC861_UNIWILL_M31),
13474 SND_PCI_QUIRK(0x1584, 0x9072, "Uniwill m31", ALC861_UNIWILL_M31),
13475 SND_PCI_QUIRK(0x1584, 0x9075, "Airis Praxis N1212", ALC861_ASUS_LAPTOP),
13476 /* FIXME: the below seems conflict */
13477 /* SND_PCI_QUIRK(0x1584, 0x9075, "Uniwill", ALC861_UNIWILL_M31), */
13478 SND_PCI_QUIRK(0x1849, 0x0660, "Asrock 939SLI32", ALC660_3ST),
13479 SND_PCI_QUIRK(0x8086, 0xd600, "Intel", ALC861_3ST),
13483 static struct alc_config_preset alc861_presets[] = {
13485 .mixers = { alc861_3ST_mixer },
13486 .init_verbs = { alc861_threestack_init_verbs },
13487 .num_dacs = ARRAY_SIZE(alc861_dac_nids),
13488 .dac_nids = alc861_dac_nids,
13489 .num_channel_mode = ARRAY_SIZE(alc861_threestack_modes),
13490 .channel_mode = alc861_threestack_modes,
13492 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
13493 .adc_nids = alc861_adc_nids,
13494 .input_mux = &alc861_capture_source,
13496 [ALC861_3ST_DIG] = {
13497 .mixers = { alc861_base_mixer },
13498 .init_verbs = { alc861_threestack_init_verbs },
13499 .num_dacs = ARRAY_SIZE(alc861_dac_nids),
13500 .dac_nids = alc861_dac_nids,
13501 .dig_out_nid = ALC861_DIGOUT_NID,
13502 .num_channel_mode = ARRAY_SIZE(alc861_threestack_modes),
13503 .channel_mode = alc861_threestack_modes,
13505 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
13506 .adc_nids = alc861_adc_nids,
13507 .input_mux = &alc861_capture_source,
13509 [ALC861_6ST_DIG] = {
13510 .mixers = { alc861_base_mixer },
13511 .init_verbs = { alc861_base_init_verbs },
13512 .num_dacs = ARRAY_SIZE(alc861_dac_nids),
13513 .dac_nids = alc861_dac_nids,
13514 .dig_out_nid = ALC861_DIGOUT_NID,
13515 .num_channel_mode = ARRAY_SIZE(alc861_8ch_modes),
13516 .channel_mode = alc861_8ch_modes,
13517 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
13518 .adc_nids = alc861_adc_nids,
13519 .input_mux = &alc861_capture_source,
13522 .mixers = { alc861_3ST_mixer },
13523 .init_verbs = { alc861_threestack_init_verbs },
13524 .num_dacs = ARRAY_SIZE(alc660_dac_nids),
13525 .dac_nids = alc660_dac_nids,
13526 .num_channel_mode = ARRAY_SIZE(alc861_threestack_modes),
13527 .channel_mode = alc861_threestack_modes,
13529 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
13530 .adc_nids = alc861_adc_nids,
13531 .input_mux = &alc861_capture_source,
13533 [ALC861_UNIWILL_M31] = {
13534 .mixers = { alc861_uniwill_m31_mixer },
13535 .init_verbs = { alc861_uniwill_m31_init_verbs },
13536 .num_dacs = ARRAY_SIZE(alc861_dac_nids),
13537 .dac_nids = alc861_dac_nids,
13538 .dig_out_nid = ALC861_DIGOUT_NID,
13539 .num_channel_mode = ARRAY_SIZE(alc861_uniwill_m31_modes),
13540 .channel_mode = alc861_uniwill_m31_modes,
13542 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
13543 .adc_nids = alc861_adc_nids,
13544 .input_mux = &alc861_capture_source,
13546 [ALC861_TOSHIBA] = {
13547 .mixers = { alc861_toshiba_mixer },
13548 .init_verbs = { alc861_base_init_verbs,
13549 alc861_toshiba_init_verbs },
13550 .num_dacs = ARRAY_SIZE(alc861_dac_nids),
13551 .dac_nids = alc861_dac_nids,
13552 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
13553 .channel_mode = alc883_3ST_2ch_modes,
13554 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
13555 .adc_nids = alc861_adc_nids,
13556 .input_mux = &alc861_capture_source,
13557 .unsol_event = alc861_toshiba_unsol_event,
13558 .init_hook = alc861_toshiba_automute,
13561 .mixers = { alc861_asus_mixer },
13562 .init_verbs = { alc861_asus_init_verbs },
13563 .num_dacs = ARRAY_SIZE(alc861_dac_nids),
13564 .dac_nids = alc861_dac_nids,
13565 .dig_out_nid = ALC861_DIGOUT_NID,
13566 .num_channel_mode = ARRAY_SIZE(alc861_asus_modes),
13567 .channel_mode = alc861_asus_modes,
13570 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
13571 .adc_nids = alc861_adc_nids,
13572 .input_mux = &alc861_capture_source,
13574 [ALC861_ASUS_LAPTOP] = {
13575 .mixers = { alc861_toshiba_mixer, alc861_asus_laptop_mixer },
13576 .init_verbs = { alc861_asus_init_verbs,
13577 alc861_asus_laptop_init_verbs },
13578 .num_dacs = ARRAY_SIZE(alc861_dac_nids),
13579 .dac_nids = alc861_dac_nids,
13580 .dig_out_nid = ALC861_DIGOUT_NID,
13581 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
13582 .channel_mode = alc883_3ST_2ch_modes,
13584 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
13585 .adc_nids = alc861_adc_nids,
13586 .input_mux = &alc861_capture_source,
13591 static int patch_alc861(struct hda_codec *codec)
13593 struct alc_spec *spec;
13597 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
13601 codec->spec = spec;
13603 board_config = snd_hda_check_board_config(codec, ALC861_MODEL_LAST,
13607 if (board_config < 0) {
13608 printk(KERN_INFO "hda_codec: Unknown model for ALC861, "
13609 "trying auto-probe from BIOS...\n");
13610 board_config = ALC861_AUTO;
13613 if (board_config == ALC861_AUTO) {
13614 /* automatic parse from the BIOS config */
13615 err = alc861_parse_auto_config(codec);
13621 "hda_codec: Cannot set up configuration "
13622 "from BIOS. Using base mode...\n");
13623 board_config = ALC861_3ST_DIG;
13627 if (board_config != ALC861_AUTO)
13628 setup_preset(spec, &alc861_presets[board_config]);
13630 spec->stream_name_analog = "ALC861 Analog";
13631 spec->stream_analog_playback = &alc861_pcm_analog_playback;
13632 spec->stream_analog_capture = &alc861_pcm_analog_capture;
13634 spec->stream_name_digital = "ALC861 Digital";
13635 spec->stream_digital_playback = &alc861_pcm_digital_playback;
13636 spec->stream_digital_capture = &alc861_pcm_digital_capture;
13638 spec->vmaster_nid = 0x03;
13640 codec->patch_ops = alc_patch_ops;
13641 if (board_config == ALC861_AUTO)
13642 spec->init_hook = alc861_auto_init;
13643 #ifdef CONFIG_SND_HDA_POWER_SAVE
13644 if (!spec->loopback.amplist)
13645 spec->loopback.amplist = alc861_loopbacks;
13652 * ALC861-VD support
13656 * In addition, an independent DAC
13658 #define ALC861VD_DIGOUT_NID 0x06
13660 static hda_nid_t alc861vd_dac_nids[4] = {
13661 /* front, surr, clfe, side surr */
13662 0x02, 0x03, 0x04, 0x05
13665 /* dac_nids for ALC660vd are in a different order - according to
13666 * Realtek's driver.
13667 * This should probably tesult in a different mixer for 6stack models
13668 * of ALC660vd codecs, but for now there is only 3stack mixer
13669 * - and it is the same as in 861vd.
13670 * adc_nids in ALC660vd are (is) the same as in 861vd
13672 static hda_nid_t alc660vd_dac_nids[3] = {
13673 /* front, rear, clfe, rear_surr */
13677 static hda_nid_t alc861vd_adc_nids[1] = {
13682 static hda_nid_t alc861vd_capsrc_nids[1] = { 0x22 };
13685 /* FIXME: should be a matrix-type input source selection */
13686 static struct hda_input_mux alc861vd_capture_source = {
13690 { "Front Mic", 0x1 },
13696 static struct hda_input_mux alc861vd_dallas_capture_source = {
13699 { "Ext Mic", 0x0 },
13700 { "Int Mic", 0x1 },
13704 static struct hda_input_mux alc861vd_hp_capture_source = {
13707 { "Front Mic", 0x0 },
13708 { "ATAPI Mic", 0x1 },
13712 #define alc861vd_mux_enum_info alc_mux_enum_info
13713 #define alc861vd_mux_enum_get alc_mux_enum_get
13714 /* ALC861VD has the ALC882-type input selection (but has only one ADC) */
13715 #define alc861vd_mux_enum_put alc882_mux_enum_put
13720 static struct hda_channel_mode alc861vd_3stack_2ch_modes[1] = {
13727 static struct hda_verb alc861vd_6stack_ch6_init[] = {
13728 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
13729 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
13730 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
13731 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
13738 static struct hda_verb alc861vd_6stack_ch8_init[] = {
13739 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
13740 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
13741 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
13742 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
13746 static struct hda_channel_mode alc861vd_6stack_modes[2] = {
13747 { 6, alc861vd_6stack_ch6_init },
13748 { 8, alc861vd_6stack_ch8_init },
13751 static struct snd_kcontrol_new alc861vd_chmode_mixer[] = {
13753 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
13754 .name = "Channel Mode",
13755 .info = alc_ch_mode_info,
13756 .get = alc_ch_mode_get,
13757 .put = alc_ch_mode_put,
13762 static struct snd_kcontrol_new alc861vd_capture_mixer[] = {
13763 HDA_CODEC_VOLUME("Capture Volume", 0x09, 0x0, HDA_INPUT),
13764 HDA_CODEC_MUTE("Capture Switch", 0x09, 0x0, HDA_INPUT),
13767 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
13768 /* The multiple "Capture Source" controls confuse alsamixer
13769 * So call somewhat different..
13771 /* .name = "Capture Source", */
13772 .name = "Input Source",
13774 .info = alc861vd_mux_enum_info,
13775 .get = alc861vd_mux_enum_get,
13776 .put = alc861vd_mux_enum_put,
13781 /* Pin assignment: Front=0x14, Rear=0x15, CLFE=0x16, Side=0x17
13782 * Mic=0x18, Front Mic=0x19, Line-In=0x1a, HP=0x1b
13784 static struct snd_kcontrol_new alc861vd_6st_mixer[] = {
13785 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT),
13786 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
13788 HDA_CODEC_VOLUME("Surround Playback Volume", 0x03, 0x0, HDA_OUTPUT),
13789 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
13791 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x04, 1, 0x0,
13793 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x04, 2, 0x0,
13795 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
13796 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
13798 HDA_CODEC_VOLUME("Side Playback Volume", 0x05, 0x0, HDA_OUTPUT),
13799 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT),
13801 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
13803 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
13804 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
13805 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
13807 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
13808 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
13809 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
13811 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
13812 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
13814 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
13815 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
13817 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
13818 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
13823 static struct snd_kcontrol_new alc861vd_3st_mixer[] = {
13824 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT),
13825 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
13827 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
13829 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
13830 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
13831 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
13833 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
13834 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
13835 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
13837 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
13838 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
13840 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
13841 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
13843 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
13844 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
13849 static struct snd_kcontrol_new alc861vd_lenovo_mixer[] = {
13850 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT),
13851 /*HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),*/
13852 HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT),
13854 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
13856 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
13857 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
13858 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
13860 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
13861 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
13862 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
13864 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
13865 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
13870 /* Pin assignment: Speaker=0x14, HP = 0x15,
13871 * Ext Mic=0x18, Int Mic = 0x19, CD = 0x1c, PC Beep = 0x1d
13873 static struct snd_kcontrol_new alc861vd_dallas_mixer[] = {
13874 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x02, 0x0, HDA_OUTPUT),
13875 HDA_BIND_MUTE("Speaker Playback Switch", 0x0c, 2, HDA_INPUT),
13876 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x03, 0x0, HDA_OUTPUT),
13877 HDA_BIND_MUTE("Headphone Playback Switch", 0x0d, 2, HDA_INPUT),
13878 HDA_CODEC_VOLUME("Ext Mic Boost", 0x18, 0, HDA_INPUT),
13879 HDA_CODEC_VOLUME("Ext Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
13880 HDA_CODEC_MUTE("Ext Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
13881 HDA_CODEC_VOLUME("Int Mic Boost", 0x19, 0, HDA_INPUT),
13882 HDA_CODEC_VOLUME("Int Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
13883 HDA_CODEC_MUTE("Int Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
13884 HDA_CODEC_VOLUME("PC Beep Volume", 0x0b, 0x05, HDA_INPUT),
13885 HDA_CODEC_MUTE("PC Beep Switch", 0x0b, 0x05, HDA_INPUT),
13889 /* Pin assignment: Speaker=0x14, Line-out = 0x15,
13890 * Front Mic=0x18, ATAPI Mic = 0x19,
13892 static struct snd_kcontrol_new alc861vd_hp_mixer[] = {
13893 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT),
13894 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
13895 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x03, 0x0, HDA_OUTPUT),
13896 HDA_BIND_MUTE("Headphone Playback Switch", 0x0d, 2, HDA_INPUT),
13897 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
13898 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
13899 HDA_CODEC_VOLUME("ATAPI Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
13900 HDA_CODEC_MUTE("ATAPI Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
13906 * generic initialization of ADC, input mixers and output mixers
13908 static struct hda_verb alc861vd_volume_init_verbs[] = {
13910 * Unmute ADC0 and set the default input to mic-in
13912 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
13913 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
13915 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of
13916 * the analog-loopback mixer widget
13918 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
13919 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
13920 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
13921 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
13922 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
13923 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
13925 /* Capture mixer: unmute Mic, F-Mic, Line, CD inputs */
13926 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
13927 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
13928 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
13929 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
13932 * Set up output mixers (0x02 - 0x05)
13934 /* set vol=0 to output mixers */
13935 {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
13936 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
13937 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
13938 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
13940 /* set up input amps for analog loopback */
13941 /* Amp Indices: DAC = 0, mixer = 1 */
13942 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
13943 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
13944 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
13945 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
13946 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
13947 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
13948 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
13949 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
13955 * 3-stack pin configuration:
13956 * front = 0x14, mic/clfe = 0x18, HP = 0x19, line/surr = 0x1a, f-mic = 0x1b
13958 static struct hda_verb alc861vd_3stack_init_verbs[] = {
13960 * Set pin mode and muting
13962 /* set front pin widgets 0x14 for output */
13963 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
13964 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
13965 {0x14, AC_VERB_SET_CONNECT_SEL, 0x00},
13967 /* Mic (rear) pin: input vref at 80% */
13968 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
13969 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
13970 /* Front Mic pin: input vref at 80% */
13971 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
13972 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
13973 /* Line In pin: input */
13974 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
13975 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
13976 /* Line-2 In: Headphone output (output 0 - 0x0c) */
13977 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
13978 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
13979 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
13980 /* CD pin widget for input */
13981 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
13987 * 6-stack pin configuration:
13989 static struct hda_verb alc861vd_6stack_init_verbs[] = {
13991 * Set pin mode and muting
13993 /* set front pin widgets 0x14 for output */
13994 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
13995 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
13996 {0x14, AC_VERB_SET_CONNECT_SEL, 0x00},
13998 /* Rear Pin: output 1 (0x0d) */
13999 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
14000 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
14001 {0x15, AC_VERB_SET_CONNECT_SEL, 0x01},
14002 /* CLFE Pin: output 2 (0x0e) */
14003 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
14004 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
14005 {0x16, AC_VERB_SET_CONNECT_SEL, 0x02},
14006 /* Side Pin: output 3 (0x0f) */
14007 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
14008 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
14009 {0x17, AC_VERB_SET_CONNECT_SEL, 0x03},
14011 /* Mic (rear) pin: input vref at 80% */
14012 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
14013 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
14014 /* Front Mic pin: input vref at 80% */
14015 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
14016 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
14017 /* Line In pin: input */
14018 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
14019 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
14020 /* Line-2 In: Headphone output (output 0 - 0x0c) */
14021 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
14022 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
14023 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
14024 /* CD pin widget for input */
14025 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
14030 static struct hda_verb alc861vd_eapd_verbs[] = {
14031 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 2},
14035 static struct hda_verb alc660vd_eapd_verbs[] = {
14036 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 2},
14037 {0x15, AC_VERB_SET_EAPD_BTLENABLE, 2},
14041 static struct hda_verb alc861vd_lenovo_unsol_verbs[] = {
14042 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
14043 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
14044 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)},
14045 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
14046 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_MIC_EVENT},
14050 /* toggle speaker-output according to the hp-jack state */
14051 static void alc861vd_lenovo_hp_automute(struct hda_codec *codec)
14053 unsigned int present;
14054 unsigned char bits;
14056 present = snd_hda_codec_read(codec, 0x1b, 0,
14057 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
14058 bits = present ? HDA_AMP_MUTE : 0;
14059 snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0,
14060 HDA_AMP_MUTE, bits);
14063 static void alc861vd_lenovo_mic_automute(struct hda_codec *codec)
14065 unsigned int present;
14066 unsigned char bits;
14068 present = snd_hda_codec_read(codec, 0x18, 0,
14069 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
14070 bits = present ? HDA_AMP_MUTE : 0;
14071 snd_hda_codec_amp_stereo(codec, 0x0b, HDA_INPUT, 1,
14072 HDA_AMP_MUTE, bits);
14075 static void alc861vd_lenovo_automute(struct hda_codec *codec)
14077 alc861vd_lenovo_hp_automute(codec);
14078 alc861vd_lenovo_mic_automute(codec);
14081 static void alc861vd_lenovo_unsol_event(struct hda_codec *codec,
14084 switch (res >> 26) {
14085 case ALC880_HP_EVENT:
14086 alc861vd_lenovo_hp_automute(codec);
14088 case ALC880_MIC_EVENT:
14089 alc861vd_lenovo_mic_automute(codec);
14094 static struct hda_verb alc861vd_dallas_verbs[] = {
14095 {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
14096 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
14097 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
14098 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
14100 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
14101 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
14102 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
14103 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
14104 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
14105 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
14106 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
14107 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
14109 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
14110 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
14111 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
14112 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
14113 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
14114 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
14115 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
14116 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
14118 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF50},
14119 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
14120 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF50},
14121 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
14122 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
14123 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
14124 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
14125 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
14127 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
14128 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
14129 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
14130 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
14132 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
14133 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
14134 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
14139 /* toggle speaker-output according to the hp-jack state */
14140 static void alc861vd_dallas_automute(struct hda_codec *codec)
14142 unsigned int present;
14144 present = snd_hda_codec_read(codec, 0x15, 0,
14145 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
14146 snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0,
14147 HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0);
14150 static void alc861vd_dallas_unsol_event(struct hda_codec *codec, unsigned int res)
14152 if ((res >> 26) == ALC880_HP_EVENT)
14153 alc861vd_dallas_automute(codec);
14156 #ifdef CONFIG_SND_HDA_POWER_SAVE
14157 #define alc861vd_loopbacks alc880_loopbacks
14160 /* pcm configuration: identiacal with ALC880 */
14161 #define alc861vd_pcm_analog_playback alc880_pcm_analog_playback
14162 #define alc861vd_pcm_analog_capture alc880_pcm_analog_capture
14163 #define alc861vd_pcm_digital_playback alc880_pcm_digital_playback
14164 #define alc861vd_pcm_digital_capture alc880_pcm_digital_capture
14167 * configuration and preset
14169 static const char *alc861vd_models[ALC861VD_MODEL_LAST] = {
14170 [ALC660VD_3ST] = "3stack-660",
14171 [ALC660VD_3ST_DIG] = "3stack-660-digout",
14172 [ALC861VD_3ST] = "3stack",
14173 [ALC861VD_3ST_DIG] = "3stack-digout",
14174 [ALC861VD_6ST_DIG] = "6stack-digout",
14175 [ALC861VD_LENOVO] = "lenovo",
14176 [ALC861VD_DALLAS] = "dallas",
14177 [ALC861VD_HP] = "hp",
14178 [ALC861VD_AUTO] = "auto",
14181 static struct snd_pci_quirk alc861vd_cfg_tbl[] = {
14182 SND_PCI_QUIRK(0x1019, 0xa88d, "Realtek ALC660 demo", ALC660VD_3ST),
14183 SND_PCI_QUIRK(0x103c, 0x30bf, "HP TX1000", ALC861VD_HP),
14184 SND_PCI_QUIRK(0x1043, 0x12e2, "Asus z35m", ALC660VD_3ST),
14185 SND_PCI_QUIRK(0x1043, 0x1339, "Asus G1", ALC660VD_3ST),
14186 SND_PCI_QUIRK(0x1043, 0x1633, "Asus V1Sn", ALC861VD_LENOVO),
14187 SND_PCI_QUIRK(0x1043, 0x81e7, "ASUS", ALC660VD_3ST_DIG),
14188 SND_PCI_QUIRK(0x10de, 0x03f0, "Realtek ALC660 demo", ALC660VD_3ST),
14189 SND_PCI_QUIRK(0x1179, 0xff00, "Toshiba A135", ALC861VD_LENOVO),
14190 /*SND_PCI_QUIRK(0x1179, 0xff00, "DALLAS", ALC861VD_DALLAS),*/ /*lenovo*/
14191 SND_PCI_QUIRK(0x1179, 0xff01, "DALLAS", ALC861VD_DALLAS),
14192 SND_PCI_QUIRK(0x1179, 0xff03, "Toshiba P205", ALC861VD_LENOVO),
14193 SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba L30-149", ALC861VD_DALLAS),
14194 SND_PCI_QUIRK(0x1565, 0x820d, "Biostar NF61S SE", ALC861VD_6ST_DIG),
14195 SND_PCI_QUIRK(0x17aa, 0x2066, "Lenovo", ALC861VD_LENOVO),
14196 SND_PCI_QUIRK(0x17aa, 0x3802, "Lenovo 3000 C200", ALC861VD_LENOVO),
14197 SND_PCI_QUIRK(0x17aa, 0x384e, "Lenovo 3000 N200", ALC861VD_LENOVO),
14198 SND_PCI_QUIRK(0x1849, 0x0862, "ASRock K8NF6G-VSTA", ALC861VD_6ST_DIG),
14202 static struct alc_config_preset alc861vd_presets[] = {
14204 .mixers = { alc861vd_3st_mixer },
14205 .init_verbs = { alc861vd_volume_init_verbs,
14206 alc861vd_3stack_init_verbs },
14207 .num_dacs = ARRAY_SIZE(alc660vd_dac_nids),
14208 .dac_nids = alc660vd_dac_nids,
14209 .num_channel_mode = ARRAY_SIZE(alc861vd_3stack_2ch_modes),
14210 .channel_mode = alc861vd_3stack_2ch_modes,
14211 .input_mux = &alc861vd_capture_source,
14213 [ALC660VD_3ST_DIG] = {
14214 .mixers = { alc861vd_3st_mixer },
14215 .init_verbs = { alc861vd_volume_init_verbs,
14216 alc861vd_3stack_init_verbs },
14217 .num_dacs = ARRAY_SIZE(alc660vd_dac_nids),
14218 .dac_nids = alc660vd_dac_nids,
14219 .dig_out_nid = ALC861VD_DIGOUT_NID,
14220 .num_channel_mode = ARRAY_SIZE(alc861vd_3stack_2ch_modes),
14221 .channel_mode = alc861vd_3stack_2ch_modes,
14222 .input_mux = &alc861vd_capture_source,
14225 .mixers = { alc861vd_3st_mixer },
14226 .init_verbs = { alc861vd_volume_init_verbs,
14227 alc861vd_3stack_init_verbs },
14228 .num_dacs = ARRAY_SIZE(alc861vd_dac_nids),
14229 .dac_nids = alc861vd_dac_nids,
14230 .num_channel_mode = ARRAY_SIZE(alc861vd_3stack_2ch_modes),
14231 .channel_mode = alc861vd_3stack_2ch_modes,
14232 .input_mux = &alc861vd_capture_source,
14234 [ALC861VD_3ST_DIG] = {
14235 .mixers = { alc861vd_3st_mixer },
14236 .init_verbs = { alc861vd_volume_init_verbs,
14237 alc861vd_3stack_init_verbs },
14238 .num_dacs = ARRAY_SIZE(alc861vd_dac_nids),
14239 .dac_nids = alc861vd_dac_nids,
14240 .dig_out_nid = ALC861VD_DIGOUT_NID,
14241 .num_channel_mode = ARRAY_SIZE(alc861vd_3stack_2ch_modes),
14242 .channel_mode = alc861vd_3stack_2ch_modes,
14243 .input_mux = &alc861vd_capture_source,
14245 [ALC861VD_6ST_DIG] = {
14246 .mixers = { alc861vd_6st_mixer, alc861vd_chmode_mixer },
14247 .init_verbs = { alc861vd_volume_init_verbs,
14248 alc861vd_6stack_init_verbs },
14249 .num_dacs = ARRAY_SIZE(alc861vd_dac_nids),
14250 .dac_nids = alc861vd_dac_nids,
14251 .dig_out_nid = ALC861VD_DIGOUT_NID,
14252 .num_channel_mode = ARRAY_SIZE(alc861vd_6stack_modes),
14253 .channel_mode = alc861vd_6stack_modes,
14254 .input_mux = &alc861vd_capture_source,
14256 [ALC861VD_LENOVO] = {
14257 .mixers = { alc861vd_lenovo_mixer },
14258 .init_verbs = { alc861vd_volume_init_verbs,
14259 alc861vd_3stack_init_verbs,
14260 alc861vd_eapd_verbs,
14261 alc861vd_lenovo_unsol_verbs },
14262 .num_dacs = ARRAY_SIZE(alc660vd_dac_nids),
14263 .dac_nids = alc660vd_dac_nids,
14264 .num_channel_mode = ARRAY_SIZE(alc861vd_3stack_2ch_modes),
14265 .channel_mode = alc861vd_3stack_2ch_modes,
14266 .input_mux = &alc861vd_capture_source,
14267 .unsol_event = alc861vd_lenovo_unsol_event,
14268 .init_hook = alc861vd_lenovo_automute,
14270 [ALC861VD_DALLAS] = {
14271 .mixers = { alc861vd_dallas_mixer },
14272 .init_verbs = { alc861vd_dallas_verbs },
14273 .num_dacs = ARRAY_SIZE(alc861vd_dac_nids),
14274 .dac_nids = alc861vd_dac_nids,
14275 .num_channel_mode = ARRAY_SIZE(alc861vd_3stack_2ch_modes),
14276 .channel_mode = alc861vd_3stack_2ch_modes,
14277 .input_mux = &alc861vd_dallas_capture_source,
14278 .unsol_event = alc861vd_dallas_unsol_event,
14279 .init_hook = alc861vd_dallas_automute,
14282 .mixers = { alc861vd_hp_mixer },
14283 .init_verbs = { alc861vd_dallas_verbs, alc861vd_eapd_verbs },
14284 .num_dacs = ARRAY_SIZE(alc861vd_dac_nids),
14285 .dac_nids = alc861vd_dac_nids,
14286 .dig_out_nid = ALC861VD_DIGOUT_NID,
14287 .num_channel_mode = ARRAY_SIZE(alc861vd_3stack_2ch_modes),
14288 .channel_mode = alc861vd_3stack_2ch_modes,
14289 .input_mux = &alc861vd_hp_capture_source,
14290 .unsol_event = alc861vd_dallas_unsol_event,
14291 .init_hook = alc861vd_dallas_automute,
14296 * BIOS auto configuration
14298 static void alc861vd_auto_set_output_and_unmute(struct hda_codec *codec,
14299 hda_nid_t nid, int pin_type, int dac_idx)
14301 alc_set_pin_output(codec, nid, pin_type);
14304 static void alc861vd_auto_init_multi_out(struct hda_codec *codec)
14306 struct alc_spec *spec = codec->spec;
14309 alc_subsystem_id(codec, 0x15, 0x1b, 0x14);
14310 for (i = 0; i <= HDA_SIDE; i++) {
14311 hda_nid_t nid = spec->autocfg.line_out_pins[i];
14312 int pin_type = get_pin_type(spec->autocfg.line_out_type);
14314 alc861vd_auto_set_output_and_unmute(codec, nid,
14320 static void alc861vd_auto_init_hp_out(struct hda_codec *codec)
14322 struct alc_spec *spec = codec->spec;
14325 pin = spec->autocfg.hp_pins[0];
14326 if (pin) /* connect to front and use dac 0 */
14327 alc861vd_auto_set_output_and_unmute(codec, pin, PIN_HP, 0);
14328 pin = spec->autocfg.speaker_pins[0];
14330 alc861vd_auto_set_output_and_unmute(codec, pin, PIN_OUT, 0);
14333 #define alc861vd_is_input_pin(nid) alc880_is_input_pin(nid)
14334 #define ALC861VD_PIN_CD_NID ALC880_PIN_CD_NID
14336 static void alc861vd_auto_init_analog_input(struct hda_codec *codec)
14338 struct alc_spec *spec = codec->spec;
14341 for (i = 0; i < AUTO_PIN_LAST; i++) {
14342 hda_nid_t nid = spec->autocfg.input_pins[i];
14343 if (alc861vd_is_input_pin(nid)) {
14344 snd_hda_codec_write(codec, nid, 0,
14345 AC_VERB_SET_PIN_WIDGET_CONTROL,
14346 i <= AUTO_PIN_FRONT_MIC ?
14347 PIN_VREF80 : PIN_IN);
14348 if (nid != ALC861VD_PIN_CD_NID)
14349 snd_hda_codec_write(codec, nid, 0,
14350 AC_VERB_SET_AMP_GAIN_MUTE,
14356 #define alc861vd_auto_init_input_src alc882_auto_init_input_src
14358 #define alc861vd_idx_to_mixer_vol(nid) ((nid) + 0x02)
14359 #define alc861vd_idx_to_mixer_switch(nid) ((nid) + 0x0c)
14361 /* add playback controls from the parsed DAC table */
14362 /* Based on ALC880 version. But ALC861VD has separate,
14363 * different NIDs for mute/unmute switch and volume control */
14364 static int alc861vd_auto_create_multi_out_ctls(struct alc_spec *spec,
14365 const struct auto_pin_cfg *cfg)
14368 static const char *chname[4] = {"Front", "Surround", "CLFE", "Side"};
14369 hda_nid_t nid_v, nid_s;
14372 for (i = 0; i < cfg->line_outs; i++) {
14373 if (!spec->multiout.dac_nids[i])
14375 nid_v = alc861vd_idx_to_mixer_vol(
14377 spec->multiout.dac_nids[i]));
14378 nid_s = alc861vd_idx_to_mixer_switch(
14380 spec->multiout.dac_nids[i]));
14384 err = add_control(spec, ALC_CTL_WIDGET_VOL,
14385 "Center Playback Volume",
14386 HDA_COMPOSE_AMP_VAL(nid_v, 1, 0,
14390 err = add_control(spec, ALC_CTL_WIDGET_VOL,
14391 "LFE Playback Volume",
14392 HDA_COMPOSE_AMP_VAL(nid_v, 2, 0,
14396 err = add_control(spec, ALC_CTL_BIND_MUTE,
14397 "Center Playback Switch",
14398 HDA_COMPOSE_AMP_VAL(nid_s, 1, 2,
14402 err = add_control(spec, ALC_CTL_BIND_MUTE,
14403 "LFE Playback Switch",
14404 HDA_COMPOSE_AMP_VAL(nid_s, 2, 2,
14409 sprintf(name, "%s Playback Volume", chname[i]);
14410 err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
14411 HDA_COMPOSE_AMP_VAL(nid_v, 3, 0,
14415 sprintf(name, "%s Playback Switch", chname[i]);
14416 err = add_control(spec, ALC_CTL_BIND_MUTE, name,
14417 HDA_COMPOSE_AMP_VAL(nid_s, 3, 2,
14426 /* add playback controls for speaker and HP outputs */
14427 /* Based on ALC880 version. But ALC861VD has separate,
14428 * different NIDs for mute/unmute switch and volume control */
14429 static int alc861vd_auto_create_extra_out(struct alc_spec *spec,
14430 hda_nid_t pin, const char *pfx)
14432 hda_nid_t nid_v, nid_s;
14439 if (alc880_is_fixed_pin(pin)) {
14440 nid_v = alc880_idx_to_dac(alc880_fixed_pin_idx(pin));
14441 /* specify the DAC as the extra output */
14442 if (!spec->multiout.hp_nid)
14443 spec->multiout.hp_nid = nid_v;
14445 spec->multiout.extra_out_nid[0] = nid_v;
14446 /* control HP volume/switch on the output mixer amp */
14447 nid_v = alc861vd_idx_to_mixer_vol(
14448 alc880_fixed_pin_idx(pin));
14449 nid_s = alc861vd_idx_to_mixer_switch(
14450 alc880_fixed_pin_idx(pin));
14452 sprintf(name, "%s Playback Volume", pfx);
14453 err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
14454 HDA_COMPOSE_AMP_VAL(nid_v, 3, 0, HDA_OUTPUT));
14457 sprintf(name, "%s Playback Switch", pfx);
14458 err = add_control(spec, ALC_CTL_BIND_MUTE, name,
14459 HDA_COMPOSE_AMP_VAL(nid_s, 3, 2, HDA_INPUT));
14462 } else if (alc880_is_multi_pin(pin)) {
14463 /* set manual connection */
14464 /* we have only a switch on HP-out PIN */
14465 sprintf(name, "%s Playback Switch", pfx);
14466 err = add_control(spec, ALC_CTL_WIDGET_MUTE, name,
14467 HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_OUTPUT));
14474 /* parse the BIOS configuration and set up the alc_spec
14475 * return 1 if successful, 0 if the proper config is not found,
14476 * or a negative error code
14477 * Based on ALC880 version - had to change it to override
14478 * alc880_auto_create_extra_out and alc880_auto_create_multi_out_ctls */
14479 static int alc861vd_parse_auto_config(struct hda_codec *codec)
14481 struct alc_spec *spec = codec->spec;
14483 static hda_nid_t alc861vd_ignore[] = { 0x1d, 0 };
14485 err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
14489 if (!spec->autocfg.line_outs)
14490 return 0; /* can't find valid BIOS pin config */
14492 err = alc880_auto_fill_dac_nids(spec, &spec->autocfg);
14495 err = alc861vd_auto_create_multi_out_ctls(spec, &spec->autocfg);
14498 err = alc861vd_auto_create_extra_out(spec,
14499 spec->autocfg.speaker_pins[0],
14503 err = alc861vd_auto_create_extra_out(spec,
14504 spec->autocfg.hp_pins[0],
14508 err = alc880_auto_create_analog_input_ctls(spec, &spec->autocfg);
14512 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
14514 if (spec->autocfg.dig_out_pin)
14515 spec->multiout.dig_out_nid = ALC861VD_DIGOUT_NID;
14517 if (spec->kctl_alloc)
14518 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
14520 spec->init_verbs[spec->num_init_verbs++]
14521 = alc861vd_volume_init_verbs;
14523 spec->num_mux_defs = 1;
14524 spec->input_mux = &spec->private_imux;
14526 err = alc_auto_add_mic_boost(codec);
14530 store_pin_configs(codec);
14534 /* additional initialization for auto-configuration model */
14535 static void alc861vd_auto_init(struct hda_codec *codec)
14537 struct alc_spec *spec = codec->spec;
14538 alc861vd_auto_init_multi_out(codec);
14539 alc861vd_auto_init_hp_out(codec);
14540 alc861vd_auto_init_analog_input(codec);
14541 alc861vd_auto_init_input_src(codec);
14542 if (spec->unsol_event)
14543 alc_inithook(codec);
14546 static int patch_alc861vd(struct hda_codec *codec)
14548 struct alc_spec *spec;
14549 int err, board_config;
14551 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
14555 codec->spec = spec;
14557 board_config = snd_hda_check_board_config(codec, ALC861VD_MODEL_LAST,
14561 if (board_config < 0 || board_config >= ALC861VD_MODEL_LAST) {
14562 printk(KERN_INFO "hda_codec: Unknown model for ALC660VD/"
14563 "ALC861VD, trying auto-probe from BIOS...\n");
14564 board_config = ALC861VD_AUTO;
14567 if (board_config == ALC861VD_AUTO) {
14568 /* automatic parse from the BIOS config */
14569 err = alc861vd_parse_auto_config(codec);
14575 "hda_codec: Cannot set up configuration "
14576 "from BIOS. Using base mode...\n");
14577 board_config = ALC861VD_3ST;
14581 if (board_config != ALC861VD_AUTO)
14582 setup_preset(spec, &alc861vd_presets[board_config]);
14584 if (codec->vendor_id == 0x10ec0660) {
14585 spec->stream_name_analog = "ALC660-VD Analog";
14586 spec->stream_name_digital = "ALC660-VD Digital";
14587 /* always turn on EAPD */
14588 spec->init_verbs[spec->num_init_verbs++] = alc660vd_eapd_verbs;
14590 spec->stream_name_analog = "ALC861VD Analog";
14591 spec->stream_name_digital = "ALC861VD Digital";
14594 spec->stream_analog_playback = &alc861vd_pcm_analog_playback;
14595 spec->stream_analog_capture = &alc861vd_pcm_analog_capture;
14597 spec->stream_digital_playback = &alc861vd_pcm_digital_playback;
14598 spec->stream_digital_capture = &alc861vd_pcm_digital_capture;
14600 spec->adc_nids = alc861vd_adc_nids;
14601 spec->num_adc_nids = ARRAY_SIZE(alc861vd_adc_nids);
14602 spec->capsrc_nids = alc861vd_capsrc_nids;
14604 spec->mixers[spec->num_mixers] = alc861vd_capture_mixer;
14605 spec->num_mixers++;
14607 spec->vmaster_nid = 0x02;
14609 codec->patch_ops = alc_patch_ops;
14611 if (board_config == ALC861VD_AUTO)
14612 spec->init_hook = alc861vd_auto_init;
14613 #ifdef CONFIG_SND_HDA_POWER_SAVE
14614 if (!spec->loopback.amplist)
14615 spec->loopback.amplist = alc861vd_loopbacks;
14624 * ALC662 is almost identical with ALC880 but has cleaner and more flexible
14625 * configuration. Each pin widget can choose any input DACs and a mixer.
14626 * Each ADC is connected from a mixer of all inputs. This makes possible
14627 * 6-channel independent captures.
14629 * In addition, an independent DAC for the multi-playback (not used in this
14632 #define ALC662_DIGOUT_NID 0x06
14633 #define ALC662_DIGIN_NID 0x0a
14635 static hda_nid_t alc662_dac_nids[4] = {
14636 /* front, rear, clfe, rear_surr */
14640 static hda_nid_t alc662_adc_nids[1] = {
14645 static hda_nid_t alc662_capsrc_nids[1] = { 0x22 };
14648 /* FIXME: should be a matrix-type input source selection */
14649 static struct hda_input_mux alc662_capture_source = {
14653 { "Front Mic", 0x1 },
14659 static struct hda_input_mux alc662_lenovo_101e_capture_source = {
14667 static struct hda_input_mux alc662_eeepc_capture_source = {
14675 static struct hda_input_mux alc663_capture_source = {
14679 { "Front Mic", 0x1 },
14684 static struct hda_input_mux alc663_m51va_capture_source = {
14687 { "Ext-Mic", 0x0 },
14692 #define alc662_mux_enum_info alc_mux_enum_info
14693 #define alc662_mux_enum_get alc_mux_enum_get
14694 #define alc662_mux_enum_put alc882_mux_enum_put
14699 static struct hda_channel_mode alc662_3ST_2ch_modes[1] = {
14706 static struct hda_verb alc662_3ST_ch2_init[] = {
14707 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
14708 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
14709 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
14710 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
14717 static struct hda_verb alc662_3ST_ch6_init[] = {
14718 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
14719 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
14720 { 0x18, AC_VERB_SET_CONNECT_SEL, 0x02 },
14721 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
14722 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
14723 { 0x1a, AC_VERB_SET_CONNECT_SEL, 0x01 },
14727 static struct hda_channel_mode alc662_3ST_6ch_modes[2] = {
14728 { 2, alc662_3ST_ch2_init },
14729 { 6, alc662_3ST_ch6_init },
14735 static struct hda_verb alc662_sixstack_ch6_init[] = {
14736 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
14737 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
14738 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
14745 static struct hda_verb alc662_sixstack_ch8_init[] = {
14746 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
14747 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
14748 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
14752 static struct hda_channel_mode alc662_5stack_modes[2] = {
14753 { 2, alc662_sixstack_ch6_init },
14754 { 6, alc662_sixstack_ch8_init },
14757 /* Pin assignment: Front=0x14, Rear=0x15, CLFE=0x16, Side=0x17
14758 * Mic=0x18, Front Mic=0x19, Line-In=0x1a, HP=0x1b
14761 static struct snd_kcontrol_new alc662_base_mixer[] = {
14762 /* output mixer control */
14763 HDA_CODEC_VOLUME("Front Playback Volume", 0x2, 0x0, HDA_OUTPUT),
14764 HDA_CODEC_MUTE("Front Playback Switch", 0x0c, 0x0, HDA_INPUT),
14765 HDA_CODEC_VOLUME("Surround Playback Volume", 0x3, 0x0, HDA_OUTPUT),
14766 HDA_CODEC_MUTE("Surround Playback Switch", 0x0d, 0x0, HDA_INPUT),
14767 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x04, 1, 0x0, HDA_OUTPUT),
14768 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x04, 2, 0x0, HDA_OUTPUT),
14769 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x0e, 1, 0x0, HDA_INPUT),
14770 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 0x0, HDA_INPUT),
14771 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
14773 /*Input mixer control */
14774 HDA_CODEC_VOLUME("CD Playback Volume", 0xb, 0x4, HDA_INPUT),
14775 HDA_CODEC_MUTE("CD Playback Switch", 0xb, 0x4, HDA_INPUT),
14776 HDA_CODEC_VOLUME("Line Playback Volume", 0xb, 0x02, HDA_INPUT),
14777 HDA_CODEC_MUTE("Line Playback Switch", 0xb, 0x02, HDA_INPUT),
14778 HDA_CODEC_VOLUME("Mic Playback Volume", 0xb, 0x0, HDA_INPUT),
14779 HDA_CODEC_MUTE("Mic Playback Switch", 0xb, 0x0, HDA_INPUT),
14780 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0xb, 0x01, HDA_INPUT),
14781 HDA_CODEC_MUTE("Front Mic Playback Switch", 0xb, 0x01, HDA_INPUT),
14785 static struct snd_kcontrol_new alc662_3ST_2ch_mixer[] = {
14786 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT),
14787 HDA_CODEC_MUTE("Front Playback Switch", 0x0c, 0x0, HDA_INPUT),
14788 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
14789 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
14790 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
14791 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
14792 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
14793 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
14794 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
14795 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
14796 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
14797 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
14798 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
14802 static struct snd_kcontrol_new alc662_3ST_6ch_mixer[] = {
14803 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT),
14804 HDA_CODEC_MUTE("Front Playback Switch", 0x0c, 0x0, HDA_INPUT),
14805 HDA_CODEC_VOLUME("Surround Playback Volume", 0x03, 0x0, HDA_OUTPUT),
14806 HDA_CODEC_MUTE("Surround Playback Switch", 0x0d, 0x0, HDA_INPUT),
14807 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x04, 1, 0x0, HDA_OUTPUT),
14808 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x04, 2, 0x0, HDA_OUTPUT),
14809 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x0e, 1, 0x0, HDA_INPUT),
14810 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 0x0, HDA_INPUT),
14811 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
14812 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
14813 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
14814 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
14815 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
14816 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
14817 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
14818 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
14819 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
14820 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
14821 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
14825 static struct snd_kcontrol_new alc662_lenovo_101e_mixer[] = {
14826 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT),
14827 HDA_BIND_MUTE("Front Playback Switch", 0x02, 2, HDA_INPUT),
14828 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x03, 0x0, HDA_OUTPUT),
14829 HDA_BIND_MUTE("Speaker Playback Switch", 0x03, 2, HDA_INPUT),
14830 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
14831 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
14832 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
14833 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
14834 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
14838 static struct snd_kcontrol_new alc662_eeepc_p701_mixer[] = {
14839 HDA_CODEC_MUTE("Speaker Playback Switch", 0x14, 0x0, HDA_OUTPUT),
14841 HDA_CODEC_VOLUME("Line-Out Playback Volume", 0x02, 0x0, HDA_OUTPUT),
14842 HDA_CODEC_MUTE("Line-Out Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
14844 HDA_CODEC_VOLUME("e-Mic Boost", 0x18, 0, HDA_INPUT),
14845 HDA_CODEC_VOLUME("e-Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
14846 HDA_CODEC_MUTE("e-Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
14848 HDA_CODEC_VOLUME("i-Mic Boost", 0x19, 0, HDA_INPUT),
14849 HDA_CODEC_VOLUME("i-Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
14850 HDA_CODEC_MUTE("i-Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
14854 static struct snd_kcontrol_new alc662_eeepc_ep20_mixer[] = {
14855 HDA_CODEC_VOLUME("Line-Out Playback Volume", 0x02, 0x0, HDA_OUTPUT),
14856 HDA_CODEC_MUTE("Line-Out Playback Switch", 0x14, 0x0, HDA_OUTPUT),
14857 HDA_CODEC_VOLUME("Surround Playback Volume", 0x03, 0x0, HDA_OUTPUT),
14858 HDA_BIND_MUTE("Surround Playback Switch", 0x03, 2, HDA_INPUT),
14859 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x04, 1, 0x0, HDA_OUTPUT),
14860 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x04, 2, 0x0, HDA_OUTPUT),
14861 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x04, 1, 2, HDA_INPUT),
14862 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x04, 2, 2, HDA_INPUT),
14863 HDA_CODEC_MUTE("Speaker Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
14864 HDA_BIND_MUTE("MuteCtrl Playback Switch", 0x0c, 2, HDA_INPUT),
14865 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
14866 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
14867 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
14868 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
14872 static struct hda_bind_ctls alc663_asus_bind_master_vol = {
14873 .ops = &snd_hda_bind_vol,
14875 HDA_COMPOSE_AMP_VAL(0x02, 3, 0, HDA_OUTPUT),
14876 HDA_COMPOSE_AMP_VAL(0x03, 3, 0, HDA_OUTPUT),
14881 static struct hda_bind_ctls alc663_asus_one_bind_switch = {
14882 .ops = &snd_hda_bind_sw,
14884 HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT),
14885 HDA_COMPOSE_AMP_VAL(0x21, 3, 0, HDA_OUTPUT),
14890 static struct snd_kcontrol_new alc663_m51va_mixer[] = {
14891 HDA_BIND_VOL("Master Playback Volume", &alc663_asus_bind_master_vol),
14892 HDA_BIND_SW("Master Playback Switch", &alc663_asus_one_bind_switch),
14893 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
14894 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
14898 static struct hda_bind_ctls alc663_asus_tree_bind_switch = {
14899 .ops = &snd_hda_bind_sw,
14901 HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT),
14902 HDA_COMPOSE_AMP_VAL(0x15, 3, 0, HDA_OUTPUT),
14903 HDA_COMPOSE_AMP_VAL(0x21, 3, 0, HDA_OUTPUT),
14908 static struct snd_kcontrol_new alc663_two_hp_m1_mixer[] = {
14909 HDA_BIND_VOL("Master Playback Volume", &alc663_asus_bind_master_vol),
14910 HDA_BIND_SW("Master Playback Switch", &alc663_asus_tree_bind_switch),
14911 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
14912 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
14913 HDA_CODEC_VOLUME("F-Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
14914 HDA_CODEC_MUTE("F-Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
14919 static struct hda_bind_ctls alc663_asus_four_bind_switch = {
14920 .ops = &snd_hda_bind_sw,
14922 HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT),
14923 HDA_COMPOSE_AMP_VAL(0x15, 3, 0, HDA_OUTPUT),
14924 HDA_COMPOSE_AMP_VAL(0x1b, 3, 0, HDA_OUTPUT),
14929 static struct snd_kcontrol_new alc663_two_hp_m2_mixer[] = {
14930 HDA_BIND_VOL("Master Playback Volume", &alc663_asus_bind_master_vol),
14931 HDA_BIND_SW("Master Playback Switch", &alc663_asus_four_bind_switch),
14932 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
14933 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
14934 HDA_CODEC_VOLUME("F-Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
14935 HDA_CODEC_MUTE("F-Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
14939 static struct snd_kcontrol_new alc662_1bjd_mixer[] = {
14940 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x02, 0x0, HDA_OUTPUT),
14941 HDA_CODEC_MUTE("Speaker Playback Switch", 0x14, 0x0, HDA_OUTPUT),
14942 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
14943 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
14944 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
14945 HDA_CODEC_VOLUME("F-Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
14946 HDA_CODEC_MUTE("F-Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
14950 static struct hda_bind_ctls alc663_asus_two_bind_master_vol = {
14951 .ops = &snd_hda_bind_vol,
14953 HDA_COMPOSE_AMP_VAL(0x02, 3, 0, HDA_OUTPUT),
14954 HDA_COMPOSE_AMP_VAL(0x04, 3, 0, HDA_OUTPUT),
14959 static struct hda_bind_ctls alc663_asus_two_bind_switch = {
14960 .ops = &snd_hda_bind_sw,
14962 HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT),
14963 HDA_COMPOSE_AMP_VAL(0x16, 3, 0, HDA_OUTPUT),
14968 static struct snd_kcontrol_new alc663_asus_21jd_clfe_mixer[] = {
14969 HDA_BIND_VOL("Master Playback Volume",
14970 &alc663_asus_two_bind_master_vol),
14971 HDA_BIND_SW("Master Playback Switch", &alc663_asus_two_bind_switch),
14972 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x03, 0x0, HDA_OUTPUT),
14973 HDA_CODEC_MUTE("Headphone Playback Switch", 0x21, 0x0, HDA_OUTPUT),
14974 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
14975 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
14979 static struct snd_kcontrol_new alc663_asus_15jd_clfe_mixer[] = {
14980 HDA_BIND_VOL("Master Playback Volume", &alc663_asus_bind_master_vol),
14981 HDA_BIND_SW("Master Playback Switch", &alc663_asus_two_bind_switch),
14982 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x03, 0x0, HDA_OUTPUT),
14983 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT),
14984 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
14985 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
14989 static struct snd_kcontrol_new alc663_g71v_mixer[] = {
14990 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x02, 0x0, HDA_OUTPUT),
14991 HDA_CODEC_MUTE("Speaker Playback Switch", 0x14, 0x0, HDA_OUTPUT),
14992 HDA_CODEC_VOLUME("Front Playback Volume", 0x03, 0x0, HDA_OUTPUT),
14993 HDA_CODEC_MUTE("Front Playback Switch", 0x15, 0x0, HDA_OUTPUT),
14994 HDA_CODEC_MUTE("Headphone Playback Switch", 0x21, 0x0, HDA_OUTPUT),
14996 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
14997 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
14998 HDA_CODEC_VOLUME("i-Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
14999 HDA_CODEC_MUTE("i-Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
15003 static struct snd_kcontrol_new alc663_g50v_mixer[] = {
15004 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x02, 0x0, HDA_OUTPUT),
15005 HDA_CODEC_MUTE("Speaker Playback Switch", 0x14, 0x0, HDA_OUTPUT),
15006 HDA_CODEC_MUTE("Headphone Playback Switch", 0x21, 0x0, HDA_OUTPUT),
15008 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
15009 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
15010 HDA_CODEC_VOLUME("i-Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
15011 HDA_CODEC_MUTE("i-Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
15012 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
15013 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
15017 static struct snd_kcontrol_new alc662_chmode_mixer[] = {
15019 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
15020 .name = "Channel Mode",
15021 .info = alc_ch_mode_info,
15022 .get = alc_ch_mode_get,
15023 .put = alc_ch_mode_put,
15028 static struct hda_verb alc662_init_verbs[] = {
15029 /* ADC: mute amp left and right */
15030 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
15031 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
15032 /* Front mixer: unmute input/output amp left and right (volume = 0) */
15034 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
15035 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
15036 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
15037 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
15038 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
15040 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
15041 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
15042 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
15043 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
15044 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
15045 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
15047 /* Front Pin: output 0 (0x0c) */
15048 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
15049 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
15051 /* Rear Pin: output 1 (0x0d) */
15052 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
15053 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
15055 /* CLFE Pin: output 2 (0x0e) */
15056 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
15057 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
15059 /* Mic (rear) pin: input vref at 80% */
15060 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
15061 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
15062 /* Front Mic pin: input vref at 80% */
15063 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
15064 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
15065 /* Line In pin: input */
15066 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
15067 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
15068 /* Line-2 In: Headphone output (output 0 - 0x0c) */
15069 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
15070 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
15071 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
15072 /* CD pin widget for input */
15073 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
15075 /* FIXME: use matrix-type input source selection */
15076 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
15078 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
15079 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
15080 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
15081 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
15083 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
15084 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
15085 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
15086 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
15088 /* always trun on EAPD */
15089 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 2},
15090 {0x15, AC_VERB_SET_EAPD_BTLENABLE, 2},
15095 static struct hda_verb alc662_sue_init_verbs[] = {
15096 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|ALC880_FRONT_EVENT},
15097 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|ALC880_HP_EVENT},
15101 static struct hda_verb alc662_eeepc_sue_init_verbs[] = {
15102 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_MIC_EVENT},
15103 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
15107 /* Set Unsolicited Event*/
15108 static struct hda_verb alc662_eeepc_ep20_sue_init_verbs[] = {
15109 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
15110 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
15115 * generic initialization of ADC, input mixers and output mixers
15117 static struct hda_verb alc662_auto_init_verbs[] = {
15119 * Unmute ADC and set the default input to mic-in
15121 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
15122 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
15124 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
15126 * Note: PASD motherboards uses the Line In 2 as the input for front
15127 * panel mic (mic 2)
15129 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
15130 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
15131 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
15132 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
15133 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
15134 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
15137 * Set up output mixers (0x0c - 0x0f)
15139 /* set vol=0 to output mixers */
15140 {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
15141 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
15142 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
15144 /* set up input amps for analog loopback */
15145 /* Amp Indices: DAC = 0, mixer = 1 */
15146 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
15147 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
15148 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
15149 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
15150 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
15151 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
15154 /* FIXME: use matrix-type input source selection */
15155 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
15157 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
15158 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
15162 /* additional verbs for ALC663 */
15163 static struct hda_verb alc663_auto_init_verbs[] = {
15164 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
15165 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
15169 static struct hda_verb alc663_m51va_init_verbs[] = {
15170 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
15171 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
15172 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
15173 {0x21, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
15174 {0x21, AC_VERB_SET_CONNECT_SEL, 0x01}, /* Headphone */
15175 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
15176 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(9)},
15177 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_MIC_EVENT},
15178 {0x21, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
15182 static struct hda_verb alc663_21jd_amic_init_verbs[] = {
15183 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
15184 {0x21, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
15185 {0x21, AC_VERB_SET_CONNECT_SEL, 0x01}, /* Headphone */
15186 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
15187 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
15188 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_MIC_EVENT},
15189 {0x21, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
15193 static struct hda_verb alc662_1bjd_amic_init_verbs[] = {
15194 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
15195 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
15196 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
15197 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00}, /* Headphone */
15198 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
15199 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
15200 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_MIC_EVENT},
15201 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
15205 static struct hda_verb alc663_15jd_amic_init_verbs[] = {
15206 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
15207 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
15208 {0x15, AC_VERB_SET_CONNECT_SEL, 0x01}, /* Headphone */
15209 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
15210 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
15211 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_MIC_EVENT},
15212 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
15216 static struct hda_verb alc663_two_hp_amic_m1_init_verbs[] = {
15217 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
15218 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
15219 {0x21, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
15220 {0x21, AC_VERB_SET_CONNECT_SEL, 0x0}, /* Headphone */
15221 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
15222 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
15223 {0x15, AC_VERB_SET_CONNECT_SEL, 0x0}, /* Headphone */
15224 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
15225 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
15226 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_MIC_EVENT},
15227 {0x21, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
15228 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
15232 static struct hda_verb alc663_two_hp_amic_m2_init_verbs[] = {
15233 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
15234 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
15235 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
15236 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x01}, /* Headphone */
15237 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
15238 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
15239 {0x15, AC_VERB_SET_CONNECT_SEL, 0x01}, /* Headphone */
15240 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
15241 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
15242 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_MIC_EVENT},
15243 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
15244 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
15248 static struct hda_verb alc663_g71v_init_verbs[] = {
15249 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
15250 /* {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, */
15251 /* {0x15, AC_VERB_SET_CONNECT_SEL, 0x01}, */ /* Headphone */
15253 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
15254 {0x21, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
15255 {0x21, AC_VERB_SET_CONNECT_SEL, 0x00}, /* Headphone */
15257 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|ALC880_FRONT_EVENT},
15258 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|ALC880_MIC_EVENT},
15259 {0x21, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|ALC880_HP_EVENT},
15263 static struct hda_verb alc663_g50v_init_verbs[] = {
15264 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
15265 {0x21, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
15266 {0x21, AC_VERB_SET_CONNECT_SEL, 0x00}, /* Headphone */
15268 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_MIC_EVENT},
15269 {0x21, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
15273 static struct hda_verb alc662_ecs_init_verbs[] = {
15274 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, 0x701f},
15275 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
15276 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_MIC_EVENT},
15277 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
15281 /* capture mixer elements */
15282 static struct snd_kcontrol_new alc662_capture_mixer[] = {
15283 HDA_CODEC_VOLUME("Capture Volume", 0x09, 0x0, HDA_INPUT),
15284 HDA_CODEC_MUTE("Capture Switch", 0x09, 0x0, HDA_INPUT),
15286 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
15287 /* The multiple "Capture Source" controls confuse alsamixer
15288 * So call somewhat different..
15290 /* .name = "Capture Source", */
15291 .name = "Input Source",
15293 .info = alc662_mux_enum_info,
15294 .get = alc662_mux_enum_get,
15295 .put = alc662_mux_enum_put,
15300 static struct snd_kcontrol_new alc662_auto_capture_mixer[] = {
15301 HDA_CODEC_VOLUME("Capture Volume", 0x09, 0x0, HDA_INPUT),
15302 HDA_CODEC_MUTE("Capture Switch", 0x09, 0x0, HDA_INPUT),
15306 static void alc662_lenovo_101e_ispeaker_automute(struct hda_codec *codec)
15308 unsigned int present;
15309 unsigned char bits;
15311 present = snd_hda_codec_read(codec, 0x14, 0,
15312 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
15313 bits = present ? HDA_AMP_MUTE : 0;
15314 snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0,
15315 HDA_AMP_MUTE, bits);
15318 static void alc662_lenovo_101e_all_automute(struct hda_codec *codec)
15320 unsigned int present;
15321 unsigned char bits;
15323 present = snd_hda_codec_read(codec, 0x1b, 0,
15324 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
15325 bits = present ? HDA_AMP_MUTE : 0;
15326 snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0,
15327 HDA_AMP_MUTE, bits);
15328 snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0,
15329 HDA_AMP_MUTE, bits);
15332 static void alc662_lenovo_101e_unsol_event(struct hda_codec *codec,
15335 if ((res >> 26) == ALC880_HP_EVENT)
15336 alc662_lenovo_101e_all_automute(codec);
15337 if ((res >> 26) == ALC880_FRONT_EVENT)
15338 alc662_lenovo_101e_ispeaker_automute(codec);
15341 static void alc662_eeepc_mic_automute(struct hda_codec *codec)
15343 unsigned int present;
15345 present = snd_hda_codec_read(codec, 0x18, 0,
15346 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
15347 snd_hda_codec_write(codec, 0x22, 0, AC_VERB_SET_AMP_GAIN_MUTE,
15348 0x7000 | (0x00 << 8) | (present ? 0 : 0x80));
15349 snd_hda_codec_write(codec, 0x23, 0, AC_VERB_SET_AMP_GAIN_MUTE,
15350 0x7000 | (0x00 << 8) | (present ? 0 : 0x80));
15351 snd_hda_codec_write(codec, 0x22, 0, AC_VERB_SET_AMP_GAIN_MUTE,
15352 0x7000 | (0x01 << 8) | (present ? 0x80 : 0));
15353 snd_hda_codec_write(codec, 0x23, 0, AC_VERB_SET_AMP_GAIN_MUTE,
15354 0x7000 | (0x01 << 8) | (present ? 0x80 : 0));
15357 /* unsolicited event for HP jack sensing */
15358 static void alc662_eeepc_unsol_event(struct hda_codec *codec,
15361 if ((res >> 26) == ALC880_HP_EVENT)
15362 alc262_hippo1_automute( codec );
15364 if ((res >> 26) == ALC880_MIC_EVENT)
15365 alc662_eeepc_mic_automute(codec);
15368 static void alc662_eeepc_inithook(struct hda_codec *codec)
15370 alc262_hippo1_automute( codec );
15371 alc662_eeepc_mic_automute(codec);
15374 static void alc662_eeepc_ep20_automute(struct hda_codec *codec)
15377 unsigned int present;
15379 snd_hda_codec_read(codec, 0x14, 0, AC_VERB_SET_PIN_SENSE, 0);
15380 present = snd_hda_codec_read(codec, 0x14, 0,
15381 AC_VERB_GET_PIN_SENSE, 0);
15382 present = (present & 0x80000000) != 0;
15384 /* mute internal speaker */
15385 snd_hda_codec_amp_stereo(codec, 0x1b, HDA_OUTPUT, 0,
15386 HDA_AMP_MUTE, HDA_AMP_MUTE);
15388 /* unmute internal speaker if necessary */
15389 mute = snd_hda_codec_amp_read(codec, 0x14, 0, HDA_OUTPUT, 0);
15390 snd_hda_codec_amp_stereo(codec, 0x1b, HDA_OUTPUT, 0,
15391 HDA_AMP_MUTE, mute);
15395 /* unsolicited event for HP jack sensing */
15396 static void alc662_eeepc_ep20_unsol_event(struct hda_codec *codec,
15399 if ((res >> 26) == ALC880_HP_EVENT)
15400 alc662_eeepc_ep20_automute(codec);
15403 static void alc662_eeepc_ep20_inithook(struct hda_codec *codec)
15405 alc662_eeepc_ep20_automute(codec);
15408 static void alc663_m51va_speaker_automute(struct hda_codec *codec)
15410 unsigned int present;
15411 unsigned char bits;
15413 present = snd_hda_codec_read(codec, 0x21, 0,
15414 AC_VERB_GET_PIN_SENSE, 0)
15415 & AC_PINSENSE_PRESENCE;
15416 bits = present ? HDA_AMP_MUTE : 0;
15417 snd_hda_codec_amp_stereo(codec, 0x0c, HDA_INPUT, 0,
15418 AMP_IN_MUTE(0), bits);
15419 snd_hda_codec_amp_stereo(codec, 0x0c, HDA_INPUT, 1,
15420 AMP_IN_MUTE(0), bits);
15423 static void alc663_21jd_two_speaker_automute(struct hda_codec *codec)
15425 unsigned int present;
15426 unsigned char bits;
15428 present = snd_hda_codec_read(codec, 0x21, 0,
15429 AC_VERB_GET_PIN_SENSE, 0)
15430 & AC_PINSENSE_PRESENCE;
15431 bits = present ? HDA_AMP_MUTE : 0;
15432 snd_hda_codec_amp_stereo(codec, 0x0c, HDA_INPUT, 0,
15433 AMP_IN_MUTE(0), bits);
15434 snd_hda_codec_amp_stereo(codec, 0x0c, HDA_INPUT, 1,
15435 AMP_IN_MUTE(0), bits);
15436 snd_hda_codec_amp_stereo(codec, 0x0e, HDA_INPUT, 0,
15437 AMP_IN_MUTE(0), bits);
15438 snd_hda_codec_amp_stereo(codec, 0x0e, HDA_INPUT, 1,
15439 AMP_IN_MUTE(0), bits);
15442 static void alc663_15jd_two_speaker_automute(struct hda_codec *codec)
15444 unsigned int present;
15445 unsigned char bits;
15447 present = snd_hda_codec_read(codec, 0x15, 0,
15448 AC_VERB_GET_PIN_SENSE, 0)
15449 & AC_PINSENSE_PRESENCE;
15450 bits = present ? HDA_AMP_MUTE : 0;
15451 snd_hda_codec_amp_stereo(codec, 0x0c, HDA_INPUT, 0,
15452 AMP_IN_MUTE(0), bits);
15453 snd_hda_codec_amp_stereo(codec, 0x0c, HDA_INPUT, 1,
15454 AMP_IN_MUTE(0), bits);
15455 snd_hda_codec_amp_stereo(codec, 0x0e, HDA_INPUT, 0,
15456 AMP_IN_MUTE(0), bits);
15457 snd_hda_codec_amp_stereo(codec, 0x0e, HDA_INPUT, 1,
15458 AMP_IN_MUTE(0), bits);
15461 static void alc662_f5z_speaker_automute(struct hda_codec *codec)
15463 unsigned int present;
15464 unsigned char bits;
15466 present = snd_hda_codec_read(codec, 0x1b, 0,
15467 AC_VERB_GET_PIN_SENSE, 0)
15468 & AC_PINSENSE_PRESENCE;
15469 bits = present ? 0 : PIN_OUT;
15470 snd_hda_codec_write(codec, 0x14, 0,
15471 AC_VERB_SET_PIN_WIDGET_CONTROL, bits);
15474 static void alc663_two_hp_m1_speaker_automute(struct hda_codec *codec)
15476 unsigned int present1, present2;
15478 present1 = snd_hda_codec_read(codec, 0x21, 0,
15479 AC_VERB_GET_PIN_SENSE, 0)
15480 & AC_PINSENSE_PRESENCE;
15481 present2 = snd_hda_codec_read(codec, 0x15, 0,
15482 AC_VERB_GET_PIN_SENSE, 0)
15483 & AC_PINSENSE_PRESENCE;
15485 if (present1 || present2) {
15486 snd_hda_codec_write_cache(codec, 0x14, 0,
15487 AC_VERB_SET_PIN_WIDGET_CONTROL, 0);
15489 snd_hda_codec_write_cache(codec, 0x14, 0,
15490 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
15494 static void alc663_two_hp_m2_speaker_automute(struct hda_codec *codec)
15496 unsigned int present1, present2;
15498 present1 = snd_hda_codec_read(codec, 0x1b, 0,
15499 AC_VERB_GET_PIN_SENSE, 0)
15500 & AC_PINSENSE_PRESENCE;
15501 present2 = snd_hda_codec_read(codec, 0x15, 0,
15502 AC_VERB_GET_PIN_SENSE, 0)
15503 & AC_PINSENSE_PRESENCE;
15505 if (present1 || present2) {
15506 snd_hda_codec_amp_stereo(codec, 0x0c, HDA_INPUT, 0,
15507 AMP_IN_MUTE(0), AMP_IN_MUTE(0));
15508 snd_hda_codec_amp_stereo(codec, 0x0c, HDA_INPUT, 1,
15509 AMP_IN_MUTE(0), AMP_IN_MUTE(0));
15511 snd_hda_codec_amp_stereo(codec, 0x0c, HDA_INPUT, 0,
15512 AMP_IN_MUTE(0), 0);
15513 snd_hda_codec_amp_stereo(codec, 0x0c, HDA_INPUT, 1,
15514 AMP_IN_MUTE(0), 0);
15518 static void alc663_m51va_mic_automute(struct hda_codec *codec)
15520 unsigned int present;
15522 present = snd_hda_codec_read(codec, 0x18, 0,
15523 AC_VERB_GET_PIN_SENSE, 0)
15524 & AC_PINSENSE_PRESENCE;
15525 snd_hda_codec_write_cache(codec, 0x22, 0, AC_VERB_SET_AMP_GAIN_MUTE,
15526 0x7000 | (0x00 << 8) | (present ? 0 : 0x80));
15527 snd_hda_codec_write_cache(codec, 0x23, 0, AC_VERB_SET_AMP_GAIN_MUTE,
15528 0x7000 | (0x00 << 8) | (present ? 0 : 0x80));
15529 snd_hda_codec_write_cache(codec, 0x22, 0, AC_VERB_SET_AMP_GAIN_MUTE,
15530 0x7000 | (0x09 << 8) | (present ? 0x80 : 0));
15531 snd_hda_codec_write_cache(codec, 0x23, 0, AC_VERB_SET_AMP_GAIN_MUTE,
15532 0x7000 | (0x09 << 8) | (present ? 0x80 : 0));
15535 static void alc663_m51va_unsol_event(struct hda_codec *codec,
15538 switch (res >> 26) {
15539 case ALC880_HP_EVENT:
15540 alc663_m51va_speaker_automute(codec);
15542 case ALC880_MIC_EVENT:
15543 alc663_m51va_mic_automute(codec);
15548 static void alc663_m51va_inithook(struct hda_codec *codec)
15550 alc663_m51va_speaker_automute(codec);
15551 alc663_m51va_mic_automute(codec);
15554 /* ***************** Mode1 ******************************/
15555 static void alc663_mode1_unsol_event(struct hda_codec *codec,
15558 switch (res >> 26) {
15559 case ALC880_HP_EVENT:
15560 alc663_m51va_speaker_automute(codec);
15562 case ALC880_MIC_EVENT:
15563 alc662_eeepc_mic_automute(codec);
15568 static void alc663_mode1_inithook(struct hda_codec *codec)
15570 alc663_m51va_speaker_automute(codec);
15571 alc662_eeepc_mic_automute(codec);
15573 /* ***************** Mode2 ******************************/
15574 static void alc662_mode2_unsol_event(struct hda_codec *codec,
15577 switch (res >> 26) {
15578 case ALC880_HP_EVENT:
15579 alc662_f5z_speaker_automute(codec);
15581 case ALC880_MIC_EVENT:
15582 alc662_eeepc_mic_automute(codec);
15587 static void alc662_mode2_inithook(struct hda_codec *codec)
15589 alc662_f5z_speaker_automute(codec);
15590 alc662_eeepc_mic_automute(codec);
15592 /* ***************** Mode3 ******************************/
15593 static void alc663_mode3_unsol_event(struct hda_codec *codec,
15596 switch (res >> 26) {
15597 case ALC880_HP_EVENT:
15598 alc663_two_hp_m1_speaker_automute(codec);
15600 case ALC880_MIC_EVENT:
15601 alc662_eeepc_mic_automute(codec);
15606 static void alc663_mode3_inithook(struct hda_codec *codec)
15608 alc663_two_hp_m1_speaker_automute(codec);
15609 alc662_eeepc_mic_automute(codec);
15611 /* ***************** Mode4 ******************************/
15612 static void alc663_mode4_unsol_event(struct hda_codec *codec,
15615 switch (res >> 26) {
15616 case ALC880_HP_EVENT:
15617 alc663_21jd_two_speaker_automute(codec);
15619 case ALC880_MIC_EVENT:
15620 alc662_eeepc_mic_automute(codec);
15625 static void alc663_mode4_inithook(struct hda_codec *codec)
15627 alc663_21jd_two_speaker_automute(codec);
15628 alc662_eeepc_mic_automute(codec);
15630 /* ***************** Mode5 ******************************/
15631 static void alc663_mode5_unsol_event(struct hda_codec *codec,
15634 switch (res >> 26) {
15635 case ALC880_HP_EVENT:
15636 alc663_15jd_two_speaker_automute(codec);
15638 case ALC880_MIC_EVENT:
15639 alc662_eeepc_mic_automute(codec);
15644 static void alc663_mode5_inithook(struct hda_codec *codec)
15646 alc663_15jd_two_speaker_automute(codec);
15647 alc662_eeepc_mic_automute(codec);
15649 /* ***************** Mode6 ******************************/
15650 static void alc663_mode6_unsol_event(struct hda_codec *codec,
15653 switch (res >> 26) {
15654 case ALC880_HP_EVENT:
15655 alc663_two_hp_m2_speaker_automute(codec);
15657 case ALC880_MIC_EVENT:
15658 alc662_eeepc_mic_automute(codec);
15663 static void alc663_mode6_inithook(struct hda_codec *codec)
15665 alc663_two_hp_m2_speaker_automute(codec);
15666 alc662_eeepc_mic_automute(codec);
15669 static void alc663_g71v_hp_automute(struct hda_codec *codec)
15671 unsigned int present;
15672 unsigned char bits;
15674 present = snd_hda_codec_read(codec, 0x21, 0,
15675 AC_VERB_GET_PIN_SENSE, 0)
15676 & AC_PINSENSE_PRESENCE;
15677 bits = present ? HDA_AMP_MUTE : 0;
15678 snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0,
15679 HDA_AMP_MUTE, bits);
15680 snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0,
15681 HDA_AMP_MUTE, bits);
15684 static void alc663_g71v_front_automute(struct hda_codec *codec)
15686 unsigned int present;
15687 unsigned char bits;
15689 present = snd_hda_codec_read(codec, 0x15, 0,
15690 AC_VERB_GET_PIN_SENSE, 0)
15691 & AC_PINSENSE_PRESENCE;
15692 bits = present ? HDA_AMP_MUTE : 0;
15693 snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0,
15694 HDA_AMP_MUTE, bits);
15697 static void alc663_g71v_unsol_event(struct hda_codec *codec,
15700 switch (res >> 26) {
15701 case ALC880_HP_EVENT:
15702 alc663_g71v_hp_automute(codec);
15704 case ALC880_FRONT_EVENT:
15705 alc663_g71v_front_automute(codec);
15707 case ALC880_MIC_EVENT:
15708 alc662_eeepc_mic_automute(codec);
15713 static void alc663_g71v_inithook(struct hda_codec *codec)
15715 alc663_g71v_front_automute(codec);
15716 alc663_g71v_hp_automute(codec);
15717 alc662_eeepc_mic_automute(codec);
15720 static void alc663_g50v_unsol_event(struct hda_codec *codec,
15723 switch (res >> 26) {
15724 case ALC880_HP_EVENT:
15725 alc663_m51va_speaker_automute(codec);
15727 case ALC880_MIC_EVENT:
15728 alc662_eeepc_mic_automute(codec);
15733 static void alc663_g50v_inithook(struct hda_codec *codec)
15735 alc663_m51va_speaker_automute(codec);
15736 alc662_eeepc_mic_automute(codec);
15739 /* bind hp and internal speaker mute (with plug check) */
15740 static int alc662_ecs_master_sw_put(struct snd_kcontrol *kcontrol,
15741 struct snd_ctl_elem_value *ucontrol)
15743 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
15744 long *valp = ucontrol->value.integer.value;
15747 change = snd_hda_codec_amp_update(codec, 0x1b, 0, HDA_OUTPUT, 0,
15749 valp[0] ? 0 : HDA_AMP_MUTE);
15750 change |= snd_hda_codec_amp_update(codec, 0x1b, 1, HDA_OUTPUT, 0,
15752 valp[1] ? 0 : HDA_AMP_MUTE);
15754 alc262_hippo1_automute(codec);
15758 static struct snd_kcontrol_new alc662_ecs_mixer[] = {
15759 HDA_CODEC_VOLUME("Master Playback Volume", 0x02, 0x0, HDA_OUTPUT),
15761 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
15762 .name = "Master Playback Switch",
15763 .info = snd_hda_mixer_amp_switch_info,
15764 .get = snd_hda_mixer_amp_switch_get,
15765 .put = alc662_ecs_master_sw_put,
15766 .private_value = HDA_COMPOSE_AMP_VAL(0x1b, 3, 0, HDA_OUTPUT),
15769 HDA_CODEC_VOLUME("e-Mic/LineIn Boost", 0x18, 0, HDA_INPUT),
15770 HDA_CODEC_VOLUME("e-Mic/LineIn Playback Volume", 0x0b, 0x0, HDA_INPUT),
15771 HDA_CODEC_MUTE("e-Mic/LineIn Playback Switch", 0x0b, 0x0, HDA_INPUT),
15773 HDA_CODEC_VOLUME("i-Mic Boost", 0x19, 0, HDA_INPUT),
15774 HDA_CODEC_VOLUME("i-Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
15775 HDA_CODEC_MUTE("i-Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
15779 #ifdef CONFIG_SND_HDA_POWER_SAVE
15780 #define alc662_loopbacks alc880_loopbacks
15784 /* pcm configuration: identiacal with ALC880 */
15785 #define alc662_pcm_analog_playback alc880_pcm_analog_playback
15786 #define alc662_pcm_analog_capture alc880_pcm_analog_capture
15787 #define alc662_pcm_digital_playback alc880_pcm_digital_playback
15788 #define alc662_pcm_digital_capture alc880_pcm_digital_capture
15791 * configuration and preset
15793 static const char *alc662_models[ALC662_MODEL_LAST] = {
15794 [ALC662_3ST_2ch_DIG] = "3stack-dig",
15795 [ALC662_3ST_6ch_DIG] = "3stack-6ch-dig",
15796 [ALC662_3ST_6ch] = "3stack-6ch",
15797 [ALC662_5ST_DIG] = "6stack-dig",
15798 [ALC662_LENOVO_101E] = "lenovo-101e",
15799 [ALC662_ASUS_EEEPC_P701] = "eeepc-p701",
15800 [ALC662_ASUS_EEEPC_EP20] = "eeepc-ep20",
15801 [ALC662_ECS] = "ecs",
15802 [ALC663_ASUS_M51VA] = "m51va",
15803 [ALC663_ASUS_G71V] = "g71v",
15804 [ALC663_ASUS_H13] = "h13",
15805 [ALC663_ASUS_G50V] = "g50v",
15806 [ALC663_ASUS_MODE1] = "asus-mode1",
15807 [ALC662_ASUS_MODE2] = "asus-mode2",
15808 [ALC663_ASUS_MODE3] = "asus-mode3",
15809 [ALC663_ASUS_MODE4] = "asus-mode4",
15810 [ALC663_ASUS_MODE5] = "asus-mode5",
15811 [ALC663_ASUS_MODE6] = "asus-mode6",
15812 [ALC662_AUTO] = "auto",
15815 static struct snd_pci_quirk alc662_cfg_tbl[] = {
15816 SND_PCI_QUIRK(0x1043, 0x1878, "ASUS M51VA", ALC663_ASUS_M51VA),
15817 SND_PCI_QUIRK(0x1043, 0x19a3, "ASUS G50V", ALC663_ASUS_G50V),
15818 SND_PCI_QUIRK(0x1043, 0x8290, "ASUS P5GC-MX", ALC662_3ST_6ch_DIG),
15819 SND_PCI_QUIRK(0x1043, 0x82a1, "ASUS Eeepc", ALC662_ASUS_EEEPC_P701),
15820 SND_PCI_QUIRK(0x1043, 0x82d1, "ASUS Eeepc EP20", ALC662_ASUS_EEEPC_EP20),
15821 SND_PCI_QUIRK(0x1043, 0x1903, "ASUS F5GL", ALC663_ASUS_MODE1),
15822 SND_PCI_QUIRK(0x1043, 0x1878, "ASUS M50Vr", ALC663_ASUS_MODE1),
15823 SND_PCI_QUIRK(0x1043, 0x1000, "ASUS N50Vm", ALC663_ASUS_MODE1),
15824 SND_PCI_QUIRK(0x1043, 0x19b3, "ASUS F7Z", ALC663_ASUS_MODE1),
15825 SND_PCI_QUIRK(0x1043, 0x1953, "ASUS NB", ALC663_ASUS_MODE1),
15826 SND_PCI_QUIRK(0x1043, 0x19a3, "ASUS NB", ALC663_ASUS_MODE1),
15827 SND_PCI_QUIRK(0x1043, 0x11d3, "ASUS NB", ALC663_ASUS_MODE1),
15828 SND_PCI_QUIRK(0x1043, 0x1203, "ASUS NB", ALC663_ASUS_MODE1),
15829 SND_PCI_QUIRK(0x1043, 0x19e3, "ASUS NB", ALC663_ASUS_MODE1),
15830 SND_PCI_QUIRK(0x1043, 0x1993, "ASUS N20", ALC663_ASUS_MODE1),
15831 SND_PCI_QUIRK(0x1043, 0x19c3, "ASUS F5Z/F6x", ALC662_ASUS_MODE2),
15832 SND_PCI_QUIRK(0x1043, 0x1339, "ASUS NB", ALC662_ASUS_MODE2),
15833 SND_PCI_QUIRK(0x1043, 0x1913, "ASUS NB", ALC662_ASUS_MODE2),
15834 SND_PCI_QUIRK(0x1043, 0x1843, "ASUS NB", ALC662_ASUS_MODE2),
15835 SND_PCI_QUIRK(0x1043, 0x1813, "ASUS NB", ALC662_ASUS_MODE2),
15836 SND_PCI_QUIRK(0x1043, 0x11f3, "ASUS NB", ALC662_ASUS_MODE2),
15837 SND_PCI_QUIRK(0x1043, 0x1876, "ASUS NB", ALC662_ASUS_MODE2),
15838 SND_PCI_QUIRK(0x1043, 0x1864, "ASUS NB", ALC662_ASUS_MODE2),
15839 SND_PCI_QUIRK(0x1043, 0x1783, "ASUS NB", ALC662_ASUS_MODE2),
15840 SND_PCI_QUIRK(0x1043, 0x1753, "ASUS NB", ALC662_ASUS_MODE2),
15841 SND_PCI_QUIRK(0x1043, 0x16c3, "ASUS NB", ALC662_ASUS_MODE2),
15842 SND_PCI_QUIRK(0x1043, 0x1933, "ASUS F80Q", ALC662_ASUS_MODE2),
15843 SND_PCI_QUIRK(0x1043, 0x1893, "ASUS M50Vm", ALC663_ASUS_MODE3),
15844 SND_PCI_QUIRK(0x1043, 0x11c3, "ASUS M70V", ALC663_ASUS_MODE3),
15845 SND_PCI_QUIRK(0x1043, 0x1963, "ASUS X71C", ALC663_ASUS_MODE3),
15846 SND_PCI_QUIRK(0x1043, 0x1894, "ASUS X55", ALC663_ASUS_MODE3),
15847 SND_PCI_QUIRK(0x1043, 0x1092, "ASUS NB", ALC663_ASUS_MODE3),
15848 SND_PCI_QUIRK(0x1043, 0x19f3, "ASUS NB", ALC663_ASUS_MODE4),
15849 SND_PCI_QUIRK(0x1043, 0x1823, "ASUS NB", ALC663_ASUS_MODE5),
15850 SND_PCI_QUIRK(0x1043, 0x1833, "ASUS NB", ALC663_ASUS_MODE6),
15851 SND_PCI_QUIRK(0x1043, 0x1763, "ASUS NB", ALC663_ASUS_MODE6),
15852 SND_PCI_QUIRK(0x1043, 0x1765, "ASUS NB", ALC663_ASUS_MODE6),
15853 SND_PCI_QUIRK(0x105b, 0x0d47, "Foxconn 45CMX/45GMX/45CMX-K",
15854 ALC662_3ST_6ch_DIG),
15855 SND_PCI_QUIRK(0x17aa, 0x101e, "Lenovo", ALC662_LENOVO_101E),
15856 SND_PCI_QUIRK(0x1019, 0x9087, "ECS", ALC662_ECS),
15857 SND_PCI_QUIRK(0x105b, 0x0cd6, "Foxconn", ALC662_ECS),
15858 SND_PCI_QUIRK(0x1458, 0xa002, "Gigabyte 945GCM-S2L",
15859 ALC662_3ST_6ch_DIG),
15860 SND_PCI_QUIRK(0x1565, 0x820f, "Biostar TA780G M2+", ALC662_3ST_6ch_DIG),
15861 SND_PCI_QUIRK(0x1849, 0x3662, "ASROCK K10N78FullHD-hSLI R3.0",
15862 ALC662_3ST_6ch_DIG),
15863 SND_PCI_QUIRK(0x1854, 0x2000, "ASUS H13-2000", ALC663_ASUS_H13),
15864 SND_PCI_QUIRK(0x1854, 0x2001, "ASUS H13-2001", ALC663_ASUS_H13),
15865 SND_PCI_QUIRK(0x1854, 0x2002, "ASUS H13-2002", ALC663_ASUS_H13),
15869 static struct alc_config_preset alc662_presets[] = {
15870 [ALC662_3ST_2ch_DIG] = {
15871 .mixers = { alc662_3ST_2ch_mixer, alc662_capture_mixer },
15872 .init_verbs = { alc662_init_verbs },
15873 .num_dacs = ARRAY_SIZE(alc662_dac_nids),
15874 .dac_nids = alc662_dac_nids,
15875 .dig_out_nid = ALC662_DIGOUT_NID,
15876 .dig_in_nid = ALC662_DIGIN_NID,
15877 .num_channel_mode = ARRAY_SIZE(alc662_3ST_2ch_modes),
15878 .channel_mode = alc662_3ST_2ch_modes,
15879 .input_mux = &alc662_capture_source,
15881 [ALC662_3ST_6ch_DIG] = {
15882 .mixers = { alc662_3ST_6ch_mixer, alc662_chmode_mixer,
15883 alc662_capture_mixer },
15884 .init_verbs = { alc662_init_verbs },
15885 .num_dacs = ARRAY_SIZE(alc662_dac_nids),
15886 .dac_nids = alc662_dac_nids,
15887 .dig_out_nid = ALC662_DIGOUT_NID,
15888 .dig_in_nid = ALC662_DIGIN_NID,
15889 .num_channel_mode = ARRAY_SIZE(alc662_3ST_6ch_modes),
15890 .channel_mode = alc662_3ST_6ch_modes,
15892 .input_mux = &alc662_capture_source,
15894 [ALC662_3ST_6ch] = {
15895 .mixers = { alc662_3ST_6ch_mixer, alc662_chmode_mixer,
15896 alc662_capture_mixer },
15897 .init_verbs = { alc662_init_verbs },
15898 .num_dacs = ARRAY_SIZE(alc662_dac_nids),
15899 .dac_nids = alc662_dac_nids,
15900 .num_channel_mode = ARRAY_SIZE(alc662_3ST_6ch_modes),
15901 .channel_mode = alc662_3ST_6ch_modes,
15903 .input_mux = &alc662_capture_source,
15905 [ALC662_5ST_DIG] = {
15906 .mixers = { alc662_base_mixer, alc662_chmode_mixer,
15907 alc662_capture_mixer },
15908 .init_verbs = { alc662_init_verbs },
15909 .num_dacs = ARRAY_SIZE(alc662_dac_nids),
15910 .dac_nids = alc662_dac_nids,
15911 .dig_out_nid = ALC662_DIGOUT_NID,
15912 .dig_in_nid = ALC662_DIGIN_NID,
15913 .num_channel_mode = ARRAY_SIZE(alc662_5stack_modes),
15914 .channel_mode = alc662_5stack_modes,
15915 .input_mux = &alc662_capture_source,
15917 [ALC662_LENOVO_101E] = {
15918 .mixers = { alc662_lenovo_101e_mixer, alc662_capture_mixer },
15919 .init_verbs = { alc662_init_verbs, alc662_sue_init_verbs },
15920 .num_dacs = ARRAY_SIZE(alc662_dac_nids),
15921 .dac_nids = alc662_dac_nids,
15922 .num_channel_mode = ARRAY_SIZE(alc662_3ST_2ch_modes),
15923 .channel_mode = alc662_3ST_2ch_modes,
15924 .input_mux = &alc662_lenovo_101e_capture_source,
15925 .unsol_event = alc662_lenovo_101e_unsol_event,
15926 .init_hook = alc662_lenovo_101e_all_automute,
15928 [ALC662_ASUS_EEEPC_P701] = {
15929 .mixers = { alc662_eeepc_p701_mixer, alc662_capture_mixer },
15930 .init_verbs = { alc662_init_verbs,
15931 alc662_eeepc_sue_init_verbs },
15932 .num_dacs = ARRAY_SIZE(alc662_dac_nids),
15933 .dac_nids = alc662_dac_nids,
15934 .num_channel_mode = ARRAY_SIZE(alc662_3ST_2ch_modes),
15935 .channel_mode = alc662_3ST_2ch_modes,
15936 .input_mux = &alc662_eeepc_capture_source,
15937 .unsol_event = alc662_eeepc_unsol_event,
15938 .init_hook = alc662_eeepc_inithook,
15940 [ALC662_ASUS_EEEPC_EP20] = {
15941 .mixers = { alc662_eeepc_ep20_mixer, alc662_capture_mixer,
15942 alc662_chmode_mixer },
15943 .init_verbs = { alc662_init_verbs,
15944 alc662_eeepc_ep20_sue_init_verbs },
15945 .num_dacs = ARRAY_SIZE(alc662_dac_nids),
15946 .dac_nids = alc662_dac_nids,
15947 .num_channel_mode = ARRAY_SIZE(alc662_3ST_6ch_modes),
15948 .channel_mode = alc662_3ST_6ch_modes,
15949 .input_mux = &alc662_lenovo_101e_capture_source,
15950 .unsol_event = alc662_eeepc_ep20_unsol_event,
15951 .init_hook = alc662_eeepc_ep20_inithook,
15954 .mixers = { alc662_ecs_mixer, alc662_capture_mixer },
15955 .init_verbs = { alc662_init_verbs,
15956 alc662_ecs_init_verbs },
15957 .num_dacs = ARRAY_SIZE(alc662_dac_nids),
15958 .dac_nids = alc662_dac_nids,
15959 .num_channel_mode = ARRAY_SIZE(alc662_3ST_2ch_modes),
15960 .channel_mode = alc662_3ST_2ch_modes,
15961 .input_mux = &alc662_eeepc_capture_source,
15962 .unsol_event = alc662_eeepc_unsol_event,
15963 .init_hook = alc662_eeepc_inithook,
15965 [ALC663_ASUS_M51VA] = {
15966 .mixers = { alc663_m51va_mixer, alc662_capture_mixer},
15967 .init_verbs = { alc662_init_verbs, alc663_m51va_init_verbs },
15968 .num_dacs = ARRAY_SIZE(alc662_dac_nids),
15969 .dac_nids = alc662_dac_nids,
15970 .dig_out_nid = ALC662_DIGOUT_NID,
15971 .num_channel_mode = ARRAY_SIZE(alc662_3ST_2ch_modes),
15972 .channel_mode = alc662_3ST_2ch_modes,
15973 .input_mux = &alc663_m51va_capture_source,
15974 .unsol_event = alc663_m51va_unsol_event,
15975 .init_hook = alc663_m51va_inithook,
15977 [ALC663_ASUS_G71V] = {
15978 .mixers = { alc663_g71v_mixer, alc662_capture_mixer},
15979 .init_verbs = { alc662_init_verbs, alc663_g71v_init_verbs },
15980 .num_dacs = ARRAY_SIZE(alc662_dac_nids),
15981 .dac_nids = alc662_dac_nids,
15982 .dig_out_nid = ALC662_DIGOUT_NID,
15983 .num_channel_mode = ARRAY_SIZE(alc662_3ST_2ch_modes),
15984 .channel_mode = alc662_3ST_2ch_modes,
15985 .input_mux = &alc662_eeepc_capture_source,
15986 .unsol_event = alc663_g71v_unsol_event,
15987 .init_hook = alc663_g71v_inithook,
15989 [ALC663_ASUS_H13] = {
15990 .mixers = { alc663_m51va_mixer, alc662_capture_mixer},
15991 .init_verbs = { alc662_init_verbs, alc663_m51va_init_verbs },
15992 .num_dacs = ARRAY_SIZE(alc662_dac_nids),
15993 .dac_nids = alc662_dac_nids,
15994 .num_channel_mode = ARRAY_SIZE(alc662_3ST_2ch_modes),
15995 .channel_mode = alc662_3ST_2ch_modes,
15996 .input_mux = &alc663_m51va_capture_source,
15997 .unsol_event = alc663_m51va_unsol_event,
15998 .init_hook = alc663_m51va_inithook,
16000 [ALC663_ASUS_G50V] = {
16001 .mixers = { alc663_g50v_mixer, alc662_capture_mixer},
16002 .init_verbs = { alc662_init_verbs, alc663_g50v_init_verbs },
16003 .num_dacs = ARRAY_SIZE(alc662_dac_nids),
16004 .dac_nids = alc662_dac_nids,
16005 .dig_out_nid = ALC662_DIGOUT_NID,
16006 .num_channel_mode = ARRAY_SIZE(alc662_3ST_6ch_modes),
16007 .channel_mode = alc662_3ST_6ch_modes,
16008 .input_mux = &alc663_capture_source,
16009 .unsol_event = alc663_g50v_unsol_event,
16010 .init_hook = alc663_g50v_inithook,
16012 [ALC663_ASUS_MODE1] = {
16013 .mixers = { alc663_m51va_mixer, alc662_auto_capture_mixer },
16014 .init_verbs = { alc662_init_verbs,
16015 alc663_21jd_amic_init_verbs },
16016 .num_dacs = ARRAY_SIZE(alc662_dac_nids),
16018 .dac_nids = alc662_dac_nids,
16019 .dig_out_nid = ALC662_DIGOUT_NID,
16020 .num_channel_mode = ARRAY_SIZE(alc662_3ST_2ch_modes),
16021 .channel_mode = alc662_3ST_2ch_modes,
16022 .input_mux = &alc662_eeepc_capture_source,
16023 .unsol_event = alc663_mode1_unsol_event,
16024 .init_hook = alc663_mode1_inithook,
16026 [ALC662_ASUS_MODE2] = {
16027 .mixers = { alc662_1bjd_mixer, alc662_auto_capture_mixer },
16028 .init_verbs = { alc662_init_verbs,
16029 alc662_1bjd_amic_init_verbs },
16030 .num_dacs = ARRAY_SIZE(alc662_dac_nids),
16031 .dac_nids = alc662_dac_nids,
16032 .dig_out_nid = ALC662_DIGOUT_NID,
16033 .num_channel_mode = ARRAY_SIZE(alc662_3ST_2ch_modes),
16034 .channel_mode = alc662_3ST_2ch_modes,
16035 .input_mux = &alc662_eeepc_capture_source,
16036 .unsol_event = alc662_mode2_unsol_event,
16037 .init_hook = alc662_mode2_inithook,
16039 [ALC663_ASUS_MODE3] = {
16040 .mixers = { alc663_two_hp_m1_mixer, alc662_auto_capture_mixer },
16041 .init_verbs = { alc662_init_verbs,
16042 alc663_two_hp_amic_m1_init_verbs },
16043 .num_dacs = ARRAY_SIZE(alc662_dac_nids),
16045 .dac_nids = alc662_dac_nids,
16046 .dig_out_nid = ALC662_DIGOUT_NID,
16047 .num_channel_mode = ARRAY_SIZE(alc662_3ST_2ch_modes),
16048 .channel_mode = alc662_3ST_2ch_modes,
16049 .input_mux = &alc662_eeepc_capture_source,
16050 .unsol_event = alc663_mode3_unsol_event,
16051 .init_hook = alc663_mode3_inithook,
16053 [ALC663_ASUS_MODE4] = {
16054 .mixers = { alc663_asus_21jd_clfe_mixer,
16055 alc662_auto_capture_mixer},
16056 .init_verbs = { alc662_init_verbs,
16057 alc663_21jd_amic_init_verbs},
16058 .num_dacs = ARRAY_SIZE(alc662_dac_nids),
16060 .dac_nids = alc662_dac_nids,
16061 .dig_out_nid = ALC662_DIGOUT_NID,
16062 .num_channel_mode = ARRAY_SIZE(alc662_3ST_2ch_modes),
16063 .channel_mode = alc662_3ST_2ch_modes,
16064 .input_mux = &alc662_eeepc_capture_source,
16065 .unsol_event = alc663_mode4_unsol_event,
16066 .init_hook = alc663_mode4_inithook,
16068 [ALC663_ASUS_MODE5] = {
16069 .mixers = { alc663_asus_15jd_clfe_mixer,
16070 alc662_auto_capture_mixer },
16071 .init_verbs = { alc662_init_verbs,
16072 alc663_15jd_amic_init_verbs },
16073 .num_dacs = ARRAY_SIZE(alc662_dac_nids),
16075 .dac_nids = alc662_dac_nids,
16076 .dig_out_nid = ALC662_DIGOUT_NID,
16077 .num_channel_mode = ARRAY_SIZE(alc662_3ST_2ch_modes),
16078 .channel_mode = alc662_3ST_2ch_modes,
16079 .input_mux = &alc662_eeepc_capture_source,
16080 .unsol_event = alc663_mode5_unsol_event,
16081 .init_hook = alc663_mode5_inithook,
16083 [ALC663_ASUS_MODE6] = {
16084 .mixers = { alc663_two_hp_m2_mixer, alc662_auto_capture_mixer },
16085 .init_verbs = { alc662_init_verbs,
16086 alc663_two_hp_amic_m2_init_verbs },
16087 .num_dacs = ARRAY_SIZE(alc662_dac_nids),
16089 .dac_nids = alc662_dac_nids,
16090 .dig_out_nid = ALC662_DIGOUT_NID,
16091 .num_channel_mode = ARRAY_SIZE(alc662_3ST_2ch_modes),
16092 .channel_mode = alc662_3ST_2ch_modes,
16093 .input_mux = &alc662_eeepc_capture_source,
16094 .unsol_event = alc663_mode6_unsol_event,
16095 .init_hook = alc663_mode6_inithook,
16101 * BIOS auto configuration
16104 /* add playback controls from the parsed DAC table */
16105 static int alc662_auto_create_multi_out_ctls(struct alc_spec *spec,
16106 const struct auto_pin_cfg *cfg)
16109 static const char *chname[4] = {
16110 "Front", "Surround", NULL /*CLFE*/, "Side"
16115 for (i = 0; i < cfg->line_outs; i++) {
16116 if (!spec->multiout.dac_nids[i])
16118 nid = alc880_idx_to_dac(i);
16121 err = add_control(spec, ALC_CTL_WIDGET_VOL,
16122 "Center Playback Volume",
16123 HDA_COMPOSE_AMP_VAL(nid, 1, 0,
16127 err = add_control(spec, ALC_CTL_WIDGET_VOL,
16128 "LFE Playback Volume",
16129 HDA_COMPOSE_AMP_VAL(nid, 2, 0,
16133 err = add_control(spec, ALC_CTL_WIDGET_MUTE,
16134 "Center Playback Switch",
16135 HDA_COMPOSE_AMP_VAL(0x0e, 1, 0,
16139 err = add_control(spec, ALC_CTL_WIDGET_MUTE,
16140 "LFE Playback Switch",
16141 HDA_COMPOSE_AMP_VAL(0x0e, 2, 0,
16146 sprintf(name, "%s Playback Volume", chname[i]);
16147 err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
16148 HDA_COMPOSE_AMP_VAL(nid, 3, 0,
16152 sprintf(name, "%s Playback Switch", chname[i]);
16153 err = add_control(spec, ALC_CTL_WIDGET_MUTE, name,
16154 HDA_COMPOSE_AMP_VAL(alc880_idx_to_mixer(i),
16163 /* add playback controls for speaker and HP outputs */
16164 static int alc662_auto_create_extra_out(struct alc_spec *spec, hda_nid_t pin,
16175 /* ALC663 has a mono output pin on 0x17 */
16176 sprintf(name, "%s Playback Switch", pfx);
16177 err = add_control(spec, ALC_CTL_WIDGET_MUTE, name,
16178 HDA_COMPOSE_AMP_VAL(pin, 2, 0, HDA_OUTPUT));
16182 if (alc880_is_fixed_pin(pin)) {
16183 nid = alc880_idx_to_dac(alc880_fixed_pin_idx(pin));
16184 /* printk("DAC nid=%x\n",nid); */
16185 /* specify the DAC as the extra output */
16186 if (!spec->multiout.hp_nid)
16187 spec->multiout.hp_nid = nid;
16189 spec->multiout.extra_out_nid[0] = nid;
16190 /* control HP volume/switch on the output mixer amp */
16191 nid = alc880_idx_to_dac(alc880_fixed_pin_idx(pin));
16192 sprintf(name, "%s Playback Volume", pfx);
16193 err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
16194 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT));
16197 sprintf(name, "%s Playback Switch", pfx);
16198 err = add_control(spec, ALC_CTL_BIND_MUTE, name,
16199 HDA_COMPOSE_AMP_VAL(nid, 3, 2, HDA_INPUT));
16202 } else if (alc880_is_multi_pin(pin)) {
16203 /* set manual connection */
16204 /* we have only a switch on HP-out PIN */
16205 sprintf(name, "%s Playback Switch", pfx);
16206 err = add_control(spec, ALC_CTL_WIDGET_MUTE, name,
16207 HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_OUTPUT));
16214 /* create playback/capture controls for input pins */
16215 static int alc662_auto_create_analog_input_ctls(struct alc_spec *spec,
16216 const struct auto_pin_cfg *cfg)
16218 struct hda_input_mux *imux = &spec->private_imux;
16221 for (i = 0; i < AUTO_PIN_LAST; i++) {
16222 if (alc880_is_input_pin(cfg->input_pins[i])) {
16223 idx = alc880_input_pin_idx(cfg->input_pins[i]);
16224 err = new_analog_input(spec, cfg->input_pins[i],
16225 auto_pin_cfg_labels[i],
16229 imux->items[imux->num_items].label =
16230 auto_pin_cfg_labels[i];
16231 imux->items[imux->num_items].index =
16232 alc880_input_pin_idx(cfg->input_pins[i]);
16239 static void alc662_auto_set_output_and_unmute(struct hda_codec *codec,
16240 hda_nid_t nid, int pin_type,
16243 alc_set_pin_output(codec, nid, pin_type);
16244 /* need the manual connection? */
16245 if (alc880_is_multi_pin(nid)) {
16246 struct alc_spec *spec = codec->spec;
16247 int idx = alc880_multi_pin_idx(nid);
16248 snd_hda_codec_write(codec, alc880_idx_to_selector(idx), 0,
16249 AC_VERB_SET_CONNECT_SEL,
16250 alc880_dac_to_idx(spec->multiout.dac_nids[dac_idx]));
16254 static void alc662_auto_init_multi_out(struct hda_codec *codec)
16256 struct alc_spec *spec = codec->spec;
16259 alc_subsystem_id(codec, 0x15, 0x1b, 0x14);
16260 for (i = 0; i <= HDA_SIDE; i++) {
16261 hda_nid_t nid = spec->autocfg.line_out_pins[i];
16262 int pin_type = get_pin_type(spec->autocfg.line_out_type);
16264 alc662_auto_set_output_and_unmute(codec, nid, pin_type,
16269 static void alc662_auto_init_hp_out(struct hda_codec *codec)
16271 struct alc_spec *spec = codec->spec;
16274 pin = spec->autocfg.hp_pins[0];
16275 if (pin) /* connect to front */
16277 alc662_auto_set_output_and_unmute(codec, pin, PIN_HP, 0);
16278 pin = spec->autocfg.speaker_pins[0];
16280 alc662_auto_set_output_and_unmute(codec, pin, PIN_OUT, 0);
16283 #define alc662_is_input_pin(nid) alc880_is_input_pin(nid)
16284 #define ALC662_PIN_CD_NID ALC880_PIN_CD_NID
16286 static void alc662_auto_init_analog_input(struct hda_codec *codec)
16288 struct alc_spec *spec = codec->spec;
16291 for (i = 0; i < AUTO_PIN_LAST; i++) {
16292 hda_nid_t nid = spec->autocfg.input_pins[i];
16293 if (alc662_is_input_pin(nid)) {
16294 snd_hda_codec_write(codec, nid, 0,
16295 AC_VERB_SET_PIN_WIDGET_CONTROL,
16296 (i <= AUTO_PIN_FRONT_MIC ?
16297 PIN_VREF80 : PIN_IN));
16298 if (nid != ALC662_PIN_CD_NID)
16299 snd_hda_codec_write(codec, nid, 0,
16300 AC_VERB_SET_AMP_GAIN_MUTE,
16306 #define alc662_auto_init_input_src alc882_auto_init_input_src
16308 static int alc662_parse_auto_config(struct hda_codec *codec)
16310 struct alc_spec *spec = codec->spec;
16312 static hda_nid_t alc662_ignore[] = { 0x1d, 0 };
16314 err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
16318 if (!spec->autocfg.line_outs)
16319 return 0; /* can't find valid BIOS pin config */
16321 err = alc880_auto_fill_dac_nids(spec, &spec->autocfg);
16324 err = alc662_auto_create_multi_out_ctls(spec, &spec->autocfg);
16327 err = alc662_auto_create_extra_out(spec,
16328 spec->autocfg.speaker_pins[0],
16332 err = alc662_auto_create_extra_out(spec, spec->autocfg.hp_pins[0],
16336 err = alc662_auto_create_analog_input_ctls(spec, &spec->autocfg);
16340 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
16342 if (spec->autocfg.dig_out_pin)
16343 spec->multiout.dig_out_nid = ALC880_DIGOUT_NID;
16345 if (spec->kctl_alloc)
16346 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
16348 spec->num_mux_defs = 1;
16349 spec->input_mux = &spec->private_imux;
16351 spec->init_verbs[spec->num_init_verbs++] = alc662_auto_init_verbs;
16352 if (codec->vendor_id == 0x10ec0663)
16353 spec->init_verbs[spec->num_init_verbs++] =
16354 alc663_auto_init_verbs;
16356 err = alc_auto_add_mic_boost(codec);
16360 spec->mixers[spec->num_mixers] = alc662_capture_mixer;
16361 spec->num_mixers++;
16363 store_pin_configs(codec);
16367 /* additional initialization for auto-configuration model */
16368 static void alc662_auto_init(struct hda_codec *codec)
16370 struct alc_spec *spec = codec->spec;
16371 alc662_auto_init_multi_out(codec);
16372 alc662_auto_init_hp_out(codec);
16373 alc662_auto_init_analog_input(codec);
16374 alc662_auto_init_input_src(codec);
16375 if (spec->unsol_event)
16376 alc_inithook(codec);
16379 static int patch_alc662(struct hda_codec *codec)
16381 struct alc_spec *spec;
16382 int err, board_config;
16384 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
16388 codec->spec = spec;
16390 alc_fix_pll_init(codec, 0x20, 0x04, 15);
16392 board_config = snd_hda_check_board_config(codec, ALC662_MODEL_LAST,
16395 if (board_config < 0) {
16396 printk(KERN_INFO "hda_codec: Unknown model for ALC662, "
16397 "trying auto-probe from BIOS...\n");
16398 board_config = ALC662_AUTO;
16401 if (board_config == ALC662_AUTO) {
16402 /* automatic parse from the BIOS config */
16403 err = alc662_parse_auto_config(codec);
16409 "hda_codec: Cannot set up configuration "
16410 "from BIOS. Using base mode...\n");
16411 board_config = ALC662_3ST_2ch_DIG;
16415 if (board_config != ALC662_AUTO)
16416 setup_preset(spec, &alc662_presets[board_config]);
16418 if (codec->vendor_id == 0x10ec0663) {
16419 spec->stream_name_analog = "ALC663 Analog";
16420 spec->stream_name_digital = "ALC663 Digital";
16421 } else if (codec->vendor_id == 0x10ec0272) {
16422 spec->stream_name_analog = "ALC272 Analog";
16423 spec->stream_name_digital = "ALC272 Digital";
16425 spec->stream_name_analog = "ALC662 Analog";
16426 spec->stream_name_digital = "ALC662 Digital";
16429 spec->stream_analog_playback = &alc662_pcm_analog_playback;
16430 spec->stream_analog_capture = &alc662_pcm_analog_capture;
16432 spec->stream_digital_playback = &alc662_pcm_digital_playback;
16433 spec->stream_digital_capture = &alc662_pcm_digital_capture;
16435 spec->adc_nids = alc662_adc_nids;
16436 spec->num_adc_nids = ARRAY_SIZE(alc662_adc_nids);
16437 spec->capsrc_nids = alc662_capsrc_nids;
16439 spec->vmaster_nid = 0x02;
16441 codec->patch_ops = alc_patch_ops;
16442 if (board_config == ALC662_AUTO)
16443 spec->init_hook = alc662_auto_init;
16444 #ifdef CONFIG_SND_HDA_POWER_SAVE
16445 if (!spec->loopback.amplist)
16446 spec->loopback.amplist = alc662_loopbacks;
16455 struct hda_codec_preset snd_hda_preset_realtek[] = {
16456 { .id = 0x10ec0260, .name = "ALC260", .patch = patch_alc260 },
16457 { .id = 0x10ec0262, .name = "ALC262", .patch = patch_alc262 },
16458 { .id = 0x10ec0267, .name = "ALC267", .patch = patch_alc268 },
16459 { .id = 0x10ec0268, .name = "ALC268", .patch = patch_alc268 },
16460 { .id = 0x10ec0269, .name = "ALC269", .patch = patch_alc269 },
16461 { .id = 0x10ec0272, .name = "ALC272", .patch = patch_alc662 },
16462 { .id = 0x10ec0861, .rev = 0x100340, .name = "ALC660",
16463 .patch = patch_alc861 },
16464 { .id = 0x10ec0660, .name = "ALC660-VD", .patch = patch_alc861vd },
16465 { .id = 0x10ec0861, .name = "ALC861", .patch = patch_alc861 },
16466 { .id = 0x10ec0862, .name = "ALC861-VD", .patch = patch_alc861vd },
16467 { .id = 0x10ec0662, .rev = 0x100002, .name = "ALC662 rev2",
16468 .patch = patch_alc883 },
16469 { .id = 0x10ec0662, .rev = 0x100101, .name = "ALC662 rev1",
16470 .patch = patch_alc662 },
16471 { .id = 0x10ec0663, .name = "ALC663", .patch = patch_alc662 },
16472 { .id = 0x10ec0880, .name = "ALC880", .patch = patch_alc880 },
16473 { .id = 0x10ec0882, .name = "ALC882", .patch = patch_alc882 },
16474 { .id = 0x10ec0883, .name = "ALC883", .patch = patch_alc883 },
16475 { .id = 0x10ec0885, .rev = 0x100101, .name = "ALC889A",
16476 .patch = patch_alc882 }, /* should be patch_alc883() in future */
16477 { .id = 0x10ec0885, .rev = 0x100103, .name = "ALC889A",
16478 .patch = patch_alc882 }, /* should be patch_alc883() in future */
16479 { .id = 0x10ec0885, .name = "ALC885", .patch = patch_alc882 },
16480 { .id = 0x10ec0887, .name = "ALC887", .patch = patch_alc883 },
16481 { .id = 0x10ec0888, .name = "ALC888", .patch = patch_alc883 },
16482 { .id = 0x10ec0888, .rev = 0x100101, .name = "ALC1200",
16483 .patch = patch_alc883 },
16484 { .id = 0x10ec0889, .name = "ALC889", .patch = patch_alc883 },
16485 {} /* terminator */