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 <sound/jack.h>
32 #include "hda_codec.h"
33 #include "hda_local.h"
36 #define ALC880_FRONT_EVENT 0x01
37 #define ALC880_DCVOL_EVENT 0x02
38 #define ALC880_HP_EVENT 0x04
39 #define ALC880_MIC_EVENT 0x08
41 /* ALC880 board config type */
65 #ifdef CONFIG_SND_DEBUG
69 ALC880_MODEL_LAST
/* last tag */
83 #ifdef CONFIG_SND_DEBUG
87 ALC260_MODEL_LAST
/* last tag */
97 ALC262_HP_BPC_D7000_WL
,
98 ALC262_HP_BPC_D7000_WF
,
111 ALC262_MODEL_LAST
/* last tag */
121 ALC268_ACER_ASPIRE_ONE
,
124 #ifdef CONFIG_SND_DEBUG
128 ALC268_MODEL_LAST
/* last tag */
143 ALC269_MODEL_LAST
/* last tag */
160 /* ALC861-VD models */
182 ALC662_ASUS_EEEPC_P701
,
183 ALC662_ASUS_EEEPC_EP20
,
225 ALC883_TARGA_2ch_DIG
,
226 ALC883_TARGA_8ch_DIG
,
229 ALC888_ACER_ASPIRE_4930G
,
230 ALC888_ACER_ASPIRE_6530G
,
231 ALC888_ACER_ASPIRE_8930G
,
232 ALC888_ACER_ASPIRE_7730G
,
234 ALC883_MEDION_WIM2160
,
236 ALC883_LENOVO_101E_2ch
,
237 ALC883_LENOVO_NB0763
,
238 ALC888_LENOVO_MS7195_DIG
,
246 ALC883_FUJITSU_PI2515
,
247 ALC888_FUJITSU_XA3530
,
248 ALC883_3ST_6ch_INTEL
,
268 #define GPIO_MASK 0x03
270 /* extra amp-initialization sequence types */
279 struct alc_mic_route
{
281 unsigned char mux_idx
;
282 unsigned char amix_idx
;
285 #define MUX_IDX_UNDEF ((unsigned char)-1)
287 struct alc_customize_define
{
288 unsigned int sku_cfg
;
289 unsigned char port_connectivity
;
290 unsigned char check_sum
;
291 unsigned char customization
;
292 unsigned char external_amp
;
293 unsigned int enable_pcbeep
:1;
294 unsigned int platform_type
:1;
296 unsigned int override
:1;
297 unsigned int fixup
:1; /* Means that this sku is set by driver, not read from hw */
303 /* codec parameterization */
304 struct snd_kcontrol_new
*mixers
[5]; /* mixer arrays */
305 unsigned int num_mixers
;
306 struct snd_kcontrol_new
*cap_mixer
; /* capture mixer */
307 unsigned int beep_amp
; /* beep amp value, set via set_beep_amp() */
309 const struct hda_verb
*init_verbs
[10]; /* initialization verbs
313 unsigned int num_init_verbs
;
315 char stream_name_analog
[32]; /* analog PCM stream */
316 struct hda_pcm_stream
*stream_analog_playback
;
317 struct hda_pcm_stream
*stream_analog_capture
;
318 struct hda_pcm_stream
*stream_analog_alt_playback
;
319 struct hda_pcm_stream
*stream_analog_alt_capture
;
321 char stream_name_digital
[32]; /* digital PCM stream */
322 struct hda_pcm_stream
*stream_digital_playback
;
323 struct hda_pcm_stream
*stream_digital_capture
;
326 struct hda_multi_out multiout
; /* playback set-up
327 * max_channels, dacs must be set
328 * dig_out_nid and hp_nid are optional
330 hda_nid_t alt_dac_nid
;
331 hda_nid_t slave_dig_outs
[3]; /* optional - for auto-parsing */
335 unsigned int num_adc_nids
;
337 hda_nid_t
*capsrc_nids
;
338 hda_nid_t dig_in_nid
; /* digital-in NID; optional */
340 /* capture setup for dynamic dual-adc switch */
341 unsigned int cur_adc_idx
;
343 unsigned int cur_adc_stream_tag
;
344 unsigned int cur_adc_format
;
347 unsigned int num_mux_defs
;
348 const struct hda_input_mux
*input_mux
;
349 unsigned int cur_mux
[3];
350 struct alc_mic_route ext_mic
;
351 struct alc_mic_route int_mic
;
354 const struct hda_channel_mode
*channel_mode
;
355 int num_channel_mode
;
357 int const_channel_count
;
358 int ext_channel_count
;
360 /* PCM information */
361 struct hda_pcm pcm_rec
[3]; /* used in alc_build_pcms() */
363 /* dynamic controls, init_verbs and input_mux */
364 struct auto_pin_cfg autocfg
;
365 struct alc_customize_define cdefine
;
366 struct snd_array kctls
;
367 struct hda_input_mux private_imux
[3];
368 hda_nid_t private_dac_nids
[AUTO_CFG_MAX_OUTS
];
369 hda_nid_t private_adc_nids
[AUTO_CFG_MAX_OUTS
];
370 hda_nid_t private_capsrc_nids
[AUTO_CFG_MAX_OUTS
];
373 void (*init_hook
)(struct hda_codec
*codec
);
374 void (*unsol_event
)(struct hda_codec
*codec
, unsigned int res
);
375 #ifdef CONFIG_SND_HDA_POWER_SAVE
376 void (*power_hook
)(struct hda_codec
*codec
);
379 /* for pin sensing */
380 unsigned int sense_updated
: 1;
381 unsigned int jack_present
: 1;
382 unsigned int master_sw
: 1;
383 unsigned int auto_mic
:1;
386 unsigned int no_analog
:1; /* digital I/O only */
387 unsigned int dual_adc_switch
:1; /* switch ADCs (for ALC275) */
388 unsigned int single_input_src
:1;
390 int codec_variant
; /* flag for other variants */
392 /* for virtual master */
393 hda_nid_t vmaster_nid
;
394 #ifdef CONFIG_SND_HDA_POWER_SAVE
395 struct hda_loopback_check loopback
;
400 unsigned int pll_coef_idx
, pll_coef_bit
;
404 const struct alc_fixup
*fixup_list
;
405 const char *fixup_name
;
409 * configuration template - to be copied to the spec instance
411 struct alc_config_preset
{
412 struct snd_kcontrol_new
*mixers
[5]; /* should be identical size
415 struct snd_kcontrol_new
*cap_mixer
; /* capture mixer */
416 const struct hda_verb
*init_verbs
[5];
417 unsigned int num_dacs
;
419 hda_nid_t dig_out_nid
; /* optional */
420 hda_nid_t hp_nid
; /* optional */
421 hda_nid_t
*slave_dig_outs
;
422 unsigned int num_adc_nids
;
424 hda_nid_t
*capsrc_nids
;
425 hda_nid_t dig_in_nid
;
426 unsigned int num_channel_mode
;
427 const struct hda_channel_mode
*channel_mode
;
429 int const_channel_count
;
430 unsigned int num_mux_defs
;
431 const struct hda_input_mux
*input_mux
;
432 void (*unsol_event
)(struct hda_codec
*, unsigned int);
433 void (*setup
)(struct hda_codec
*);
434 void (*init_hook
)(struct hda_codec
*);
435 #ifdef CONFIG_SND_HDA_POWER_SAVE
436 struct hda_amp_list
*loopbacks
;
437 void (*power_hook
)(struct hda_codec
*codec
);
445 static int alc_mux_enum_info(struct snd_kcontrol
*kcontrol
,
446 struct snd_ctl_elem_info
*uinfo
)
448 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
449 struct alc_spec
*spec
= codec
->spec
;
450 unsigned int mux_idx
= snd_ctl_get_ioffidx(kcontrol
, &uinfo
->id
);
451 if (mux_idx
>= spec
->num_mux_defs
)
453 if (!spec
->input_mux
[mux_idx
].num_items
&& mux_idx
> 0)
455 return snd_hda_input_mux_info(&spec
->input_mux
[mux_idx
], uinfo
);
458 static int alc_mux_enum_get(struct snd_kcontrol
*kcontrol
,
459 struct snd_ctl_elem_value
*ucontrol
)
461 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
462 struct alc_spec
*spec
= codec
->spec
;
463 unsigned int adc_idx
= snd_ctl_get_ioffidx(kcontrol
, &ucontrol
->id
);
465 ucontrol
->value
.enumerated
.item
[0] = spec
->cur_mux
[adc_idx
];
469 static int alc_mux_enum_put(struct snd_kcontrol
*kcontrol
,
470 struct snd_ctl_elem_value
*ucontrol
)
472 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
473 struct alc_spec
*spec
= codec
->spec
;
474 const struct hda_input_mux
*imux
;
475 unsigned int adc_idx
= snd_ctl_get_ioffidx(kcontrol
, &ucontrol
->id
);
476 unsigned int mux_idx
;
477 hda_nid_t nid
= spec
->capsrc_nids
?
478 spec
->capsrc_nids
[adc_idx
] : spec
->adc_nids
[adc_idx
];
481 mux_idx
= adc_idx
>= spec
->num_mux_defs
? 0 : adc_idx
;
482 imux
= &spec
->input_mux
[mux_idx
];
483 if (!imux
->num_items
&& mux_idx
> 0)
484 imux
= &spec
->input_mux
[0];
486 type
= get_wcaps_type(get_wcaps(codec
, nid
));
487 if (type
== AC_WID_AUD_MIX
) {
488 /* Matrix-mixer style (e.g. ALC882) */
489 unsigned int *cur_val
= &spec
->cur_mux
[adc_idx
];
492 idx
= ucontrol
->value
.enumerated
.item
[0];
493 if (idx
>= imux
->num_items
)
494 idx
= imux
->num_items
- 1;
497 for (i
= 0; i
< imux
->num_items
; i
++) {
498 unsigned int v
= (i
== idx
) ? 0 : HDA_AMP_MUTE
;
499 snd_hda_codec_amp_stereo(codec
, nid
, HDA_INPUT
,
500 imux
->items
[i
].index
,
506 /* MUX style (e.g. ALC880) */
507 return snd_hda_input_mux_put(codec
, imux
, ucontrol
, nid
,
508 &spec
->cur_mux
[adc_idx
]);
513 * channel mode setting
515 static int alc_ch_mode_info(struct snd_kcontrol
*kcontrol
,
516 struct snd_ctl_elem_info
*uinfo
)
518 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
519 struct alc_spec
*spec
= codec
->spec
;
520 return snd_hda_ch_mode_info(codec
, uinfo
, spec
->channel_mode
,
521 spec
->num_channel_mode
);
524 static int alc_ch_mode_get(struct snd_kcontrol
*kcontrol
,
525 struct snd_ctl_elem_value
*ucontrol
)
527 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
528 struct alc_spec
*spec
= codec
->spec
;
529 return snd_hda_ch_mode_get(codec
, ucontrol
, spec
->channel_mode
,
530 spec
->num_channel_mode
,
531 spec
->ext_channel_count
);
534 static int alc_ch_mode_put(struct snd_kcontrol
*kcontrol
,
535 struct snd_ctl_elem_value
*ucontrol
)
537 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
538 struct alc_spec
*spec
= codec
->spec
;
539 int err
= snd_hda_ch_mode_put(codec
, ucontrol
, spec
->channel_mode
,
540 spec
->num_channel_mode
,
541 &spec
->ext_channel_count
);
542 if (err
>= 0 && !spec
->const_channel_count
) {
543 spec
->multiout
.max_channels
= spec
->ext_channel_count
;
544 if (spec
->need_dac_fix
)
545 spec
->multiout
.num_dacs
= spec
->multiout
.max_channels
/ 2;
551 * Control the mode of pin widget settings via the mixer. "pc" is used
552 * instead of "%" to avoid consequences of accidentally treating the % as
553 * being part of a format specifier. Maximum allowed length of a value is
554 * 63 characters plus NULL terminator.
556 * Note: some retasking pin complexes seem to ignore requests for input
557 * states other than HiZ (eg: PIN_VREFxx) and revert to HiZ if any of these
558 * are requested. Therefore order this list so that this behaviour will not
559 * cause problems when mixer clients move through the enum sequentially.
560 * NIDs 0x0f and 0x10 have been observed to have this behaviour as of
563 static char *alc_pin_mode_names
[] = {
564 "Mic 50pc bias", "Mic 80pc bias",
565 "Line in", "Line out", "Headphone out",
567 static unsigned char alc_pin_mode_values
[] = {
568 PIN_VREF50
, PIN_VREF80
, PIN_IN
, PIN_OUT
, PIN_HP
,
570 /* The control can present all 5 options, or it can limit the options based
571 * in the pin being assumed to be exclusively an input or an output pin. In
572 * addition, "input" pins may or may not process the mic bias option
573 * depending on actual widget capability (NIDs 0x0f and 0x10 don't seem to
574 * accept requests for bias as of chip versions up to March 2006) and/or
575 * wiring in the computer.
577 #define ALC_PIN_DIR_IN 0x00
578 #define ALC_PIN_DIR_OUT 0x01
579 #define ALC_PIN_DIR_INOUT 0x02
580 #define ALC_PIN_DIR_IN_NOMICBIAS 0x03
581 #define ALC_PIN_DIR_INOUT_NOMICBIAS 0x04
583 /* Info about the pin modes supported by the different pin direction modes.
584 * For each direction the minimum and maximum values are given.
586 static signed char alc_pin_mode_dir_info
[5][2] = {
587 { 0, 2 }, /* ALC_PIN_DIR_IN */
588 { 3, 4 }, /* ALC_PIN_DIR_OUT */
589 { 0, 4 }, /* ALC_PIN_DIR_INOUT */
590 { 2, 2 }, /* ALC_PIN_DIR_IN_NOMICBIAS */
591 { 2, 4 }, /* ALC_PIN_DIR_INOUT_NOMICBIAS */
593 #define alc_pin_mode_min(_dir) (alc_pin_mode_dir_info[_dir][0])
594 #define alc_pin_mode_max(_dir) (alc_pin_mode_dir_info[_dir][1])
595 #define alc_pin_mode_n_items(_dir) \
596 (alc_pin_mode_max(_dir)-alc_pin_mode_min(_dir)+1)
598 static int alc_pin_mode_info(struct snd_kcontrol
*kcontrol
,
599 struct snd_ctl_elem_info
*uinfo
)
601 unsigned int item_num
= uinfo
->value
.enumerated
.item
;
602 unsigned char dir
= (kcontrol
->private_value
>> 16) & 0xff;
604 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
606 uinfo
->value
.enumerated
.items
= alc_pin_mode_n_items(dir
);
608 if (item_num
<alc_pin_mode_min(dir
) || item_num
>alc_pin_mode_max(dir
))
609 item_num
= alc_pin_mode_min(dir
);
610 strcpy(uinfo
->value
.enumerated
.name
, alc_pin_mode_names
[item_num
]);
614 static int alc_pin_mode_get(struct snd_kcontrol
*kcontrol
,
615 struct snd_ctl_elem_value
*ucontrol
)
618 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
619 hda_nid_t nid
= kcontrol
->private_value
& 0xffff;
620 unsigned char dir
= (kcontrol
->private_value
>> 16) & 0xff;
621 long *valp
= ucontrol
->value
.integer
.value
;
622 unsigned int pinctl
= snd_hda_codec_read(codec
, nid
, 0,
623 AC_VERB_GET_PIN_WIDGET_CONTROL
,
626 /* Find enumerated value for current pinctl setting */
627 i
= alc_pin_mode_min(dir
);
628 while (i
<= alc_pin_mode_max(dir
) && alc_pin_mode_values
[i
] != pinctl
)
630 *valp
= i
<= alc_pin_mode_max(dir
) ? i
: alc_pin_mode_min(dir
);
634 static int alc_pin_mode_put(struct snd_kcontrol
*kcontrol
,
635 struct snd_ctl_elem_value
*ucontrol
)
638 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
639 hda_nid_t nid
= kcontrol
->private_value
& 0xffff;
640 unsigned char dir
= (kcontrol
->private_value
>> 16) & 0xff;
641 long val
= *ucontrol
->value
.integer
.value
;
642 unsigned int pinctl
= snd_hda_codec_read(codec
, nid
, 0,
643 AC_VERB_GET_PIN_WIDGET_CONTROL
,
646 if (val
< alc_pin_mode_min(dir
) || val
> alc_pin_mode_max(dir
))
647 val
= alc_pin_mode_min(dir
);
649 change
= pinctl
!= alc_pin_mode_values
[val
];
651 /* Set pin mode to that requested */
652 snd_hda_codec_write_cache(codec
, nid
, 0,
653 AC_VERB_SET_PIN_WIDGET_CONTROL
,
654 alc_pin_mode_values
[val
]);
656 /* Also enable the retasking pin's input/output as required
657 * for the requested pin mode. Enum values of 2 or less are
660 * Dynamically switching the input/output buffers probably
661 * reduces noise slightly (particularly on input) so we'll
662 * do it. However, having both input and output buffers
663 * enabled simultaneously doesn't seem to be problematic if
664 * this turns out to be necessary in the future.
667 snd_hda_codec_amp_stereo(codec
, nid
, HDA_OUTPUT
, 0,
668 HDA_AMP_MUTE
, HDA_AMP_MUTE
);
669 snd_hda_codec_amp_stereo(codec
, nid
, HDA_INPUT
, 0,
672 snd_hda_codec_amp_stereo(codec
, nid
, HDA_INPUT
, 0,
673 HDA_AMP_MUTE
, HDA_AMP_MUTE
);
674 snd_hda_codec_amp_stereo(codec
, nid
, HDA_OUTPUT
, 0,
681 #define ALC_PIN_MODE(xname, nid, dir) \
682 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0, \
683 .subdevice = HDA_SUBDEV_NID_FLAG | nid, \
684 .info = alc_pin_mode_info, \
685 .get = alc_pin_mode_get, \
686 .put = alc_pin_mode_put, \
687 .private_value = nid | (dir<<16) }
689 /* A switch control for ALC260 GPIO pins. Multiple GPIOs can be ganged
690 * together using a mask with more than one bit set. This control is
691 * currently used only by the ALC260 test model. At this stage they are not
692 * needed for any "production" models.
694 #ifdef CONFIG_SND_DEBUG
695 #define alc_gpio_data_info snd_ctl_boolean_mono_info
697 static int alc_gpio_data_get(struct snd_kcontrol
*kcontrol
,
698 struct snd_ctl_elem_value
*ucontrol
)
700 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
701 hda_nid_t nid
= kcontrol
->private_value
& 0xffff;
702 unsigned char mask
= (kcontrol
->private_value
>> 16) & 0xff;
703 long *valp
= ucontrol
->value
.integer
.value
;
704 unsigned int val
= snd_hda_codec_read(codec
, nid
, 0,
705 AC_VERB_GET_GPIO_DATA
, 0x00);
707 *valp
= (val
& mask
) != 0;
710 static int alc_gpio_data_put(struct snd_kcontrol
*kcontrol
,
711 struct snd_ctl_elem_value
*ucontrol
)
714 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
715 hda_nid_t nid
= kcontrol
->private_value
& 0xffff;
716 unsigned char mask
= (kcontrol
->private_value
>> 16) & 0xff;
717 long val
= *ucontrol
->value
.integer
.value
;
718 unsigned int gpio_data
= snd_hda_codec_read(codec
, nid
, 0,
719 AC_VERB_GET_GPIO_DATA
,
722 /* Set/unset the masked GPIO bit(s) as needed */
723 change
= (val
== 0 ? 0 : mask
) != (gpio_data
& mask
);
728 snd_hda_codec_write_cache(codec
, nid
, 0,
729 AC_VERB_SET_GPIO_DATA
, gpio_data
);
733 #define ALC_GPIO_DATA_SWITCH(xname, nid, mask) \
734 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0, \
735 .subdevice = HDA_SUBDEV_NID_FLAG | nid, \
736 .info = alc_gpio_data_info, \
737 .get = alc_gpio_data_get, \
738 .put = alc_gpio_data_put, \
739 .private_value = nid | (mask<<16) }
740 #endif /* CONFIG_SND_DEBUG */
742 /* A switch control to allow the enabling of the digital IO pins on the
743 * ALC260. This is incredibly simplistic; the intention of this control is
744 * to provide something in the test model allowing digital outputs to be
745 * identified if present. If models are found which can utilise these
746 * outputs a more complete mixer control can be devised for those models if
749 #ifdef CONFIG_SND_DEBUG
750 #define alc_spdif_ctrl_info snd_ctl_boolean_mono_info
752 static int alc_spdif_ctrl_get(struct snd_kcontrol
*kcontrol
,
753 struct snd_ctl_elem_value
*ucontrol
)
755 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
756 hda_nid_t nid
= kcontrol
->private_value
& 0xffff;
757 unsigned char mask
= (kcontrol
->private_value
>> 16) & 0xff;
758 long *valp
= ucontrol
->value
.integer
.value
;
759 unsigned int val
= snd_hda_codec_read(codec
, nid
, 0,
760 AC_VERB_GET_DIGI_CONVERT_1
, 0x00);
762 *valp
= (val
& mask
) != 0;
765 static int alc_spdif_ctrl_put(struct snd_kcontrol
*kcontrol
,
766 struct snd_ctl_elem_value
*ucontrol
)
769 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
770 hda_nid_t nid
= kcontrol
->private_value
& 0xffff;
771 unsigned char mask
= (kcontrol
->private_value
>> 16) & 0xff;
772 long val
= *ucontrol
->value
.integer
.value
;
773 unsigned int ctrl_data
= snd_hda_codec_read(codec
, nid
, 0,
774 AC_VERB_GET_DIGI_CONVERT_1
,
777 /* Set/unset the masked control bit(s) as needed */
778 change
= (val
== 0 ? 0 : mask
) != (ctrl_data
& mask
);
783 snd_hda_codec_write_cache(codec
, nid
, 0, AC_VERB_SET_DIGI_CONVERT_1
,
788 #define ALC_SPDIF_CTRL_SWITCH(xname, nid, mask) \
789 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0, \
790 .subdevice = HDA_SUBDEV_NID_FLAG | nid, \
791 .info = alc_spdif_ctrl_info, \
792 .get = alc_spdif_ctrl_get, \
793 .put = alc_spdif_ctrl_put, \
794 .private_value = nid | (mask<<16) }
795 #endif /* CONFIG_SND_DEBUG */
797 /* A switch control to allow the enabling EAPD digital outputs on the ALC26x.
798 * Again, this is only used in the ALC26x test models to help identify when
799 * the EAPD line must be asserted for features to work.
801 #ifdef CONFIG_SND_DEBUG
802 #define alc_eapd_ctrl_info snd_ctl_boolean_mono_info
804 static int alc_eapd_ctrl_get(struct snd_kcontrol
*kcontrol
,
805 struct snd_ctl_elem_value
*ucontrol
)
807 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
808 hda_nid_t nid
= kcontrol
->private_value
& 0xffff;
809 unsigned char mask
= (kcontrol
->private_value
>> 16) & 0xff;
810 long *valp
= ucontrol
->value
.integer
.value
;
811 unsigned int val
= snd_hda_codec_read(codec
, nid
, 0,
812 AC_VERB_GET_EAPD_BTLENABLE
, 0x00);
814 *valp
= (val
& mask
) != 0;
818 static int alc_eapd_ctrl_put(struct snd_kcontrol
*kcontrol
,
819 struct snd_ctl_elem_value
*ucontrol
)
822 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
823 hda_nid_t nid
= kcontrol
->private_value
& 0xffff;
824 unsigned char mask
= (kcontrol
->private_value
>> 16) & 0xff;
825 long val
= *ucontrol
->value
.integer
.value
;
826 unsigned int ctrl_data
= snd_hda_codec_read(codec
, nid
, 0,
827 AC_VERB_GET_EAPD_BTLENABLE
,
830 /* Set/unset the masked control bit(s) as needed */
831 change
= (!val
? 0 : mask
) != (ctrl_data
& mask
);
836 snd_hda_codec_write_cache(codec
, nid
, 0, AC_VERB_SET_EAPD_BTLENABLE
,
842 #define ALC_EAPD_CTRL_SWITCH(xname, nid, mask) \
843 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0, \
844 .subdevice = HDA_SUBDEV_NID_FLAG | nid, \
845 .info = alc_eapd_ctrl_info, \
846 .get = alc_eapd_ctrl_get, \
847 .put = alc_eapd_ctrl_put, \
848 .private_value = nid | (mask<<16) }
849 #endif /* CONFIG_SND_DEBUG */
852 * set up the input pin config (depending on the given auto-pin type)
854 static void alc_set_input_pin(struct hda_codec
*codec
, hda_nid_t nid
,
857 unsigned int val
= PIN_IN
;
859 if (auto_pin_type
== AUTO_PIN_MIC
) {
862 oldval
= snd_hda_codec_read(codec
, nid
, 0,
863 AC_VERB_GET_PIN_WIDGET_CONTROL
, 0);
864 pincap
= snd_hda_query_pin_caps(codec
, nid
);
865 pincap
= (pincap
& AC_PINCAP_VREF
) >> AC_PINCAP_VREF_SHIFT
;
866 /* if the default pin setup is vref50, we give it priority */
867 if ((pincap
& AC_PINCAP_VREF_80
) && oldval
!= PIN_VREF50
)
869 else if (pincap
& AC_PINCAP_VREF_50
)
871 else if (pincap
& AC_PINCAP_VREF_100
)
873 else if (pincap
& AC_PINCAP_VREF_GRD
)
876 snd_hda_codec_write(codec
, nid
, 0, AC_VERB_SET_PIN_WIDGET_CONTROL
, val
);
879 static void alc_fixup_autocfg_pin_nums(struct hda_codec
*codec
)
881 struct alc_spec
*spec
= codec
->spec
;
882 struct auto_pin_cfg
*cfg
= &spec
->autocfg
;
884 if (!cfg
->line_outs
) {
885 while (cfg
->line_outs
< AUTO_CFG_MAX_OUTS
&&
886 cfg
->line_out_pins
[cfg
->line_outs
])
889 if (!cfg
->speaker_outs
) {
890 while (cfg
->speaker_outs
< AUTO_CFG_MAX_OUTS
&&
891 cfg
->speaker_pins
[cfg
->speaker_outs
])
895 while (cfg
->hp_outs
< AUTO_CFG_MAX_OUTS
&&
896 cfg
->hp_pins
[cfg
->hp_outs
])
903 static void add_mixer(struct alc_spec
*spec
, struct snd_kcontrol_new
*mix
)
905 if (snd_BUG_ON(spec
->num_mixers
>= ARRAY_SIZE(spec
->mixers
)))
907 spec
->mixers
[spec
->num_mixers
++] = mix
;
910 static void add_verb(struct alc_spec
*spec
, const struct hda_verb
*verb
)
912 if (snd_BUG_ON(spec
->num_init_verbs
>= ARRAY_SIZE(spec
->init_verbs
)))
914 spec
->init_verbs
[spec
->num_init_verbs
++] = verb
;
918 * set up from the preset table
920 static void setup_preset(struct hda_codec
*codec
,
921 const struct alc_config_preset
*preset
)
923 struct alc_spec
*spec
= codec
->spec
;
926 for (i
= 0; i
< ARRAY_SIZE(preset
->mixers
) && preset
->mixers
[i
]; i
++)
927 add_mixer(spec
, preset
->mixers
[i
]);
928 spec
->cap_mixer
= preset
->cap_mixer
;
929 for (i
= 0; i
< ARRAY_SIZE(preset
->init_verbs
) && preset
->init_verbs
[i
];
931 add_verb(spec
, preset
->init_verbs
[i
]);
933 spec
->channel_mode
= preset
->channel_mode
;
934 spec
->num_channel_mode
= preset
->num_channel_mode
;
935 spec
->need_dac_fix
= preset
->need_dac_fix
;
936 spec
->const_channel_count
= preset
->const_channel_count
;
938 if (preset
->const_channel_count
)
939 spec
->multiout
.max_channels
= preset
->const_channel_count
;
941 spec
->multiout
.max_channels
= spec
->channel_mode
[0].channels
;
942 spec
->ext_channel_count
= spec
->channel_mode
[0].channels
;
944 spec
->multiout
.num_dacs
= preset
->num_dacs
;
945 spec
->multiout
.dac_nids
= preset
->dac_nids
;
946 spec
->multiout
.dig_out_nid
= preset
->dig_out_nid
;
947 spec
->multiout
.slave_dig_outs
= preset
->slave_dig_outs
;
948 spec
->multiout
.hp_nid
= preset
->hp_nid
;
950 spec
->num_mux_defs
= preset
->num_mux_defs
;
951 if (!spec
->num_mux_defs
)
952 spec
->num_mux_defs
= 1;
953 spec
->input_mux
= preset
->input_mux
;
955 spec
->num_adc_nids
= preset
->num_adc_nids
;
956 spec
->adc_nids
= preset
->adc_nids
;
957 spec
->capsrc_nids
= preset
->capsrc_nids
;
958 spec
->dig_in_nid
= preset
->dig_in_nid
;
960 spec
->unsol_event
= preset
->unsol_event
;
961 spec
->init_hook
= preset
->init_hook
;
962 #ifdef CONFIG_SND_HDA_POWER_SAVE
963 spec
->power_hook
= preset
->power_hook
;
964 spec
->loopback
.amplist
= preset
->loopbacks
;
968 preset
->setup(codec
);
970 alc_fixup_autocfg_pin_nums(codec
);
973 /* Enable GPIO mask and set output */
974 static struct hda_verb alc_gpio1_init_verbs
[] = {
975 {0x01, AC_VERB_SET_GPIO_MASK
, 0x01},
976 {0x01, AC_VERB_SET_GPIO_DIRECTION
, 0x01},
977 {0x01, AC_VERB_SET_GPIO_DATA
, 0x01},
981 static struct hda_verb alc_gpio2_init_verbs
[] = {
982 {0x01, AC_VERB_SET_GPIO_MASK
, 0x02},
983 {0x01, AC_VERB_SET_GPIO_DIRECTION
, 0x02},
984 {0x01, AC_VERB_SET_GPIO_DATA
, 0x02},
988 static struct hda_verb alc_gpio3_init_verbs
[] = {
989 {0x01, AC_VERB_SET_GPIO_MASK
, 0x03},
990 {0x01, AC_VERB_SET_GPIO_DIRECTION
, 0x03},
991 {0x01, AC_VERB_SET_GPIO_DATA
, 0x03},
996 * Fix hardware PLL issue
997 * On some codecs, the analog PLL gating control must be off while
998 * the default value is 1.
1000 static void alc_fix_pll(struct hda_codec
*codec
)
1002 struct alc_spec
*spec
= codec
->spec
;
1007 snd_hda_codec_write(codec
, spec
->pll_nid
, 0, AC_VERB_SET_COEF_INDEX
,
1008 spec
->pll_coef_idx
);
1009 val
= snd_hda_codec_read(codec
, spec
->pll_nid
, 0,
1010 AC_VERB_GET_PROC_COEF
, 0);
1011 snd_hda_codec_write(codec
, spec
->pll_nid
, 0, AC_VERB_SET_COEF_INDEX
,
1012 spec
->pll_coef_idx
);
1013 snd_hda_codec_write(codec
, spec
->pll_nid
, 0, AC_VERB_SET_PROC_COEF
,
1014 val
& ~(1 << spec
->pll_coef_bit
));
1017 static void alc_fix_pll_init(struct hda_codec
*codec
, hda_nid_t nid
,
1018 unsigned int coef_idx
, unsigned int coef_bit
)
1020 struct alc_spec
*spec
= codec
->spec
;
1021 spec
->pll_nid
= nid
;
1022 spec
->pll_coef_idx
= coef_idx
;
1023 spec
->pll_coef_bit
= coef_bit
;
1027 static int alc_init_jacks(struct hda_codec
*codec
)
1029 #ifdef CONFIG_SND_HDA_INPUT_JACK
1030 struct alc_spec
*spec
= codec
->spec
;
1032 unsigned int hp_nid
= spec
->autocfg
.hp_pins
[0];
1033 unsigned int mic_nid
= spec
->ext_mic
.pin
;
1036 err
= snd_hda_input_jack_add(codec
, hp_nid
,
1037 SND_JACK_HEADPHONE
, NULL
);
1040 snd_hda_input_jack_report(codec
, hp_nid
);
1044 err
= snd_hda_input_jack_add(codec
, mic_nid
,
1045 SND_JACK_MICROPHONE
, NULL
);
1048 snd_hda_input_jack_report(codec
, mic_nid
);
1050 #endif /* CONFIG_SND_HDA_INPUT_JACK */
1054 static void alc_automute_speaker(struct hda_codec
*codec
, int pinctl
)
1056 struct alc_spec
*spec
= codec
->spec
;
1061 spec
->jack_present
= 0;
1062 for (i
= 0; i
< ARRAY_SIZE(spec
->autocfg
.hp_pins
); i
++) {
1063 nid
= spec
->autocfg
.hp_pins
[i
];
1066 snd_hda_input_jack_report(codec
, nid
);
1067 spec
->jack_present
|= snd_hda_jack_detect(codec
, nid
);
1070 mute
= spec
->jack_present
? HDA_AMP_MUTE
: 0;
1071 /* Toggle internal speakers muting */
1072 for (i
= 0; i
< ARRAY_SIZE(spec
->autocfg
.speaker_pins
); i
++) {
1073 nid
= spec
->autocfg
.speaker_pins
[i
];
1077 snd_hda_codec_write(codec
, nid
, 0,
1078 AC_VERB_SET_PIN_WIDGET_CONTROL
,
1079 spec
->jack_present
? 0 : PIN_OUT
);
1081 snd_hda_codec_amp_stereo(codec
, nid
, HDA_OUTPUT
, 0,
1082 HDA_AMP_MUTE
, mute
);
1087 static void alc_automute_pin(struct hda_codec
*codec
)
1089 alc_automute_speaker(codec
, 1);
1092 static int get_connection_index(struct hda_codec
*codec
, hda_nid_t mux
,
1095 hda_nid_t conn
[HDA_MAX_NUM_INPUTS
];
1098 nums
= snd_hda_get_connections(codec
, mux
, conn
, ARRAY_SIZE(conn
));
1099 for (i
= 0; i
< nums
; i
++)
1105 /* switch the current ADC according to the jack state */
1106 static void alc_dual_mic_adc_auto_switch(struct hda_codec
*codec
)
1108 struct alc_spec
*spec
= codec
->spec
;
1109 unsigned int present
;
1112 present
= snd_hda_jack_detect(codec
, spec
->ext_mic
.pin
);
1114 spec
->cur_adc_idx
= 1;
1116 spec
->cur_adc_idx
= 0;
1117 new_adc
= spec
->adc_nids
[spec
->cur_adc_idx
];
1118 if (spec
->cur_adc
&& spec
->cur_adc
!= new_adc
) {
1119 /* stream is running, let's swap the current ADC */
1120 __snd_hda_codec_cleanup_stream(codec
, spec
->cur_adc
, 1);
1121 spec
->cur_adc
= new_adc
;
1122 snd_hda_codec_setup_stream(codec
, new_adc
,
1123 spec
->cur_adc_stream_tag
, 0,
1124 spec
->cur_adc_format
);
1128 static void alc_mic_automute(struct hda_codec
*codec
)
1130 struct alc_spec
*spec
= codec
->spec
;
1131 struct alc_mic_route
*dead
, *alive
;
1132 unsigned int present
, type
;
1135 if (!spec
->auto_mic
)
1137 if (!spec
->int_mic
.pin
|| !spec
->ext_mic
.pin
)
1139 if (snd_BUG_ON(!spec
->adc_nids
))
1142 if (spec
->dual_adc_switch
) {
1143 alc_dual_mic_adc_auto_switch(codec
);
1147 cap_nid
= spec
->capsrc_nids
? spec
->capsrc_nids
[0] : spec
->adc_nids
[0];
1149 present
= snd_hda_jack_detect(codec
, spec
->ext_mic
.pin
);
1151 alive
= &spec
->ext_mic
;
1152 dead
= &spec
->int_mic
;
1154 alive
= &spec
->int_mic
;
1155 dead
= &spec
->ext_mic
;
1158 type
= get_wcaps_type(get_wcaps(codec
, cap_nid
));
1159 if (type
== AC_WID_AUD_MIX
) {
1160 /* Matrix-mixer style (e.g. ALC882) */
1161 snd_hda_codec_amp_stereo(codec
, cap_nid
, HDA_INPUT
,
1164 snd_hda_codec_amp_stereo(codec
, cap_nid
, HDA_INPUT
,
1166 HDA_AMP_MUTE
, HDA_AMP_MUTE
);
1168 /* MUX style (e.g. ALC880) */
1169 snd_hda_codec_write_cache(codec
, cap_nid
, 0,
1170 AC_VERB_SET_CONNECT_SEL
,
1173 snd_hda_input_jack_report(codec
, spec
->ext_mic
.pin
);
1175 /* FIXME: analog mixer */
1178 /* unsolicited event for HP jack sensing */
1179 static void alc_sku_unsol_event(struct hda_codec
*codec
, unsigned int res
)
1181 if (codec
->vendor_id
== 0x10ec0880)
1186 case ALC880_HP_EVENT
:
1187 alc_automute_pin(codec
);
1189 case ALC880_MIC_EVENT
:
1190 alc_mic_automute(codec
);
1195 static void alc_inithook(struct hda_codec
*codec
)
1197 alc_automute_pin(codec
);
1198 alc_mic_automute(codec
);
1201 /* additional initialization for ALC888 variants */
1202 static void alc888_coef_init(struct hda_codec
*codec
)
1206 snd_hda_codec_write(codec
, 0x20, 0, AC_VERB_SET_COEF_INDEX
, 0);
1207 tmp
= snd_hda_codec_read(codec
, 0x20, 0, AC_VERB_GET_PROC_COEF
, 0);
1208 snd_hda_codec_write(codec
, 0x20, 0, AC_VERB_SET_COEF_INDEX
, 7);
1209 if ((tmp
& 0xf0) == 0x20)
1211 snd_hda_codec_read(codec
, 0x20, 0,
1212 AC_VERB_SET_PROC_COEF
, 0x830);
1215 snd_hda_codec_read(codec
, 0x20, 0,
1216 AC_VERB_SET_PROC_COEF
, 0x3030);
1219 static void alc889_coef_init(struct hda_codec
*codec
)
1223 snd_hda_codec_write(codec
, 0x20, 0, AC_VERB_SET_COEF_INDEX
, 7);
1224 tmp
= snd_hda_codec_read(codec
, 0x20, 0, AC_VERB_GET_PROC_COEF
, 0);
1225 snd_hda_codec_write(codec
, 0x20, 0, AC_VERB_SET_COEF_INDEX
, 7);
1226 snd_hda_codec_write(codec
, 0x20, 0, AC_VERB_SET_PROC_COEF
, tmp
|0x2010);
1229 /* turn on/off EAPD control (only if available) */
1230 static void set_eapd(struct hda_codec
*codec
, hda_nid_t nid
, int on
)
1232 if (get_wcaps_type(get_wcaps(codec
, nid
)) != AC_WID_PIN
)
1234 if (snd_hda_query_pin_caps(codec
, nid
) & AC_PINCAP_EAPD
)
1235 snd_hda_codec_write(codec
, nid
, 0, AC_VERB_SET_EAPD_BTLENABLE
,
1239 static void alc_auto_init_amp(struct hda_codec
*codec
, int type
)
1244 case ALC_INIT_GPIO1
:
1245 snd_hda_sequence_write(codec
, alc_gpio1_init_verbs
);
1247 case ALC_INIT_GPIO2
:
1248 snd_hda_sequence_write(codec
, alc_gpio2_init_verbs
);
1250 case ALC_INIT_GPIO3
:
1251 snd_hda_sequence_write(codec
, alc_gpio3_init_verbs
);
1253 case ALC_INIT_DEFAULT
:
1254 switch (codec
->vendor_id
) {
1256 set_eapd(codec
, 0x0f, 1);
1257 set_eapd(codec
, 0x10, 1);
1271 set_eapd(codec
, 0x14, 1);
1272 set_eapd(codec
, 0x15, 1);
1275 switch (codec
->vendor_id
) {
1277 snd_hda_codec_write(codec
, 0x1a, 0,
1278 AC_VERB_SET_COEF_INDEX
, 7);
1279 tmp
= snd_hda_codec_read(codec
, 0x1a, 0,
1280 AC_VERB_GET_PROC_COEF
, 0);
1281 snd_hda_codec_write(codec
, 0x1a, 0,
1282 AC_VERB_SET_COEF_INDEX
, 7);
1283 snd_hda_codec_write(codec
, 0x1a, 0,
1284 AC_VERB_SET_PROC_COEF
,
1293 /*case 0x10ec0889:*/ /* this causes an SPDIF problem */
1294 alc889_coef_init(codec
);
1297 alc888_coef_init(codec
);
1299 #if 0 /* XXX: This may cause the silent output on speaker on some machines */
1302 snd_hda_codec_write(codec
, 0x20, 0,
1303 AC_VERB_SET_COEF_INDEX
, 7);
1304 tmp
= snd_hda_codec_read(codec
, 0x20, 0,
1305 AC_VERB_GET_PROC_COEF
, 0);
1306 snd_hda_codec_write(codec
, 0x20, 0,
1307 AC_VERB_SET_COEF_INDEX
, 7);
1308 snd_hda_codec_write(codec
, 0x20, 0,
1309 AC_VERB_SET_PROC_COEF
,
1318 static void alc_init_auto_hp(struct hda_codec
*codec
)
1320 struct alc_spec
*spec
= codec
->spec
;
1321 struct auto_pin_cfg
*cfg
= &spec
->autocfg
;
1324 if (!cfg
->hp_pins
[0]) {
1325 if (cfg
->line_out_type
!= AUTO_PIN_HP_OUT
)
1329 if (!cfg
->speaker_pins
[0]) {
1330 if (cfg
->line_out_type
!= AUTO_PIN_SPEAKER_OUT
)
1332 memcpy(cfg
->speaker_pins
, cfg
->line_out_pins
,
1333 sizeof(cfg
->speaker_pins
));
1334 cfg
->speaker_outs
= cfg
->line_outs
;
1337 if (!cfg
->hp_pins
[0]) {
1338 memcpy(cfg
->hp_pins
, cfg
->line_out_pins
,
1339 sizeof(cfg
->hp_pins
));
1340 cfg
->hp_outs
= cfg
->line_outs
;
1343 for (i
= 0; i
< cfg
->hp_outs
; i
++) {
1344 snd_printdd("realtek: Enable HP auto-muting on NID 0x%x\n",
1346 snd_hda_codec_write_cache(codec
, cfg
->hp_pins
[i
], 0,
1347 AC_VERB_SET_UNSOLICITED_ENABLE
,
1348 AC_USRSP_EN
| ALC880_HP_EVENT
);
1350 spec
->unsol_event
= alc_sku_unsol_event
;
1353 static void alc_init_auto_mic(struct hda_codec
*codec
)
1355 struct alc_spec
*spec
= codec
->spec
;
1356 struct auto_pin_cfg
*cfg
= &spec
->autocfg
;
1357 hda_nid_t fixed
, ext
;
1360 /* there must be only two mic inputs exclusively */
1361 for (i
= 0; i
< cfg
->num_inputs
; i
++)
1362 if (cfg
->inputs
[i
].type
>= AUTO_PIN_LINE_IN
)
1366 for (i
= 0; i
< cfg
->num_inputs
; i
++) {
1367 hda_nid_t nid
= cfg
->inputs
[i
].pin
;
1368 unsigned int defcfg
;
1369 defcfg
= snd_hda_codec_get_pincfg(codec
, nid
);
1370 switch (snd_hda_get_input_pin_attr(defcfg
)) {
1371 case INPUT_PIN_ATTR_INT
:
1373 return; /* already occupied */
1376 case INPUT_PIN_ATTR_UNUSED
:
1377 return; /* invalid entry */
1380 return; /* already occupied */
1387 if (!(get_wcaps(codec
, ext
) & AC_WCAP_UNSOL_CAP
))
1388 return; /* no unsol support */
1389 snd_printdd("realtek: Enable auto-mic switch on NID 0x%x/0x%x\n",
1391 spec
->ext_mic
.pin
= ext
;
1392 spec
->int_mic
.pin
= fixed
;
1393 spec
->ext_mic
.mux_idx
= MUX_IDX_UNDEF
; /* set later */
1394 spec
->int_mic
.mux_idx
= MUX_IDX_UNDEF
; /* set later */
1396 snd_hda_codec_write_cache(codec
, spec
->ext_mic
.pin
, 0,
1397 AC_VERB_SET_UNSOLICITED_ENABLE
,
1398 AC_USRSP_EN
| ALC880_MIC_EVENT
);
1399 spec
->unsol_event
= alc_sku_unsol_event
;
1402 /* Could be any non-zero and even value. When used as fixup, tells
1403 * the driver to ignore any present sku defines.
1405 #define ALC_FIXUP_SKU_IGNORE (2)
1407 static int alc_auto_parse_customize_define(struct hda_codec
*codec
)
1409 unsigned int ass
, tmp
, i
;
1411 struct alc_spec
*spec
= codec
->spec
;
1413 spec
->cdefine
.enable_pcbeep
= 1; /* assume always enabled */
1415 if (spec
->cdefine
.fixup
) {
1416 ass
= spec
->cdefine
.sku_cfg
;
1417 if (ass
== ALC_FIXUP_SKU_IGNORE
)
1422 ass
= codec
->subsystem_id
& 0xffff;
1423 if (ass
!= codec
->bus
->pci
->subsystem_device
&& (ass
& 1))
1427 if (codec
->vendor_id
== 0x10ec0260)
1429 ass
= snd_hda_codec_get_pincfg(codec
, nid
);
1432 printk(KERN_INFO
"hda_codec: %s: SKU not ready 0x%08x\n",
1433 codec
->chip_name
, ass
);
1439 for (i
= 1; i
< 16; i
++) {
1443 if (((ass
>> 16) & 0xf) != tmp
)
1446 spec
->cdefine
.port_connectivity
= ass
>> 30;
1447 spec
->cdefine
.enable_pcbeep
= (ass
& 0x100000) >> 20;
1448 spec
->cdefine
.check_sum
= (ass
>> 16) & 0xf;
1449 spec
->cdefine
.customization
= ass
>> 8;
1451 spec
->cdefine
.sku_cfg
= ass
;
1452 spec
->cdefine
.external_amp
= (ass
& 0x38) >> 3;
1453 spec
->cdefine
.platform_type
= (ass
& 0x4) >> 2;
1454 spec
->cdefine
.swap
= (ass
& 0x2) >> 1;
1455 spec
->cdefine
.override
= ass
& 0x1;
1457 snd_printd("SKU: Nid=0x%x sku_cfg=0x%08x\n",
1458 nid
, spec
->cdefine
.sku_cfg
);
1459 snd_printd("SKU: port_connectivity=0x%x\n",
1460 spec
->cdefine
.port_connectivity
);
1461 snd_printd("SKU: enable_pcbeep=0x%x\n", spec
->cdefine
.enable_pcbeep
);
1462 snd_printd("SKU: check_sum=0x%08x\n", spec
->cdefine
.check_sum
);
1463 snd_printd("SKU: customization=0x%08x\n", spec
->cdefine
.customization
);
1464 snd_printd("SKU: external_amp=0x%x\n", spec
->cdefine
.external_amp
);
1465 snd_printd("SKU: platform_type=0x%x\n", spec
->cdefine
.platform_type
);
1466 snd_printd("SKU: swap=0x%x\n", spec
->cdefine
.swap
);
1467 snd_printd("SKU: override=0x%x\n", spec
->cdefine
.override
);
1472 /* check subsystem ID and set up device-specific initialization;
1473 * return 1 if initialized, 0 if invalid SSID
1475 /* 32-bit subsystem ID for BIOS loading in HD Audio codec.
1476 * 31 ~ 16 : Manufacture ID
1478 * 7 ~ 0 : Assembly ID
1479 * port-A --> pin 39/41, port-E --> pin 14/15, port-D --> pin 35/36
1481 static int alc_subsystem_id(struct hda_codec
*codec
,
1482 hda_nid_t porta
, hda_nid_t porte
,
1483 hda_nid_t portd
, hda_nid_t porti
)
1485 unsigned int ass
, tmp
, i
;
1487 struct alc_spec
*spec
= codec
->spec
;
1489 if (spec
->cdefine
.fixup
) {
1490 ass
= spec
->cdefine
.sku_cfg
;
1491 if (ass
== ALC_FIXUP_SKU_IGNORE
)
1496 ass
= codec
->subsystem_id
& 0xffff;
1497 if ((ass
!= codec
->bus
->pci
->subsystem_device
) && (ass
& 1))
1500 /* invalid SSID, check the special NID pin defcfg instead */
1502 * 31~30 : port connectivity
1505 * 19~16 : Check sum (15:1)
1510 if (codec
->vendor_id
== 0x10ec0260)
1512 ass
= snd_hda_codec_get_pincfg(codec
, nid
);
1513 snd_printd("realtek: No valid SSID, "
1514 "checking pincfg 0x%08x for NID 0x%x\n",
1518 if ((ass
>> 30) != 1) /* no physical connection */
1523 for (i
= 1; i
< 16; i
++) {
1527 if (((ass
>> 16) & 0xf) != tmp
)
1530 snd_printd("realtek: Enabling init ASM_ID=0x%04x CODEC_ID=%08x\n",
1531 ass
& 0xffff, codec
->vendor_id
);
1535 * 2 : 0 --> Desktop, 1 --> Laptop
1536 * 3~5 : External Amplifier control
1539 tmp
= (ass
& 0x38) >> 3; /* external Amp control */
1542 spec
->init_amp
= ALC_INIT_GPIO1
;
1545 spec
->init_amp
= ALC_INIT_GPIO2
;
1548 spec
->init_amp
= ALC_INIT_GPIO3
;
1552 spec
->init_amp
= ALC_INIT_DEFAULT
;
1556 /* is laptop or Desktop and enable the function "Mute internal speaker
1557 * when the external headphone out jack is plugged"
1559 if (!(ass
& 0x8000))
1562 * 10~8 : Jack location
1563 * 12~11: Headphone out -> 00: PortA, 01: PortE, 02: PortD, 03: Resvered
1565 * 15 : 1 --> enable the function "Mute internal speaker
1566 * when the external headphone out jack is plugged"
1568 if (!spec
->autocfg
.hp_pins
[0]) {
1570 tmp
= (ass
>> 11) & 0x3; /* HP to chassis */
1581 for (i
= 0; i
< spec
->autocfg
.line_outs
; i
++)
1582 if (spec
->autocfg
.line_out_pins
[i
] == nid
)
1584 spec
->autocfg
.hp_pins
[0] = nid
;
1587 alc_init_auto_hp(codec
);
1588 alc_init_auto_mic(codec
);
1592 static void alc_ssid_check(struct hda_codec
*codec
,
1593 hda_nid_t porta
, hda_nid_t porte
,
1594 hda_nid_t portd
, hda_nid_t porti
)
1596 if (!alc_subsystem_id(codec
, porta
, porte
, portd
, porti
)) {
1597 struct alc_spec
*spec
= codec
->spec
;
1598 snd_printd("realtek: "
1599 "Enable default setup for auto mode as fallback\n");
1600 spec
->init_amp
= ALC_INIT_DEFAULT
;
1601 alc_init_auto_hp(codec
);
1602 alc_init_auto_mic(codec
);
1607 * Fix-up pin default configurations and add default verbs
1615 struct alc_model_fixup
{
1626 const struct alc_pincfg
*pins
;
1627 const struct hda_verb
*verbs
;
1628 void (*func
)(struct hda_codec
*codec
,
1629 const struct alc_fixup
*fix
,
1643 ALC_FIXUP_ACT_PRE_PROBE
,
1644 ALC_FIXUP_ACT_PROBE
,
1648 static void alc_apply_fixup(struct hda_codec
*codec
, int action
)
1650 struct alc_spec
*spec
= codec
->spec
;
1651 int id
= spec
->fixup_id
;
1652 #ifdef CONFIG_SND_DEBUG_VERBOSE
1653 const char *modelname
= spec
->fixup_name
;
1657 if (!spec
->fixup_list
)
1661 const struct alc_fixup
*fix
= spec
->fixup_list
+ id
;
1662 const struct alc_pincfg
*cfg
;
1664 switch (fix
->type
) {
1666 if (action
!= ALC_FIXUP_ACT_PRE_PROBE
|| !fix
->v
.sku
)
1668 snd_printdd(KERN_INFO
"hda_codec: %s: "
1669 "Apply sku override for %s\n",
1670 codec
->chip_name
, modelname
);
1671 spec
->cdefine
.sku_cfg
= fix
->v
.sku
;
1672 spec
->cdefine
.fixup
= 1;
1674 case ALC_FIXUP_PINS
:
1676 if (action
!= ALC_FIXUP_ACT_PRE_PROBE
|| !cfg
)
1678 snd_printdd(KERN_INFO
"hda_codec: %s: "
1679 "Apply pincfg for %s\n",
1680 codec
->chip_name
, modelname
);
1681 for (; cfg
->nid
; cfg
++)
1682 snd_hda_codec_set_pincfg(codec
, cfg
->nid
,
1685 case ALC_FIXUP_VERBS
:
1686 if (action
!= ALC_FIXUP_ACT_PROBE
|| !fix
->v
.verbs
)
1688 snd_printdd(KERN_INFO
"hda_codec: %s: "
1689 "Apply fix-verbs for %s\n",
1690 codec
->chip_name
, modelname
);
1691 add_verb(codec
->spec
, fix
->v
.verbs
);
1693 case ALC_FIXUP_FUNC
:
1696 snd_printdd(KERN_INFO
"hda_codec: %s: "
1697 "Apply fix-func for %s\n",
1698 codec
->chip_name
, modelname
);
1699 fix
->v
.func(codec
, fix
, action
);
1702 snd_printk(KERN_ERR
"hda_codec: %s: "
1703 "Invalid fixup type %d\n",
1704 codec
->chip_name
, fix
->type
);
1715 static void alc_pick_fixup(struct hda_codec
*codec
,
1716 const struct alc_model_fixup
*models
,
1717 const struct snd_pci_quirk
*quirk
,
1718 const struct alc_fixup
*fixlist
)
1720 struct alc_spec
*spec
= codec
->spec
;
1722 const char *name
= NULL
;
1724 if (codec
->modelname
&& models
) {
1725 while (models
->name
) {
1726 if (!strcmp(codec
->modelname
, models
->name
)) {
1728 name
= models
->name
;
1735 quirk
= snd_pci_quirk_lookup(codec
->bus
->pci
, quirk
);
1738 #ifdef CONFIG_SND_DEBUG_VERBOSE
1744 spec
->fixup_id
= id
;
1746 spec
->fixup_list
= fixlist
;
1747 spec
->fixup_name
= name
;
1751 static int alc_read_coef_idx(struct hda_codec
*codec
,
1752 unsigned int coef_idx
)
1755 snd_hda_codec_write(codec
, 0x20, 0, AC_VERB_SET_COEF_INDEX
,
1757 val
= snd_hda_codec_read(codec
, 0x20, 0,
1758 AC_VERB_GET_PROC_COEF
, 0);
1762 static void alc_write_coef_idx(struct hda_codec
*codec
, unsigned int coef_idx
,
1763 unsigned int coef_val
)
1765 snd_hda_codec_write(codec
, 0x20, 0, AC_VERB_SET_COEF_INDEX
,
1767 snd_hda_codec_write(codec
, 0x20, 0, AC_VERB_SET_PROC_COEF
,
1771 /* set right pin controls for digital I/O */
1772 static void alc_auto_init_digital(struct hda_codec
*codec
)
1774 struct alc_spec
*spec
= codec
->spec
;
1778 for (i
= 0; i
< spec
->autocfg
.dig_outs
; i
++) {
1779 pin
= spec
->autocfg
.dig_out_pins
[i
];
1781 snd_hda_codec_write(codec
, pin
, 0,
1782 AC_VERB_SET_PIN_WIDGET_CONTROL
,
1786 pin
= spec
->autocfg
.dig_in_pin
;
1788 snd_hda_codec_write(codec
, pin
, 0,
1789 AC_VERB_SET_PIN_WIDGET_CONTROL
,
1793 /* parse digital I/Os and set up NIDs in BIOS auto-parse mode */
1794 static void alc_auto_parse_digital(struct hda_codec
*codec
)
1796 struct alc_spec
*spec
= codec
->spec
;
1800 /* support multiple SPDIFs; the secondary is set up as a slave */
1801 for (i
= 0; i
< spec
->autocfg
.dig_outs
; i
++) {
1802 err
= snd_hda_get_connections(codec
,
1803 spec
->autocfg
.dig_out_pins
[i
],
1808 spec
->multiout
.dig_out_nid
= dig_nid
;
1809 spec
->dig_out_type
= spec
->autocfg
.dig_out_type
[0];
1811 spec
->multiout
.slave_dig_outs
= spec
->slave_dig_outs
;
1812 if (i
>= ARRAY_SIZE(spec
->slave_dig_outs
) - 1)
1814 spec
->slave_dig_outs
[i
- 1] = dig_nid
;
1818 if (spec
->autocfg
.dig_in_pin
) {
1819 dig_nid
= codec
->start_nid
;
1820 for (i
= 0; i
< codec
->num_nodes
; i
++, dig_nid
++) {
1821 unsigned int wcaps
= get_wcaps(codec
, dig_nid
);
1822 if (get_wcaps_type(wcaps
) != AC_WID_AUD_IN
)
1824 if (!(wcaps
& AC_WCAP_DIGITAL
))
1826 if (!(wcaps
& AC_WCAP_CONN_LIST
))
1828 err
= get_connection_index(codec
, dig_nid
,
1829 spec
->autocfg
.dig_in_pin
);
1831 spec
->dig_in_nid
= dig_nid
;
1845 static struct hda_verb alc888_4ST_ch2_intel_init
[] = {
1846 /* Mic-in jack as mic in */
1847 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
1848 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
1849 /* Line-in jack as Line in */
1850 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
1851 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
1852 /* Line-Out as Front */
1853 { 0x17, AC_VERB_SET_CONNECT_SEL
, 0x00},
1860 static struct hda_verb alc888_4ST_ch4_intel_init
[] = {
1861 /* Mic-in jack as mic in */
1862 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
1863 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
1864 /* Line-in jack as Surround */
1865 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
1866 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
1867 /* Line-Out as Front */
1868 { 0x17, AC_VERB_SET_CONNECT_SEL
, 0x00},
1875 static struct hda_verb alc888_4ST_ch6_intel_init
[] = {
1876 /* Mic-in jack as CLFE */
1877 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
1878 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
1879 /* Line-in jack as Surround */
1880 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
1881 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
1882 /* Line-Out as CLFE (workaround because Mic-in is not loud enough) */
1883 { 0x17, AC_VERB_SET_CONNECT_SEL
, 0x03},
1890 static struct hda_verb alc888_4ST_ch8_intel_init
[] = {
1891 /* Mic-in jack as CLFE */
1892 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
1893 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
1894 /* Line-in jack as Surround */
1895 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
1896 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
1897 /* Line-Out as Side */
1898 { 0x17, AC_VERB_SET_CONNECT_SEL
, 0x03},
1902 static struct hda_channel_mode alc888_4ST_8ch_intel_modes
[4] = {
1903 { 2, alc888_4ST_ch2_intel_init
},
1904 { 4, alc888_4ST_ch4_intel_init
},
1905 { 6, alc888_4ST_ch6_intel_init
},
1906 { 8, alc888_4ST_ch8_intel_init
},
1910 * ALC888 Fujitsu Siemens Amillo xa3530
1913 static struct hda_verb alc888_fujitsu_xa3530_verbs
[] = {
1914 /* Front Mic: set to PIN_IN (empty by default) */
1915 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
1916 /* Connect Internal HP to Front */
1917 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
1918 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
1919 {0x14, AC_VERB_SET_CONNECT_SEL
, 0x00},
1920 /* Connect Bass HP to Front */
1921 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
1922 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
1923 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00},
1924 /* Connect Line-Out side jack (SPDIF) to Side */
1925 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
1926 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
1927 {0x17, AC_VERB_SET_CONNECT_SEL
, 0x03},
1928 /* Connect Mic jack to CLFE */
1929 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
1930 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
1931 {0x18, AC_VERB_SET_CONNECT_SEL
, 0x02},
1932 /* Connect Line-in jack to Surround */
1933 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
1934 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
1935 {0x1a, AC_VERB_SET_CONNECT_SEL
, 0x01},
1936 /* Connect HP out jack to Front */
1937 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
1938 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
1939 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0x00},
1940 /* Enable unsolicited event for HP jack and Line-out jack */
1941 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
1942 {0x17, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
1946 static void alc_automute_amp(struct hda_codec
*codec
)
1948 alc_automute_speaker(codec
, 0);
1951 static void alc_automute_amp_unsol_event(struct hda_codec
*codec
,
1954 if (codec
->vendor_id
== 0x10ec0880)
1958 if (res
== ALC880_HP_EVENT
)
1959 alc_automute_amp(codec
);
1962 static void alc889_automute_setup(struct hda_codec
*codec
)
1964 struct alc_spec
*spec
= codec
->spec
;
1966 spec
->autocfg
.hp_pins
[0] = 0x15;
1967 spec
->autocfg
.speaker_pins
[0] = 0x14;
1968 spec
->autocfg
.speaker_pins
[1] = 0x16;
1969 spec
->autocfg
.speaker_pins
[2] = 0x17;
1970 spec
->autocfg
.speaker_pins
[3] = 0x19;
1971 spec
->autocfg
.speaker_pins
[4] = 0x1a;
1974 static void alc889_intel_init_hook(struct hda_codec
*codec
)
1976 alc889_coef_init(codec
);
1977 alc_automute_amp(codec
);
1980 static void alc888_fujitsu_xa3530_setup(struct hda_codec
*codec
)
1982 struct alc_spec
*spec
= codec
->spec
;
1984 spec
->autocfg
.hp_pins
[0] = 0x17; /* line-out */
1985 spec
->autocfg
.hp_pins
[1] = 0x1b; /* hp */
1986 spec
->autocfg
.speaker_pins
[0] = 0x14; /* speaker */
1987 spec
->autocfg
.speaker_pins
[1] = 0x15; /* bass */
1991 * ALC888 Acer Aspire 4930G model
1994 static struct hda_verb alc888_acer_aspire_4930g_verbs
[] = {
1995 /* Front Mic: set to PIN_IN (empty by default) */
1996 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
1997 /* Unselect Front Mic by default in input mixer 3 */
1998 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0xb)},
1999 /* Enable unsolicited event for HP jack */
2000 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
2001 /* Connect Internal HP to front */
2002 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
2003 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2004 {0x14, AC_VERB_SET_CONNECT_SEL
, 0x00},
2005 /* Connect HP out to front */
2006 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
2007 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2008 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00},
2009 {0x15, AC_VERB_SET_EAPD_BTLENABLE
, 2},
2014 * ALC888 Acer Aspire 6530G model
2017 static struct hda_verb alc888_acer_aspire_6530g_verbs
[] = {
2018 /* Route to built-in subwoofer as well as speakers */
2019 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
2020 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
2021 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
2022 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
2023 /* Bias voltage on for external mic port */
2024 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
| PIN_VREF80
},
2025 /* Front Mic: set to PIN_IN (empty by default) */
2026 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
2027 /* Unselect Front Mic by default in input mixer 3 */
2028 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0xb)},
2029 /* Enable unsolicited event for HP jack */
2030 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
2031 /* Enable speaker output */
2032 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
2033 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2034 {0x14, AC_VERB_SET_EAPD_BTLENABLE
, 2},
2035 /* Enable headphone output */
2036 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
| PIN_HP
},
2037 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2038 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00},
2039 {0x15, AC_VERB_SET_EAPD_BTLENABLE
, 2},
2044 *ALC888 Acer Aspire 7730G model
2047 static struct hda_verb alc888_acer_aspire_7730G_verbs
[] = {
2048 /* Bias voltage on for external mic port */
2049 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
| PIN_VREF80
},
2050 /* Front Mic: set to PIN_IN (empty by default) */
2051 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
2052 /* Unselect Front Mic by default in input mixer 3 */
2053 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0xb)},
2054 /* Enable unsolicited event for HP jack */
2055 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
2056 /* Enable speaker output */
2057 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
2058 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2059 {0x14, AC_VERB_SET_EAPD_BTLENABLE
, 2},
2060 /* Enable headphone output */
2061 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
| PIN_HP
},
2062 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2063 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00},
2064 {0x15, AC_VERB_SET_EAPD_BTLENABLE
, 2},
2065 /*Enable internal subwoofer */
2066 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
2067 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2068 {0x17, AC_VERB_SET_CONNECT_SEL
, 0x02},
2069 {0x17, AC_VERB_SET_EAPD_BTLENABLE
, 2},
2074 * ALC889 Acer Aspire 8930G model
2077 static struct hda_verb alc889_acer_aspire_8930g_verbs
[] = {
2078 /* Front Mic: set to PIN_IN (empty by default) */
2079 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
2080 /* Unselect Front Mic by default in input mixer 3 */
2081 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0xb)},
2082 /* Enable unsolicited event for HP jack */
2083 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
2084 /* Connect Internal Front to Front */
2085 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
2086 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2087 {0x14, AC_VERB_SET_CONNECT_SEL
, 0x00},
2088 /* Connect Internal Rear to Rear */
2089 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
2090 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2091 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0x01},
2092 /* Connect Internal CLFE to CLFE */
2093 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
2094 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2095 {0x16, AC_VERB_SET_CONNECT_SEL
, 0x02},
2096 /* Connect HP out to Front */
2097 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
| PIN_HP
},
2098 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2099 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00},
2100 /* Enable all DACs */
2101 /* DAC DISABLE/MUTE 1? */
2102 /* setting bits 1-5 disables DAC nids 0x02-0x06 apparently. Init=0x38 */
2103 {0x20, AC_VERB_SET_COEF_INDEX
, 0x03},
2104 {0x20, AC_VERB_SET_PROC_COEF
, 0x0000},
2105 /* DAC DISABLE/MUTE 2? */
2106 /* some bit here disables the other DACs. Init=0x4900 */
2107 {0x20, AC_VERB_SET_COEF_INDEX
, 0x08},
2108 {0x20, AC_VERB_SET_PROC_COEF
, 0x0000},
2110 * This laptop has a stereo digital microphone. The mics are only 1cm apart
2111 * which makes the stereo useless. However, either the mic or the ALC889
2112 * makes the signal become a difference/sum signal instead of standard
2113 * stereo, which is annoying. So instead we flip this bit which makes the
2114 * codec replicate the sum signal to both channels, turning it into a
2117 /* DMIC_CONTROL? Init value = 0x0001 */
2118 {0x20, AC_VERB_SET_COEF_INDEX
, 0x0b},
2119 {0x20, AC_VERB_SET_PROC_COEF
, 0x0003},
2123 static struct hda_input_mux alc888_2_capture_sources
[2] = {
2124 /* Front mic only available on one ADC */
2131 { "Front Mic", 0xb },
2144 static struct hda_input_mux alc888_acer_aspire_6530_sources
[2] = {
2145 /* Interal mic only available on one ADC */
2152 { "Input Mix", 0xa },
2153 { "Internal Mic", 0xb },
2162 { "Input Mix", 0xa },
2167 static struct hda_input_mux alc889_capture_sources
[3] = {
2168 /* Digital mic only available on first "ADC" */
2175 { "Front Mic", 0xb },
2176 { "Input Mix", 0xa },
2185 { "Input Mix", 0xa },
2194 { "Input Mix", 0xa },
2199 static struct snd_kcontrol_new alc888_base_mixer
[] = {
2200 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
2201 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
2202 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
2203 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT
),
2204 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0,
2206 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT
),
2207 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT
),
2208 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT
),
2209 HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT
),
2210 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT
),
2211 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
2212 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
2213 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
2214 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
2215 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
2216 HDA_CODEC_VOLUME("Mic Boost Volume", 0x18, 0, HDA_INPUT
),
2217 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
2221 static struct snd_kcontrol_new alc888_acer_aspire_4930g_mixer
[] = {
2222 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
2223 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
2224 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
2225 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT
),
2226 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0,
2228 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT
),
2229 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT
),
2230 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT
),
2231 HDA_CODEC_VOLUME_MONO("Internal LFE Playback Volume", 0x0f, 1, 0x0, HDA_OUTPUT
),
2232 HDA_BIND_MUTE_MONO("Internal LFE Playback Switch", 0x0f, 1, 2, HDA_INPUT
),
2233 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
2234 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
2235 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
2236 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
2237 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
2238 HDA_CODEC_VOLUME("Mic Boost Volume", 0x18, 0, HDA_INPUT
),
2239 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
2243 static struct snd_kcontrol_new alc889_acer_aspire_8930g_mixer
[] = {
2244 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
2245 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
2246 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
2247 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT
),
2248 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0,
2250 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT
),
2251 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT
),
2252 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT
),
2253 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
2254 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
2255 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
2256 HDA_CODEC_VOLUME("Mic Boost Volume", 0x18, 0, HDA_INPUT
),
2257 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
2262 static void alc888_acer_aspire_4930g_setup(struct hda_codec
*codec
)
2264 struct alc_spec
*spec
= codec
->spec
;
2266 spec
->autocfg
.hp_pins
[0] = 0x15;
2267 spec
->autocfg
.speaker_pins
[0] = 0x14;
2268 spec
->autocfg
.speaker_pins
[1] = 0x16;
2269 spec
->autocfg
.speaker_pins
[2] = 0x17;
2272 static void alc888_acer_aspire_6530g_setup(struct hda_codec
*codec
)
2274 struct alc_spec
*spec
= codec
->spec
;
2276 spec
->autocfg
.hp_pins
[0] = 0x15;
2277 spec
->autocfg
.speaker_pins
[0] = 0x14;
2278 spec
->autocfg
.speaker_pins
[1] = 0x16;
2279 spec
->autocfg
.speaker_pins
[2] = 0x17;
2282 static void alc888_acer_aspire_7730g_setup(struct hda_codec
*codec
)
2284 struct alc_spec
*spec
= codec
->spec
;
2286 spec
->autocfg
.hp_pins
[0] = 0x15;
2287 spec
->autocfg
.speaker_pins
[0] = 0x14;
2288 spec
->autocfg
.speaker_pins
[1] = 0x16;
2289 spec
->autocfg
.speaker_pins
[2] = 0x17;
2292 static void alc889_acer_aspire_8930g_setup(struct hda_codec
*codec
)
2294 struct alc_spec
*spec
= codec
->spec
;
2296 spec
->autocfg
.hp_pins
[0] = 0x15;
2297 spec
->autocfg
.speaker_pins
[0] = 0x14;
2298 spec
->autocfg
.speaker_pins
[1] = 0x16;
2299 spec
->autocfg
.speaker_pins
[2] = 0x1b;
2303 * ALC880 3-stack model
2305 * DAC: Front = 0x02 (0x0c), Surr = 0x05 (0x0f), CLFE = 0x04 (0x0e)
2306 * Pin assignment: Front = 0x14, Line-In/Surr = 0x1a, Mic/CLFE = 0x18,
2307 * F-Mic = 0x1b, HP = 0x19
2310 static hda_nid_t alc880_dac_nids
[4] = {
2311 /* front, rear, clfe, rear_surr */
2312 0x02, 0x05, 0x04, 0x03
2315 static hda_nid_t alc880_adc_nids
[3] = {
2320 /* The datasheet says the node 0x07 is connected from inputs,
2321 * but it shows zero connection in the real implementation on some devices.
2322 * Note: this is a 915GAV bug, fixed on 915GLV
2324 static hda_nid_t alc880_adc_nids_alt
[2] = {
2329 #define ALC880_DIGOUT_NID 0x06
2330 #define ALC880_DIGIN_NID 0x0a
2332 static struct hda_input_mux alc880_capture_source
= {
2336 { "Front Mic", 0x3 },
2342 /* channel source setting (2/6 channel selection for 3-stack) */
2344 static struct hda_verb alc880_threestack_ch2_init
[] = {
2345 /* set line-in to input, mute it */
2346 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
2347 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
2348 /* set mic-in to input vref 80%, mute it */
2349 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
2350 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
2355 static struct hda_verb alc880_threestack_ch6_init
[] = {
2356 /* set line-in to output, unmute it */
2357 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
2358 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2359 /* set mic-in to output, unmute it */
2360 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
2361 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2365 static struct hda_channel_mode alc880_threestack_modes
[2] = {
2366 { 2, alc880_threestack_ch2_init
},
2367 { 6, alc880_threestack_ch6_init
},
2370 static struct snd_kcontrol_new alc880_three_stack_mixer
[] = {
2371 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
2372 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
2373 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0f, 0x0, HDA_OUTPUT
),
2374 HDA_BIND_MUTE("Surround Playback Switch", 0x0f, 2, HDA_INPUT
),
2375 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT
),
2376 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT
),
2377 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT
),
2378 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT
),
2379 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
2380 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
2381 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
2382 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
2383 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
2384 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
2385 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x3, HDA_INPUT
),
2386 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x3, HDA_INPUT
),
2387 HDA_CODEC_MUTE("Headphone Playback Switch", 0x19, 0x0, HDA_OUTPUT
),
2389 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
2390 .name
= "Channel Mode",
2391 .info
= alc_ch_mode_info
,
2392 .get
= alc_ch_mode_get
,
2393 .put
= alc_ch_mode_put
,
2398 /* capture mixer elements */
2399 static int alc_cap_vol_info(struct snd_kcontrol
*kcontrol
,
2400 struct snd_ctl_elem_info
*uinfo
)
2402 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2403 struct alc_spec
*spec
= codec
->spec
;
2406 mutex_lock(&codec
->control_mutex
);
2407 kcontrol
->private_value
= HDA_COMPOSE_AMP_VAL(spec
->adc_nids
[0], 3, 0,
2409 err
= snd_hda_mixer_amp_volume_info(kcontrol
, uinfo
);
2410 mutex_unlock(&codec
->control_mutex
);
2414 static int alc_cap_vol_tlv(struct snd_kcontrol
*kcontrol
, int op_flag
,
2415 unsigned int size
, unsigned int __user
*tlv
)
2417 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2418 struct alc_spec
*spec
= codec
->spec
;
2421 mutex_lock(&codec
->control_mutex
);
2422 kcontrol
->private_value
= HDA_COMPOSE_AMP_VAL(spec
->adc_nids
[0], 3, 0,
2424 err
= snd_hda_mixer_amp_tlv(kcontrol
, op_flag
, size
, tlv
);
2425 mutex_unlock(&codec
->control_mutex
);
2429 typedef int (*getput_call_t
)(struct snd_kcontrol
*kcontrol
,
2430 struct snd_ctl_elem_value
*ucontrol
);
2432 static int alc_cap_getput_caller(struct snd_kcontrol
*kcontrol
,
2433 struct snd_ctl_elem_value
*ucontrol
,
2436 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2437 struct alc_spec
*spec
= codec
->spec
;
2438 unsigned int adc_idx
= snd_ctl_get_ioffidx(kcontrol
, &ucontrol
->id
);
2441 mutex_lock(&codec
->control_mutex
);
2442 kcontrol
->private_value
= HDA_COMPOSE_AMP_VAL(spec
->adc_nids
[adc_idx
],
2444 err
= func(kcontrol
, ucontrol
);
2445 mutex_unlock(&codec
->control_mutex
);
2449 static int alc_cap_vol_get(struct snd_kcontrol
*kcontrol
,
2450 struct snd_ctl_elem_value
*ucontrol
)
2452 return alc_cap_getput_caller(kcontrol
, ucontrol
,
2453 snd_hda_mixer_amp_volume_get
);
2456 static int alc_cap_vol_put(struct snd_kcontrol
*kcontrol
,
2457 struct snd_ctl_elem_value
*ucontrol
)
2459 return alc_cap_getput_caller(kcontrol
, ucontrol
,
2460 snd_hda_mixer_amp_volume_put
);
2463 /* capture mixer elements */
2464 #define alc_cap_sw_info snd_ctl_boolean_stereo_info
2466 static int alc_cap_sw_get(struct snd_kcontrol
*kcontrol
,
2467 struct snd_ctl_elem_value
*ucontrol
)
2469 return alc_cap_getput_caller(kcontrol
, ucontrol
,
2470 snd_hda_mixer_amp_switch_get
);
2473 static int alc_cap_sw_put(struct snd_kcontrol
*kcontrol
,
2474 struct snd_ctl_elem_value
*ucontrol
)
2476 return alc_cap_getput_caller(kcontrol
, ucontrol
,
2477 snd_hda_mixer_amp_switch_put
);
2480 #define _DEFINE_CAPMIX(num) \
2482 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2483 .name = "Capture Switch", \
2484 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE, \
2486 .info = alc_cap_sw_info, \
2487 .get = alc_cap_sw_get, \
2488 .put = alc_cap_sw_put, \
2491 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2492 .name = "Capture Volume", \
2493 .access = (SNDRV_CTL_ELEM_ACCESS_READWRITE | \
2494 SNDRV_CTL_ELEM_ACCESS_TLV_READ | \
2495 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK), \
2497 .info = alc_cap_vol_info, \
2498 .get = alc_cap_vol_get, \
2499 .put = alc_cap_vol_put, \
2500 .tlv = { .c = alc_cap_vol_tlv }, \
2503 #define _DEFINE_CAPSRC(num) \
2505 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2506 /* .name = "Capture Source", */ \
2507 .name = "Input Source", \
2509 .info = alc_mux_enum_info, \
2510 .get = alc_mux_enum_get, \
2511 .put = alc_mux_enum_put, \
2514 #define DEFINE_CAPMIX(num) \
2515 static struct snd_kcontrol_new alc_capture_mixer ## num[] = { \
2516 _DEFINE_CAPMIX(num), \
2517 _DEFINE_CAPSRC(num), \
2521 #define DEFINE_CAPMIX_NOSRC(num) \
2522 static struct snd_kcontrol_new alc_capture_mixer_nosrc ## num[] = { \
2523 _DEFINE_CAPMIX(num), \
2527 /* up to three ADCs */
2531 DEFINE_CAPMIX_NOSRC(1);
2532 DEFINE_CAPMIX_NOSRC(2);
2533 DEFINE_CAPMIX_NOSRC(3);
2536 * ALC880 5-stack model
2538 * DAC: Front = 0x02 (0x0c), Surr = 0x05 (0x0f), CLFE = 0x04 (0x0d),
2540 * Pin assignment: Front = 0x14, Surr = 0x17, CLFE = 0x16
2541 * Line-In/Side = 0x1a, Mic = 0x18, F-Mic = 0x1b, HP = 0x19
2544 /* additional mixers to alc880_three_stack_mixer */
2545 static struct snd_kcontrol_new alc880_five_stack_mixer
[] = {
2546 HDA_CODEC_VOLUME("Side Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
2547 HDA_BIND_MUTE("Side Playback Switch", 0x0d, 2, HDA_INPUT
),
2551 /* channel source setting (6/8 channel selection for 5-stack) */
2553 static struct hda_verb alc880_fivestack_ch6_init
[] = {
2554 /* set line-in to input, mute it */
2555 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
2556 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
2561 static struct hda_verb alc880_fivestack_ch8_init
[] = {
2562 /* set line-in to output, unmute it */
2563 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
2564 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2568 static struct hda_channel_mode alc880_fivestack_modes
[2] = {
2569 { 6, alc880_fivestack_ch6_init
},
2570 { 8, alc880_fivestack_ch8_init
},
2575 * ALC880 6-stack model
2577 * DAC: Front = 0x02 (0x0c), Surr = 0x03 (0x0d), CLFE = 0x04 (0x0e),
2578 * Side = 0x05 (0x0f)
2579 * Pin assignment: Front = 0x14, Surr = 0x15, CLFE = 0x16, Side = 0x17,
2580 * Mic = 0x18, F-Mic = 0x19, Line = 0x1a, HP = 0x1b
2583 static hda_nid_t alc880_6st_dac_nids
[4] = {
2584 /* front, rear, clfe, rear_surr */
2585 0x02, 0x03, 0x04, 0x05
2588 static struct hda_input_mux alc880_6stack_capture_source
= {
2592 { "Front Mic", 0x1 },
2598 /* fixed 8-channels */
2599 static struct hda_channel_mode alc880_sixstack_modes
[1] = {
2603 static struct snd_kcontrol_new alc880_six_stack_mixer
[] = {
2604 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
2605 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
2606 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
2607 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT
),
2608 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT
),
2609 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT
),
2610 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT
),
2611 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT
),
2612 HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT
),
2613 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT
),
2614 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
2615 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
2616 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
2617 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
2618 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
2619 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
2620 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
2621 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
2623 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
2624 .name
= "Channel Mode",
2625 .info
= alc_ch_mode_info
,
2626 .get
= alc_ch_mode_get
,
2627 .put
= alc_ch_mode_put
,
2636 * W810 has rear IO for:
2639 * Center/LFE (DAC 04)
2642 * The system also has a pair of internal speakers, and a headphone jack.
2643 * These are both connected to Line2 on the codec, hence to DAC 02.
2645 * There is a variable resistor to control the speaker or headphone
2646 * volume. This is a hardware-only device without a software API.
2648 * Plugging headphones in will disable the internal speakers. This is
2649 * implemented in hardware, not via the driver using jack sense. In
2650 * a similar fashion, plugging into the rear socket marked "front" will
2651 * disable both the speakers and headphones.
2653 * For input, there's a microphone jack, and an "audio in" jack.
2654 * These may not do anything useful with this driver yet, because I
2655 * haven't setup any initialization verbs for these yet...
2658 static hda_nid_t alc880_w810_dac_nids
[3] = {
2659 /* front, rear/surround, clfe */
2663 /* fixed 6 channels */
2664 static struct hda_channel_mode alc880_w810_modes
[1] = {
2668 /* Pin assignment: Front = 0x14, Surr = 0x15, CLFE = 0x16, HP = 0x1b */
2669 static struct snd_kcontrol_new alc880_w810_base_mixer
[] = {
2670 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
2671 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
2672 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
2673 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT
),
2674 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT
),
2675 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT
),
2676 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT
),
2677 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT
),
2678 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
2686 * DAC: Front = 0x02 (0x0c), HP = 0x03 (0x0d)
2687 * Pin assignment: Front = 0x14, HP = 0x15, Mic = 0x18, Mic2 = 0x19(?),
2691 static hda_nid_t alc880_z71v_dac_nids
[1] = {
2694 #define ALC880_Z71V_HP_DAC 0x03
2696 /* fixed 2 channels */
2697 static struct hda_channel_mode alc880_2_jack_modes
[1] = {
2701 static struct snd_kcontrol_new alc880_z71v_mixer
[] = {
2702 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
2703 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
2704 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
2705 HDA_BIND_MUTE("Headphone Playback Switch", 0x0d, 2, HDA_INPUT
),
2706 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
2707 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
2708 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
2709 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
2715 * ALC880 F1734 model
2717 * DAC: HP = 0x02 (0x0c), Front = 0x03 (0x0d)
2718 * Pin assignment: HP = 0x14, Front = 0x15, Mic = 0x18
2721 static hda_nid_t alc880_f1734_dac_nids
[1] = {
2724 #define ALC880_F1734_HP_DAC 0x02
2726 static struct snd_kcontrol_new alc880_f1734_mixer
[] = {
2727 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
2728 HDA_BIND_MUTE("Headphone Playback Switch", 0x0c, 2, HDA_INPUT
),
2729 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
2730 HDA_BIND_MUTE("Speaker Playback Switch", 0x0d, 2, HDA_INPUT
),
2731 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
2732 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
2733 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
2734 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
2738 static struct hda_input_mux alc880_f1734_capture_source
= {
2750 * DAC: HP/Front = 0x02 (0x0c), Surr = 0x03 (0x0d), CLFE = 0x04 (0x0e)
2751 * Pin assignment: HP/Front = 0x14, Surr = 0x15, CLFE = 0x16,
2752 * Mic = 0x18, Line = 0x1a
2755 #define alc880_asus_dac_nids alc880_w810_dac_nids /* identical with w810 */
2756 #define alc880_asus_modes alc880_threestack_modes /* 2/6 channel mode */
2758 static struct snd_kcontrol_new alc880_asus_mixer
[] = {
2759 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
2760 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
2761 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
2762 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT
),
2763 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT
),
2764 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT
),
2765 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT
),
2766 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT
),
2767 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
2768 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
2769 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
2770 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
2771 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
2772 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
2774 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
2775 .name
= "Channel Mode",
2776 .info
= alc_ch_mode_info
,
2777 .get
= alc_ch_mode_get
,
2778 .put
= alc_ch_mode_put
,
2784 * ALC880 ASUS W1V model
2786 * DAC: HP/Front = 0x02 (0x0c), Surr = 0x03 (0x0d), CLFE = 0x04 (0x0e)
2787 * Pin assignment: HP/Front = 0x14, Surr = 0x15, CLFE = 0x16,
2788 * Mic = 0x18, Line = 0x1a, Line2 = 0x1b
2791 /* additional mixers to alc880_asus_mixer */
2792 static struct snd_kcontrol_new alc880_asus_w1v_mixer
[] = {
2793 HDA_CODEC_VOLUME("Line2 Playback Volume", 0x0b, 0x03, HDA_INPUT
),
2794 HDA_CODEC_MUTE("Line2 Playback Switch", 0x0b, 0x03, HDA_INPUT
),
2799 static struct snd_kcontrol_new alc880_tcl_s700_mixer
[] = {
2800 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
2801 HDA_CODEC_MUTE("Front Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
2802 HDA_CODEC_MUTE("Headphone Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
2803 HDA_CODEC_VOLUME("CD Playback Volume", 0x0B, 0x04, HDA_INPUT
),
2804 HDA_CODEC_MUTE("CD Playback Switch", 0x0B, 0x04, HDA_INPUT
),
2805 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0B, 0x0, HDA_INPUT
),
2806 HDA_CODEC_MUTE("Mic Playback Switch", 0x0B, 0x0, HDA_INPUT
),
2807 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT
),
2808 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT
),
2813 static struct snd_kcontrol_new alc880_uniwill_mixer
[] = {
2814 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
2815 HDA_BIND_MUTE("Headphone Playback Switch", 0x0c, 2, HDA_INPUT
),
2816 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
2817 HDA_BIND_MUTE("Speaker Playback Switch", 0x0d, 2, HDA_INPUT
),
2818 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT
),
2819 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT
),
2820 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT
),
2821 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT
),
2822 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
2823 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
2824 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
2825 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
2826 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
2827 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
2828 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
2829 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
2831 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
2832 .name
= "Channel Mode",
2833 .info
= alc_ch_mode_info
,
2834 .get
= alc_ch_mode_get
,
2835 .put
= alc_ch_mode_put
,
2840 static struct snd_kcontrol_new alc880_fujitsu_mixer
[] = {
2841 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
2842 HDA_BIND_MUTE("Headphone Playback Switch", 0x0c, 2, HDA_INPUT
),
2843 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
2844 HDA_BIND_MUTE("Speaker Playback Switch", 0x0d, 2, HDA_INPUT
),
2845 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
2846 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
2847 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
2848 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
2849 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
2850 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
2854 static struct snd_kcontrol_new alc880_uniwill_p53_mixer
[] = {
2855 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
2856 HDA_BIND_MUTE("Headphone Playback Switch", 0x0c, 2, HDA_INPUT
),
2857 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
2858 HDA_BIND_MUTE("Speaker Playback Switch", 0x0d, 2, HDA_INPUT
),
2859 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
2860 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
2865 * virtual master controls
2869 * slave controls for virtual master
2871 static const char * const alc_slave_vols
[] = {
2872 "Front Playback Volume",
2873 "Surround Playback Volume",
2874 "Center Playback Volume",
2875 "LFE Playback Volume",
2876 "Side Playback Volume",
2877 "Headphone Playback Volume",
2878 "Speaker Playback Volume",
2879 "Mono Playback Volume",
2880 "Line-Out Playback Volume",
2881 "PCM Playback Volume",
2885 static const char * const alc_slave_sws
[] = {
2886 "Front Playback Switch",
2887 "Surround Playback Switch",
2888 "Center Playback Switch",
2889 "LFE Playback Switch",
2890 "Side Playback Switch",
2891 "Headphone Playback Switch",
2892 "Speaker Playback Switch",
2893 "Mono Playback Switch",
2894 "IEC958 Playback Switch",
2895 "Line-Out Playback Switch",
2896 "PCM Playback Switch",
2901 * build control elements
2904 #define NID_MAPPING (-1)
2906 #define SUBDEV_SPEAKER_ (0 << 6)
2907 #define SUBDEV_HP_ (1 << 6)
2908 #define SUBDEV_LINE_ (2 << 6)
2909 #define SUBDEV_SPEAKER(x) (SUBDEV_SPEAKER_ | ((x) & 0x3f))
2910 #define SUBDEV_HP(x) (SUBDEV_HP_ | ((x) & 0x3f))
2911 #define SUBDEV_LINE(x) (SUBDEV_LINE_ | ((x) & 0x3f))
2913 static void alc_free_kctls(struct hda_codec
*codec
);
2915 #ifdef CONFIG_SND_HDA_INPUT_BEEP
2916 /* additional beep mixers; the actual parameters are overwritten at build */
2917 static struct snd_kcontrol_new alc_beep_mixer
[] = {
2918 HDA_CODEC_VOLUME("Beep Playback Volume", 0, 0, HDA_INPUT
),
2919 HDA_CODEC_MUTE_BEEP("Beep Playback Switch", 0, 0, HDA_INPUT
),
2924 static int alc_build_controls(struct hda_codec
*codec
)
2926 struct alc_spec
*spec
= codec
->spec
;
2927 struct snd_kcontrol
*kctl
= NULL
;
2928 struct snd_kcontrol_new
*knew
;
2933 for (i
= 0; i
< spec
->num_mixers
; i
++) {
2934 err
= snd_hda_add_new_ctls(codec
, spec
->mixers
[i
]);
2938 if (spec
->cap_mixer
) {
2939 err
= snd_hda_add_new_ctls(codec
, spec
->cap_mixer
);
2943 if (spec
->multiout
.dig_out_nid
) {
2944 err
= snd_hda_create_spdif_out_ctls(codec
,
2945 spec
->multiout
.dig_out_nid
);
2948 if (!spec
->no_analog
) {
2949 err
= snd_hda_create_spdif_share_sw(codec
,
2953 spec
->multiout
.share_spdif
= 1;
2956 if (spec
->dig_in_nid
) {
2957 err
= snd_hda_create_spdif_in_ctls(codec
, spec
->dig_in_nid
);
2962 #ifdef CONFIG_SND_HDA_INPUT_BEEP
2963 /* create beep controls if needed */
2964 if (spec
->beep_amp
) {
2965 struct snd_kcontrol_new
*knew
;
2966 for (knew
= alc_beep_mixer
; knew
->name
; knew
++) {
2967 struct snd_kcontrol
*kctl
;
2968 kctl
= snd_ctl_new1(knew
, codec
);
2971 kctl
->private_value
= spec
->beep_amp
;
2972 err
= snd_hda_ctl_add(codec
, 0, kctl
);
2979 /* if we have no master control, let's create it */
2980 if (!spec
->no_analog
&&
2981 !snd_hda_find_mixer_ctl(codec
, "Master Playback Volume")) {
2982 unsigned int vmaster_tlv
[4];
2983 snd_hda_set_vmaster_tlv(codec
, spec
->vmaster_nid
,
2984 HDA_OUTPUT
, vmaster_tlv
);
2985 err
= snd_hda_add_vmaster(codec
, "Master Playback Volume",
2986 vmaster_tlv
, alc_slave_vols
);
2990 if (!spec
->no_analog
&&
2991 !snd_hda_find_mixer_ctl(codec
, "Master Playback Switch")) {
2992 err
= snd_hda_add_vmaster(codec
, "Master Playback Switch",
2993 NULL
, alc_slave_sws
);
2998 /* assign Capture Source enums to NID */
2999 if (spec
->capsrc_nids
|| spec
->adc_nids
) {
3000 kctl
= snd_hda_find_mixer_ctl(codec
, "Capture Source");
3002 kctl
= snd_hda_find_mixer_ctl(codec
, "Input Source");
3003 for (i
= 0; kctl
&& i
< kctl
->count
; i
++) {
3004 hda_nid_t
*nids
= spec
->capsrc_nids
;
3006 nids
= spec
->adc_nids
;
3007 err
= snd_hda_add_nid(codec
, kctl
, i
, nids
[i
]);
3012 if (spec
->cap_mixer
) {
3013 const char *kname
= kctl
? kctl
->id
.name
: NULL
;
3014 for (knew
= spec
->cap_mixer
; knew
->name
; knew
++) {
3015 if (kname
&& strcmp(knew
->name
, kname
) == 0)
3017 kctl
= snd_hda_find_mixer_ctl(codec
, knew
->name
);
3018 for (i
= 0; kctl
&& i
< kctl
->count
; i
++) {
3019 err
= snd_hda_add_nid(codec
, kctl
, i
,
3027 /* other nid->control mapping */
3028 for (i
= 0; i
< spec
->num_mixers
; i
++) {
3029 for (knew
= spec
->mixers
[i
]; knew
->name
; knew
++) {
3030 if (knew
->iface
!= NID_MAPPING
)
3032 kctl
= snd_hda_find_mixer_ctl(codec
, knew
->name
);
3035 u
= knew
->subdevice
;
3036 for (j
= 0; j
< 4; j
++, u
>>= 8) {
3041 case SUBDEV_SPEAKER_
:
3042 nid
= spec
->autocfg
.speaker_pins
[nid
];
3045 nid
= spec
->autocfg
.line_out_pins
[nid
];
3048 nid
= spec
->autocfg
.hp_pins
[nid
];
3053 err
= snd_hda_add_nid(codec
, kctl
, 0, nid
);
3057 u
= knew
->private_value
;
3058 for (j
= 0; j
< 4; j
++, u
>>= 8) {
3062 err
= snd_hda_add_nid(codec
, kctl
, 0, nid
);
3069 alc_free_kctls(codec
); /* no longer needed */
3076 * initialize the codec volumes, etc
3080 * generic initialization of ADC, input mixers and output mixers
3082 static struct hda_verb alc880_volume_init_verbs
[] = {
3084 * Unmute ADC0-2 and set the default input to mic-in
3086 {0x07, AC_VERB_SET_CONNECT_SEL
, 0x00},
3087 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
3088 {0x08, AC_VERB_SET_CONNECT_SEL
, 0x00},
3089 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
3090 {0x09, AC_VERB_SET_CONNECT_SEL
, 0x00},
3091 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
3093 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
3095 * Note: PASD motherboards uses the Line In 2 as the input for front
3098 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
3099 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
3100 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
3101 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
3102 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
3103 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
3104 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(6)},
3105 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(7)},
3108 * Set up output mixers (0x0c - 0x0f)
3110 /* set vol=0 to output mixers */
3111 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
3112 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
3113 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
3114 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
3115 /* set up input amps for analog loopback */
3116 /* Amp Indices: DAC = 0, mixer = 1 */
3117 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
3118 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
3119 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
3120 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
3121 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
3122 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
3123 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
3124 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
3130 * 3-stack pin configuration:
3131 * front = 0x14, mic/clfe = 0x18, HP = 0x19, line/surr = 0x1a, f-mic = 0x1b
3133 static struct hda_verb alc880_pin_3stack_init_verbs
[] = {
3135 * preset connection lists of input pins
3136 * 0 = front, 1 = rear_surr, 2 = CLFE, 3 = surround
3138 {0x10, AC_VERB_SET_CONNECT_SEL
, 0x02}, /* mic/clfe */
3139 {0x11, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* HP */
3140 {0x12, AC_VERB_SET_CONNECT_SEL
, 0x03}, /* line/surround */
3143 * Set pin mode and muting
3145 /* set front pin widgets 0x14 for output */
3146 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
3147 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3148 /* Mic1 (rear panel) pin widget for input and vref at 80% */
3149 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
3150 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
3151 /* Mic2 (as headphone out) for HP output */
3152 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
3153 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3154 /* Line In pin widget for input */
3155 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
3156 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
3157 /* Line2 (as front mic) pin widget for input and vref at 80% */
3158 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
3159 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
3160 /* CD pin widget for input */
3161 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
3167 * 5-stack pin configuration:
3168 * front = 0x14, surround = 0x17, clfe = 0x16, mic = 0x18, HP = 0x19,
3169 * line-in/side = 0x1a, f-mic = 0x1b
3171 static struct hda_verb alc880_pin_5stack_init_verbs
[] = {
3173 * preset connection lists of input pins
3174 * 0 = front, 1 = rear_surr, 2 = CLFE, 3 = surround
3176 {0x11, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* HP */
3177 {0x12, AC_VERB_SET_CONNECT_SEL
, 0x01}, /* line/side */
3180 * Set pin mode and muting
3182 /* set pin widgets 0x14-0x17 for output */
3183 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
3184 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
3185 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
3186 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
3187 /* unmute pins for output (no gain on this amp) */
3188 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3189 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3190 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3191 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3193 /* Mic1 (rear panel) pin widget for input and vref at 80% */
3194 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
3195 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
3196 /* Mic2 (as headphone out) for HP output */
3197 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
3198 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3199 /* Line In pin widget for input */
3200 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
3201 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
3202 /* Line2 (as front mic) pin widget for input and vref at 80% */
3203 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
3204 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
3205 /* CD pin widget for input */
3206 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
3212 * W810 pin configuration:
3213 * front = 0x14, surround = 0x15, clfe = 0x16, HP = 0x1b
3215 static struct hda_verb alc880_pin_w810_init_verbs
[] = {
3216 /* hphone/speaker input selector: front DAC */
3217 {0x13, AC_VERB_SET_CONNECT_SEL
, 0x0},
3219 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
3220 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3221 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
3222 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3223 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
3224 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3226 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
3227 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
3233 * Z71V pin configuration:
3234 * Speaker-out = 0x14, HP = 0x15, Mic = 0x18, Line-in = 0x1a, Mic2 = 0x1b (?)
3236 static struct hda_verb alc880_pin_z71v_init_verbs
[] = {
3237 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
3238 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3239 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
3240 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3242 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
3243 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
3244 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
3245 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
3251 * 6-stack pin configuration:
3252 * front = 0x14, surr = 0x15, clfe = 0x16, side = 0x17, mic = 0x18,
3253 * f-mic = 0x19, line = 0x1a, HP = 0x1b
3255 static struct hda_verb alc880_pin_6stack_init_verbs
[] = {
3256 {0x13, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* HP */
3258 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
3259 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3260 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
3261 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3262 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
3263 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3264 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
3265 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3267 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
3268 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
3269 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
3270 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
3271 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
3272 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
3273 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
3274 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3275 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
3281 * Uniwill pin configuration:
3282 * HP = 0x14, InternalSpeaker = 0x15, mic = 0x18, internal mic = 0x19,
3285 static struct hda_verb alc880_uniwill_init_verbs
[] = {
3286 {0x13, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* HP */
3288 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
3289 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3290 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
3291 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3292 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
3293 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3294 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
3295 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3296 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
3297 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x01 << 8))},
3298 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
3299 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x01 << 8))},
3300 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
3301 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x01 << 8))},
3303 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
3304 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
3305 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
3306 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
3307 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
3308 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
3309 /* {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP}, */
3310 /* {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, */
3311 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
3313 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
3314 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
3321 * HP = 0x14, InternalSpeaker = 0x15, mic = 0x19,
3323 static struct hda_verb alc880_uniwill_p53_init_verbs
[] = {
3324 {0x13, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* HP */
3326 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
3327 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3328 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
3329 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3330 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
3331 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3332 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
3333 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x01 << 8))},
3334 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
3335 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x01 << 8))},
3336 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
3337 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x01 << 8))},
3339 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
3340 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
3341 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
3342 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
3343 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
3344 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
3346 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
3347 {0x21, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_DCVOL_EVENT
},
3352 static struct hda_verb alc880_beep_init_verbs
[] = {
3353 { 0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(5) },
3357 /* auto-toggle front mic */
3358 static void alc88x_simple_mic_automute(struct hda_codec
*codec
)
3360 unsigned int present
;
3363 present
= snd_hda_jack_detect(codec
, 0x18);
3364 bits
= present
? HDA_AMP_MUTE
: 0;
3365 snd_hda_codec_amp_stereo(codec
, 0x0b, HDA_INPUT
, 1, HDA_AMP_MUTE
, bits
);
3368 static void alc880_uniwill_setup(struct hda_codec
*codec
)
3370 struct alc_spec
*spec
= codec
->spec
;
3372 spec
->autocfg
.hp_pins
[0] = 0x14;
3373 spec
->autocfg
.speaker_pins
[0] = 0x15;
3374 spec
->autocfg
.speaker_pins
[0] = 0x16;
3377 static void alc880_uniwill_init_hook(struct hda_codec
*codec
)
3379 alc_automute_amp(codec
);
3380 alc88x_simple_mic_automute(codec
);
3383 static void alc880_uniwill_unsol_event(struct hda_codec
*codec
,
3386 /* Looks like the unsol event is incompatible with the standard
3387 * definition. 4bit tag is placed at 28 bit!
3389 switch (res
>> 28) {
3390 case ALC880_MIC_EVENT
:
3391 alc88x_simple_mic_automute(codec
);
3394 alc_automute_amp_unsol_event(codec
, res
);
3399 static void alc880_uniwill_p53_setup(struct hda_codec
*codec
)
3401 struct alc_spec
*spec
= codec
->spec
;
3403 spec
->autocfg
.hp_pins
[0] = 0x14;
3404 spec
->autocfg
.speaker_pins
[0] = 0x15;
3407 static void alc880_uniwill_p53_dcvol_automute(struct hda_codec
*codec
)
3409 unsigned int present
;
3411 present
= snd_hda_codec_read(codec
, 0x21, 0,
3412 AC_VERB_GET_VOLUME_KNOB_CONTROL
, 0);
3413 present
&= HDA_AMP_VOLMASK
;
3414 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_OUTPUT
, 0,
3415 HDA_AMP_VOLMASK
, present
);
3416 snd_hda_codec_amp_stereo(codec
, 0x0d, HDA_OUTPUT
, 0,
3417 HDA_AMP_VOLMASK
, present
);
3420 static void alc880_uniwill_p53_unsol_event(struct hda_codec
*codec
,
3423 /* Looks like the unsol event is incompatible with the standard
3424 * definition. 4bit tag is placed at 28 bit!
3426 if ((res
>> 28) == ALC880_DCVOL_EVENT
)
3427 alc880_uniwill_p53_dcvol_automute(codec
);
3429 alc_automute_amp_unsol_event(codec
, res
);
3433 * F1734 pin configuration:
3434 * HP = 0x14, speaker-out = 0x15, mic = 0x18
3436 static struct hda_verb alc880_pin_f1734_init_verbs
[] = {
3437 {0x07, AC_VERB_SET_CONNECT_SEL
, 0x01},
3438 {0x10, AC_VERB_SET_CONNECT_SEL
, 0x02},
3439 {0x11, AC_VERB_SET_CONNECT_SEL
, 0x00},
3440 {0x12, AC_VERB_SET_CONNECT_SEL
, 0x01},
3441 {0x13, AC_VERB_SET_CONNECT_SEL
, 0x00},
3443 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
3444 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3445 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
3446 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3448 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
3449 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
3450 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF50
},
3451 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
3452 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
3453 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3454 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
3455 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3456 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
3458 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
|ALC880_HP_EVENT
},
3459 {0x21, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
|ALC880_DCVOL_EVENT
},
3465 * ASUS pin configuration:
3466 * HP/front = 0x14, surr = 0x15, clfe = 0x16, mic = 0x18, line = 0x1a
3468 static struct hda_verb alc880_pin_asus_init_verbs
[] = {
3469 {0x10, AC_VERB_SET_CONNECT_SEL
, 0x02},
3470 {0x11, AC_VERB_SET_CONNECT_SEL
, 0x00},
3471 {0x12, AC_VERB_SET_CONNECT_SEL
, 0x01},
3472 {0x13, AC_VERB_SET_CONNECT_SEL
, 0x00},
3474 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
3475 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3476 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
3477 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3478 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
3479 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3480 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
3481 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3483 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
3484 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
3485 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
3486 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
3487 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
3488 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
3489 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
3490 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3491 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
3496 /* Enable GPIO mask and set output */
3497 #define alc880_gpio1_init_verbs alc_gpio1_init_verbs
3498 #define alc880_gpio2_init_verbs alc_gpio2_init_verbs
3499 #define alc880_gpio3_init_verbs alc_gpio3_init_verbs
3501 /* Clevo m520g init */
3502 static struct hda_verb alc880_pin_clevo_init_verbs
[] = {
3503 /* headphone output */
3504 {0x11, AC_VERB_SET_CONNECT_SEL
, 0x01},
3506 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
3507 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3509 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
3510 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3512 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
3513 {0x1c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3514 /* Mic1 (rear panel) */
3515 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
3516 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3517 /* Mic2 (front panel) */
3518 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
3519 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3521 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
3522 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3523 /* change to EAPD mode */
3524 {0x20, AC_VERB_SET_COEF_INDEX
, 0x07},
3525 {0x20, AC_VERB_SET_PROC_COEF
, 0x3060},
3530 static struct hda_verb alc880_pin_tcl_S700_init_verbs
[] = {
3531 /* change to EAPD mode */
3532 {0x20, AC_VERB_SET_COEF_INDEX
, 0x07},
3533 {0x20, AC_VERB_SET_PROC_COEF
, 0x3060},
3535 /* Headphone output */
3536 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
3538 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
3539 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0x00},
3541 /* Line In pin widget for input */
3542 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
3543 /* CD pin widget for input */
3544 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
3545 /* Mic1 (rear panel) pin widget for input and vref at 80% */
3546 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
3548 /* change to EAPD mode */
3549 {0x20, AC_VERB_SET_COEF_INDEX
, 0x07},
3550 {0x20, AC_VERB_SET_PROC_COEF
, 0x3070},
3556 * LG m1 express dual
3559 * Rear Line-In/Out (blue): 0x14
3560 * Build-in Mic-In: 0x15
3562 * HP-Out (green): 0x1b
3563 * Mic-In/Out (red): 0x19
3567 /* To make 5.1 output working (green=Front, blue=Surr, red=CLFE) */
3568 static hda_nid_t alc880_lg_dac_nids
[3] = {
3572 /* seems analog CD is not working */
3573 static struct hda_input_mux alc880_lg_capture_source
= {
3578 { "Internal Mic", 0x6 },
3582 /* 2,4,6 channel modes */
3583 static struct hda_verb alc880_lg_ch2_init
[] = {
3584 /* set line-in and mic-in to input */
3585 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
3586 { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
3590 static struct hda_verb alc880_lg_ch4_init
[] = {
3591 /* set line-in to out and mic-in to input */
3592 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
3593 { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
3597 static struct hda_verb alc880_lg_ch6_init
[] = {
3598 /* set line-in and mic-in to output */
3599 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
3600 { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
3604 static struct hda_channel_mode alc880_lg_ch_modes
[3] = {
3605 { 2, alc880_lg_ch2_init
},
3606 { 4, alc880_lg_ch4_init
},
3607 { 6, alc880_lg_ch6_init
},
3610 static struct snd_kcontrol_new alc880_lg_mixer
[] = {
3611 HDA_CODEC_VOLUME("Front Playback Volume", 0x0f, 0x0, HDA_OUTPUT
),
3612 HDA_BIND_MUTE("Front Playback Switch", 0x0f, 2, HDA_INPUT
),
3613 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
3614 HDA_BIND_MUTE("Surround Playback Switch", 0x0c, 2, HDA_INPUT
),
3615 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0d, 1, 0x0, HDA_OUTPUT
),
3616 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0d, 2, 0x0, HDA_OUTPUT
),
3617 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0d, 1, 2, HDA_INPUT
),
3618 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0d, 2, 2, HDA_INPUT
),
3619 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
3620 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
3621 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x06, HDA_INPUT
),
3622 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x06, HDA_INPUT
),
3623 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x0b, 0x07, HDA_INPUT
),
3624 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x0b, 0x07, HDA_INPUT
),
3626 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
3627 .name
= "Channel Mode",
3628 .info
= alc_ch_mode_info
,
3629 .get
= alc_ch_mode_get
,
3630 .put
= alc_ch_mode_put
,
3635 static struct hda_verb alc880_lg_init_verbs
[] = {
3636 /* set capture source to mic-in */
3637 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
3638 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
3639 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
3640 /* mute all amp mixer inputs */
3641 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(5)},
3642 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(6)},
3643 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(7)},
3644 /* line-in to input */
3645 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
3646 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3648 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
3649 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3651 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
3652 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3653 /* mic-in to input */
3654 {0x11, AC_VERB_SET_CONNECT_SEL
, 0x01},
3655 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
3656 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3658 {0x13, AC_VERB_SET_CONNECT_SEL
, 0x03},
3659 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
3660 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3662 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
3666 /* toggle speaker-output according to the hp-jack state */
3667 static void alc880_lg_setup(struct hda_codec
*codec
)
3669 struct alc_spec
*spec
= codec
->spec
;
3671 spec
->autocfg
.hp_pins
[0] = 0x1b;
3672 spec
->autocfg
.speaker_pins
[0] = 0x17;
3681 * Built-in Mic-In: 0x19
3687 static struct hda_input_mux alc880_lg_lw_capture_source
= {
3691 { "Internal Mic", 0x1 },
3696 #define alc880_lg_lw_modes alc880_threestack_modes
3698 static struct snd_kcontrol_new alc880_lg_lw_mixer
[] = {
3699 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
3700 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
3701 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0f, 0x0, HDA_OUTPUT
),
3702 HDA_BIND_MUTE("Surround Playback Switch", 0x0f, 2, HDA_INPUT
),
3703 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT
),
3704 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT
),
3705 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT
),
3706 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT
),
3707 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
3708 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
3709 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
3710 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
3711 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x0b, 0x01, HDA_INPUT
),
3712 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x0b, 0x01, HDA_INPUT
),
3714 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
3715 .name
= "Channel Mode",
3716 .info
= alc_ch_mode_info
,
3717 .get
= alc_ch_mode_get
,
3718 .put
= alc_ch_mode_put
,
3723 static struct hda_verb alc880_lg_lw_init_verbs
[] = {
3724 {0x13, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* HP */
3725 {0x10, AC_VERB_SET_CONNECT_SEL
, 0x02}, /* mic/clfe */
3726 {0x12, AC_VERB_SET_CONNECT_SEL
, 0x03}, /* line/surround */
3728 /* set capture source to mic-in */
3729 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
3730 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
3731 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
3732 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(7)},
3734 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
3735 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3737 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
3738 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3739 /* mic-in to input */
3740 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
3741 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3743 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
3744 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3746 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
3750 /* toggle speaker-output according to the hp-jack state */
3751 static void alc880_lg_lw_setup(struct hda_codec
*codec
)
3753 struct alc_spec
*spec
= codec
->spec
;
3755 spec
->autocfg
.hp_pins
[0] = 0x1b;
3756 spec
->autocfg
.speaker_pins
[0] = 0x14;
3759 static struct snd_kcontrol_new alc880_medion_rim_mixer
[] = {
3760 HDA_CODEC_VOLUME("Master Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
3761 HDA_BIND_MUTE("Master Playback Switch", 0x0c, 2, HDA_INPUT
),
3762 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
3763 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
3764 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
3765 HDA_CODEC_MUTE("Internal Playback Switch", 0x0b, 0x1, HDA_INPUT
),
3769 static struct hda_input_mux alc880_medion_rim_capture_source
= {
3773 { "Internal Mic", 0x1 },
3777 static struct hda_verb alc880_medion_rim_init_verbs
[] = {
3778 {0x13, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* HP */
3780 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
3781 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3783 /* Mic1 (rear panel) pin widget for input and vref at 80% */
3784 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
3785 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
3786 /* Mic2 (as headphone out) for HP output */
3787 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
3788 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
3789 /* Internal Speaker */
3790 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
3791 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3793 {0x20, AC_VERB_SET_COEF_INDEX
, 0x07},
3794 {0x20, AC_VERB_SET_PROC_COEF
, 0x3060},
3796 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
3800 /* toggle speaker-output according to the hp-jack state */
3801 static void alc880_medion_rim_automute(struct hda_codec
*codec
)
3803 struct alc_spec
*spec
= codec
->spec
;
3804 alc_automute_amp(codec
);
3806 if (spec
->jack_present
)
3807 snd_hda_codec_write(codec
, 0x01, 0, AC_VERB_SET_GPIO_DATA
, 0);
3809 snd_hda_codec_write(codec
, 0x01, 0, AC_VERB_SET_GPIO_DATA
, 2);
3812 static void alc880_medion_rim_unsol_event(struct hda_codec
*codec
,
3815 /* Looks like the unsol event is incompatible with the standard
3816 * definition. 4bit tag is placed at 28 bit!
3818 if ((res
>> 28) == ALC880_HP_EVENT
)
3819 alc880_medion_rim_automute(codec
);
3822 static void alc880_medion_rim_setup(struct hda_codec
*codec
)
3824 struct alc_spec
*spec
= codec
->spec
;
3826 spec
->autocfg
.hp_pins
[0] = 0x14;
3827 spec
->autocfg
.speaker_pins
[0] = 0x1b;
3830 #ifdef CONFIG_SND_HDA_POWER_SAVE
3831 static struct hda_amp_list alc880_loopbacks
[] = {
3832 { 0x0b, HDA_INPUT
, 0 },
3833 { 0x0b, HDA_INPUT
, 1 },
3834 { 0x0b, HDA_INPUT
, 2 },
3835 { 0x0b, HDA_INPUT
, 3 },
3836 { 0x0b, HDA_INPUT
, 4 },
3840 static struct hda_amp_list alc880_lg_loopbacks
[] = {
3841 { 0x0b, HDA_INPUT
, 1 },
3842 { 0x0b, HDA_INPUT
, 6 },
3843 { 0x0b, HDA_INPUT
, 7 },
3852 static void alc_init_special_input_src(struct hda_codec
*codec
);
3854 static int alc_init(struct hda_codec
*codec
)
3856 struct alc_spec
*spec
= codec
->spec
;
3860 alc_auto_init_amp(codec
, spec
->init_amp
);
3862 for (i
= 0; i
< spec
->num_init_verbs
; i
++)
3863 snd_hda_sequence_write(codec
, spec
->init_verbs
[i
]);
3864 alc_init_special_input_src(codec
);
3866 if (spec
->init_hook
)
3867 spec
->init_hook(codec
);
3869 alc_apply_fixup(codec
, ALC_FIXUP_ACT_INIT
);
3871 hda_call_check_power_status(codec
, 0x01);
3875 static void alc_unsol_event(struct hda_codec
*codec
, unsigned int res
)
3877 struct alc_spec
*spec
= codec
->spec
;
3879 if (spec
->unsol_event
)
3880 spec
->unsol_event(codec
, res
);
3883 #ifdef CONFIG_SND_HDA_POWER_SAVE
3884 static int alc_check_power_status(struct hda_codec
*codec
, hda_nid_t nid
)
3886 struct alc_spec
*spec
= codec
->spec
;
3887 return snd_hda_check_amp_list_power(codec
, &spec
->loopback
, nid
);
3892 * Analog playback callbacks
3894 static int alc880_playback_pcm_open(struct hda_pcm_stream
*hinfo
,
3895 struct hda_codec
*codec
,
3896 struct snd_pcm_substream
*substream
)
3898 struct alc_spec
*spec
= codec
->spec
;
3899 return snd_hda_multi_out_analog_open(codec
, &spec
->multiout
, substream
,
3903 static int alc880_playback_pcm_prepare(struct hda_pcm_stream
*hinfo
,
3904 struct hda_codec
*codec
,
3905 unsigned int stream_tag
,
3906 unsigned int format
,
3907 struct snd_pcm_substream
*substream
)
3909 struct alc_spec
*spec
= codec
->spec
;
3910 return snd_hda_multi_out_analog_prepare(codec
, &spec
->multiout
,
3911 stream_tag
, format
, substream
);
3914 static int alc880_playback_pcm_cleanup(struct hda_pcm_stream
*hinfo
,
3915 struct hda_codec
*codec
,
3916 struct snd_pcm_substream
*substream
)
3918 struct alc_spec
*spec
= codec
->spec
;
3919 return snd_hda_multi_out_analog_cleanup(codec
, &spec
->multiout
);
3925 static int alc880_dig_playback_pcm_open(struct hda_pcm_stream
*hinfo
,
3926 struct hda_codec
*codec
,
3927 struct snd_pcm_substream
*substream
)
3929 struct alc_spec
*spec
= codec
->spec
;
3930 return snd_hda_multi_out_dig_open(codec
, &spec
->multiout
);
3933 static int alc880_dig_playback_pcm_prepare(struct hda_pcm_stream
*hinfo
,
3934 struct hda_codec
*codec
,
3935 unsigned int stream_tag
,
3936 unsigned int format
,
3937 struct snd_pcm_substream
*substream
)
3939 struct alc_spec
*spec
= codec
->spec
;
3940 return snd_hda_multi_out_dig_prepare(codec
, &spec
->multiout
,
3941 stream_tag
, format
, substream
);
3944 static int alc880_dig_playback_pcm_cleanup(struct hda_pcm_stream
*hinfo
,
3945 struct hda_codec
*codec
,
3946 struct snd_pcm_substream
*substream
)
3948 struct alc_spec
*spec
= codec
->spec
;
3949 return snd_hda_multi_out_dig_cleanup(codec
, &spec
->multiout
);
3952 static int alc880_dig_playback_pcm_close(struct hda_pcm_stream
*hinfo
,
3953 struct hda_codec
*codec
,
3954 struct snd_pcm_substream
*substream
)
3956 struct alc_spec
*spec
= codec
->spec
;
3957 return snd_hda_multi_out_dig_close(codec
, &spec
->multiout
);
3963 static int alc880_alt_capture_pcm_prepare(struct hda_pcm_stream
*hinfo
,
3964 struct hda_codec
*codec
,
3965 unsigned int stream_tag
,
3966 unsigned int format
,
3967 struct snd_pcm_substream
*substream
)
3969 struct alc_spec
*spec
= codec
->spec
;
3971 snd_hda_codec_setup_stream(codec
, spec
->adc_nids
[substream
->number
+ 1],
3972 stream_tag
, 0, format
);
3976 static int alc880_alt_capture_pcm_cleanup(struct hda_pcm_stream
*hinfo
,
3977 struct hda_codec
*codec
,
3978 struct snd_pcm_substream
*substream
)
3980 struct alc_spec
*spec
= codec
->spec
;
3982 snd_hda_codec_cleanup_stream(codec
,
3983 spec
->adc_nids
[substream
->number
+ 1]);
3987 /* analog capture with dynamic dual-adc changes */
3988 static int dualmic_capture_pcm_prepare(struct hda_pcm_stream
*hinfo
,
3989 struct hda_codec
*codec
,
3990 unsigned int stream_tag
,
3991 unsigned int format
,
3992 struct snd_pcm_substream
*substream
)
3994 struct alc_spec
*spec
= codec
->spec
;
3995 spec
->cur_adc
= spec
->adc_nids
[spec
->cur_adc_idx
];
3996 spec
->cur_adc_stream_tag
= stream_tag
;
3997 spec
->cur_adc_format
= format
;
3998 snd_hda_codec_setup_stream(codec
, spec
->cur_adc
, stream_tag
, 0, format
);
4002 static int dualmic_capture_pcm_cleanup(struct hda_pcm_stream
*hinfo
,
4003 struct hda_codec
*codec
,
4004 struct snd_pcm_substream
*substream
)
4006 struct alc_spec
*spec
= codec
->spec
;
4007 snd_hda_codec_cleanup_stream(codec
, spec
->cur_adc
);
4012 static struct hda_pcm_stream dualmic_pcm_analog_capture
= {
4016 .nid
= 0, /* fill later */
4018 .prepare
= dualmic_capture_pcm_prepare
,
4019 .cleanup
= dualmic_capture_pcm_cleanup
4025 static struct hda_pcm_stream alc880_pcm_analog_playback
= {
4029 /* NID is set in alc_build_pcms */
4031 .open
= alc880_playback_pcm_open
,
4032 .prepare
= alc880_playback_pcm_prepare
,
4033 .cleanup
= alc880_playback_pcm_cleanup
4037 static struct hda_pcm_stream alc880_pcm_analog_capture
= {
4041 /* NID is set in alc_build_pcms */
4044 static struct hda_pcm_stream alc880_pcm_analog_alt_playback
= {
4048 /* NID is set in alc_build_pcms */
4051 static struct hda_pcm_stream alc880_pcm_analog_alt_capture
= {
4052 .substreams
= 2, /* can be overridden */
4055 /* NID is set in alc_build_pcms */
4057 .prepare
= alc880_alt_capture_pcm_prepare
,
4058 .cleanup
= alc880_alt_capture_pcm_cleanup
4062 static struct hda_pcm_stream alc880_pcm_digital_playback
= {
4066 /* NID is set in alc_build_pcms */
4068 .open
= alc880_dig_playback_pcm_open
,
4069 .close
= alc880_dig_playback_pcm_close
,
4070 .prepare
= alc880_dig_playback_pcm_prepare
,
4071 .cleanup
= alc880_dig_playback_pcm_cleanup
4075 static struct hda_pcm_stream alc880_pcm_digital_capture
= {
4079 /* NID is set in alc_build_pcms */
4082 /* Used by alc_build_pcms to flag that a PCM has no playback stream */
4083 static struct hda_pcm_stream alc_pcm_null_stream
= {
4089 static int alc_build_pcms(struct hda_codec
*codec
)
4091 struct alc_spec
*spec
= codec
->spec
;
4092 struct hda_pcm
*info
= spec
->pcm_rec
;
4095 codec
->num_pcms
= 1;
4096 codec
->pcm_info
= info
;
4098 if (spec
->no_analog
)
4101 snprintf(spec
->stream_name_analog
, sizeof(spec
->stream_name_analog
),
4102 "%s Analog", codec
->chip_name
);
4103 info
->name
= spec
->stream_name_analog
;
4105 if (spec
->stream_analog_playback
) {
4106 if (snd_BUG_ON(!spec
->multiout
.dac_nids
))
4108 info
->stream
[SNDRV_PCM_STREAM_PLAYBACK
] = *(spec
->stream_analog_playback
);
4109 info
->stream
[SNDRV_PCM_STREAM_PLAYBACK
].nid
= spec
->multiout
.dac_nids
[0];
4111 if (spec
->stream_analog_capture
) {
4112 if (snd_BUG_ON(!spec
->adc_nids
))
4114 info
->stream
[SNDRV_PCM_STREAM_CAPTURE
] = *(spec
->stream_analog_capture
);
4115 info
->stream
[SNDRV_PCM_STREAM_CAPTURE
].nid
= spec
->adc_nids
[0];
4118 if (spec
->channel_mode
) {
4119 info
->stream
[SNDRV_PCM_STREAM_PLAYBACK
].channels_max
= 0;
4120 for (i
= 0; i
< spec
->num_channel_mode
; i
++) {
4121 if (spec
->channel_mode
[i
].channels
> info
->stream
[SNDRV_PCM_STREAM_PLAYBACK
].channels_max
) {
4122 info
->stream
[SNDRV_PCM_STREAM_PLAYBACK
].channels_max
= spec
->channel_mode
[i
].channels
;
4128 /* SPDIF for stream index #1 */
4129 if (spec
->multiout
.dig_out_nid
|| spec
->dig_in_nid
) {
4130 snprintf(spec
->stream_name_digital
,
4131 sizeof(spec
->stream_name_digital
),
4132 "%s Digital", codec
->chip_name
);
4133 codec
->num_pcms
= 2;
4134 codec
->slave_dig_outs
= spec
->multiout
.slave_dig_outs
;
4135 info
= spec
->pcm_rec
+ 1;
4136 info
->name
= spec
->stream_name_digital
;
4137 if (spec
->dig_out_type
)
4138 info
->pcm_type
= spec
->dig_out_type
;
4140 info
->pcm_type
= HDA_PCM_TYPE_SPDIF
;
4141 if (spec
->multiout
.dig_out_nid
&&
4142 spec
->stream_digital_playback
) {
4143 info
->stream
[SNDRV_PCM_STREAM_PLAYBACK
] = *(spec
->stream_digital_playback
);
4144 info
->stream
[SNDRV_PCM_STREAM_PLAYBACK
].nid
= spec
->multiout
.dig_out_nid
;
4146 if (spec
->dig_in_nid
&&
4147 spec
->stream_digital_capture
) {
4148 info
->stream
[SNDRV_PCM_STREAM_CAPTURE
] = *(spec
->stream_digital_capture
);
4149 info
->stream
[SNDRV_PCM_STREAM_CAPTURE
].nid
= spec
->dig_in_nid
;
4151 /* FIXME: do we need this for all Realtek codec models? */
4152 codec
->spdif_status_reset
= 1;
4155 if (spec
->no_analog
)
4158 /* If the use of more than one ADC is requested for the current
4159 * model, configure a second analog capture-only PCM.
4161 /* Additional Analaog capture for index #2 */
4162 if ((spec
->alt_dac_nid
&& spec
->stream_analog_alt_playback
) ||
4163 (spec
->num_adc_nids
> 1 && spec
->stream_analog_alt_capture
)) {
4164 codec
->num_pcms
= 3;
4165 info
= spec
->pcm_rec
+ 2;
4166 info
->name
= spec
->stream_name_analog
;
4167 if (spec
->alt_dac_nid
) {
4168 info
->stream
[SNDRV_PCM_STREAM_PLAYBACK
] =
4169 *spec
->stream_analog_alt_playback
;
4170 info
->stream
[SNDRV_PCM_STREAM_PLAYBACK
].nid
=
4173 info
->stream
[SNDRV_PCM_STREAM_PLAYBACK
] =
4174 alc_pcm_null_stream
;
4175 info
->stream
[SNDRV_PCM_STREAM_PLAYBACK
].nid
= 0;
4177 if (spec
->num_adc_nids
> 1) {
4178 info
->stream
[SNDRV_PCM_STREAM_CAPTURE
] =
4179 *spec
->stream_analog_alt_capture
;
4180 info
->stream
[SNDRV_PCM_STREAM_CAPTURE
].nid
=
4182 info
->stream
[SNDRV_PCM_STREAM_CAPTURE
].substreams
=
4183 spec
->num_adc_nids
- 1;
4185 info
->stream
[SNDRV_PCM_STREAM_CAPTURE
] =
4186 alc_pcm_null_stream
;
4187 info
->stream
[SNDRV_PCM_STREAM_CAPTURE
].nid
= 0;
4194 static inline void alc_shutup(struct hda_codec
*codec
)
4196 snd_hda_shutup_pins(codec
);
4199 static void alc_free_kctls(struct hda_codec
*codec
)
4201 struct alc_spec
*spec
= codec
->spec
;
4203 if (spec
->kctls
.list
) {
4204 struct snd_kcontrol_new
*kctl
= spec
->kctls
.list
;
4206 for (i
= 0; i
< spec
->kctls
.used
; i
++)
4207 kfree(kctl
[i
].name
);
4209 snd_array_free(&spec
->kctls
);
4212 static void alc_free(struct hda_codec
*codec
)
4214 struct alc_spec
*spec
= codec
->spec
;
4220 snd_hda_input_jack_free(codec
);
4221 alc_free_kctls(codec
);
4223 snd_hda_detach_beep_device(codec
);
4226 #ifdef CONFIG_SND_HDA_POWER_SAVE
4227 static void alc_power_eapd(struct hda_codec
*codec
)
4229 /* We currently only handle front, HP */
4230 switch (codec
->vendor_id
) {
4232 set_eapd(codec
, 0x0f, 0);
4233 set_eapd(codec
, 0x10, 0);
4247 set_eapd(codec
, 0x14, 0);
4248 set_eapd(codec
, 0x15, 0);
4253 static int alc_suspend(struct hda_codec
*codec
, pm_message_t state
)
4255 struct alc_spec
*spec
= codec
->spec
;
4257 if (spec
&& spec
->power_hook
)
4258 spec
->power_hook(codec
);
4263 #ifdef SND_HDA_NEEDS_RESUME
4264 static int alc_resume(struct hda_codec
*codec
)
4266 codec
->patch_ops
.init(codec
);
4267 snd_hda_codec_resume_amp(codec
);
4268 snd_hda_codec_resume_cache(codec
);
4269 hda_call_check_power_status(codec
, 0x01);
4276 static struct hda_codec_ops alc_patch_ops
= {
4277 .build_controls
= alc_build_controls
,
4278 .build_pcms
= alc_build_pcms
,
4281 .unsol_event
= alc_unsol_event
,
4282 #ifdef SND_HDA_NEEDS_RESUME
4283 .resume
= alc_resume
,
4285 #ifdef CONFIG_SND_HDA_POWER_SAVE
4286 .suspend
= alc_suspend
,
4287 .check_power_status
= alc_check_power_status
,
4289 .reboot_notify
= alc_shutup
,
4292 /* replace the codec chip_name with the given string */
4293 static int alc_codec_rename(struct hda_codec
*codec
, const char *name
)
4295 kfree(codec
->chip_name
);
4296 codec
->chip_name
= kstrdup(name
, GFP_KERNEL
);
4297 if (!codec
->chip_name
) {
4305 * Test configuration for debugging
4307 * Almost all inputs/outputs are enabled. I/O pins can be configured via
4310 #ifdef CONFIG_SND_DEBUG
4311 static hda_nid_t alc880_test_dac_nids
[4] = {
4312 0x02, 0x03, 0x04, 0x05
4315 static struct hda_input_mux alc880_test_capture_source
= {
4324 { "Surround", 0x6 },
4328 static struct hda_channel_mode alc880_test_modes
[4] = {
4335 static int alc_test_pin_ctl_info(struct snd_kcontrol
*kcontrol
,
4336 struct snd_ctl_elem_info
*uinfo
)
4338 static char *texts
[] = {
4339 "N/A", "Line Out", "HP Out",
4340 "In Hi-Z", "In 50%", "In Grd", "In 80%", "In 100%"
4342 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
4344 uinfo
->value
.enumerated
.items
= 8;
4345 if (uinfo
->value
.enumerated
.item
>= 8)
4346 uinfo
->value
.enumerated
.item
= 7;
4347 strcpy(uinfo
->value
.enumerated
.name
, texts
[uinfo
->value
.enumerated
.item
]);
4351 static int alc_test_pin_ctl_get(struct snd_kcontrol
*kcontrol
,
4352 struct snd_ctl_elem_value
*ucontrol
)
4354 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
4355 hda_nid_t nid
= (hda_nid_t
)kcontrol
->private_value
;
4356 unsigned int pin_ctl
, item
= 0;
4358 pin_ctl
= snd_hda_codec_read(codec
, nid
, 0,
4359 AC_VERB_GET_PIN_WIDGET_CONTROL
, 0);
4360 if (pin_ctl
& AC_PINCTL_OUT_EN
) {
4361 if (pin_ctl
& AC_PINCTL_HP_EN
)
4365 } else if (pin_ctl
& AC_PINCTL_IN_EN
) {
4366 switch (pin_ctl
& AC_PINCTL_VREFEN
) {
4367 case AC_PINCTL_VREF_HIZ
: item
= 3; break;
4368 case AC_PINCTL_VREF_50
: item
= 4; break;
4369 case AC_PINCTL_VREF_GRD
: item
= 5; break;
4370 case AC_PINCTL_VREF_80
: item
= 6; break;
4371 case AC_PINCTL_VREF_100
: item
= 7; break;
4374 ucontrol
->value
.enumerated
.item
[0] = item
;
4378 static int alc_test_pin_ctl_put(struct snd_kcontrol
*kcontrol
,
4379 struct snd_ctl_elem_value
*ucontrol
)
4381 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
4382 hda_nid_t nid
= (hda_nid_t
)kcontrol
->private_value
;
4383 static unsigned int ctls
[] = {
4384 0, AC_PINCTL_OUT_EN
, AC_PINCTL_OUT_EN
| AC_PINCTL_HP_EN
,
4385 AC_PINCTL_IN_EN
| AC_PINCTL_VREF_HIZ
,
4386 AC_PINCTL_IN_EN
| AC_PINCTL_VREF_50
,
4387 AC_PINCTL_IN_EN
| AC_PINCTL_VREF_GRD
,
4388 AC_PINCTL_IN_EN
| AC_PINCTL_VREF_80
,
4389 AC_PINCTL_IN_EN
| AC_PINCTL_VREF_100
,
4391 unsigned int old_ctl
, new_ctl
;
4393 old_ctl
= snd_hda_codec_read(codec
, nid
, 0,
4394 AC_VERB_GET_PIN_WIDGET_CONTROL
, 0);
4395 new_ctl
= ctls
[ucontrol
->value
.enumerated
.item
[0]];
4396 if (old_ctl
!= new_ctl
) {
4398 snd_hda_codec_write_cache(codec
, nid
, 0,
4399 AC_VERB_SET_PIN_WIDGET_CONTROL
,
4401 val
= ucontrol
->value
.enumerated
.item
[0] >= 3 ?
4403 snd_hda_codec_amp_stereo(codec
, nid
, HDA_OUTPUT
, 0,
4410 static int alc_test_pin_src_info(struct snd_kcontrol
*kcontrol
,
4411 struct snd_ctl_elem_info
*uinfo
)
4413 static char *texts
[] = {
4414 "Front", "Surround", "CLFE", "Side"
4416 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
4418 uinfo
->value
.enumerated
.items
= 4;
4419 if (uinfo
->value
.enumerated
.item
>= 4)
4420 uinfo
->value
.enumerated
.item
= 3;
4421 strcpy(uinfo
->value
.enumerated
.name
, texts
[uinfo
->value
.enumerated
.item
]);
4425 static int alc_test_pin_src_get(struct snd_kcontrol
*kcontrol
,
4426 struct snd_ctl_elem_value
*ucontrol
)
4428 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
4429 hda_nid_t nid
= (hda_nid_t
)kcontrol
->private_value
;
4432 sel
= snd_hda_codec_read(codec
, nid
, 0, AC_VERB_GET_CONNECT_SEL
, 0);
4433 ucontrol
->value
.enumerated
.item
[0] = sel
& 3;
4437 static int alc_test_pin_src_put(struct snd_kcontrol
*kcontrol
,
4438 struct snd_ctl_elem_value
*ucontrol
)
4440 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
4441 hda_nid_t nid
= (hda_nid_t
)kcontrol
->private_value
;
4444 sel
= snd_hda_codec_read(codec
, nid
, 0, AC_VERB_GET_CONNECT_SEL
, 0) & 3;
4445 if (ucontrol
->value
.enumerated
.item
[0] != sel
) {
4446 sel
= ucontrol
->value
.enumerated
.item
[0] & 3;
4447 snd_hda_codec_write_cache(codec
, nid
, 0,
4448 AC_VERB_SET_CONNECT_SEL
, sel
);
4454 #define PIN_CTL_TEST(xname,nid) { \
4455 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
4457 .subdevice = HDA_SUBDEV_NID_FLAG | nid, \
4458 .info = alc_test_pin_ctl_info, \
4459 .get = alc_test_pin_ctl_get, \
4460 .put = alc_test_pin_ctl_put, \
4461 .private_value = nid \
4464 #define PIN_SRC_TEST(xname,nid) { \
4465 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
4467 .subdevice = HDA_SUBDEV_NID_FLAG | nid, \
4468 .info = alc_test_pin_src_info, \
4469 .get = alc_test_pin_src_get, \
4470 .put = alc_test_pin_src_put, \
4471 .private_value = nid \
4474 static struct snd_kcontrol_new alc880_test_mixer
[] = {
4475 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
4476 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
4477 HDA_CODEC_VOLUME("CLFE Playback Volume", 0x0e, 0x0, HDA_OUTPUT
),
4478 HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT
),
4479 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
4480 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT
),
4481 HDA_BIND_MUTE("CLFE Playback Switch", 0x0e, 2, HDA_INPUT
),
4482 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT
),
4483 PIN_CTL_TEST("Front Pin Mode", 0x14),
4484 PIN_CTL_TEST("Surround Pin Mode", 0x15),
4485 PIN_CTL_TEST("CLFE Pin Mode", 0x16),
4486 PIN_CTL_TEST("Side Pin Mode", 0x17),
4487 PIN_CTL_TEST("In-1 Pin Mode", 0x18),
4488 PIN_CTL_TEST("In-2 Pin Mode", 0x19),
4489 PIN_CTL_TEST("In-3 Pin Mode", 0x1a),
4490 PIN_CTL_TEST("In-4 Pin Mode", 0x1b),
4491 PIN_SRC_TEST("In-1 Pin Source", 0x18),
4492 PIN_SRC_TEST("In-2 Pin Source", 0x19),
4493 PIN_SRC_TEST("In-3 Pin Source", 0x1a),
4494 PIN_SRC_TEST("In-4 Pin Source", 0x1b),
4495 HDA_CODEC_VOLUME("In-1 Playback Volume", 0x0b, 0x0, HDA_INPUT
),
4496 HDA_CODEC_MUTE("In-1 Playback Switch", 0x0b, 0x0, HDA_INPUT
),
4497 HDA_CODEC_VOLUME("In-2 Playback Volume", 0x0b, 0x1, HDA_INPUT
),
4498 HDA_CODEC_MUTE("In-2 Playback Switch", 0x0b, 0x1, HDA_INPUT
),
4499 HDA_CODEC_VOLUME("In-3 Playback Volume", 0x0b, 0x2, HDA_INPUT
),
4500 HDA_CODEC_MUTE("In-3 Playback Switch", 0x0b, 0x2, HDA_INPUT
),
4501 HDA_CODEC_VOLUME("In-4 Playback Volume", 0x0b, 0x3, HDA_INPUT
),
4502 HDA_CODEC_MUTE("In-4 Playback Switch", 0x0b, 0x3, HDA_INPUT
),
4503 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x4, HDA_INPUT
),
4504 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x4, HDA_INPUT
),
4506 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
4507 .name
= "Channel Mode",
4508 .info
= alc_ch_mode_info
,
4509 .get
= alc_ch_mode_get
,
4510 .put
= alc_ch_mode_put
,
4515 static struct hda_verb alc880_test_init_verbs
[] = {
4516 /* Unmute inputs of 0x0c - 0x0f */
4517 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
4518 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
4519 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
4520 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
4521 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
4522 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
4523 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
4524 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
4525 /* Vol output for 0x0c-0x0f */
4526 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
4527 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
4528 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
4529 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
4530 /* Set output pins 0x14-0x17 */
4531 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
4532 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
4533 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
4534 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
4535 /* Unmute output pins 0x14-0x17 */
4536 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
4537 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
4538 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
4539 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
4540 /* Set input pins 0x18-0x1c */
4541 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
4542 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
4543 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
4544 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
4545 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
4546 /* Mute input pins 0x18-0x1b */
4547 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
4548 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
4549 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
4550 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
4552 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
4553 {0x07, AC_VERB_SET_CONNECT_SEL
, 0x00},
4554 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
4555 {0x08, AC_VERB_SET_CONNECT_SEL
, 0x00},
4556 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
4557 {0x09, AC_VERB_SET_CONNECT_SEL
, 0x00},
4558 /* Analog input/passthru */
4559 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
4560 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
4561 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
4562 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
4563 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
4571 static const char * const alc880_models
[ALC880_MODEL_LAST
] = {
4572 [ALC880_3ST
] = "3stack",
4573 [ALC880_TCL_S700
] = "tcl",
4574 [ALC880_3ST_DIG
] = "3stack-digout",
4575 [ALC880_CLEVO
] = "clevo",
4576 [ALC880_5ST
] = "5stack",
4577 [ALC880_5ST_DIG
] = "5stack-digout",
4578 [ALC880_W810
] = "w810",
4579 [ALC880_Z71V
] = "z71v",
4580 [ALC880_6ST
] = "6stack",
4581 [ALC880_6ST_DIG
] = "6stack-digout",
4582 [ALC880_ASUS
] = "asus",
4583 [ALC880_ASUS_W1V
] = "asus-w1v",
4584 [ALC880_ASUS_DIG
] = "asus-dig",
4585 [ALC880_ASUS_DIG2
] = "asus-dig2",
4586 [ALC880_UNIWILL_DIG
] = "uniwill",
4587 [ALC880_UNIWILL_P53
] = "uniwill-p53",
4588 [ALC880_FUJITSU
] = "fujitsu",
4589 [ALC880_F1734
] = "F1734",
4591 [ALC880_LG_LW
] = "lg-lw",
4592 [ALC880_MEDION_RIM
] = "medion",
4593 #ifdef CONFIG_SND_DEBUG
4594 [ALC880_TEST
] = "test",
4596 [ALC880_AUTO
] = "auto",
4599 static struct snd_pci_quirk alc880_cfg_tbl
[] = {
4600 SND_PCI_QUIRK(0x1019, 0x0f69, "Coeus G610P", ALC880_W810
),
4601 SND_PCI_QUIRK(0x1019, 0xa880, "ECS", ALC880_5ST_DIG
),
4602 SND_PCI_QUIRK(0x1019, 0xa884, "Acer APFV", ALC880_6ST
),
4603 SND_PCI_QUIRK(0x1025, 0x0070, "ULI", ALC880_3ST_DIG
),
4604 SND_PCI_QUIRK(0x1025, 0x0077, "ULI", ALC880_6ST_DIG
),
4605 SND_PCI_QUIRK(0x1025, 0x0078, "ULI", ALC880_6ST_DIG
),
4606 SND_PCI_QUIRK(0x1025, 0x0087, "ULI", ALC880_6ST_DIG
),
4607 SND_PCI_QUIRK(0x1025, 0xe309, "ULI", ALC880_3ST_DIG
),
4608 SND_PCI_QUIRK(0x1025, 0xe310, "ULI", ALC880_3ST
),
4609 SND_PCI_QUIRK(0x1039, 0x1234, NULL
, ALC880_6ST_DIG
),
4610 SND_PCI_QUIRK(0x1043, 0x10b3, "ASUS W1V", ALC880_ASUS_W1V
),
4611 SND_PCI_QUIRK(0x1043, 0x10c2, "ASUS W6A", ALC880_ASUS_DIG
),
4612 SND_PCI_QUIRK(0x1043, 0x10c3, "ASUS Wxx", ALC880_ASUS_DIG
),
4613 SND_PCI_QUIRK(0x1043, 0x1113, "ASUS", ALC880_ASUS_DIG
),
4614 SND_PCI_QUIRK(0x1043, 0x1123, "ASUS", ALC880_ASUS_DIG
),
4615 SND_PCI_QUIRK(0x1043, 0x1173, "ASUS", ALC880_ASUS_DIG
),
4616 SND_PCI_QUIRK(0x1043, 0x1964, "ASUS Z71V", ALC880_Z71V
),
4617 /* SND_PCI_QUIRK(0x1043, 0x1964, "ASUS", ALC880_ASUS_DIG), */
4618 SND_PCI_QUIRK(0x1043, 0x1973, "ASUS", ALC880_ASUS_DIG
),
4619 SND_PCI_QUIRK(0x1043, 0x19b3, "ASUS", ALC880_ASUS_DIG
),
4620 SND_PCI_QUIRK(0x1043, 0x814e, "ASUS P5GD1 w/SPDIF", ALC880_6ST_DIG
),
4621 SND_PCI_QUIRK(0x1043, 0x8181, "ASUS P4GPL", ALC880_ASUS_DIG
),
4622 SND_PCI_QUIRK(0x1043, 0x8196, "ASUS P5GD1", ALC880_6ST
),
4623 SND_PCI_QUIRK(0x1043, 0x81b4, "ASUS", ALC880_6ST
),
4624 SND_PCI_QUIRK_VENDOR(0x1043, "ASUS", ALC880_ASUS
), /* default ASUS */
4625 SND_PCI_QUIRK(0x104d, 0x81a0, "Sony", ALC880_3ST
),
4626 SND_PCI_QUIRK(0x104d, 0x81d6, "Sony", ALC880_3ST
),
4627 SND_PCI_QUIRK(0x107b, 0x3032, "Gateway", ALC880_5ST
),
4628 SND_PCI_QUIRK(0x107b, 0x3033, "Gateway", ALC880_5ST
),
4629 SND_PCI_QUIRK(0x107b, 0x4039, "Gateway", ALC880_5ST
),
4630 SND_PCI_QUIRK(0x1297, 0xc790, "Shuttle ST20G5", ALC880_6ST_DIG
),
4631 SND_PCI_QUIRK(0x1458, 0xa102, "Gigabyte K8", ALC880_6ST_DIG
),
4632 SND_PCI_QUIRK(0x1462, 0x1150, "MSI", ALC880_6ST_DIG
),
4633 SND_PCI_QUIRK(0x1509, 0x925d, "FIC P4M", ALC880_6ST_DIG
),
4634 SND_PCI_QUIRK(0x1558, 0x0520, "Clevo m520G", ALC880_CLEVO
),
4635 SND_PCI_QUIRK(0x1558, 0x0660, "Clevo m655n", ALC880_CLEVO
),
4636 SND_PCI_QUIRK(0x1558, 0x5401, "ASUS", ALC880_ASUS_DIG2
),
4637 SND_PCI_QUIRK(0x1565, 0x8202, "Biostar", ALC880_5ST_DIG
),
4638 SND_PCI_QUIRK(0x1584, 0x9050, "Uniwill", ALC880_UNIWILL_DIG
),
4639 SND_PCI_QUIRK(0x1584, 0x9054, "Uniwill", ALC880_F1734
),
4640 SND_PCI_QUIRK(0x1584, 0x9070, "Uniwill", ALC880_UNIWILL
),
4641 SND_PCI_QUIRK(0x1584, 0x9077, "Uniwill P53", ALC880_UNIWILL_P53
),
4642 SND_PCI_QUIRK(0x161f, 0x203d, "W810", ALC880_W810
),
4643 SND_PCI_QUIRK(0x161f, 0x205d, "Medion Rim 2150", ALC880_MEDION_RIM
),
4644 SND_PCI_QUIRK(0x1695, 0x400d, "EPoX", ALC880_5ST_DIG
),
4645 SND_PCI_QUIRK(0x1695, 0x4012, "EPox EP-5LDA", ALC880_5ST_DIG
),
4646 SND_PCI_QUIRK(0x1734, 0x107c, "FSC F1734", ALC880_F1734
),
4647 SND_PCI_QUIRK(0x1734, 0x1094, "FSC Amilo M1451G", ALC880_FUJITSU
),
4648 SND_PCI_QUIRK(0x1734, 0x10ac, "FSC AMILO Xi 1526", ALC880_F1734
),
4649 SND_PCI_QUIRK(0x1734, 0x10b0, "Fujitsu", ALC880_FUJITSU
),
4650 SND_PCI_QUIRK(0x1854, 0x0018, "LG LW20", ALC880_LG_LW
),
4651 SND_PCI_QUIRK(0x1854, 0x003b, "LG", ALC880_LG
),
4652 SND_PCI_QUIRK(0x1854, 0x005f, "LG P1 Express", ALC880_LG
),
4653 SND_PCI_QUIRK(0x1854, 0x0068, "LG w1", ALC880_LG
),
4654 SND_PCI_QUIRK(0x1854, 0x0077, "LG LW25", ALC880_LG_LW
),
4655 SND_PCI_QUIRK(0x19db, 0x4188, "TCL S700", ALC880_TCL_S700
),
4656 SND_PCI_QUIRK(0x2668, 0x8086, NULL
, ALC880_6ST_DIG
), /* broken BIOS */
4657 SND_PCI_QUIRK(0x8086, 0x2668, NULL
, ALC880_6ST_DIG
),
4658 SND_PCI_QUIRK(0x8086, 0xa100, "Intel mobo", ALC880_5ST_DIG
),
4659 SND_PCI_QUIRK(0x8086, 0xd400, "Intel mobo", ALC880_5ST_DIG
),
4660 SND_PCI_QUIRK(0x8086, 0xd401, "Intel mobo", ALC880_5ST_DIG
),
4661 SND_PCI_QUIRK(0x8086, 0xd402, "Intel mobo", ALC880_3ST_DIG
),
4662 SND_PCI_QUIRK(0x8086, 0xe224, "Intel mobo", ALC880_5ST_DIG
),
4663 SND_PCI_QUIRK(0x8086, 0xe305, "Intel mobo", ALC880_3ST_DIG
),
4664 SND_PCI_QUIRK(0x8086, 0xe308, "Intel mobo", ALC880_3ST_DIG
),
4665 SND_PCI_QUIRK(0x8086, 0xe400, "Intel mobo", ALC880_5ST_DIG
),
4666 SND_PCI_QUIRK(0x8086, 0xe401, "Intel mobo", ALC880_5ST_DIG
),
4667 SND_PCI_QUIRK(0x8086, 0xe402, "Intel mobo", ALC880_5ST_DIG
),
4669 SND_PCI_QUIRK_VENDOR(0x8086, "Intel mobo", ALC880_3ST
),
4670 SND_PCI_QUIRK(0xa0a0, 0x0560, "AOpen i915GMm-HFS", ALC880_5ST_DIG
),
4671 SND_PCI_QUIRK(0xe803, 0x1019, NULL
, ALC880_6ST_DIG
),
4676 * ALC880 codec presets
4678 static struct alc_config_preset alc880_presets
[] = {
4680 .mixers
= { alc880_three_stack_mixer
},
4681 .init_verbs
= { alc880_volume_init_verbs
,
4682 alc880_pin_3stack_init_verbs
},
4683 .num_dacs
= ARRAY_SIZE(alc880_dac_nids
),
4684 .dac_nids
= alc880_dac_nids
,
4685 .num_channel_mode
= ARRAY_SIZE(alc880_threestack_modes
),
4686 .channel_mode
= alc880_threestack_modes
,
4688 .input_mux
= &alc880_capture_source
,
4690 [ALC880_3ST_DIG
] = {
4691 .mixers
= { alc880_three_stack_mixer
},
4692 .init_verbs
= { alc880_volume_init_verbs
,
4693 alc880_pin_3stack_init_verbs
},
4694 .num_dacs
= ARRAY_SIZE(alc880_dac_nids
),
4695 .dac_nids
= alc880_dac_nids
,
4696 .dig_out_nid
= ALC880_DIGOUT_NID
,
4697 .num_channel_mode
= ARRAY_SIZE(alc880_threestack_modes
),
4698 .channel_mode
= alc880_threestack_modes
,
4700 .input_mux
= &alc880_capture_source
,
4702 [ALC880_TCL_S700
] = {
4703 .mixers
= { alc880_tcl_s700_mixer
},
4704 .init_verbs
= { alc880_volume_init_verbs
,
4705 alc880_pin_tcl_S700_init_verbs
,
4706 alc880_gpio2_init_verbs
},
4707 .num_dacs
= ARRAY_SIZE(alc880_dac_nids
),
4708 .dac_nids
= alc880_dac_nids
,
4709 .adc_nids
= alc880_adc_nids_alt
, /* FIXME: correct? */
4710 .num_adc_nids
= 1, /* single ADC */
4712 .num_channel_mode
= ARRAY_SIZE(alc880_2_jack_modes
),
4713 .channel_mode
= alc880_2_jack_modes
,
4714 .input_mux
= &alc880_capture_source
,
4717 .mixers
= { alc880_three_stack_mixer
,
4718 alc880_five_stack_mixer
},
4719 .init_verbs
= { alc880_volume_init_verbs
,
4720 alc880_pin_5stack_init_verbs
},
4721 .num_dacs
= ARRAY_SIZE(alc880_dac_nids
),
4722 .dac_nids
= alc880_dac_nids
,
4723 .num_channel_mode
= ARRAY_SIZE(alc880_fivestack_modes
),
4724 .channel_mode
= alc880_fivestack_modes
,
4725 .input_mux
= &alc880_capture_source
,
4727 [ALC880_5ST_DIG
] = {
4728 .mixers
= { alc880_three_stack_mixer
,
4729 alc880_five_stack_mixer
},
4730 .init_verbs
= { alc880_volume_init_verbs
,
4731 alc880_pin_5stack_init_verbs
},
4732 .num_dacs
= ARRAY_SIZE(alc880_dac_nids
),
4733 .dac_nids
= alc880_dac_nids
,
4734 .dig_out_nid
= ALC880_DIGOUT_NID
,
4735 .num_channel_mode
= ARRAY_SIZE(alc880_fivestack_modes
),
4736 .channel_mode
= alc880_fivestack_modes
,
4737 .input_mux
= &alc880_capture_source
,
4740 .mixers
= { alc880_six_stack_mixer
},
4741 .init_verbs
= { alc880_volume_init_verbs
,
4742 alc880_pin_6stack_init_verbs
},
4743 .num_dacs
= ARRAY_SIZE(alc880_6st_dac_nids
),
4744 .dac_nids
= alc880_6st_dac_nids
,
4745 .num_channel_mode
= ARRAY_SIZE(alc880_sixstack_modes
),
4746 .channel_mode
= alc880_sixstack_modes
,
4747 .input_mux
= &alc880_6stack_capture_source
,
4749 [ALC880_6ST_DIG
] = {
4750 .mixers
= { alc880_six_stack_mixer
},
4751 .init_verbs
= { alc880_volume_init_verbs
,
4752 alc880_pin_6stack_init_verbs
},
4753 .num_dacs
= ARRAY_SIZE(alc880_6st_dac_nids
),
4754 .dac_nids
= alc880_6st_dac_nids
,
4755 .dig_out_nid
= ALC880_DIGOUT_NID
,
4756 .num_channel_mode
= ARRAY_SIZE(alc880_sixstack_modes
),
4757 .channel_mode
= alc880_sixstack_modes
,
4758 .input_mux
= &alc880_6stack_capture_source
,
4761 .mixers
= { alc880_w810_base_mixer
},
4762 .init_verbs
= { alc880_volume_init_verbs
,
4763 alc880_pin_w810_init_verbs
,
4764 alc880_gpio2_init_verbs
},
4765 .num_dacs
= ARRAY_SIZE(alc880_w810_dac_nids
),
4766 .dac_nids
= alc880_w810_dac_nids
,
4767 .dig_out_nid
= ALC880_DIGOUT_NID
,
4768 .num_channel_mode
= ARRAY_SIZE(alc880_w810_modes
),
4769 .channel_mode
= alc880_w810_modes
,
4770 .input_mux
= &alc880_capture_source
,
4773 .mixers
= { alc880_z71v_mixer
},
4774 .init_verbs
= { alc880_volume_init_verbs
,
4775 alc880_pin_z71v_init_verbs
},
4776 .num_dacs
= ARRAY_SIZE(alc880_z71v_dac_nids
),
4777 .dac_nids
= alc880_z71v_dac_nids
,
4778 .dig_out_nid
= ALC880_DIGOUT_NID
,
4780 .num_channel_mode
= ARRAY_SIZE(alc880_2_jack_modes
),
4781 .channel_mode
= alc880_2_jack_modes
,
4782 .input_mux
= &alc880_capture_source
,
4785 .mixers
= { alc880_f1734_mixer
},
4786 .init_verbs
= { alc880_volume_init_verbs
,
4787 alc880_pin_f1734_init_verbs
},
4788 .num_dacs
= ARRAY_SIZE(alc880_f1734_dac_nids
),
4789 .dac_nids
= alc880_f1734_dac_nids
,
4791 .num_channel_mode
= ARRAY_SIZE(alc880_2_jack_modes
),
4792 .channel_mode
= alc880_2_jack_modes
,
4793 .input_mux
= &alc880_f1734_capture_source
,
4794 .unsol_event
= alc880_uniwill_p53_unsol_event
,
4795 .setup
= alc880_uniwill_p53_setup
,
4796 .init_hook
= alc_automute_amp
,
4799 .mixers
= { alc880_asus_mixer
},
4800 .init_verbs
= { alc880_volume_init_verbs
,
4801 alc880_pin_asus_init_verbs
,
4802 alc880_gpio1_init_verbs
},
4803 .num_dacs
= ARRAY_SIZE(alc880_asus_dac_nids
),
4804 .dac_nids
= alc880_asus_dac_nids
,
4805 .num_channel_mode
= ARRAY_SIZE(alc880_asus_modes
),
4806 .channel_mode
= alc880_asus_modes
,
4808 .input_mux
= &alc880_capture_source
,
4810 [ALC880_ASUS_DIG
] = {
4811 .mixers
= { alc880_asus_mixer
},
4812 .init_verbs
= { alc880_volume_init_verbs
,
4813 alc880_pin_asus_init_verbs
,
4814 alc880_gpio1_init_verbs
},
4815 .num_dacs
= ARRAY_SIZE(alc880_asus_dac_nids
),
4816 .dac_nids
= alc880_asus_dac_nids
,
4817 .dig_out_nid
= ALC880_DIGOUT_NID
,
4818 .num_channel_mode
= ARRAY_SIZE(alc880_asus_modes
),
4819 .channel_mode
= alc880_asus_modes
,
4821 .input_mux
= &alc880_capture_source
,
4823 [ALC880_ASUS_DIG2
] = {
4824 .mixers
= { alc880_asus_mixer
},
4825 .init_verbs
= { alc880_volume_init_verbs
,
4826 alc880_pin_asus_init_verbs
,
4827 alc880_gpio2_init_verbs
}, /* use GPIO2 */
4828 .num_dacs
= ARRAY_SIZE(alc880_asus_dac_nids
),
4829 .dac_nids
= alc880_asus_dac_nids
,
4830 .dig_out_nid
= ALC880_DIGOUT_NID
,
4831 .num_channel_mode
= ARRAY_SIZE(alc880_asus_modes
),
4832 .channel_mode
= alc880_asus_modes
,
4834 .input_mux
= &alc880_capture_source
,
4836 [ALC880_ASUS_W1V
] = {
4837 .mixers
= { alc880_asus_mixer
, alc880_asus_w1v_mixer
},
4838 .init_verbs
= { alc880_volume_init_verbs
,
4839 alc880_pin_asus_init_verbs
,
4840 alc880_gpio1_init_verbs
},
4841 .num_dacs
= ARRAY_SIZE(alc880_asus_dac_nids
),
4842 .dac_nids
= alc880_asus_dac_nids
,
4843 .dig_out_nid
= ALC880_DIGOUT_NID
,
4844 .num_channel_mode
= ARRAY_SIZE(alc880_asus_modes
),
4845 .channel_mode
= alc880_asus_modes
,
4847 .input_mux
= &alc880_capture_source
,
4849 [ALC880_UNIWILL_DIG
] = {
4850 .mixers
= { alc880_asus_mixer
},
4851 .init_verbs
= { alc880_volume_init_verbs
,
4852 alc880_pin_asus_init_verbs
},
4853 .num_dacs
= ARRAY_SIZE(alc880_asus_dac_nids
),
4854 .dac_nids
= alc880_asus_dac_nids
,
4855 .dig_out_nid
= ALC880_DIGOUT_NID
,
4856 .num_channel_mode
= ARRAY_SIZE(alc880_asus_modes
),
4857 .channel_mode
= alc880_asus_modes
,
4859 .input_mux
= &alc880_capture_source
,
4861 [ALC880_UNIWILL
] = {
4862 .mixers
= { alc880_uniwill_mixer
},
4863 .init_verbs
= { alc880_volume_init_verbs
,
4864 alc880_uniwill_init_verbs
},
4865 .num_dacs
= ARRAY_SIZE(alc880_asus_dac_nids
),
4866 .dac_nids
= alc880_asus_dac_nids
,
4867 .dig_out_nid
= ALC880_DIGOUT_NID
,
4868 .num_channel_mode
= ARRAY_SIZE(alc880_threestack_modes
),
4869 .channel_mode
= alc880_threestack_modes
,
4871 .input_mux
= &alc880_capture_source
,
4872 .unsol_event
= alc880_uniwill_unsol_event
,
4873 .setup
= alc880_uniwill_setup
,
4874 .init_hook
= alc880_uniwill_init_hook
,
4876 [ALC880_UNIWILL_P53
] = {
4877 .mixers
= { alc880_uniwill_p53_mixer
},
4878 .init_verbs
= { alc880_volume_init_verbs
,
4879 alc880_uniwill_p53_init_verbs
},
4880 .num_dacs
= ARRAY_SIZE(alc880_asus_dac_nids
),
4881 .dac_nids
= alc880_asus_dac_nids
,
4882 .num_channel_mode
= ARRAY_SIZE(alc880_w810_modes
),
4883 .channel_mode
= alc880_threestack_modes
,
4884 .input_mux
= &alc880_capture_source
,
4885 .unsol_event
= alc880_uniwill_p53_unsol_event
,
4886 .setup
= alc880_uniwill_p53_setup
,
4887 .init_hook
= alc_automute_amp
,
4889 [ALC880_FUJITSU
] = {
4890 .mixers
= { alc880_fujitsu_mixer
},
4891 .init_verbs
= { alc880_volume_init_verbs
,
4892 alc880_uniwill_p53_init_verbs
,
4893 alc880_beep_init_verbs
},
4894 .num_dacs
= ARRAY_SIZE(alc880_dac_nids
),
4895 .dac_nids
= alc880_dac_nids
,
4896 .dig_out_nid
= ALC880_DIGOUT_NID
,
4897 .num_channel_mode
= ARRAY_SIZE(alc880_2_jack_modes
),
4898 .channel_mode
= alc880_2_jack_modes
,
4899 .input_mux
= &alc880_capture_source
,
4900 .unsol_event
= alc880_uniwill_p53_unsol_event
,
4901 .setup
= alc880_uniwill_p53_setup
,
4902 .init_hook
= alc_automute_amp
,
4905 .mixers
= { alc880_three_stack_mixer
},
4906 .init_verbs
= { alc880_volume_init_verbs
,
4907 alc880_pin_clevo_init_verbs
},
4908 .num_dacs
= ARRAY_SIZE(alc880_dac_nids
),
4909 .dac_nids
= alc880_dac_nids
,
4911 .num_channel_mode
= ARRAY_SIZE(alc880_threestack_modes
),
4912 .channel_mode
= alc880_threestack_modes
,
4914 .input_mux
= &alc880_capture_source
,
4917 .mixers
= { alc880_lg_mixer
},
4918 .init_verbs
= { alc880_volume_init_verbs
,
4919 alc880_lg_init_verbs
},
4920 .num_dacs
= ARRAY_SIZE(alc880_lg_dac_nids
),
4921 .dac_nids
= alc880_lg_dac_nids
,
4922 .dig_out_nid
= ALC880_DIGOUT_NID
,
4923 .num_channel_mode
= ARRAY_SIZE(alc880_lg_ch_modes
),
4924 .channel_mode
= alc880_lg_ch_modes
,
4926 .input_mux
= &alc880_lg_capture_source
,
4927 .unsol_event
= alc_automute_amp_unsol_event
,
4928 .setup
= alc880_lg_setup
,
4929 .init_hook
= alc_automute_amp
,
4930 #ifdef CONFIG_SND_HDA_POWER_SAVE
4931 .loopbacks
= alc880_lg_loopbacks
,
4935 .mixers
= { alc880_lg_lw_mixer
},
4936 .init_verbs
= { alc880_volume_init_verbs
,
4937 alc880_lg_lw_init_verbs
},
4938 .num_dacs
= ARRAY_SIZE(alc880_dac_nids
),
4939 .dac_nids
= alc880_dac_nids
,
4940 .dig_out_nid
= ALC880_DIGOUT_NID
,
4941 .num_channel_mode
= ARRAY_SIZE(alc880_lg_lw_modes
),
4942 .channel_mode
= alc880_lg_lw_modes
,
4943 .input_mux
= &alc880_lg_lw_capture_source
,
4944 .unsol_event
= alc_automute_amp_unsol_event
,
4945 .setup
= alc880_lg_lw_setup
,
4946 .init_hook
= alc_automute_amp
,
4948 [ALC880_MEDION_RIM
] = {
4949 .mixers
= { alc880_medion_rim_mixer
},
4950 .init_verbs
= { alc880_volume_init_verbs
,
4951 alc880_medion_rim_init_verbs
,
4952 alc_gpio2_init_verbs
},
4953 .num_dacs
= ARRAY_SIZE(alc880_dac_nids
),
4954 .dac_nids
= alc880_dac_nids
,
4955 .dig_out_nid
= ALC880_DIGOUT_NID
,
4956 .num_channel_mode
= ARRAY_SIZE(alc880_2_jack_modes
),
4957 .channel_mode
= alc880_2_jack_modes
,
4958 .input_mux
= &alc880_medion_rim_capture_source
,
4959 .unsol_event
= alc880_medion_rim_unsol_event
,
4960 .setup
= alc880_medion_rim_setup
,
4961 .init_hook
= alc880_medion_rim_automute
,
4963 #ifdef CONFIG_SND_DEBUG
4965 .mixers
= { alc880_test_mixer
},
4966 .init_verbs
= { alc880_test_init_verbs
},
4967 .num_dacs
= ARRAY_SIZE(alc880_test_dac_nids
),
4968 .dac_nids
= alc880_test_dac_nids
,
4969 .dig_out_nid
= ALC880_DIGOUT_NID
,
4970 .num_channel_mode
= ARRAY_SIZE(alc880_test_modes
),
4971 .channel_mode
= alc880_test_modes
,
4972 .input_mux
= &alc880_test_capture_source
,
4978 * Automatic parse of I/O pins from the BIOS configuration
4983 ALC_CTL_WIDGET_MUTE
,
4986 static struct snd_kcontrol_new alc880_control_templates
[] = {
4987 HDA_CODEC_VOLUME(NULL
, 0, 0, 0),
4988 HDA_CODEC_MUTE(NULL
, 0, 0, 0),
4989 HDA_BIND_MUTE(NULL
, 0, 0, 0),
4992 /* add dynamic controls */
4993 static int add_control(struct alc_spec
*spec
, int type
, const char *name
,
4994 int cidx
, unsigned long val
)
4996 struct snd_kcontrol_new
*knew
;
4998 snd_array_init(&spec
->kctls
, sizeof(*knew
), 32);
4999 knew
= snd_array_new(&spec
->kctls
);
5002 *knew
= alc880_control_templates
[type
];
5003 knew
->name
= kstrdup(name
, GFP_KERNEL
);
5007 if (get_amp_nid_(val
))
5008 knew
->subdevice
= HDA_SUBDEV_AMP_FLAG
;
5009 knew
->private_value
= val
;
5013 static int add_control_with_pfx(struct alc_spec
*spec
, int type
,
5014 const char *pfx
, const char *dir
,
5015 const char *sfx
, int cidx
, unsigned long val
)
5018 snprintf(name
, sizeof(name
), "%s %s %s", pfx
, dir
, sfx
);
5019 return add_control(spec
, type
, name
, cidx
, val
);
5022 #define add_pb_vol_ctrl(spec, type, pfx, val) \
5023 add_control_with_pfx(spec, type, pfx, "Playback", "Volume", 0, val)
5024 #define add_pb_sw_ctrl(spec, type, pfx, val) \
5025 add_control_with_pfx(spec, type, pfx, "Playback", "Switch", 0, val)
5026 #define __add_pb_vol_ctrl(spec, type, pfx, cidx, val) \
5027 add_control_with_pfx(spec, type, pfx, "Playback", "Volume", cidx, val)
5028 #define __add_pb_sw_ctrl(spec, type, pfx, cidx, val) \
5029 add_control_with_pfx(spec, type, pfx, "Playback", "Switch", cidx, val)
5031 #define alc880_is_fixed_pin(nid) ((nid) >= 0x14 && (nid) <= 0x17)
5032 #define alc880_fixed_pin_idx(nid) ((nid) - 0x14)
5033 #define alc880_is_multi_pin(nid) ((nid) >= 0x18)
5034 #define alc880_multi_pin_idx(nid) ((nid) - 0x18)
5035 #define alc880_idx_to_dac(nid) ((nid) + 0x02)
5036 #define alc880_dac_to_idx(nid) ((nid) - 0x02)
5037 #define alc880_idx_to_mixer(nid) ((nid) + 0x0c)
5038 #define alc880_idx_to_selector(nid) ((nid) + 0x10)
5039 #define ALC880_PIN_CD_NID 0x1c
5041 /* fill in the dac_nids table from the parsed pin configuration */
5042 static int alc880_auto_fill_dac_nids(struct alc_spec
*spec
,
5043 const struct auto_pin_cfg
*cfg
)
5049 memset(assigned
, 0, sizeof(assigned
));
5050 spec
->multiout
.dac_nids
= spec
->private_dac_nids
;
5052 /* check the pins hardwired to audio widget */
5053 for (i
= 0; i
< cfg
->line_outs
; i
++) {
5054 nid
= cfg
->line_out_pins
[i
];
5055 if (alc880_is_fixed_pin(nid
)) {
5056 int idx
= alc880_fixed_pin_idx(nid
);
5057 spec
->multiout
.dac_nids
[i
] = alc880_idx_to_dac(idx
);
5061 /* left pins can be connect to any audio widget */
5062 for (i
= 0; i
< cfg
->line_outs
; i
++) {
5063 nid
= cfg
->line_out_pins
[i
];
5064 if (alc880_is_fixed_pin(nid
))
5066 /* search for an empty channel */
5067 for (j
= 0; j
< cfg
->line_outs
; j
++) {
5069 spec
->multiout
.dac_nids
[i
] =
5070 alc880_idx_to_dac(j
);
5076 spec
->multiout
.num_dacs
= cfg
->line_outs
;
5080 static const char *alc_get_line_out_pfx(const struct auto_pin_cfg
*cfg
,
5083 if (!cfg
->hp_outs
&& !cfg
->speaker_outs
&& can_be_master
)
5086 switch (cfg
->line_out_type
) {
5087 case AUTO_PIN_SPEAKER_OUT
:
5088 if (cfg
->line_outs
== 1)
5091 case AUTO_PIN_HP_OUT
:
5094 if (cfg
->line_outs
== 1)
5101 /* add playback controls from the parsed DAC table */
5102 static int alc880_auto_create_multi_out_ctls(struct alc_spec
*spec
,
5103 const struct auto_pin_cfg
*cfg
)
5105 static const char * const chname
[4] = {
5106 "Front", "Surround", NULL
/*CLFE*/, "Side"
5108 const char *pfx
= alc_get_line_out_pfx(cfg
, false);
5112 for (i
= 0; i
< cfg
->line_outs
; i
++) {
5113 if (!spec
->multiout
.dac_nids
[i
])
5115 nid
= alc880_idx_to_mixer(alc880_dac_to_idx(spec
->multiout
.dac_nids
[i
]));
5116 if (!pfx
&& i
== 2) {
5118 err
= add_pb_vol_ctrl(spec
, ALC_CTL_WIDGET_VOL
,
5120 HDA_COMPOSE_AMP_VAL(nid
, 1, 0,
5124 err
= add_pb_vol_ctrl(spec
, ALC_CTL_WIDGET_VOL
,
5126 HDA_COMPOSE_AMP_VAL(nid
, 2, 0,
5130 err
= add_pb_sw_ctrl(spec
, ALC_CTL_BIND_MUTE
,
5132 HDA_COMPOSE_AMP_VAL(nid
, 1, 2,
5136 err
= add_pb_sw_ctrl(spec
, ALC_CTL_BIND_MUTE
,
5138 HDA_COMPOSE_AMP_VAL(nid
, 2, 2,
5143 const char *name
= pfx
;
5149 err
= __add_pb_vol_ctrl(spec
, ALC_CTL_WIDGET_VOL
,
5151 HDA_COMPOSE_AMP_VAL(nid
, 3, 0,
5155 err
= __add_pb_sw_ctrl(spec
, ALC_CTL_BIND_MUTE
,
5157 HDA_COMPOSE_AMP_VAL(nid
, 3, 2,
5166 /* add playback controls for speaker and HP outputs */
5167 static int alc880_auto_create_extra_out(struct alc_spec
*spec
, hda_nid_t pin
,
5176 if (alc880_is_fixed_pin(pin
)) {
5177 nid
= alc880_idx_to_dac(alc880_fixed_pin_idx(pin
));
5178 /* specify the DAC as the extra output */
5179 if (!spec
->multiout
.hp_nid
)
5180 spec
->multiout
.hp_nid
= nid
;
5182 spec
->multiout
.extra_out_nid
[0] = nid
;
5183 /* control HP volume/switch on the output mixer amp */
5184 nid
= alc880_idx_to_mixer(alc880_fixed_pin_idx(pin
));
5185 err
= add_pb_vol_ctrl(spec
, ALC_CTL_WIDGET_VOL
, pfx
,
5186 HDA_COMPOSE_AMP_VAL(nid
, 3, 0, HDA_OUTPUT
));
5189 err
= add_pb_sw_ctrl(spec
, ALC_CTL_BIND_MUTE
, pfx
,
5190 HDA_COMPOSE_AMP_VAL(nid
, 3, 2, HDA_INPUT
));
5193 } else if (alc880_is_multi_pin(pin
)) {
5194 /* set manual connection */
5195 /* we have only a switch on HP-out PIN */
5196 err
= add_pb_sw_ctrl(spec
, ALC_CTL_WIDGET_MUTE
, pfx
,
5197 HDA_COMPOSE_AMP_VAL(pin
, 3, 0, HDA_OUTPUT
));
5204 /* create input playback/capture controls for the given pin */
5205 static int new_analog_input(struct alc_spec
*spec
, hda_nid_t pin
,
5206 const char *ctlname
, int ctlidx
,
5207 int idx
, hda_nid_t mix_nid
)
5211 err
= __add_pb_vol_ctrl(spec
, ALC_CTL_WIDGET_VOL
, ctlname
, ctlidx
,
5212 HDA_COMPOSE_AMP_VAL(mix_nid
, 3, idx
, HDA_INPUT
));
5215 err
= __add_pb_sw_ctrl(spec
, ALC_CTL_WIDGET_MUTE
, ctlname
, ctlidx
,
5216 HDA_COMPOSE_AMP_VAL(mix_nid
, 3, idx
, HDA_INPUT
));
5222 static int alc_is_input_pin(struct hda_codec
*codec
, hda_nid_t nid
)
5224 unsigned int pincap
= snd_hda_query_pin_caps(codec
, nid
);
5225 return (pincap
& AC_PINCAP_IN
) != 0;
5228 /* create playback/capture controls for input pins */
5229 static int alc_auto_create_input_ctls(struct hda_codec
*codec
,
5230 const struct auto_pin_cfg
*cfg
,
5232 hda_nid_t cap1
, hda_nid_t cap2
)
5234 struct alc_spec
*spec
= codec
->spec
;
5235 struct hda_input_mux
*imux
= &spec
->private_imux
[0];
5236 int i
, err
, idx
, type_idx
= 0;
5237 const char *prev_label
= NULL
;
5239 for (i
= 0; i
< cfg
->num_inputs
; i
++) {
5243 pin
= cfg
->inputs
[i
].pin
;
5244 if (!alc_is_input_pin(codec
, pin
))
5247 label
= hda_get_autocfg_input_label(codec
, cfg
, i
);
5248 if (prev_label
&& !strcmp(label
, prev_label
))
5255 idx
= get_connection_index(codec
, mixer
, pin
);
5257 err
= new_analog_input(spec
, pin
,
5267 idx
= get_connection_index(codec
, cap1
, pin
);
5268 if (idx
< 0 && cap2
)
5269 idx
= get_connection_index(codec
, cap2
, pin
);
5271 snd_hda_add_imux_item(imux
, label
, idx
, NULL
);
5276 static int alc880_auto_create_input_ctls(struct hda_codec
*codec
,
5277 const struct auto_pin_cfg
*cfg
)
5279 return alc_auto_create_input_ctls(codec
, cfg
, 0x0b, 0x08, 0x09);
5282 static void alc_set_pin_output(struct hda_codec
*codec
, hda_nid_t nid
,
5283 unsigned int pin_type
)
5285 snd_hda_codec_write(codec
, nid
, 0, AC_VERB_SET_PIN_WIDGET_CONTROL
,
5288 snd_hda_codec_write(codec
, nid
, 0, AC_VERB_SET_AMP_GAIN_MUTE
,
5292 static void alc880_auto_set_output_and_unmute(struct hda_codec
*codec
,
5293 hda_nid_t nid
, int pin_type
,
5296 alc_set_pin_output(codec
, nid
, pin_type
);
5297 /* need the manual connection? */
5298 if (alc880_is_multi_pin(nid
)) {
5299 struct alc_spec
*spec
= codec
->spec
;
5300 int idx
= alc880_multi_pin_idx(nid
);
5301 snd_hda_codec_write(codec
, alc880_idx_to_selector(idx
), 0,
5302 AC_VERB_SET_CONNECT_SEL
,
5303 alc880_dac_to_idx(spec
->multiout
.dac_nids
[dac_idx
]));
5307 static int get_pin_type(int line_out_type
)
5309 if (line_out_type
== AUTO_PIN_HP_OUT
)
5315 static void alc880_auto_init_multi_out(struct hda_codec
*codec
)
5317 struct alc_spec
*spec
= codec
->spec
;
5320 for (i
= 0; i
< spec
->autocfg
.line_outs
; i
++) {
5321 hda_nid_t nid
= spec
->autocfg
.line_out_pins
[i
];
5322 int pin_type
= get_pin_type(spec
->autocfg
.line_out_type
);
5323 alc880_auto_set_output_and_unmute(codec
, nid
, pin_type
, i
);
5327 static void alc880_auto_init_extra_out(struct hda_codec
*codec
)
5329 struct alc_spec
*spec
= codec
->spec
;
5332 pin
= spec
->autocfg
.speaker_pins
[0];
5333 if (pin
) /* connect to front */
5334 alc880_auto_set_output_and_unmute(codec
, pin
, PIN_OUT
, 0);
5335 pin
= spec
->autocfg
.hp_pins
[0];
5336 if (pin
) /* connect to front */
5337 alc880_auto_set_output_and_unmute(codec
, pin
, PIN_HP
, 0);
5340 static void alc880_auto_init_analog_input(struct hda_codec
*codec
)
5342 struct alc_spec
*spec
= codec
->spec
;
5343 struct auto_pin_cfg
*cfg
= &spec
->autocfg
;
5346 for (i
= 0; i
< cfg
->num_inputs
; i
++) {
5347 hda_nid_t nid
= cfg
->inputs
[i
].pin
;
5348 if (alc_is_input_pin(codec
, nid
)) {
5349 alc_set_input_pin(codec
, nid
, cfg
->inputs
[i
].type
);
5350 if (nid
!= ALC880_PIN_CD_NID
&&
5351 (get_wcaps(codec
, nid
) & AC_WCAP_OUT_AMP
))
5352 snd_hda_codec_write(codec
, nid
, 0,
5353 AC_VERB_SET_AMP_GAIN_MUTE
,
5359 static void alc880_auto_init_input_src(struct hda_codec
*codec
)
5361 struct alc_spec
*spec
= codec
->spec
;
5364 for (c
= 0; c
< spec
->num_adc_nids
; c
++) {
5365 unsigned int mux_idx
;
5366 const struct hda_input_mux
*imux
;
5367 mux_idx
= c
>= spec
->num_mux_defs
? 0 : c
;
5368 imux
= &spec
->input_mux
[mux_idx
];
5369 if (!imux
->num_items
&& mux_idx
> 0)
5370 imux
= &spec
->input_mux
[0];
5372 snd_hda_codec_write(codec
, spec
->adc_nids
[c
], 0,
5373 AC_VERB_SET_CONNECT_SEL
,
5374 imux
->items
[0].index
);
5378 /* parse the BIOS configuration and set up the alc_spec */
5379 /* return 1 if successful, 0 if the proper config is not found,
5380 * or a negative error code
5382 static int alc880_parse_auto_config(struct hda_codec
*codec
)
5384 struct alc_spec
*spec
= codec
->spec
;
5386 static hda_nid_t alc880_ignore
[] = { 0x1d, 0 };
5388 err
= snd_hda_parse_pin_def_config(codec
, &spec
->autocfg
,
5392 if (!spec
->autocfg
.line_outs
)
5393 return 0; /* can't find valid BIOS pin config */
5395 err
= alc880_auto_fill_dac_nids(spec
, &spec
->autocfg
);
5398 err
= alc880_auto_create_multi_out_ctls(spec
, &spec
->autocfg
);
5401 err
= alc880_auto_create_extra_out(spec
,
5402 spec
->autocfg
.speaker_pins
[0],
5406 err
= alc880_auto_create_extra_out(spec
, spec
->autocfg
.hp_pins
[0],
5410 err
= alc880_auto_create_input_ctls(codec
, &spec
->autocfg
);
5414 spec
->multiout
.max_channels
= spec
->multiout
.num_dacs
* 2;
5416 alc_auto_parse_digital(codec
);
5418 if (spec
->kctls
.list
)
5419 add_mixer(spec
, spec
->kctls
.list
);
5421 add_verb(spec
, alc880_volume_init_verbs
);
5423 spec
->num_mux_defs
= 1;
5424 spec
->input_mux
= &spec
->private_imux
[0];
5426 alc_ssid_check(codec
, 0x15, 0x1b, 0x14, 0);
5431 /* additional initialization for auto-configuration model */
5432 static void alc880_auto_init(struct hda_codec
*codec
)
5434 struct alc_spec
*spec
= codec
->spec
;
5435 alc880_auto_init_multi_out(codec
);
5436 alc880_auto_init_extra_out(codec
);
5437 alc880_auto_init_analog_input(codec
);
5438 alc880_auto_init_input_src(codec
);
5439 alc_auto_init_digital(codec
);
5440 if (spec
->unsol_event
)
5441 alc_inithook(codec
);
5444 /* check the ADC/MUX contains all input pins; some ADC/MUX contains only
5445 * one of two digital mic pins, e.g. on ALC272
5447 static void fixup_automic_adc(struct hda_codec
*codec
)
5449 struct alc_spec
*spec
= codec
->spec
;
5452 for (i
= 0; i
< spec
->num_adc_nids
; i
++) {
5453 hda_nid_t cap
= spec
->capsrc_nids
?
5454 spec
->capsrc_nids
[i
] : spec
->adc_nids
[i
];
5457 iidx
= get_connection_index(codec
, cap
, spec
->int_mic
.pin
);
5460 eidx
= get_connection_index(codec
, cap
, spec
->ext_mic
.pin
);
5463 spec
->int_mic
.mux_idx
= iidx
;
5464 spec
->ext_mic
.mux_idx
= eidx
;
5465 if (spec
->capsrc_nids
)
5466 spec
->capsrc_nids
+= i
;
5467 spec
->adc_nids
+= i
;
5468 spec
->num_adc_nids
= 1;
5471 snd_printd(KERN_INFO
"hda_codec: %s: "
5472 "No ADC/MUX containing both 0x%x and 0x%x pins\n",
5473 codec
->chip_name
, spec
->int_mic
.pin
, spec
->ext_mic
.pin
);
5474 spec
->auto_mic
= 0; /* disable auto-mic to be sure */
5477 /* select or unmute the given capsrc route */
5478 static void select_or_unmute_capsrc(struct hda_codec
*codec
, hda_nid_t cap
,
5481 if (get_wcaps_type(get_wcaps(codec
, cap
)) == AC_WID_AUD_MIX
) {
5482 snd_hda_codec_amp_stereo(codec
, cap
, HDA_INPUT
, idx
,
5485 snd_hda_codec_write_cache(codec
, cap
, 0,
5486 AC_VERB_SET_CONNECT_SEL
, idx
);
5490 /* set the default connection to that pin */
5491 static int init_capsrc_for_pin(struct hda_codec
*codec
, hda_nid_t pin
)
5493 struct alc_spec
*spec
= codec
->spec
;
5496 for (i
= 0; i
< spec
->num_adc_nids
; i
++) {
5497 hda_nid_t cap
= spec
->capsrc_nids
?
5498 spec
->capsrc_nids
[i
] : spec
->adc_nids
[i
];
5501 idx
= get_connection_index(codec
, cap
, pin
);
5504 select_or_unmute_capsrc(codec
, cap
, idx
);
5505 return i
; /* return the found index */
5507 return -1; /* not found */
5510 /* choose the ADC/MUX containing the input pin and initialize the setup */
5511 static void fixup_single_adc(struct hda_codec
*codec
)
5513 struct alc_spec
*spec
= codec
->spec
;
5514 struct auto_pin_cfg
*cfg
= &spec
->autocfg
;
5517 /* search for the input pin; there must be only one */
5518 if (cfg
->num_inputs
!= 1)
5520 i
= init_capsrc_for_pin(codec
, cfg
->inputs
[0].pin
);
5522 /* use only this ADC */
5523 if (spec
->capsrc_nids
)
5524 spec
->capsrc_nids
+= i
;
5525 spec
->adc_nids
+= i
;
5526 spec
->num_adc_nids
= 1;
5527 spec
->single_input_src
= 1;
5531 /* initialize dual adcs */
5532 static void fixup_dual_adc_switch(struct hda_codec
*codec
)
5534 struct alc_spec
*spec
= codec
->spec
;
5535 init_capsrc_for_pin(codec
, spec
->ext_mic
.pin
);
5536 init_capsrc_for_pin(codec
, spec
->int_mic
.pin
);
5539 /* initialize some special cases for input sources */
5540 static void alc_init_special_input_src(struct hda_codec
*codec
)
5542 struct alc_spec
*spec
= codec
->spec
;
5543 if (spec
->dual_adc_switch
)
5544 fixup_dual_adc_switch(codec
);
5545 else if (spec
->single_input_src
)
5546 init_capsrc_for_pin(codec
, spec
->autocfg
.inputs
[0].pin
);
5549 static void set_capture_mixer(struct hda_codec
*codec
)
5551 struct alc_spec
*spec
= codec
->spec
;
5552 static struct snd_kcontrol_new
*caps
[2][3] = {
5553 { alc_capture_mixer_nosrc1
,
5554 alc_capture_mixer_nosrc2
,
5555 alc_capture_mixer_nosrc3
},
5556 { alc_capture_mixer1
,
5558 alc_capture_mixer3
},
5560 if (spec
->num_adc_nids
> 0 && spec
->num_adc_nids
<= 3) {
5562 int num_adcs
= spec
->num_adc_nids
;
5563 if (spec
->dual_adc_switch
)
5565 else if (spec
->auto_mic
)
5566 fixup_automic_adc(codec
);
5567 else if (spec
->input_mux
) {
5568 if (spec
->input_mux
->num_items
> 1)
5570 else if (spec
->input_mux
->num_items
== 1)
5571 fixup_single_adc(codec
);
5573 spec
->cap_mixer
= caps
[mux
][num_adcs
- 1];
5577 /* fill adc_nids (and capsrc_nids) containing all active input pins */
5578 static void fillup_priv_adc_nids(struct hda_codec
*codec
, hda_nid_t
*nids
,
5581 struct alc_spec
*spec
= codec
->spec
;
5582 struct auto_pin_cfg
*cfg
= &spec
->autocfg
;
5584 hda_nid_t fallback_adc
= 0, fallback_cap
= 0;
5586 for (n
= 0; n
< num_nids
; n
++) {
5588 hda_nid_t conn
[HDA_MAX_NUM_INPUTS
];
5592 if (get_wcaps_type(get_wcaps(codec
, adc
)) != AC_WID_AUD_IN
)
5595 nconns
= snd_hda_get_connections(codec
, cap
, conn
,
5599 nconns
= snd_hda_get_connections(codec
, cap
, conn
,
5604 if (!fallback_adc
) {
5608 for (i
= 0; i
< cfg
->num_inputs
; i
++) {
5609 hda_nid_t nid
= cfg
->inputs
[i
].pin
;
5610 for (j
= 0; j
< nconns
; j
++) {
5617 if (i
>= cfg
->num_inputs
) {
5618 int num_adcs
= spec
->num_adc_nids
;
5619 spec
->private_adc_nids
[num_adcs
] = adc
;
5620 spec
->private_capsrc_nids
[num_adcs
] = cap
;
5621 spec
->num_adc_nids
++;
5622 spec
->adc_nids
= spec
->private_adc_nids
;
5624 spec
->capsrc_nids
= spec
->private_capsrc_nids
;
5627 if (!spec
->num_adc_nids
) {
5628 printk(KERN_WARNING
"hda_codec: %s: no valid ADC found;"
5629 " using fallback 0x%x\n",
5630 codec
->chip_name
, fallback_adc
);
5631 spec
->private_adc_nids
[0] = fallback_adc
;
5632 spec
->adc_nids
= spec
->private_adc_nids
;
5633 if (fallback_adc
!= fallback_cap
) {
5634 spec
->private_capsrc_nids
[0] = fallback_cap
;
5635 spec
->capsrc_nids
= spec
->private_adc_nids
;
5640 #ifdef CONFIG_SND_HDA_INPUT_BEEP
5641 #define set_beep_amp(spec, nid, idx, dir) \
5642 ((spec)->beep_amp = HDA_COMPOSE_AMP_VAL(nid, 3, idx, dir))
5644 static struct snd_pci_quirk beep_white_list
[] = {
5645 SND_PCI_QUIRK(0x1043, 0x829f, "ASUS", 1),
5646 SND_PCI_QUIRK(0x1043, 0x83ce, "EeePC", 1),
5647 SND_PCI_QUIRK(0x1043, 0x831a, "EeePC", 1),
5648 SND_PCI_QUIRK(0x8086, 0xd613, "Intel", 1),
5652 static inline int has_cdefine_beep(struct hda_codec
*codec
)
5654 struct alc_spec
*spec
= codec
->spec
;
5655 const struct snd_pci_quirk
*q
;
5656 q
= snd_pci_quirk_lookup(codec
->bus
->pci
, beep_white_list
);
5659 return spec
->cdefine
.enable_pcbeep
;
5662 #define set_beep_amp(spec, nid, idx, dir) /* NOP */
5663 #define has_cdefine_beep(codec) 0
5667 * OK, here we have finally the patch for ALC880
5670 static int patch_alc880(struct hda_codec
*codec
)
5672 struct alc_spec
*spec
;
5676 spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
5682 board_config
= snd_hda_check_board_config(codec
, ALC880_MODEL_LAST
,
5685 if (board_config
< 0) {
5686 printk(KERN_INFO
"hda_codec: %s: BIOS auto-probing.\n",
5688 board_config
= ALC880_AUTO
;
5691 if (board_config
== ALC880_AUTO
) {
5692 /* automatic parse from the BIOS config */
5693 err
= alc880_parse_auto_config(codec
);
5699 "hda_codec: Cannot set up configuration "
5700 "from BIOS. Using 3-stack mode...\n");
5701 board_config
= ALC880_3ST
;
5705 err
= snd_hda_attach_beep_device(codec
, 0x1);
5711 if (board_config
!= ALC880_AUTO
)
5712 setup_preset(codec
, &alc880_presets
[board_config
]);
5714 spec
->stream_analog_playback
= &alc880_pcm_analog_playback
;
5715 spec
->stream_analog_capture
= &alc880_pcm_analog_capture
;
5716 spec
->stream_analog_alt_capture
= &alc880_pcm_analog_alt_capture
;
5718 spec
->stream_digital_playback
= &alc880_pcm_digital_playback
;
5719 spec
->stream_digital_capture
= &alc880_pcm_digital_capture
;
5721 if (!spec
->adc_nids
&& spec
->input_mux
) {
5722 /* check whether NID 0x07 is valid */
5723 unsigned int wcap
= get_wcaps(codec
, alc880_adc_nids
[0]);
5725 wcap
= get_wcaps_type(wcap
);
5726 if (wcap
!= AC_WID_AUD_IN
) {
5727 spec
->adc_nids
= alc880_adc_nids_alt
;
5728 spec
->num_adc_nids
= ARRAY_SIZE(alc880_adc_nids_alt
);
5730 spec
->adc_nids
= alc880_adc_nids
;
5731 spec
->num_adc_nids
= ARRAY_SIZE(alc880_adc_nids
);
5734 set_capture_mixer(codec
);
5735 set_beep_amp(spec
, 0x0b, 0x05, HDA_INPUT
);
5737 spec
->vmaster_nid
= 0x0c;
5739 codec
->patch_ops
= alc_patch_ops
;
5740 if (board_config
== ALC880_AUTO
)
5741 spec
->init_hook
= alc880_auto_init
;
5742 #ifdef CONFIG_SND_HDA_POWER_SAVE
5743 if (!spec
->loopback
.amplist
)
5744 spec
->loopback
.amplist
= alc880_loopbacks
;
5755 static hda_nid_t alc260_dac_nids
[1] = {
5760 static hda_nid_t alc260_adc_nids
[1] = {
5765 static hda_nid_t alc260_adc_nids_alt
[1] = {
5770 /* NIDs used when simultaneous access to both ADCs makes sense. Note that
5771 * alc260_capture_mixer assumes ADC0 (nid 0x04) is the first ADC.
5773 static hda_nid_t alc260_dual_adc_nids
[2] = {
5778 #define ALC260_DIGOUT_NID 0x03
5779 #define ALC260_DIGIN_NID 0x06
5781 static struct hda_input_mux alc260_capture_source
= {
5785 { "Front Mic", 0x1 },
5791 /* On Fujitsu S702x laptops capture only makes sense from Mic/LineIn jack,
5792 * headphone jack and the internal CD lines since these are the only pins at
5793 * which audio can appear. For flexibility, also allow the option of
5794 * recording the mixer output on the second ADC (ADC0 doesn't have a
5795 * connection to the mixer output).
5797 static struct hda_input_mux alc260_fujitsu_capture_sources
[2] = {
5801 { "Mic/Line", 0x0 },
5803 { "Headphone", 0x2 },
5809 { "Mic/Line", 0x0 },
5811 { "Headphone", 0x2 },
5818 /* Acer TravelMate(/Extensa/Aspire) notebooks have similar configuration to
5819 * the Fujitsu S702x, but jacks are marked differently.
5821 static struct hda_input_mux alc260_acer_capture_sources
[2] = {
5828 { "Headphone", 0x5 },
5837 { "Headphone", 0x6 },
5843 /* Maxdata Favorit 100XS */
5844 static struct hda_input_mux alc260_favorit100_capture_sources
[2] = {
5848 { "Line/Mic", 0x0 },
5855 { "Line/Mic", 0x0 },
5863 * This is just place-holder, so there's something for alc_build_pcms to look
5864 * at when it calculates the maximum number of channels. ALC260 has no mixer
5865 * element which allows changing the channel mode, so the verb list is
5868 static struct hda_channel_mode alc260_modes
[1] = {
5873 /* Mixer combinations
5875 * basic: base_output + input + pc_beep + capture
5876 * HP: base_output + input + capture_alt
5877 * HP_3013: hp_3013 + input + capture
5878 * fujitsu: fujitsu + capture
5879 * acer: acer + capture
5882 static struct snd_kcontrol_new alc260_base_output_mixer
[] = {
5883 HDA_CODEC_VOLUME("Front Playback Volume", 0x08, 0x0, HDA_OUTPUT
),
5884 HDA_BIND_MUTE("Front Playback Switch", 0x08, 2, HDA_INPUT
),
5885 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x09, 0x0, HDA_OUTPUT
),
5886 HDA_BIND_MUTE("Headphone Playback Switch", 0x09, 2, HDA_INPUT
),
5887 HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x0a, 1, 0x0, HDA_OUTPUT
),
5888 HDA_BIND_MUTE_MONO("Mono Playback Switch", 0x0a, 1, 2, HDA_INPUT
),
5892 static struct snd_kcontrol_new alc260_input_mixer
[] = {
5893 HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT
),
5894 HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT
),
5895 HDA_CODEC_VOLUME("Line Playback Volume", 0x07, 0x02, HDA_INPUT
),
5896 HDA_CODEC_MUTE("Line Playback Switch", 0x07, 0x02, HDA_INPUT
),
5897 HDA_CODEC_VOLUME("Mic Playback Volume", 0x07, 0x0, HDA_INPUT
),
5898 HDA_CODEC_MUTE("Mic Playback Switch", 0x07, 0x0, HDA_INPUT
),
5899 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x07, 0x01, HDA_INPUT
),
5900 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x07, 0x01, HDA_INPUT
),
5904 /* update HP, line and mono out pins according to the master switch */
5905 static void alc260_hp_master_update(struct hda_codec
*codec
,
5906 hda_nid_t hp
, hda_nid_t line
,
5909 struct alc_spec
*spec
= codec
->spec
;
5910 unsigned int val
= spec
->master_sw
? PIN_HP
: 0;
5911 /* change HP and line-out pins */
5912 snd_hda_codec_write(codec
, hp
, 0, AC_VERB_SET_PIN_WIDGET_CONTROL
,
5914 snd_hda_codec_write(codec
, line
, 0, AC_VERB_SET_PIN_WIDGET_CONTROL
,
5916 /* mono (speaker) depending on the HP jack sense */
5917 val
= (val
&& !spec
->jack_present
) ? PIN_OUT
: 0;
5918 snd_hda_codec_write(codec
, mono
, 0, AC_VERB_SET_PIN_WIDGET_CONTROL
,
5922 static int alc260_hp_master_sw_get(struct snd_kcontrol
*kcontrol
,
5923 struct snd_ctl_elem_value
*ucontrol
)
5925 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
5926 struct alc_spec
*spec
= codec
->spec
;
5927 *ucontrol
->value
.integer
.value
= spec
->master_sw
;
5931 static int alc260_hp_master_sw_put(struct snd_kcontrol
*kcontrol
,
5932 struct snd_ctl_elem_value
*ucontrol
)
5934 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
5935 struct alc_spec
*spec
= codec
->spec
;
5936 int val
= !!*ucontrol
->value
.integer
.value
;
5937 hda_nid_t hp
, line
, mono
;
5939 if (val
== spec
->master_sw
)
5941 spec
->master_sw
= val
;
5942 hp
= (kcontrol
->private_value
>> 16) & 0xff;
5943 line
= (kcontrol
->private_value
>> 8) & 0xff;
5944 mono
= kcontrol
->private_value
& 0xff;
5945 alc260_hp_master_update(codec
, hp
, line
, mono
);
5949 static struct snd_kcontrol_new alc260_hp_output_mixer
[] = {
5951 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
5952 .name
= "Master Playback Switch",
5953 .subdevice
= HDA_SUBDEV_NID_FLAG
| 0x11,
5954 .info
= snd_ctl_boolean_mono_info
,
5955 .get
= alc260_hp_master_sw_get
,
5956 .put
= alc260_hp_master_sw_put
,
5957 .private_value
= (0x0f << 16) | (0x10 << 8) | 0x11
5959 HDA_CODEC_VOLUME("Front Playback Volume", 0x08, 0x0, HDA_OUTPUT
),
5960 HDA_BIND_MUTE("Front Playback Switch", 0x08, 2, HDA_INPUT
),
5961 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x09, 0x0, HDA_OUTPUT
),
5962 HDA_BIND_MUTE("Headphone Playback Switch", 0x09, 2, HDA_INPUT
),
5963 HDA_CODEC_VOLUME_MONO("Speaker Playback Volume", 0x0a, 1, 0x0,
5965 HDA_BIND_MUTE_MONO("Speaker Playback Switch", 0x0a, 1, 2, HDA_INPUT
),
5969 static struct hda_verb alc260_hp_unsol_verbs
[] = {
5970 {0x10, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
5974 static void alc260_hp_automute(struct hda_codec
*codec
)
5976 struct alc_spec
*spec
= codec
->spec
;
5978 spec
->jack_present
= snd_hda_jack_detect(codec
, 0x10);
5979 alc260_hp_master_update(codec
, 0x0f, 0x10, 0x11);
5982 static void alc260_hp_unsol_event(struct hda_codec
*codec
, unsigned int res
)
5984 if ((res
>> 26) == ALC880_HP_EVENT
)
5985 alc260_hp_automute(codec
);
5988 static struct snd_kcontrol_new alc260_hp_3013_mixer
[] = {
5990 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
5991 .name
= "Master Playback Switch",
5992 .subdevice
= HDA_SUBDEV_NID_FLAG
| 0x11,
5993 .info
= snd_ctl_boolean_mono_info
,
5994 .get
= alc260_hp_master_sw_get
,
5995 .put
= alc260_hp_master_sw_put
,
5996 .private_value
= (0x15 << 16) | (0x10 << 8) | 0x11
5998 HDA_CODEC_VOLUME("Front Playback Volume", 0x09, 0x0, HDA_OUTPUT
),
5999 HDA_CODEC_MUTE("Front Playback Switch", 0x10, 0x0, HDA_OUTPUT
),
6000 HDA_CODEC_VOLUME("Aux-In Playback Volume", 0x07, 0x06, HDA_INPUT
),
6001 HDA_CODEC_MUTE("Aux-In Playback Switch", 0x07, 0x06, HDA_INPUT
),
6002 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x08, 0x0, HDA_OUTPUT
),
6003 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
6004 HDA_CODEC_VOLUME_MONO("Speaker Playback Volume", 0x0a, 1, 0x0, HDA_OUTPUT
),
6005 HDA_CODEC_MUTE_MONO("Speaker Playback Switch", 0x11, 1, 0x0, HDA_OUTPUT
),
6009 static struct hda_bind_ctls alc260_dc7600_bind_master_vol
= {
6010 .ops
= &snd_hda_bind_vol
,
6012 HDA_COMPOSE_AMP_VAL(0x08, 3, 0, HDA_OUTPUT
),
6013 HDA_COMPOSE_AMP_VAL(0x09, 3, 0, HDA_OUTPUT
),
6014 HDA_COMPOSE_AMP_VAL(0x0a, 3, 0, HDA_OUTPUT
),
6019 static struct hda_bind_ctls alc260_dc7600_bind_switch
= {
6020 .ops
= &snd_hda_bind_sw
,
6022 HDA_COMPOSE_AMP_VAL(0x11, 3, 0, HDA_OUTPUT
),
6023 HDA_COMPOSE_AMP_VAL(0x15, 3, 0, HDA_OUTPUT
),
6028 static struct snd_kcontrol_new alc260_hp_dc7600_mixer
[] = {
6029 HDA_BIND_VOL("Master Playback Volume", &alc260_dc7600_bind_master_vol
),
6030 HDA_BIND_SW("LineOut Playback Switch", &alc260_dc7600_bind_switch
),
6031 HDA_CODEC_MUTE("Speaker Playback Switch", 0x0f, 0x0, HDA_OUTPUT
),
6032 HDA_CODEC_MUTE("Headphone Playback Switch", 0x10, 0x0, HDA_OUTPUT
),
6036 static struct hda_verb alc260_hp_3013_unsol_verbs
[] = {
6037 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
6041 static void alc260_hp_3013_automute(struct hda_codec
*codec
)
6043 struct alc_spec
*spec
= codec
->spec
;
6045 spec
->jack_present
= snd_hda_jack_detect(codec
, 0x15);
6046 alc260_hp_master_update(codec
, 0x15, 0x10, 0x11);
6049 static void alc260_hp_3013_unsol_event(struct hda_codec
*codec
,
6052 if ((res
>> 26) == ALC880_HP_EVENT
)
6053 alc260_hp_3013_automute(codec
);
6056 static void alc260_hp_3012_automute(struct hda_codec
*codec
)
6058 unsigned int bits
= snd_hda_jack_detect(codec
, 0x10) ? 0 : PIN_OUT
;
6060 snd_hda_codec_write(codec
, 0x0f, 0, AC_VERB_SET_PIN_WIDGET_CONTROL
,
6062 snd_hda_codec_write(codec
, 0x11, 0, AC_VERB_SET_PIN_WIDGET_CONTROL
,
6064 snd_hda_codec_write(codec
, 0x15, 0, AC_VERB_SET_PIN_WIDGET_CONTROL
,
6068 static void alc260_hp_3012_unsol_event(struct hda_codec
*codec
,
6071 if ((res
>> 26) == ALC880_HP_EVENT
)
6072 alc260_hp_3012_automute(codec
);
6075 /* Fujitsu S702x series laptops. ALC260 pin usage: Mic/Line jack = 0x12,
6076 * HP jack = 0x14, CD audio = 0x16, internal speaker = 0x10.
6078 static struct snd_kcontrol_new alc260_fujitsu_mixer
[] = {
6079 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x08, 0x0, HDA_OUTPUT
),
6080 HDA_BIND_MUTE("Headphone Playback Switch", 0x08, 2, HDA_INPUT
),
6081 ALC_PIN_MODE("Headphone Jack Mode", 0x14, ALC_PIN_DIR_INOUT
),
6082 HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT
),
6083 HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT
),
6084 HDA_CODEC_VOLUME("Mic/Line Playback Volume", 0x07, 0x0, HDA_INPUT
),
6085 HDA_CODEC_MUTE("Mic/Line Playback Switch", 0x07, 0x0, HDA_INPUT
),
6086 ALC_PIN_MODE("Mic/Line Jack Mode", 0x12, ALC_PIN_DIR_IN
),
6087 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x09, 0x0, HDA_OUTPUT
),
6088 HDA_BIND_MUTE("Speaker Playback Switch", 0x09, 2, HDA_INPUT
),
6092 /* Mixer for Acer TravelMate(/Extensa/Aspire) notebooks. Note that current
6093 * versions of the ALC260 don't act on requests to enable mic bias from NID
6094 * 0x0f (used to drive the headphone jack in these laptops). The ALC260
6095 * datasheet doesn't mention this restriction. At this stage it's not clear
6096 * whether this behaviour is intentional or is a hardware bug in chip
6097 * revisions available in early 2006. Therefore for now allow the
6098 * "Headphone Jack Mode" control to span all choices, but if it turns out
6099 * that the lack of mic bias for this NID is intentional we could change the
6100 * mode from ALC_PIN_DIR_INOUT to ALC_PIN_DIR_INOUT_NOMICBIAS.
6102 * In addition, Acer TravelMate(/Extensa/Aspire) notebooks in early 2006
6103 * don't appear to make the mic bias available from the "line" jack, even
6104 * though the NID used for this jack (0x14) can supply it. The theory is
6105 * that perhaps Acer have included blocking capacitors between the ALC260
6106 * and the output jack. If this turns out to be the case for all such
6107 * models the "Line Jack Mode" mode could be changed from ALC_PIN_DIR_INOUT
6108 * to ALC_PIN_DIR_INOUT_NOMICBIAS.
6110 * The C20x Tablet series have a mono internal speaker which is controlled
6111 * via the chip's Mono sum widget and pin complex, so include the necessary
6112 * controls for such models. On models without a "mono speaker" the control
6113 * won't do anything.
6115 static struct snd_kcontrol_new alc260_acer_mixer
[] = {
6116 HDA_CODEC_VOLUME("Master Playback Volume", 0x08, 0x0, HDA_OUTPUT
),
6117 HDA_BIND_MUTE("Master Playback Switch", 0x08, 2, HDA_INPUT
),
6118 ALC_PIN_MODE("Headphone Jack Mode", 0x0f, ALC_PIN_DIR_INOUT
),
6119 HDA_CODEC_VOLUME_MONO("Speaker Playback Volume", 0x0a, 1, 0x0,
6121 HDA_BIND_MUTE_MONO("Speaker Playback Switch", 0x0a, 1, 2,
6123 HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT
),
6124 HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT
),
6125 HDA_CODEC_VOLUME("Mic Playback Volume", 0x07, 0x0, HDA_INPUT
),
6126 HDA_CODEC_MUTE("Mic Playback Switch", 0x07, 0x0, HDA_INPUT
),
6127 ALC_PIN_MODE("Mic Jack Mode", 0x12, ALC_PIN_DIR_IN
),
6128 HDA_CODEC_VOLUME("Line Playback Volume", 0x07, 0x02, HDA_INPUT
),
6129 HDA_CODEC_MUTE("Line Playback Switch", 0x07, 0x02, HDA_INPUT
),
6130 ALC_PIN_MODE("Line Jack Mode", 0x14, ALC_PIN_DIR_INOUT
),
6134 /* Maxdata Favorit 100XS: one output and one input (0x12) jack
6136 static struct snd_kcontrol_new alc260_favorit100_mixer
[] = {
6137 HDA_CODEC_VOLUME("Master Playback Volume", 0x08, 0x0, HDA_OUTPUT
),
6138 HDA_BIND_MUTE("Master Playback Switch", 0x08, 2, HDA_INPUT
),
6139 ALC_PIN_MODE("Output Jack Mode", 0x0f, ALC_PIN_DIR_INOUT
),
6140 HDA_CODEC_VOLUME("Line/Mic Playback Volume", 0x07, 0x0, HDA_INPUT
),
6141 HDA_CODEC_MUTE("Line/Mic Playback Switch", 0x07, 0x0, HDA_INPUT
),
6142 ALC_PIN_MODE("Line/Mic Jack Mode", 0x12, ALC_PIN_DIR_IN
),
6146 /* Packard bell V7900 ALC260 pin usage: HP = 0x0f, Mic jack = 0x12,
6147 * Line In jack = 0x14, CD audio = 0x16, pc beep = 0x17.
6149 static struct snd_kcontrol_new alc260_will_mixer
[] = {
6150 HDA_CODEC_VOLUME("Master Playback Volume", 0x08, 0x0, HDA_OUTPUT
),
6151 HDA_BIND_MUTE("Master Playback Switch", 0x08, 0x2, HDA_INPUT
),
6152 HDA_CODEC_VOLUME("Mic Playback Volume", 0x07, 0x0, HDA_INPUT
),
6153 HDA_CODEC_MUTE("Mic Playback Switch", 0x07, 0x0, HDA_INPUT
),
6154 ALC_PIN_MODE("Mic Jack Mode", 0x12, ALC_PIN_DIR_IN
),
6155 HDA_CODEC_VOLUME("Line Playback Volume", 0x07, 0x02, HDA_INPUT
),
6156 HDA_CODEC_MUTE("Line Playback Switch", 0x07, 0x02, HDA_INPUT
),
6157 ALC_PIN_MODE("Line Jack Mode", 0x14, ALC_PIN_DIR_INOUT
),
6158 HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT
),
6159 HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT
),
6163 /* Replacer 672V ALC260 pin usage: Mic jack = 0x12,
6164 * Line In jack = 0x14, ATAPI Mic = 0x13, speaker = 0x0f.
6166 static struct snd_kcontrol_new alc260_replacer_672v_mixer
[] = {
6167 HDA_CODEC_VOLUME("Master Playback Volume", 0x08, 0x0, HDA_OUTPUT
),
6168 HDA_BIND_MUTE("Master Playback Switch", 0x08, 0x2, HDA_INPUT
),
6169 HDA_CODEC_VOLUME("Mic Playback Volume", 0x07, 0x0, HDA_INPUT
),
6170 HDA_CODEC_MUTE("Mic Playback Switch", 0x07, 0x0, HDA_INPUT
),
6171 ALC_PIN_MODE("Mic Jack Mode", 0x12, ALC_PIN_DIR_IN
),
6172 HDA_CODEC_VOLUME("ATAPI Mic Playback Volume", 0x07, 0x1, HDA_INPUT
),
6173 HDA_CODEC_MUTE("ATATI Mic Playback Switch", 0x07, 0x1, HDA_INPUT
),
6174 HDA_CODEC_VOLUME("Line Playback Volume", 0x07, 0x02, HDA_INPUT
),
6175 HDA_CODEC_MUTE("Line Playback Switch", 0x07, 0x02, HDA_INPUT
),
6176 ALC_PIN_MODE("Line Jack Mode", 0x14, ALC_PIN_DIR_INOUT
),
6181 * initialization verbs
6183 static struct hda_verb alc260_init_verbs
[] = {
6184 /* Line In pin widget for input */
6185 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
6186 /* CD pin widget for input */
6187 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
6188 /* Mic1 (rear panel) pin widget for input and vref at 80% */
6189 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
6190 /* Mic2 (front panel) pin widget for input and vref at 80% */
6191 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
6192 /* LINE-2 is used for line-out in rear */
6193 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
6194 /* select line-out */
6195 {0x0e, AC_VERB_SET_CONNECT_SEL
, 0x00},
6197 {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
6199 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
6201 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
6202 /* mute capture amp left and right */
6203 {0x04, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
6204 /* set connection select to line in (default select for this ADC) */
6205 {0x04, AC_VERB_SET_CONNECT_SEL
, 0x02},
6206 /* mute capture amp left and right */
6207 {0x05, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
6208 /* set connection select to line in (default select for this ADC) */
6209 {0x05, AC_VERB_SET_CONNECT_SEL
, 0x02},
6210 /* set vol=0 Line-Out mixer amp left and right */
6211 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
6212 /* unmute pin widget amp left and right (no gain on this amp) */
6213 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
6214 /* set vol=0 HP mixer amp left and right */
6215 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
6216 /* unmute pin widget amp left and right (no gain on this amp) */
6217 {0x10, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
6218 /* set vol=0 Mono mixer amp left and right */
6219 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
6220 /* unmute pin widget amp left and right (no gain on this amp) */
6221 {0x11, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
6222 /* unmute LINE-2 out pin */
6223 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
6224 /* Amp Indexes: CD = 0x04, Line In 1 = 0x02, Mic 1 = 0x00 &
6227 /* mute analog inputs */
6228 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6229 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
6230 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
6231 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
6232 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
6233 /* Amp Indexes: DAC = 0x01 & mixer = 0x00 */
6234 /* mute Front out path */
6235 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6236 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
6237 /* mute Headphone out path */
6238 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6239 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
6240 /* mute Mono out path */
6241 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6242 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
6246 #if 0 /* should be identical with alc260_init_verbs? */
6247 static struct hda_verb alc260_hp_init_verbs
[] = {
6248 /* Headphone and output */
6249 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0xc0},
6251 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40},
6252 /* Mic1 (rear panel) pin widget for input and vref at 80% */
6253 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24},
6254 /* Mic2 (front panel) pin widget for input and vref at 80% */
6255 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24},
6256 /* Line In pin widget for input */
6257 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20},
6258 /* Line-2 pin widget for output */
6259 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40},
6260 /* CD pin widget for input */
6261 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20},
6262 /* unmute amp left and right */
6263 {0x04, AC_VERB_SET_AMP_GAIN_MUTE
, 0x7000},
6264 /* set connection select to line in (default select for this ADC) */
6265 {0x04, AC_VERB_SET_CONNECT_SEL
, 0x02},
6266 /* unmute Line-Out mixer amp left and right (volume = 0) */
6267 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb000},
6268 /* mute pin widget amp left and right (no gain on this amp) */
6269 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, 0x0000},
6270 /* unmute HP mixer amp left and right (volume = 0) */
6271 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb000},
6272 /* mute pin widget amp left and right (no gain on this amp) */
6273 {0x10, AC_VERB_SET_AMP_GAIN_MUTE
, 0x0000},
6274 /* Amp Indexes: CD = 0x04, Line In 1 = 0x02, Mic 1 = 0x00 &
6277 /* mute analog inputs */
6278 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6279 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
6280 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
6281 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
6282 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
6283 /* Amp Indexes: DAC = 0x01 & mixer = 0x00 */
6284 /* Unmute Front out path */
6285 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
6286 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x01 << 8))},
6287 /* Unmute Headphone out path */
6288 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
6289 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x01 << 8))},
6290 /* Unmute Mono out path */
6291 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
6292 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x01 << 8))},
6297 static struct hda_verb alc260_hp_3013_init_verbs
[] = {
6298 /* Line out and output */
6299 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40},
6301 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40},
6302 /* Mic1 (rear panel) pin widget for input and vref at 80% */
6303 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24},
6304 /* Mic2 (front panel) pin widget for input and vref at 80% */
6305 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24},
6306 /* Line In pin widget for input */
6307 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20},
6308 /* Headphone pin widget for output */
6309 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0xc0},
6310 /* CD pin widget for input */
6311 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20},
6312 /* unmute amp left and right */
6313 {0x04, AC_VERB_SET_AMP_GAIN_MUTE
, 0x7000},
6314 /* set connection select to line in (default select for this ADC) */
6315 {0x04, AC_VERB_SET_CONNECT_SEL
, 0x02},
6316 /* unmute Line-Out mixer amp left and right (volume = 0) */
6317 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb000},
6318 /* mute pin widget amp left and right (no gain on this amp) */
6319 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, 0x0000},
6320 /* unmute HP mixer amp left and right (volume = 0) */
6321 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb000},
6322 /* mute pin widget amp left and right (no gain on this amp) */
6323 {0x10, AC_VERB_SET_AMP_GAIN_MUTE
, 0x0000},
6324 /* Amp Indexes: CD = 0x04, Line In 1 = 0x02, Mic 1 = 0x00 &
6327 /* mute analog inputs */
6328 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6329 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
6330 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
6331 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
6332 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
6333 /* Amp Indexes: DAC = 0x01 & mixer = 0x00 */
6334 /* Unmute Front out path */
6335 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
6336 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x01 << 8))},
6337 /* Unmute Headphone out path */
6338 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
6339 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x01 << 8))},
6340 /* Unmute Mono out path */
6341 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
6342 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x01 << 8))},
6346 /* Initialisation sequence for ALC260 as configured in Fujitsu S702x
6347 * laptops. ALC260 pin usage: Mic/Line jack = 0x12, HP jack = 0x14, CD
6348 * audio = 0x16, internal speaker = 0x10.
6350 static struct hda_verb alc260_fujitsu_init_verbs
[] = {
6351 /* Disable all GPIOs */
6352 {0x01, AC_VERB_SET_GPIO_MASK
, 0},
6353 /* Internal speaker is connected to headphone pin */
6354 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
6355 /* Headphone/Line-out jack connects to Line1 pin; make it an output */
6356 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
6357 /* Mic/Line-in jack is connected to mic1 pin, so make it an input */
6358 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
6359 /* Ensure all other unused pins are disabled and muted. */
6360 {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
6361 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6362 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
6363 {0x11, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6364 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
6365 {0x13, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6366 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
6367 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6369 /* Disable digital (SPDIF) pins */
6370 {0x03, AC_VERB_SET_DIGI_CONVERT_1
, 0},
6371 {0x06, AC_VERB_SET_DIGI_CONVERT_1
, 0},
6373 /* Ensure Line1 pin widget takes its input from the OUT1 sum bus
6374 * when acting as an output.
6376 {0x0d, AC_VERB_SET_CONNECT_SEL
, 0},
6378 /* Start with output sum widgets muted and their output gains at min */
6379 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6380 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
6381 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
6382 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6383 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
6384 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
6385 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6386 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
6387 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
6389 /* Unmute HP pin widget amp left and right (no equiv mixer ctrl) */
6390 {0x10, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
6391 /* Unmute Line1 pin widget output buffer since it starts as an output.
6392 * If the pin mode is changed by the user the pin mode control will
6393 * take care of enabling the pin's input/output buffers as needed.
6394 * Therefore there's no need to enable the input buffer at this
6397 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
6398 /* Unmute input buffer of pin widget used for Line-in (no equiv
6401 {0x12, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
6403 /* Mute capture amp left and right */
6404 {0x04, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6405 /* Set ADC connection select to match default mixer setting - line
6408 {0x04, AC_VERB_SET_CONNECT_SEL
, 0x00},
6410 /* Do the same for the second ADC: mute capture input amp and
6411 * set ADC connection to line in (on mic1 pin)
6413 {0x05, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6414 {0x05, AC_VERB_SET_CONNECT_SEL
, 0x00},
6416 /* Mute all inputs to mixer widget (even unconnected ones) */
6417 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)}, /* mic1 pin */
6418 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)}, /* mic2 pin */
6419 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)}, /* line1 pin */
6420 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)}, /* line2 pin */
6421 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)}, /* CD pin */
6422 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(5)}, /* Beep-gen pin */
6423 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(6)}, /* Line-out pin */
6424 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(7)}, /* HP-pin pin */
6429 /* Initialisation sequence for ALC260 as configured in Acer TravelMate and
6430 * similar laptops (adapted from Fujitsu init verbs).
6432 static struct hda_verb alc260_acer_init_verbs
[] = {
6433 /* On TravelMate laptops, GPIO 0 enables the internal speaker and
6434 * the headphone jack. Turn this on and rely on the standard mute
6435 * methods whenever the user wants to turn these outputs off.
6437 {0x01, AC_VERB_SET_GPIO_MASK
, 0x01},
6438 {0x01, AC_VERB_SET_GPIO_DIRECTION
, 0x01},
6439 {0x01, AC_VERB_SET_GPIO_DATA
, 0x01},
6440 /* Internal speaker/Headphone jack is connected to Line-out pin */
6441 {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
6442 /* Internal microphone/Mic jack is connected to Mic1 pin */
6443 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF50
},
6444 /* Line In jack is connected to Line1 pin */
6445 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
6446 /* Some Acers (eg: C20x Tablets) use Mono pin for internal speaker */
6447 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
6448 /* Ensure all other unused pins are disabled and muted. */
6449 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
6450 {0x10, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6451 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
6452 {0x13, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6453 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
6454 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6455 /* Disable digital (SPDIF) pins */
6456 {0x03, AC_VERB_SET_DIGI_CONVERT_1
, 0},
6457 {0x06, AC_VERB_SET_DIGI_CONVERT_1
, 0},
6459 /* Ensure Mic1 and Line1 pin widgets take input from the OUT1 sum
6460 * bus when acting as outputs.
6462 {0x0b, AC_VERB_SET_CONNECT_SEL
, 0},
6463 {0x0d, AC_VERB_SET_CONNECT_SEL
, 0},
6465 /* Start with output sum widgets muted and their output gains at min */
6466 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6467 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
6468 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
6469 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6470 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
6471 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
6472 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6473 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
6474 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
6476 /* Unmute Line-out pin widget amp left and right
6477 * (no equiv mixer ctrl)
6479 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
6480 /* Unmute mono pin widget amp output (no equiv mixer ctrl) */
6481 {0x11, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
6482 /* Unmute Mic1 and Line1 pin widget input buffers since they start as
6483 * inputs. If the pin mode is changed by the user the pin mode control
6484 * will take care of enabling the pin's input/output buffers as needed.
6485 * Therefore there's no need to enable the input buffer at this
6488 {0x12, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
6489 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
6491 /* Mute capture amp left and right */
6492 {0x04, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6493 /* Set ADC connection select to match default mixer setting - mic
6496 {0x04, AC_VERB_SET_CONNECT_SEL
, 0x00},
6498 /* Do similar with the second ADC: mute capture input amp and
6499 * set ADC connection to mic to match ALSA's default state.
6501 {0x05, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6502 {0x05, AC_VERB_SET_CONNECT_SEL
, 0x00},
6504 /* Mute all inputs to mixer widget (even unconnected ones) */
6505 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)}, /* mic1 pin */
6506 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)}, /* mic2 pin */
6507 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)}, /* line1 pin */
6508 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)}, /* line2 pin */
6509 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)}, /* CD pin */
6510 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(5)}, /* Beep-gen pin */
6511 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(6)}, /* Line-out pin */
6512 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(7)}, /* HP-pin pin */
6517 /* Initialisation sequence for Maxdata Favorit 100XS
6518 * (adapted from Acer init verbs).
6520 static struct hda_verb alc260_favorit100_init_verbs
[] = {
6521 /* GPIO 0 enables the output jack.
6522 * Turn this on and rely on the standard mute
6523 * methods whenever the user wants to turn these outputs off.
6525 {0x01, AC_VERB_SET_GPIO_MASK
, 0x01},
6526 {0x01, AC_VERB_SET_GPIO_DIRECTION
, 0x01},
6527 {0x01, AC_VERB_SET_GPIO_DATA
, 0x01},
6528 /* Line/Mic input jack is connected to Mic1 pin */
6529 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF50
},
6530 /* Ensure all other unused pins are disabled and muted. */
6531 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
6532 {0x10, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6533 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
6534 {0x11, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6535 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
6536 {0x13, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6537 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
6538 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6539 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
6540 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6541 /* Disable digital (SPDIF) pins */
6542 {0x03, AC_VERB_SET_DIGI_CONVERT_1
, 0},
6543 {0x06, AC_VERB_SET_DIGI_CONVERT_1
, 0},
6545 /* Ensure Mic1 and Line1 pin widgets take input from the OUT1 sum
6546 * bus when acting as outputs.
6548 {0x0b, AC_VERB_SET_CONNECT_SEL
, 0},
6549 {0x0d, AC_VERB_SET_CONNECT_SEL
, 0},
6551 /* Start with output sum widgets muted and their output gains at min */
6552 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6553 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
6554 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
6555 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6556 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
6557 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
6558 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6559 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
6560 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
6562 /* Unmute Line-out pin widget amp left and right
6563 * (no equiv mixer ctrl)
6565 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
6566 /* Unmute Mic1 and Line1 pin widget input buffers since they start as
6567 * inputs. If the pin mode is changed by the user the pin mode control
6568 * will take care of enabling the pin's input/output buffers as needed.
6569 * Therefore there's no need to enable the input buffer at this
6572 {0x12, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
6574 /* Mute capture amp left and right */
6575 {0x04, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6576 /* Set ADC connection select to match default mixer setting - mic
6579 {0x04, AC_VERB_SET_CONNECT_SEL
, 0x00},
6581 /* Do similar with the second ADC: mute capture input amp and
6582 * set ADC connection to mic to match ALSA's default state.
6584 {0x05, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6585 {0x05, AC_VERB_SET_CONNECT_SEL
, 0x00},
6587 /* Mute all inputs to mixer widget (even unconnected ones) */
6588 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)}, /* mic1 pin */
6589 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)}, /* mic2 pin */
6590 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)}, /* line1 pin */
6591 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)}, /* line2 pin */
6592 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)}, /* CD pin */
6593 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(5)}, /* Beep-gen pin */
6594 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(6)}, /* Line-out pin */
6595 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(7)}, /* HP-pin pin */
6600 static struct hda_verb alc260_will_verbs
[] = {
6601 {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
6602 {0x0b, AC_VERB_SET_CONNECT_SEL
, 0x00},
6603 {0x0d, AC_VERB_SET_CONNECT_SEL
, 0x00},
6604 {0x0f, AC_VERB_SET_EAPD_BTLENABLE
, 0x02},
6605 {0x1a, AC_VERB_SET_COEF_INDEX
, 0x07},
6606 {0x1a, AC_VERB_SET_PROC_COEF
, 0x3040},
6610 static struct hda_verb alc260_replacer_672v_verbs
[] = {
6611 {0x0f, AC_VERB_SET_EAPD_BTLENABLE
, 0x02},
6612 {0x1a, AC_VERB_SET_COEF_INDEX
, 0x07},
6613 {0x1a, AC_VERB_SET_PROC_COEF
, 0x3050},
6615 {0x01, AC_VERB_SET_GPIO_MASK
, 0x01},
6616 {0x01, AC_VERB_SET_GPIO_DIRECTION
, 0x01},
6617 {0x01, AC_VERB_SET_GPIO_DATA
, 0x00},
6619 {0x0f, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
6623 /* toggle speaker-output according to the hp-jack state */
6624 static void alc260_replacer_672v_automute(struct hda_codec
*codec
)
6626 unsigned int present
;
6628 /* speaker --> GPIO Data 0, hp or spdif --> GPIO data 1 */
6629 present
= snd_hda_jack_detect(codec
, 0x0f);
6631 snd_hda_codec_write_cache(codec
, 0x01, 0,
6632 AC_VERB_SET_GPIO_DATA
, 1);
6633 snd_hda_codec_write_cache(codec
, 0x0f, 0,
6634 AC_VERB_SET_PIN_WIDGET_CONTROL
,
6637 snd_hda_codec_write_cache(codec
, 0x01, 0,
6638 AC_VERB_SET_GPIO_DATA
, 0);
6639 snd_hda_codec_write_cache(codec
, 0x0f, 0,
6640 AC_VERB_SET_PIN_WIDGET_CONTROL
,
6645 static void alc260_replacer_672v_unsol_event(struct hda_codec
*codec
,
6648 if ((res
>> 26) == ALC880_HP_EVENT
)
6649 alc260_replacer_672v_automute(codec
);
6652 static struct hda_verb alc260_hp_dc7600_verbs
[] = {
6653 {0x05, AC_VERB_SET_CONNECT_SEL
, 0x01},
6654 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x01},
6655 {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
6656 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
6657 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
6658 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
6659 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
6660 {0x10, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
6661 {0x11, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
6662 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
6666 /* Test configuration for debugging, modelled after the ALC880 test
6669 #ifdef CONFIG_SND_DEBUG
6670 static hda_nid_t alc260_test_dac_nids
[1] = {
6673 static hda_nid_t alc260_test_adc_nids
[2] = {
6676 /* For testing the ALC260, each input MUX needs its own definition since
6677 * the signal assignments are different. This assumes that the first ADC
6680 static struct hda_input_mux alc260_test_capture_sources
[2] = {
6684 { "MIC1 pin", 0x0 },
6685 { "MIC2 pin", 0x1 },
6686 { "LINE1 pin", 0x2 },
6687 { "LINE2 pin", 0x3 },
6689 { "LINE-OUT pin", 0x5 },
6690 { "HP-OUT pin", 0x6 },
6696 { "MIC1 pin", 0x0 },
6697 { "MIC2 pin", 0x1 },
6698 { "LINE1 pin", 0x2 },
6699 { "LINE2 pin", 0x3 },
6702 { "LINE-OUT pin", 0x6 },
6703 { "HP-OUT pin", 0x7 },
6707 static struct snd_kcontrol_new alc260_test_mixer
[] = {
6708 /* Output driver widgets */
6709 HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x0a, 1, 0x0, HDA_OUTPUT
),
6710 HDA_BIND_MUTE_MONO("Mono Playback Switch", 0x0a, 1, 2, HDA_INPUT
),
6711 HDA_CODEC_VOLUME("LOUT2 Playback Volume", 0x09, 0x0, HDA_OUTPUT
),
6712 HDA_BIND_MUTE("LOUT2 Playback Switch", 0x09, 2, HDA_INPUT
),
6713 HDA_CODEC_VOLUME("LOUT1 Playback Volume", 0x08, 0x0, HDA_OUTPUT
),
6714 HDA_BIND_MUTE("LOUT1 Playback Switch", 0x08, 2, HDA_INPUT
),
6716 /* Modes for retasking pin widgets
6717 * Note: the ALC260 doesn't seem to act on requests to enable mic
6718 * bias from NIDs 0x0f and 0x10. The ALC260 datasheet doesn't
6719 * mention this restriction. At this stage it's not clear whether
6720 * this behaviour is intentional or is a hardware bug in chip
6721 * revisions available at least up until early 2006. Therefore for
6722 * now allow the "HP-OUT" and "LINE-OUT" Mode controls to span all
6723 * choices, but if it turns out that the lack of mic bias for these
6724 * NIDs is intentional we could change their modes from
6725 * ALC_PIN_DIR_INOUT to ALC_PIN_DIR_INOUT_NOMICBIAS.
6727 ALC_PIN_MODE("HP-OUT pin mode", 0x10, ALC_PIN_DIR_INOUT
),
6728 ALC_PIN_MODE("LINE-OUT pin mode", 0x0f, ALC_PIN_DIR_INOUT
),
6729 ALC_PIN_MODE("LINE2 pin mode", 0x15, ALC_PIN_DIR_INOUT
),
6730 ALC_PIN_MODE("LINE1 pin mode", 0x14, ALC_PIN_DIR_INOUT
),
6731 ALC_PIN_MODE("MIC2 pin mode", 0x13, ALC_PIN_DIR_INOUT
),
6732 ALC_PIN_MODE("MIC1 pin mode", 0x12, ALC_PIN_DIR_INOUT
),
6734 /* Loopback mixer controls */
6735 HDA_CODEC_VOLUME("MIC1 Playback Volume", 0x07, 0x00, HDA_INPUT
),
6736 HDA_CODEC_MUTE("MIC1 Playback Switch", 0x07, 0x00, HDA_INPUT
),
6737 HDA_CODEC_VOLUME("MIC2 Playback Volume", 0x07, 0x01, HDA_INPUT
),
6738 HDA_CODEC_MUTE("MIC2 Playback Switch", 0x07, 0x01, HDA_INPUT
),
6739 HDA_CODEC_VOLUME("LINE1 Playback Volume", 0x07, 0x02, HDA_INPUT
),
6740 HDA_CODEC_MUTE("LINE1 Playback Switch", 0x07, 0x02, HDA_INPUT
),
6741 HDA_CODEC_VOLUME("LINE2 Playback Volume", 0x07, 0x03, HDA_INPUT
),
6742 HDA_CODEC_MUTE("LINE2 Playback Switch", 0x07, 0x03, HDA_INPUT
),
6743 HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT
),
6744 HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT
),
6745 HDA_CODEC_VOLUME("LINE-OUT loopback Playback Volume", 0x07, 0x06, HDA_INPUT
),
6746 HDA_CODEC_MUTE("LINE-OUT loopback Playback Switch", 0x07, 0x06, HDA_INPUT
),
6747 HDA_CODEC_VOLUME("HP-OUT loopback Playback Volume", 0x07, 0x7, HDA_INPUT
),
6748 HDA_CODEC_MUTE("HP-OUT loopback Playback Switch", 0x07, 0x7, HDA_INPUT
),
6750 /* Controls for GPIO pins, assuming they are configured as outputs */
6751 ALC_GPIO_DATA_SWITCH("GPIO pin 0", 0x01, 0x01),
6752 ALC_GPIO_DATA_SWITCH("GPIO pin 1", 0x01, 0x02),
6753 ALC_GPIO_DATA_SWITCH("GPIO pin 2", 0x01, 0x04),
6754 ALC_GPIO_DATA_SWITCH("GPIO pin 3", 0x01, 0x08),
6756 /* Switches to allow the digital IO pins to be enabled. The datasheet
6757 * is ambigious as to which NID is which; testing on laptops which
6758 * make this output available should provide clarification.
6760 ALC_SPDIF_CTRL_SWITCH("SPDIF Playback Switch", 0x03, 0x01),
6761 ALC_SPDIF_CTRL_SWITCH("SPDIF Capture Switch", 0x06, 0x01),
6763 /* A switch allowing EAPD to be enabled. Some laptops seem to use
6764 * this output to turn on an external amplifier.
6766 ALC_EAPD_CTRL_SWITCH("LINE-OUT EAPD Enable Switch", 0x0f, 0x02),
6767 ALC_EAPD_CTRL_SWITCH("HP-OUT EAPD Enable Switch", 0x10, 0x02),
6771 static struct hda_verb alc260_test_init_verbs
[] = {
6772 /* Enable all GPIOs as outputs with an initial value of 0 */
6773 {0x01, AC_VERB_SET_GPIO_DIRECTION
, 0x0f},
6774 {0x01, AC_VERB_SET_GPIO_DATA
, 0x00},
6775 {0x01, AC_VERB_SET_GPIO_MASK
, 0x0f},
6777 /* Enable retasking pins as output, initially without power amp */
6778 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
6779 {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
6780 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
6781 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
6782 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
6783 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
6785 /* Disable digital (SPDIF) pins initially, but users can enable
6786 * them via a mixer switch. In the case of SPDIF-out, this initverb
6787 * payload also sets the generation to 0, output to be in "consumer"
6788 * PCM format, copyright asserted, no pre-emphasis and no validity
6791 {0x03, AC_VERB_SET_DIGI_CONVERT_1
, 0},
6792 {0x06, AC_VERB_SET_DIGI_CONVERT_1
, 0},
6794 /* Ensure mic1, mic2, line1 and line2 pin widgets take input from the
6795 * OUT1 sum bus when acting as an output.
6797 {0x0b, AC_VERB_SET_CONNECT_SEL
, 0},
6798 {0x0c, AC_VERB_SET_CONNECT_SEL
, 0},
6799 {0x0d, AC_VERB_SET_CONNECT_SEL
, 0},
6800 {0x0e, AC_VERB_SET_CONNECT_SEL
, 0},
6802 /* Start with output sum widgets muted and their output gains at min */
6803 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6804 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
6805 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
6806 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6807 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
6808 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
6809 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6810 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
6811 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
6813 /* Unmute retasking pin widget output buffers since the default
6814 * state appears to be output. As the pin mode is changed by the
6815 * user the pin mode control will take care of enabling the pin's
6816 * input/output buffers as needed.
6818 {0x10, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
6819 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
6820 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
6821 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
6822 {0x13, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
6823 {0x12, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
6824 /* Also unmute the mono-out pin widget */
6825 {0x11, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
6827 /* Mute capture amp left and right */
6828 {0x04, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6829 /* Set ADC connection select to match default mixer setting (mic1
6832 {0x04, AC_VERB_SET_CONNECT_SEL
, 0x00},
6834 /* Do the same for the second ADC: mute capture input amp and
6835 * set ADC connection to mic1 pin
6837 {0x05, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6838 {0x05, AC_VERB_SET_CONNECT_SEL
, 0x00},
6840 /* Mute all inputs to mixer widget (even unconnected ones) */
6841 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)}, /* mic1 pin */
6842 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)}, /* mic2 pin */
6843 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)}, /* line1 pin */
6844 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)}, /* line2 pin */
6845 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)}, /* CD pin */
6846 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(5)}, /* Beep-gen pin */
6847 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(6)}, /* Line-out pin */
6848 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(7)}, /* HP-pin pin */
6854 #define alc260_pcm_analog_playback alc880_pcm_analog_alt_playback
6855 #define alc260_pcm_analog_capture alc880_pcm_analog_capture
6857 #define alc260_pcm_digital_playback alc880_pcm_digital_playback
6858 #define alc260_pcm_digital_capture alc880_pcm_digital_capture
6861 * for BIOS auto-configuration
6864 static int alc260_add_playback_controls(struct alc_spec
*spec
, hda_nid_t nid
,
6865 const char *pfx
, int *vol_bits
)
6868 unsigned long vol_val
, sw_val
;
6871 if (nid
>= 0x0f && nid
< 0x11) {
6872 nid_vol
= nid
- 0x7;
6873 vol_val
= HDA_COMPOSE_AMP_VAL(nid_vol
, 3, 0, HDA_OUTPUT
);
6874 sw_val
= HDA_COMPOSE_AMP_VAL(nid
, 3, 0, HDA_OUTPUT
);
6875 } else if (nid
== 0x11) {
6876 nid_vol
= nid
- 0x7;
6877 vol_val
= HDA_COMPOSE_AMP_VAL(nid_vol
, 2, 0, HDA_OUTPUT
);
6878 sw_val
= HDA_COMPOSE_AMP_VAL(nid
, 2, 0, HDA_OUTPUT
);
6879 } else if (nid
>= 0x12 && nid
<= 0x15) {
6881 vol_val
= HDA_COMPOSE_AMP_VAL(nid_vol
, 3, 0, HDA_OUTPUT
);
6882 sw_val
= HDA_COMPOSE_AMP_VAL(nid
, 3, 0, HDA_OUTPUT
);
6886 if (!(*vol_bits
& (1 << nid_vol
))) {
6887 /* first control for the volume widget */
6888 err
= add_pb_vol_ctrl(spec
, ALC_CTL_WIDGET_VOL
, pfx
, vol_val
);
6891 *vol_bits
|= (1 << nid_vol
);
6893 err
= add_pb_sw_ctrl(spec
, ALC_CTL_WIDGET_MUTE
, pfx
, sw_val
);
6899 /* add playback controls from the parsed DAC table */
6900 static int alc260_auto_create_multi_out_ctls(struct alc_spec
*spec
,
6901 const struct auto_pin_cfg
*cfg
)
6907 spec
->multiout
.num_dacs
= 1;
6908 spec
->multiout
.dac_nids
= spec
->private_dac_nids
;
6909 spec
->multiout
.dac_nids
[0] = 0x02;
6911 nid
= cfg
->line_out_pins
[0];
6914 if (!cfg
->speaker_pins
[0] && !cfg
->hp_pins
[0])
6916 else if (cfg
->line_out_type
== AUTO_PIN_SPEAKER_OUT
)
6920 err
= alc260_add_playback_controls(spec
, nid
, pfx
, &vols
);
6925 nid
= cfg
->speaker_pins
[0];
6927 err
= alc260_add_playback_controls(spec
, nid
, "Speaker", &vols
);
6932 nid
= cfg
->hp_pins
[0];
6934 err
= alc260_add_playback_controls(spec
, nid
, "Headphone",
6942 /* create playback/capture controls for input pins */
6943 static int alc260_auto_create_input_ctls(struct hda_codec
*codec
,
6944 const struct auto_pin_cfg
*cfg
)
6946 return alc_auto_create_input_ctls(codec
, cfg
, 0x07, 0x04, 0x05);
6949 static void alc260_auto_set_output_and_unmute(struct hda_codec
*codec
,
6950 hda_nid_t nid
, int pin_type
,
6953 alc_set_pin_output(codec
, nid
, pin_type
);
6954 /* need the manual connection? */
6956 int idx
= nid
- 0x12;
6957 snd_hda_codec_write(codec
, idx
+ 0x0b, 0,
6958 AC_VERB_SET_CONNECT_SEL
, sel_idx
);
6962 static void alc260_auto_init_multi_out(struct hda_codec
*codec
)
6964 struct alc_spec
*spec
= codec
->spec
;
6967 nid
= spec
->autocfg
.line_out_pins
[0];
6969 int pin_type
= get_pin_type(spec
->autocfg
.line_out_type
);
6970 alc260_auto_set_output_and_unmute(codec
, nid
, pin_type
, 0);
6973 nid
= spec
->autocfg
.speaker_pins
[0];
6975 alc260_auto_set_output_and_unmute(codec
, nid
, PIN_OUT
, 0);
6977 nid
= spec
->autocfg
.hp_pins
[0];
6979 alc260_auto_set_output_and_unmute(codec
, nid
, PIN_HP
, 0);
6982 #define ALC260_PIN_CD_NID 0x16
6983 static void alc260_auto_init_analog_input(struct hda_codec
*codec
)
6985 struct alc_spec
*spec
= codec
->spec
;
6986 struct auto_pin_cfg
*cfg
= &spec
->autocfg
;
6989 for (i
= 0; i
< cfg
->num_inputs
; i
++) {
6990 hda_nid_t nid
= cfg
->inputs
[i
].pin
;
6992 alc_set_input_pin(codec
, nid
, cfg
->inputs
[i
].type
);
6993 if (nid
!= ALC260_PIN_CD_NID
&&
6994 (get_wcaps(codec
, nid
) & AC_WCAP_OUT_AMP
))
6995 snd_hda_codec_write(codec
, nid
, 0,
6996 AC_VERB_SET_AMP_GAIN_MUTE
,
7002 #define alc260_auto_init_input_src alc880_auto_init_input_src
7005 * generic initialization of ADC, input mixers and output mixers
7007 static struct hda_verb alc260_volume_init_verbs
[] = {
7009 * Unmute ADC0-1 and set the default input to mic-in
7011 {0x04, AC_VERB_SET_CONNECT_SEL
, 0x00},
7012 {0x04, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
7013 {0x05, AC_VERB_SET_CONNECT_SEL
, 0x00},
7014 {0x05, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
7016 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
7018 * Note: PASD motherboards uses the Line In 2 as the input for
7019 * front panel mic (mic 2)
7021 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
7022 /* mute analog inputs */
7023 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
7024 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
7025 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
7026 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
7027 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
7030 * Set up output mixers (0x08 - 0x0a)
7032 /* set vol=0 to output mixers */
7033 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
7034 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
7035 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
7036 /* set up input amps for analog loopback */
7037 /* Amp Indices: DAC = 0, mixer = 1 */
7038 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
7039 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
7040 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
7041 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
7042 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
7043 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
7048 static int alc260_parse_auto_config(struct hda_codec
*codec
)
7050 struct alc_spec
*spec
= codec
->spec
;
7052 static hda_nid_t alc260_ignore
[] = { 0x17, 0 };
7054 err
= snd_hda_parse_pin_def_config(codec
, &spec
->autocfg
,
7058 err
= alc260_auto_create_multi_out_ctls(spec
, &spec
->autocfg
);
7061 if (!spec
->kctls
.list
)
7062 return 0; /* can't find valid BIOS pin config */
7063 err
= alc260_auto_create_input_ctls(codec
, &spec
->autocfg
);
7067 spec
->multiout
.max_channels
= 2;
7069 if (spec
->autocfg
.dig_outs
)
7070 spec
->multiout
.dig_out_nid
= ALC260_DIGOUT_NID
;
7071 if (spec
->kctls
.list
)
7072 add_mixer(spec
, spec
->kctls
.list
);
7074 add_verb(spec
, alc260_volume_init_verbs
);
7076 spec
->num_mux_defs
= 1;
7077 spec
->input_mux
= &spec
->private_imux
[0];
7079 alc_ssid_check(codec
, 0x10, 0x15, 0x0f, 0);
7084 /* additional initialization for auto-configuration model */
7085 static void alc260_auto_init(struct hda_codec
*codec
)
7087 struct alc_spec
*spec
= codec
->spec
;
7088 alc260_auto_init_multi_out(codec
);
7089 alc260_auto_init_analog_input(codec
);
7090 alc260_auto_init_input_src(codec
);
7091 alc_auto_init_digital(codec
);
7092 if (spec
->unsol_event
)
7093 alc_inithook(codec
);
7096 #ifdef CONFIG_SND_HDA_POWER_SAVE
7097 static struct hda_amp_list alc260_loopbacks
[] = {
7098 { 0x07, HDA_INPUT
, 0 },
7099 { 0x07, HDA_INPUT
, 1 },
7100 { 0x07, HDA_INPUT
, 2 },
7101 { 0x07, HDA_INPUT
, 3 },
7102 { 0x07, HDA_INPUT
, 4 },
7114 static const struct alc_fixup alc260_fixups
[] = {
7115 [PINFIX_HP_DC5750
] = {
7116 .type
= ALC_FIXUP_PINS
,
7117 .v
.pins
= (const struct alc_pincfg
[]) {
7118 { 0x11, 0x90130110 }, /* speaker */
7124 static struct snd_pci_quirk alc260_fixup_tbl
[] = {
7125 SND_PCI_QUIRK(0x103c, 0x280a, "HP dc5750", PINFIX_HP_DC5750
),
7130 * ALC260 configurations
7132 static const char * const alc260_models
[ALC260_MODEL_LAST
] = {
7133 [ALC260_BASIC
] = "basic",
7135 [ALC260_HP_3013
] = "hp-3013",
7136 [ALC260_HP_DC7600
] = "hp-dc7600",
7137 [ALC260_FUJITSU_S702X
] = "fujitsu",
7138 [ALC260_ACER
] = "acer",
7139 [ALC260_WILL
] = "will",
7140 [ALC260_REPLACER_672V
] = "replacer",
7141 [ALC260_FAVORIT100
] = "favorit100",
7142 #ifdef CONFIG_SND_DEBUG
7143 [ALC260_TEST
] = "test",
7145 [ALC260_AUTO
] = "auto",
7148 static struct snd_pci_quirk alc260_cfg_tbl
[] = {
7149 SND_PCI_QUIRK(0x1025, 0x007b, "Acer C20x", ALC260_ACER
),
7150 SND_PCI_QUIRK(0x1025, 0x007f, "Acer", ALC260_WILL
),
7151 SND_PCI_QUIRK(0x1025, 0x008f, "Acer", ALC260_ACER
),
7152 SND_PCI_QUIRK(0x1509, 0x4540, "Favorit 100XS", ALC260_FAVORIT100
),
7153 SND_PCI_QUIRK(0x103c, 0x2808, "HP d5700", ALC260_HP_3013
),
7154 SND_PCI_QUIRK(0x103c, 0x280a, "HP d5750", ALC260_AUTO
), /* no quirk */
7155 SND_PCI_QUIRK(0x103c, 0x3010, "HP", ALC260_HP_3013
),
7156 SND_PCI_QUIRK(0x103c, 0x3011, "HP", ALC260_HP_3013
),
7157 SND_PCI_QUIRK(0x103c, 0x3012, "HP", ALC260_HP_DC7600
),
7158 SND_PCI_QUIRK(0x103c, 0x3013, "HP", ALC260_HP_3013
),
7159 SND_PCI_QUIRK(0x103c, 0x3014, "HP", ALC260_HP
),
7160 SND_PCI_QUIRK(0x103c, 0x3015, "HP", ALC260_HP
),
7161 SND_PCI_QUIRK(0x103c, 0x3016, "HP", ALC260_HP
),
7162 SND_PCI_QUIRK(0x104d, 0x81bb, "Sony VAIO", ALC260_BASIC
),
7163 SND_PCI_QUIRK(0x104d, 0x81cc, "Sony VAIO", ALC260_BASIC
),
7164 SND_PCI_QUIRK(0x104d, 0x81cd, "Sony VAIO", ALC260_BASIC
),
7165 SND_PCI_QUIRK(0x10cf, 0x1326, "Fujitsu S702X", ALC260_FUJITSU_S702X
),
7166 SND_PCI_QUIRK(0x152d, 0x0729, "CTL U553W", ALC260_BASIC
),
7167 SND_PCI_QUIRK(0x161f, 0x2057, "Replacer 672V", ALC260_REPLACER_672V
),
7168 SND_PCI_QUIRK(0x1631, 0xc017, "PB V7900", ALC260_WILL
),
7172 static struct alc_config_preset alc260_presets
[] = {
7174 .mixers
= { alc260_base_output_mixer
,
7175 alc260_input_mixer
},
7176 .init_verbs
= { alc260_init_verbs
},
7177 .num_dacs
= ARRAY_SIZE(alc260_dac_nids
),
7178 .dac_nids
= alc260_dac_nids
,
7179 .num_adc_nids
= ARRAY_SIZE(alc260_dual_adc_nids
),
7180 .adc_nids
= alc260_dual_adc_nids
,
7181 .num_channel_mode
= ARRAY_SIZE(alc260_modes
),
7182 .channel_mode
= alc260_modes
,
7183 .input_mux
= &alc260_capture_source
,
7186 .mixers
= { alc260_hp_output_mixer
,
7187 alc260_input_mixer
},
7188 .init_verbs
= { alc260_init_verbs
,
7189 alc260_hp_unsol_verbs
},
7190 .num_dacs
= ARRAY_SIZE(alc260_dac_nids
),
7191 .dac_nids
= alc260_dac_nids
,
7192 .num_adc_nids
= ARRAY_SIZE(alc260_adc_nids_alt
),
7193 .adc_nids
= alc260_adc_nids_alt
,
7194 .num_channel_mode
= ARRAY_SIZE(alc260_modes
),
7195 .channel_mode
= alc260_modes
,
7196 .input_mux
= &alc260_capture_source
,
7197 .unsol_event
= alc260_hp_unsol_event
,
7198 .init_hook
= alc260_hp_automute
,
7200 [ALC260_HP_DC7600
] = {
7201 .mixers
= { alc260_hp_dc7600_mixer
,
7202 alc260_input_mixer
},
7203 .init_verbs
= { alc260_init_verbs
,
7204 alc260_hp_dc7600_verbs
},
7205 .num_dacs
= ARRAY_SIZE(alc260_dac_nids
),
7206 .dac_nids
= alc260_dac_nids
,
7207 .num_adc_nids
= ARRAY_SIZE(alc260_adc_nids_alt
),
7208 .adc_nids
= alc260_adc_nids_alt
,
7209 .num_channel_mode
= ARRAY_SIZE(alc260_modes
),
7210 .channel_mode
= alc260_modes
,
7211 .input_mux
= &alc260_capture_source
,
7212 .unsol_event
= alc260_hp_3012_unsol_event
,
7213 .init_hook
= alc260_hp_3012_automute
,
7215 [ALC260_HP_3013
] = {
7216 .mixers
= { alc260_hp_3013_mixer
,
7217 alc260_input_mixer
},
7218 .init_verbs
= { alc260_hp_3013_init_verbs
,
7219 alc260_hp_3013_unsol_verbs
},
7220 .num_dacs
= ARRAY_SIZE(alc260_dac_nids
),
7221 .dac_nids
= alc260_dac_nids
,
7222 .num_adc_nids
= ARRAY_SIZE(alc260_adc_nids_alt
),
7223 .adc_nids
= alc260_adc_nids_alt
,
7224 .num_channel_mode
= ARRAY_SIZE(alc260_modes
),
7225 .channel_mode
= alc260_modes
,
7226 .input_mux
= &alc260_capture_source
,
7227 .unsol_event
= alc260_hp_3013_unsol_event
,
7228 .init_hook
= alc260_hp_3013_automute
,
7230 [ALC260_FUJITSU_S702X
] = {
7231 .mixers
= { alc260_fujitsu_mixer
},
7232 .init_verbs
= { alc260_fujitsu_init_verbs
},
7233 .num_dacs
= ARRAY_SIZE(alc260_dac_nids
),
7234 .dac_nids
= alc260_dac_nids
,
7235 .num_adc_nids
= ARRAY_SIZE(alc260_dual_adc_nids
),
7236 .adc_nids
= alc260_dual_adc_nids
,
7237 .num_channel_mode
= ARRAY_SIZE(alc260_modes
),
7238 .channel_mode
= alc260_modes
,
7239 .num_mux_defs
= ARRAY_SIZE(alc260_fujitsu_capture_sources
),
7240 .input_mux
= alc260_fujitsu_capture_sources
,
7243 .mixers
= { alc260_acer_mixer
},
7244 .init_verbs
= { alc260_acer_init_verbs
},
7245 .num_dacs
= ARRAY_SIZE(alc260_dac_nids
),
7246 .dac_nids
= alc260_dac_nids
,
7247 .num_adc_nids
= ARRAY_SIZE(alc260_dual_adc_nids
),
7248 .adc_nids
= alc260_dual_adc_nids
,
7249 .num_channel_mode
= ARRAY_SIZE(alc260_modes
),
7250 .channel_mode
= alc260_modes
,
7251 .num_mux_defs
= ARRAY_SIZE(alc260_acer_capture_sources
),
7252 .input_mux
= alc260_acer_capture_sources
,
7254 [ALC260_FAVORIT100
] = {
7255 .mixers
= { alc260_favorit100_mixer
},
7256 .init_verbs
= { alc260_favorit100_init_verbs
},
7257 .num_dacs
= ARRAY_SIZE(alc260_dac_nids
),
7258 .dac_nids
= alc260_dac_nids
,
7259 .num_adc_nids
= ARRAY_SIZE(alc260_dual_adc_nids
),
7260 .adc_nids
= alc260_dual_adc_nids
,
7261 .num_channel_mode
= ARRAY_SIZE(alc260_modes
),
7262 .channel_mode
= alc260_modes
,
7263 .num_mux_defs
= ARRAY_SIZE(alc260_favorit100_capture_sources
),
7264 .input_mux
= alc260_favorit100_capture_sources
,
7267 .mixers
= { alc260_will_mixer
},
7268 .init_verbs
= { alc260_init_verbs
, alc260_will_verbs
},
7269 .num_dacs
= ARRAY_SIZE(alc260_dac_nids
),
7270 .dac_nids
= alc260_dac_nids
,
7271 .num_adc_nids
= ARRAY_SIZE(alc260_adc_nids
),
7272 .adc_nids
= alc260_adc_nids
,
7273 .dig_out_nid
= ALC260_DIGOUT_NID
,
7274 .num_channel_mode
= ARRAY_SIZE(alc260_modes
),
7275 .channel_mode
= alc260_modes
,
7276 .input_mux
= &alc260_capture_source
,
7278 [ALC260_REPLACER_672V
] = {
7279 .mixers
= { alc260_replacer_672v_mixer
},
7280 .init_verbs
= { alc260_init_verbs
, alc260_replacer_672v_verbs
},
7281 .num_dacs
= ARRAY_SIZE(alc260_dac_nids
),
7282 .dac_nids
= alc260_dac_nids
,
7283 .num_adc_nids
= ARRAY_SIZE(alc260_adc_nids
),
7284 .adc_nids
= alc260_adc_nids
,
7285 .dig_out_nid
= ALC260_DIGOUT_NID
,
7286 .num_channel_mode
= ARRAY_SIZE(alc260_modes
),
7287 .channel_mode
= alc260_modes
,
7288 .input_mux
= &alc260_capture_source
,
7289 .unsol_event
= alc260_replacer_672v_unsol_event
,
7290 .init_hook
= alc260_replacer_672v_automute
,
7292 #ifdef CONFIG_SND_DEBUG
7294 .mixers
= { alc260_test_mixer
},
7295 .init_verbs
= { alc260_test_init_verbs
},
7296 .num_dacs
= ARRAY_SIZE(alc260_test_dac_nids
),
7297 .dac_nids
= alc260_test_dac_nids
,
7298 .num_adc_nids
= ARRAY_SIZE(alc260_test_adc_nids
),
7299 .adc_nids
= alc260_test_adc_nids
,
7300 .num_channel_mode
= ARRAY_SIZE(alc260_modes
),
7301 .channel_mode
= alc260_modes
,
7302 .num_mux_defs
= ARRAY_SIZE(alc260_test_capture_sources
),
7303 .input_mux
= alc260_test_capture_sources
,
7308 static int patch_alc260(struct hda_codec
*codec
)
7310 struct alc_spec
*spec
;
7311 int err
, board_config
;
7313 spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
7319 board_config
= snd_hda_check_board_config(codec
, ALC260_MODEL_LAST
,
7322 if (board_config
< 0) {
7323 snd_printd(KERN_INFO
"hda_codec: %s: BIOS auto-probing.\n",
7325 board_config
= ALC260_AUTO
;
7328 if (board_config
== ALC260_AUTO
) {
7329 alc_pick_fixup(codec
, NULL
, alc260_fixup_tbl
, alc260_fixups
);
7330 alc_apply_fixup(codec
, ALC_FIXUP_ACT_PRE_PROBE
);
7333 if (board_config
== ALC260_AUTO
) {
7334 /* automatic parse from the BIOS config */
7335 err
= alc260_parse_auto_config(codec
);
7341 "hda_codec: Cannot set up configuration "
7342 "from BIOS. Using base mode...\n");
7343 board_config
= ALC260_BASIC
;
7347 err
= snd_hda_attach_beep_device(codec
, 0x1);
7353 if (board_config
!= ALC260_AUTO
)
7354 setup_preset(codec
, &alc260_presets
[board_config
]);
7356 spec
->stream_analog_playback
= &alc260_pcm_analog_playback
;
7357 spec
->stream_analog_capture
= &alc260_pcm_analog_capture
;
7358 spec
->stream_analog_alt_capture
= &alc260_pcm_analog_capture
;
7360 spec
->stream_digital_playback
= &alc260_pcm_digital_playback
;
7361 spec
->stream_digital_capture
= &alc260_pcm_digital_capture
;
7363 if (!spec
->adc_nids
&& spec
->input_mux
) {
7364 /* check whether NID 0x04 is valid */
7365 unsigned int wcap
= get_wcaps(codec
, 0x04);
7366 wcap
= get_wcaps_type(wcap
);
7368 if (wcap
!= AC_WID_AUD_IN
|| spec
->input_mux
->num_items
== 1) {
7369 spec
->adc_nids
= alc260_adc_nids_alt
;
7370 spec
->num_adc_nids
= ARRAY_SIZE(alc260_adc_nids_alt
);
7372 spec
->adc_nids
= alc260_adc_nids
;
7373 spec
->num_adc_nids
= ARRAY_SIZE(alc260_adc_nids
);
7376 set_capture_mixer(codec
);
7377 set_beep_amp(spec
, 0x07, 0x05, HDA_INPUT
);
7379 alc_apply_fixup(codec
, ALC_FIXUP_ACT_PROBE
);
7381 spec
->vmaster_nid
= 0x08;
7383 codec
->patch_ops
= alc_patch_ops
;
7384 if (board_config
== ALC260_AUTO
)
7385 spec
->init_hook
= alc260_auto_init
;
7386 #ifdef CONFIG_SND_HDA_POWER_SAVE
7387 if (!spec
->loopback
.amplist
)
7388 spec
->loopback
.amplist
= alc260_loopbacks
;
7396 * ALC882/883/885/888/889 support
7398 * ALC882 is almost identical with ALC880 but has cleaner and more flexible
7399 * configuration. Each pin widget can choose any input DACs and a mixer.
7400 * Each ADC is connected from a mixer of all inputs. This makes possible
7401 * 6-channel independent captures.
7403 * In addition, an independent DAC for the multi-playback (not used in this
7406 #define ALC882_DIGOUT_NID 0x06
7407 #define ALC882_DIGIN_NID 0x0a
7408 #define ALC883_DIGOUT_NID ALC882_DIGOUT_NID
7409 #define ALC883_DIGIN_NID ALC882_DIGIN_NID
7410 #define ALC1200_DIGOUT_NID 0x10
7413 static struct hda_channel_mode alc882_ch_modes
[1] = {
7418 static hda_nid_t alc882_dac_nids
[4] = {
7419 /* front, rear, clfe, rear_surr */
7420 0x02, 0x03, 0x04, 0x05
7422 #define alc883_dac_nids alc882_dac_nids
7425 #define alc882_adc_nids alc880_adc_nids
7426 #define alc882_adc_nids_alt alc880_adc_nids_alt
7427 #define alc883_adc_nids alc882_adc_nids_alt
7428 static hda_nid_t alc883_adc_nids_alt
[1] = { 0x08 };
7429 static hda_nid_t alc883_adc_nids_rev
[2] = { 0x09, 0x08 };
7430 #define alc889_adc_nids alc880_adc_nids
7432 static hda_nid_t alc882_capsrc_nids
[3] = { 0x24, 0x23, 0x22 };
7433 static hda_nid_t alc882_capsrc_nids_alt
[2] = { 0x23, 0x22 };
7434 #define alc883_capsrc_nids alc882_capsrc_nids_alt
7435 static hda_nid_t alc883_capsrc_nids_rev
[2] = { 0x22, 0x23 };
7436 #define alc889_capsrc_nids alc882_capsrc_nids
7439 /* FIXME: should be a matrix-type input source selection */
7441 static struct hda_input_mux alc882_capture_source
= {
7445 { "Front Mic", 0x1 },
7451 #define alc883_capture_source alc882_capture_source
7453 static struct hda_input_mux alc889_capture_source
= {
7456 { "Front Mic", 0x0 },
7462 static struct hda_input_mux mb5_capture_source
= {
7471 static struct hda_input_mux macmini3_capture_source
= {
7479 static struct hda_input_mux alc883_3stack_6ch_intel
= {
7483 { "Front Mic", 0x0 },
7489 static struct hda_input_mux alc883_lenovo_101e_capture_source
= {
7497 static struct hda_input_mux alc883_lenovo_nb0763_capture_source
= {
7501 { "Internal Mic", 0x1 },
7507 static struct hda_input_mux alc883_fujitsu_pi2515_capture_source
= {
7511 { "Internal Mic", 0x1 },
7515 static struct hda_input_mux alc883_lenovo_sky_capture_source
= {
7519 { "Front Mic", 0x1 },
7524 static struct hda_input_mux alc883_asus_eee1601_capture_source
= {
7532 static struct hda_input_mux alc889A_mb31_capture_source
= {
7536 /* Front Mic (0x01) unused */
7538 /* Line 2 (0x03) unused */
7539 /* CD (0x04) unused? */
7543 static struct hda_input_mux alc889A_imac91_capture_source
= {
7547 { "Line", 0x2 }, /* Not sure! */
7554 static struct hda_channel_mode alc883_3ST_2ch_modes
[1] = {
7561 static struct hda_verb alc882_3ST_ch2_init
[] = {
7562 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
7563 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
7564 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
7565 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
7572 static struct hda_verb alc882_3ST_ch4_init
[] = {
7573 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
7574 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
7575 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7576 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7577 { 0x1a, AC_VERB_SET_CONNECT_SEL
, 0x01 },
7584 static struct hda_verb alc882_3ST_ch6_init
[] = {
7585 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7586 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7587 { 0x18, AC_VERB_SET_CONNECT_SEL
, 0x02 },
7588 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7589 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7590 { 0x1a, AC_VERB_SET_CONNECT_SEL
, 0x01 },
7594 static struct hda_channel_mode alc882_3ST_6ch_modes
[3] = {
7595 { 2, alc882_3ST_ch2_init
},
7596 { 4, alc882_3ST_ch4_init
},
7597 { 6, alc882_3ST_ch6_init
},
7600 #define alc883_3ST_6ch_modes alc882_3ST_6ch_modes
7605 static struct hda_verb alc883_3ST_ch2_clevo_init
[] = {
7606 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
7607 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
7608 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
7609 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
7610 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
7617 static struct hda_verb alc883_3ST_ch4_clevo_init
[] = {
7618 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7619 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
7620 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
7621 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7622 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7623 { 0x1a, AC_VERB_SET_CONNECT_SEL
, 0x01 },
7630 static struct hda_verb alc883_3ST_ch6_clevo_init
[] = {
7631 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7632 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7633 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7634 { 0x18, AC_VERB_SET_CONNECT_SEL
, 0x02 },
7635 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7636 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7637 { 0x1a, AC_VERB_SET_CONNECT_SEL
, 0x01 },
7641 static struct hda_channel_mode alc883_3ST_6ch_clevo_modes
[3] = {
7642 { 2, alc883_3ST_ch2_clevo_init
},
7643 { 4, alc883_3ST_ch4_clevo_init
},
7644 { 6, alc883_3ST_ch6_clevo_init
},
7651 static struct hda_verb alc882_sixstack_ch6_init
[] = {
7652 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x00 },
7653 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7654 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7655 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7662 static struct hda_verb alc882_sixstack_ch8_init
[] = {
7663 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7664 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7665 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7666 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7670 static struct hda_channel_mode alc882_sixstack_modes
[2] = {
7671 { 6, alc882_sixstack_ch6_init
},
7672 { 8, alc882_sixstack_ch8_init
},
7676 /* Macbook Air 2,1 */
7678 static struct hda_channel_mode alc885_mba21_ch_modes
[1] = {
7683 * macbook pro ALC885 can switch LineIn to LineOut without losing Mic
7689 static struct hda_verb alc885_mbp_ch2_init
[] = {
7690 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
7691 { 0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
7692 { 0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
7699 static struct hda_verb alc885_mbp_ch4_init
[] = {
7700 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7701 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7702 { 0x1a, AC_VERB_SET_CONNECT_SEL
, 0x01 },
7703 { 0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
7704 { 0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
7708 static struct hda_channel_mode alc885_mbp_4ch_modes
[2] = {
7709 { 2, alc885_mbp_ch2_init
},
7710 { 4, alc885_mbp_ch4_init
},
7715 * Speakers/Woofer/HP = Front
7718 static struct hda_verb alc885_mb5_ch2_init
[] = {
7719 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
7720 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
7726 * Speakers/HP = Front
7730 static struct hda_verb alc885_mb5_ch6_init
[] = {
7731 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7732 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7733 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x01},
7737 static struct hda_channel_mode alc885_mb5_6ch_modes
[2] = {
7738 { 2, alc885_mb5_ch2_init
},
7739 { 6, alc885_mb5_ch6_init
},
7742 #define alc885_macmini3_6ch_modes alc885_mb5_6ch_modes
7747 static struct hda_verb alc883_4ST_ch2_init
[] = {
7748 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7749 { 0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7750 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
7751 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
7752 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
7753 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
7760 static struct hda_verb alc883_4ST_ch4_init
[] = {
7761 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7762 { 0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7763 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
7764 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
7765 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7766 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7767 { 0x1a, AC_VERB_SET_CONNECT_SEL
, 0x01 },
7774 static struct hda_verb alc883_4ST_ch6_init
[] = {
7775 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7776 { 0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7777 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7778 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7779 { 0x18, AC_VERB_SET_CONNECT_SEL
, 0x02 },
7780 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7781 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7782 { 0x1a, AC_VERB_SET_CONNECT_SEL
, 0x01 },
7789 static struct hda_verb alc883_4ST_ch8_init
[] = {
7790 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7791 { 0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7792 { 0x17, AC_VERB_SET_CONNECT_SEL
, 0x03 },
7793 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7794 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7795 { 0x18, AC_VERB_SET_CONNECT_SEL
, 0x02 },
7796 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7797 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7798 { 0x1a, AC_VERB_SET_CONNECT_SEL
, 0x01 },
7802 static struct hda_channel_mode alc883_4ST_8ch_modes
[4] = {
7803 { 2, alc883_4ST_ch2_init
},
7804 { 4, alc883_4ST_ch4_init
},
7805 { 6, alc883_4ST_ch6_init
},
7806 { 8, alc883_4ST_ch8_init
},
7813 static struct hda_verb alc883_3ST_ch2_intel_init
[] = {
7814 { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
7815 { 0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
7816 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
7817 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
7824 static struct hda_verb alc883_3ST_ch4_intel_init
[] = {
7825 { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
7826 { 0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
7827 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7828 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7829 { 0x1a, AC_VERB_SET_CONNECT_SEL
, 0x01 },
7836 static struct hda_verb alc883_3ST_ch6_intel_init
[] = {
7837 { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7838 { 0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7839 { 0x19, AC_VERB_SET_CONNECT_SEL
, 0x02 },
7840 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7841 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7842 { 0x1a, AC_VERB_SET_CONNECT_SEL
, 0x01 },
7846 static struct hda_channel_mode alc883_3ST_6ch_intel_modes
[3] = {
7847 { 2, alc883_3ST_ch2_intel_init
},
7848 { 4, alc883_3ST_ch4_intel_init
},
7849 { 6, alc883_3ST_ch6_intel_init
},
7855 static struct hda_verb alc889_ch2_intel_init
[] = {
7856 { 0x14, AC_VERB_SET_CONNECT_SEL
, 0x00 },
7857 { 0x19, AC_VERB_SET_CONNECT_SEL
, 0x00 },
7858 { 0x16, AC_VERB_SET_CONNECT_SEL
, 0x00 },
7859 { 0x17, AC_VERB_SET_CONNECT_SEL
, 0x00 },
7860 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
7861 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
7868 static struct hda_verb alc889_ch6_intel_init
[] = {
7869 { 0x14, AC_VERB_SET_CONNECT_SEL
, 0x00 },
7870 { 0x19, AC_VERB_SET_CONNECT_SEL
, 0x01 },
7871 { 0x16, AC_VERB_SET_CONNECT_SEL
, 0x02 },
7872 { 0x17, AC_VERB_SET_CONNECT_SEL
, 0x03 },
7873 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
7874 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
7881 static struct hda_verb alc889_ch8_intel_init
[] = {
7882 { 0x14, AC_VERB_SET_CONNECT_SEL
, 0x00 },
7883 { 0x19, AC_VERB_SET_CONNECT_SEL
, 0x01 },
7884 { 0x16, AC_VERB_SET_CONNECT_SEL
, 0x02 },
7885 { 0x17, AC_VERB_SET_CONNECT_SEL
, 0x03 },
7886 { 0x1a, AC_VERB_SET_CONNECT_SEL
, 0x03 },
7887 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7888 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7892 static struct hda_channel_mode alc889_8ch_intel_modes
[3] = {
7893 { 2, alc889_ch2_intel_init
},
7894 { 6, alc889_ch6_intel_init
},
7895 { 8, alc889_ch8_intel_init
},
7901 static struct hda_verb alc883_sixstack_ch6_init
[] = {
7902 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x00 },
7903 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7904 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7905 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7912 static struct hda_verb alc883_sixstack_ch8_init
[] = {
7913 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7914 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7915 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7916 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7920 static struct hda_channel_mode alc883_sixstack_modes
[2] = {
7921 { 6, alc883_sixstack_ch6_init
},
7922 { 8, alc883_sixstack_ch8_init
},
7926 /* Pin assignment: Front=0x14, Rear=0x15, CLFE=0x16, Side=0x17
7927 * Mic=0x18, Front Mic=0x19, Line-In=0x1a, HP=0x1b
7929 static struct snd_kcontrol_new alc882_base_mixer
[] = {
7930 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
7931 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
7932 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
7933 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT
),
7934 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT
),
7935 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT
),
7936 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT
),
7937 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT
),
7938 HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT
),
7939 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT
),
7940 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
7941 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
7942 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
7943 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
7944 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
7945 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
7946 HDA_CODEC_VOLUME("Mic Boost Volume", 0x18, 0, HDA_INPUT
),
7947 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
7948 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
7949 HDA_CODEC_VOLUME("Front Mic Boost Volume", 0x19, 0, HDA_INPUT
),
7950 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
7954 /* Macbook Air 2,1 same control for HP and internal Speaker */
7956 static struct snd_kcontrol_new alc885_mba21_mixer
[] = {
7957 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0c, 0x00, HDA_OUTPUT
),
7958 HDA_BIND_MUTE("Speaker Playback Switch", 0x0c, 0x02, HDA_OUTPUT
),
7963 static struct snd_kcontrol_new alc885_mbp3_mixer
[] = {
7964 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0c, 0x00, HDA_OUTPUT
),
7965 HDA_BIND_MUTE ("Speaker Playback Switch", 0x0c, 0x02, HDA_INPUT
),
7966 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0e, 0x00, HDA_OUTPUT
),
7967 HDA_BIND_MUTE ("Headphone Playback Switch", 0x0e, 0x02, HDA_INPUT
),
7968 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x00, HDA_OUTPUT
),
7969 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
7970 HDA_CODEC_MUTE ("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
7971 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x00, HDA_INPUT
),
7972 HDA_CODEC_MUTE ("Mic Playback Switch", 0x0b, 0x00, HDA_INPUT
),
7973 HDA_CODEC_VOLUME("Line Boost Volume", 0x1a, 0x00, HDA_INPUT
),
7974 HDA_CODEC_VOLUME("Mic Boost Volume", 0x18, 0x00, HDA_INPUT
),
7978 static struct snd_kcontrol_new alc885_mb5_mixer
[] = {
7979 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x00, HDA_OUTPUT
),
7980 HDA_BIND_MUTE ("Front Playback Switch", 0x0c, 0x02, HDA_INPUT
),
7981 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x00, HDA_OUTPUT
),
7982 HDA_BIND_MUTE ("Surround Playback Switch", 0x0d, 0x02, HDA_INPUT
),
7983 HDA_CODEC_VOLUME("LFE Playback Volume", 0x0e, 0x00, HDA_OUTPUT
),
7984 HDA_BIND_MUTE ("LFE Playback Switch", 0x0e, 0x02, HDA_INPUT
),
7985 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0f, 0x00, HDA_OUTPUT
),
7986 HDA_BIND_MUTE ("Headphone Playback Switch", 0x0f, 0x02, HDA_INPUT
),
7987 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x07, HDA_INPUT
),
7988 HDA_CODEC_MUTE ("Line Playback Switch", 0x0b, 0x07, HDA_INPUT
),
7989 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x01, HDA_INPUT
),
7990 HDA_CODEC_MUTE ("Mic Playback Switch", 0x0b, 0x01, HDA_INPUT
),
7991 HDA_CODEC_VOLUME("Line Boost Volume", 0x15, 0x00, HDA_INPUT
),
7992 HDA_CODEC_VOLUME("Mic Boost Volume", 0x19, 0x00, HDA_INPUT
),
7996 static struct snd_kcontrol_new alc885_macmini3_mixer
[] = {
7997 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x00, HDA_OUTPUT
),
7998 HDA_BIND_MUTE ("Front Playback Switch", 0x0c, 0x02, HDA_INPUT
),
7999 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x00, HDA_OUTPUT
),
8000 HDA_BIND_MUTE ("Surround Playback Switch", 0x0d, 0x02, HDA_INPUT
),
8001 HDA_CODEC_VOLUME("LFE Playback Volume", 0x0e, 0x00, HDA_OUTPUT
),
8002 HDA_BIND_MUTE ("LFE Playback Switch", 0x0e, 0x02, HDA_INPUT
),
8003 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0f, 0x00, HDA_OUTPUT
),
8004 HDA_BIND_MUTE ("Headphone Playback Switch", 0x0f, 0x02, HDA_INPUT
),
8005 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x07, HDA_INPUT
),
8006 HDA_CODEC_MUTE ("Line Playback Switch", 0x0b, 0x07, HDA_INPUT
),
8007 HDA_CODEC_VOLUME("Line Boost Volume", 0x15, 0x00, HDA_INPUT
),
8011 static struct snd_kcontrol_new alc885_imac91_mixer
[] = {
8012 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0c, 0x00, HDA_OUTPUT
),
8013 HDA_BIND_MUTE("Speaker Playback Switch", 0x0c, 0x02, HDA_INPUT
),
8018 static struct snd_kcontrol_new alc882_w2jc_mixer
[] = {
8019 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
8020 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
8021 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
8022 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
8023 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
8024 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
8025 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
8026 HDA_CODEC_VOLUME("Mic Boost Volume", 0x18, 0, HDA_INPUT
),
8027 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
8031 static struct snd_kcontrol_new alc882_targa_mixer
[] = {
8032 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
8033 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
8034 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
8035 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
8036 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
8037 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
8038 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
8039 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
8040 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
8041 HDA_CODEC_VOLUME("Mic Boost Volume", 0x18, 0, HDA_INPUT
),
8042 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
8043 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
8044 HDA_CODEC_VOLUME("Front Mic Boost Volume", 0x19, 0, HDA_INPUT
),
8048 /* Pin assignment: Front=0x14, HP = 0x15, Front = 0x16, ???
8049 * Front Mic=0x18, Line In = 0x1a, Line In = 0x1b, CD = 0x1c
8051 static struct snd_kcontrol_new alc882_asus_a7j_mixer
[] = {
8052 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
8053 HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
8054 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
8055 HDA_CODEC_MUTE("Mobile Front Playback Switch", 0x16, 0x0, HDA_OUTPUT
),
8056 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
8057 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
8058 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
8059 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
8060 HDA_CODEC_VOLUME("Mobile Line Playback Volume", 0x0b, 0x03, HDA_INPUT
),
8061 HDA_CODEC_MUTE("Mobile Line Playback Switch", 0x0b, 0x03, HDA_INPUT
),
8062 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
8063 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
8064 HDA_CODEC_VOLUME("Mic Boost Volume", 0x18, 0, HDA_INPUT
),
8068 static struct snd_kcontrol_new alc882_asus_a7m_mixer
[] = {
8069 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
8070 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
8071 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
8072 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
8073 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
8074 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
8075 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
8076 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
8077 HDA_CODEC_VOLUME("Mic Boost Volume", 0x18, 0, HDA_INPUT
),
8078 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
8082 static struct snd_kcontrol_new alc882_chmode_mixer
[] = {
8084 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
8085 .name
= "Channel Mode",
8086 .info
= alc_ch_mode_info
,
8087 .get
= alc_ch_mode_get
,
8088 .put
= alc_ch_mode_put
,
8093 static struct hda_verb alc882_base_init_verbs
[] = {
8094 /* Front mixer: unmute input/output amp left and right (volume = 0) */
8095 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
8096 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
8098 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
8099 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
8101 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
8102 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
8104 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
8105 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
8107 /* Front Pin: output 0 (0x0c) */
8108 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
8109 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
8110 {0x14, AC_VERB_SET_CONNECT_SEL
, 0x00},
8111 /* Rear Pin: output 1 (0x0d) */
8112 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
8113 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
8114 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x01},
8115 /* CLFE Pin: output 2 (0x0e) */
8116 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
8117 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
8118 {0x16, AC_VERB_SET_CONNECT_SEL
, 0x02},
8119 /* Side Pin: output 3 (0x0f) */
8120 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
8121 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
8122 {0x17, AC_VERB_SET_CONNECT_SEL
, 0x03},
8123 /* Mic (rear) pin: input vref at 80% */
8124 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
8125 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
8126 /* Front Mic pin: input vref at 80% */
8127 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
8128 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
8129 /* Line In pin: input */
8130 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
8131 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
8132 /* Line-2 In: Headphone output (output 0 - 0x0c) */
8133 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
8134 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
8135 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0x00},
8136 /* CD pin widget for input */
8137 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
8139 /* FIXME: use matrix-type input source selection */
8140 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
8142 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8144 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8145 /* ADC2: mute amp left and right */
8146 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
8147 {0x08, AC_VERB_SET_CONNECT_SEL
, 0x00},
8148 /* ADC3: mute amp left and right */
8149 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
8150 {0x09, AC_VERB_SET_CONNECT_SEL
, 0x00},
8155 static struct hda_verb alc882_adc1_init_verbs
[] = {
8156 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
8157 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8158 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
8159 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
8160 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
8161 /* ADC1: mute amp left and right */
8162 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
8163 {0x07, AC_VERB_SET_CONNECT_SEL
, 0x00},
8167 static struct hda_verb alc882_eapd_verbs
[] = {
8168 /* change to EAPD mode */
8169 {0x20, AC_VERB_SET_COEF_INDEX
, 0x07},
8170 {0x20, AC_VERB_SET_PROC_COEF
, 0x3060},
8174 static struct hda_verb alc889_eapd_verbs
[] = {
8175 {0x14, AC_VERB_SET_EAPD_BTLENABLE
, 2},
8176 {0x15, AC_VERB_SET_EAPD_BTLENABLE
, 2},
8180 static struct hda_verb alc_hp15_unsol_verbs
[] = {
8181 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
8182 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
8186 static struct hda_verb alc885_init_verbs
[] = {
8187 /* Front mixer: unmute input/output amp left and right (volume = 0) */
8188 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8189 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
8191 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8192 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
8194 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8195 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
8197 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8198 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
8200 /* Front HP Pin: output 0 (0x0c) */
8201 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
8202 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
8203 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00},
8204 /* Front Pin: output 0 (0x0c) */
8205 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
8206 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
8207 {0x14, AC_VERB_SET_CONNECT_SEL
, 0x00},
8208 /* Rear Pin: output 1 (0x0d) */
8209 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
8210 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
8211 {0x19, AC_VERB_SET_CONNECT_SEL
, 0x01},
8212 /* CLFE Pin: output 2 (0x0e) */
8213 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
8214 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
8215 {0x16, AC_VERB_SET_CONNECT_SEL
, 0x02},
8216 /* Side Pin: output 3 (0x0f) */
8217 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
8218 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
8219 {0x17, AC_VERB_SET_CONNECT_SEL
, 0x03},
8220 /* Mic (rear) pin: input vref at 80% */
8221 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
8222 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
8223 /* Front Mic pin: input vref at 80% */
8224 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
8225 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
8226 /* Line In pin: input */
8227 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
8228 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
8230 /* Mixer elements: 0x18, , 0x1a, 0x1b */
8232 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8234 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8236 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8237 /* ADC2: mute amp left and right */
8238 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
8239 /* ADC3: mute amp left and right */
8240 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
8245 static struct hda_verb alc885_init_input_verbs
[] = {
8246 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8247 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(2)},
8248 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(3)},
8253 /* Unmute Selector 24h and set the default input to front mic */
8254 static struct hda_verb alc889_init_input_verbs
[] = {
8255 {0x24, AC_VERB_SET_CONNECT_SEL
, 0x00},
8256 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
8261 #define alc883_init_verbs alc882_base_init_verbs
8264 static struct snd_kcontrol_new alc882_macpro_mixer
[] = {
8265 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
8266 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
8267 HDA_CODEC_MUTE("Headphone Playback Switch", 0x18, 0x0, HDA_OUTPUT
),
8268 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x01, HDA_INPUT
),
8269 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x01, HDA_INPUT
),
8270 /* FIXME: this looks suspicious...
8271 HDA_CODEC_VOLUME("Beep Playback Volume", 0x0b, 0x02, HDA_INPUT),
8272 HDA_CODEC_MUTE("Beep Playback Switch", 0x0b, 0x02, HDA_INPUT),
8277 static struct hda_verb alc882_macpro_init_verbs
[] = {
8278 /* Front mixer: unmute input/output amp left and right (volume = 0) */
8279 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
8280 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
8281 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
8282 /* Front Pin: output 0 (0x0c) */
8283 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
8284 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
8285 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00},
8286 /* Front Mic pin: input vref at 80% */
8287 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
8288 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
8289 /* Speaker: output */
8290 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
8291 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
8292 {0x1a, AC_VERB_SET_CONNECT_SEL
, 0x04},
8293 /* Headphone output (output 0 - 0x0c) */
8294 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
8295 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
8296 {0x18, AC_VERB_SET_CONNECT_SEL
, 0x00},
8298 /* FIXME: use matrix-type input source selection */
8299 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
8300 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
8301 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8302 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
8303 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
8304 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
8306 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8307 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
8308 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
8309 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
8311 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8312 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
8313 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
8314 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
8315 /* ADC1: mute amp left and right */
8316 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
8317 {0x07, AC_VERB_SET_CONNECT_SEL
, 0x00},
8318 /* ADC2: mute amp left and right */
8319 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
8320 {0x08, AC_VERB_SET_CONNECT_SEL
, 0x00},
8321 /* ADC3: mute amp left and right */
8322 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
8323 {0x09, AC_VERB_SET_CONNECT_SEL
, 0x00},
8329 static struct hda_verb alc885_mb5_init_verbs
[] = {
8331 {0x02, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
8332 {0x03, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
8333 {0x04, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
8334 {0x05, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
8336 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
8337 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
8338 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
8339 /* Surround mixer */
8340 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
8341 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
8342 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
8344 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
8345 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
8346 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
8348 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
8349 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
8350 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
8351 /* Front Pin (0x0c) */
8352 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
| 0x01},
8353 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
8354 {0x18, AC_VERB_SET_CONNECT_SEL
, 0x00},
8355 /* LFE Pin (0x0e) */
8356 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
| 0x01},
8357 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
8358 {0x1a, AC_VERB_SET_CONNECT_SEL
, 0x02},
8360 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
8361 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
8362 {0x14, AC_VERB_SET_CONNECT_SEL
, 0x03},
8363 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
8364 /* Front Mic pin: input vref at 80% */
8365 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
8366 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
8368 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
8369 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
8371 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0x1)},
8372 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0x7)},
8373 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0x4)},
8378 static struct hda_verb alc885_macmini3_init_verbs
[] = {
8380 {0x02, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
8381 {0x03, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
8382 {0x04, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
8383 {0x05, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
8385 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
8386 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
8387 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
8388 /* Surround mixer */
8389 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
8390 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
8391 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
8393 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
8394 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
8395 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
8397 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
8398 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
8399 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
8400 /* Front Pin (0x0c) */
8401 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
| 0x01},
8402 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
8403 {0x18, AC_VERB_SET_CONNECT_SEL
, 0x00},
8404 /* LFE Pin (0x0e) */
8405 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
| 0x01},
8406 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
8407 {0x1a, AC_VERB_SET_CONNECT_SEL
, 0x02},
8409 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
8410 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
8411 {0x14, AC_VERB_SET_CONNECT_SEL
, 0x03},
8412 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
8414 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
8415 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
8417 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
8418 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
8419 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
8420 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
8425 static struct hda_verb alc885_mba21_init_verbs
[] = {
8426 /*Internal and HP Speaker Mixer*/
8427 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
8428 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8429 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
8430 /*Internal Speaker Pin (0x0c)*/
8431 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, (PIN_OUT
| AC_PINCTL_VREF_50
) },
8432 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
8433 {0x18, AC_VERB_SET_CONNECT_SEL
, 0x00},
8434 /* HP Pin: output 0 (0x0e) */
8435 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0xc4},
8436 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
8437 {0x14, AC_VERB_SET_CONNECT_SEL
, 0x00},
8438 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE
, (ALC880_HP_EVENT
| AC_USRSP_EN
)},
8439 /* Line in (is hp when jack connected)*/
8440 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, AC_PINCTL_VREF_50
},
8441 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
8447 /* Macbook Pro rev3 */
8448 static struct hda_verb alc885_mbp3_init_verbs
[] = {
8449 /* Front mixer: unmute input/output amp left and right (volume = 0) */
8450 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
8451 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
8452 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
8454 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
8455 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
8456 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
8458 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
8459 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
8460 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
8461 /* Front Pin: output 0 (0x0c) */
8462 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
8463 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
8464 {0x14, AC_VERB_SET_CONNECT_SEL
, 0x00},
8465 /* HP Pin: output 0 (0x0e) */
8466 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0xc4},
8467 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
8468 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x02},
8469 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
8470 /* Mic (rear) pin: input vref at 80% */
8471 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
8472 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
8473 /* Front Mic pin: input vref at 80% */
8474 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
8475 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
8476 /* Line In pin: use output 1 when in LineOut mode */
8477 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
8478 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
8479 {0x1a, AC_VERB_SET_CONNECT_SEL
, 0x01},
8481 /* FIXME: use matrix-type input source selection */
8482 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
8483 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
8484 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8485 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
8486 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
8487 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
8489 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8490 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
8491 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
8492 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
8494 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8495 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
8496 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
8497 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
8498 /* ADC1: mute amp left and right */
8499 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
8500 {0x07, AC_VERB_SET_CONNECT_SEL
, 0x00},
8501 /* ADC2: mute amp left and right */
8502 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
8503 {0x08, AC_VERB_SET_CONNECT_SEL
, 0x00},
8504 /* ADC3: mute amp left and right */
8505 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
8506 {0x09, AC_VERB_SET_CONNECT_SEL
, 0x00},
8512 static struct hda_verb alc885_imac91_init_verbs
[] = {
8513 /* Internal Speaker Pin (0x0c) */
8514 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, (PIN_OUT
| AC_PINCTL_VREF_50
) },
8515 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
8516 {0x18, AC_VERB_SET_CONNECT_SEL
, 0x00},
8517 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, (PIN_OUT
| AC_PINCTL_VREF_50
) },
8518 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
8519 {0x1a, AC_VERB_SET_CONNECT_SEL
, 0x00},
8521 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
8522 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
8523 {0x14, AC_VERB_SET_CONNECT_SEL
, 0x00},
8524 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE
, (ALC880_HP_EVENT
| AC_USRSP_EN
)},
8526 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, AC_PINCTL_VREF_50
},
8527 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
8528 /* Front Mic pin: input vref at 80% */
8529 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
8530 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
8532 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
8533 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
8534 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
8535 /* Line-Out mixer: unmute input/output amp left and right (volume = 0) */
8536 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
8537 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
8538 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
8539 /* 0x24 [Audio Mixer] wcaps 0x20010b: Stereo Amp-In */
8540 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8541 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
8542 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
8543 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
8544 /* 0x23 [Audio Mixer] wcaps 0x20010b: Stereo Amp-In */
8545 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8546 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
8547 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
8548 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
8549 /* 0x22 [Audio Mixer] wcaps 0x20010b: Stereo Amp-In */
8550 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8551 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
8552 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
8553 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
8554 /* 0x07 [Audio Input] wcaps 0x10011b: Stereo Amp-In */
8555 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
8556 {0x07, AC_VERB_SET_CONNECT_SEL
, 0x00},
8557 /* 0x08 [Audio Input] wcaps 0x10011b: Stereo Amp-In */
8558 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
8559 {0x08, AC_VERB_SET_CONNECT_SEL
, 0x00},
8560 /* 0x09 [Audio Input] wcaps 0x10011b: Stereo Amp-In */
8561 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
8562 {0x09, AC_VERB_SET_CONNECT_SEL
, 0x00},
8566 /* iMac 24 mixer. */
8567 static struct snd_kcontrol_new alc885_imac24_mixer
[] = {
8568 HDA_CODEC_VOLUME("Master Playback Volume", 0x0c, 0x00, HDA_OUTPUT
),
8569 HDA_CODEC_MUTE("Master Playback Switch", 0x0c, 0x00, HDA_INPUT
),
8573 /* iMac 24 init verbs. */
8574 static struct hda_verb alc885_imac24_init_verbs
[] = {
8575 /* Internal speakers: output 0 (0x0c) */
8576 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
8577 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
8578 {0x18, AC_VERB_SET_CONNECT_SEL
, 0x00},
8579 /* Internal speakers: output 0 (0x0c) */
8580 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
8581 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
8582 {0x1a, AC_VERB_SET_CONNECT_SEL
, 0x00},
8583 /* Headphone: output 0 (0x0c) */
8584 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
8585 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
8586 {0x14, AC_VERB_SET_CONNECT_SEL
, 0x00},
8587 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
8588 /* Front Mic: input vref at 80% */
8589 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
8590 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
8594 /* Toggle speaker-output according to the hp-jack state */
8595 static void alc885_imac24_setup(struct hda_codec
*codec
)
8597 struct alc_spec
*spec
= codec
->spec
;
8599 spec
->autocfg
.hp_pins
[0] = 0x14;
8600 spec
->autocfg
.speaker_pins
[0] = 0x18;
8601 spec
->autocfg
.speaker_pins
[1] = 0x1a;
8604 #define alc885_mb5_setup alc885_imac24_setup
8605 #define alc885_macmini3_setup alc885_imac24_setup
8607 /* Macbook Air 2,1 */
8608 static void alc885_mba21_setup(struct hda_codec
*codec
)
8610 struct alc_spec
*spec
= codec
->spec
;
8612 spec
->autocfg
.hp_pins
[0] = 0x14;
8613 spec
->autocfg
.speaker_pins
[0] = 0x18;
8618 static void alc885_mbp3_setup(struct hda_codec
*codec
)
8620 struct alc_spec
*spec
= codec
->spec
;
8622 spec
->autocfg
.hp_pins
[0] = 0x15;
8623 spec
->autocfg
.speaker_pins
[0] = 0x14;
8626 static void alc885_imac91_setup(struct hda_codec
*codec
)
8628 struct alc_spec
*spec
= codec
->spec
;
8630 spec
->autocfg
.hp_pins
[0] = 0x14;
8631 spec
->autocfg
.speaker_pins
[0] = 0x18;
8632 spec
->autocfg
.speaker_pins
[1] = 0x1a;
8635 static struct hda_verb alc882_targa_verbs
[] = {
8636 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8637 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
8639 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
8640 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
8642 {0x18, AC_VERB_SET_CONNECT_SEL
, 0x02}, /* mic/clfe */
8643 {0x1a, AC_VERB_SET_CONNECT_SEL
, 0x01}, /* line/surround */
8644 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* HP */
8646 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
8650 /* toggle speaker-output according to the hp-jack state */
8651 static void alc882_targa_automute(struct hda_codec
*codec
)
8653 struct alc_spec
*spec
= codec
->spec
;
8654 alc_automute_amp(codec
);
8655 snd_hda_codec_write_cache(codec
, 1, 0, AC_VERB_SET_GPIO_DATA
,
8656 spec
->jack_present
? 1 : 3);
8659 static void alc882_targa_setup(struct hda_codec
*codec
)
8661 struct alc_spec
*spec
= codec
->spec
;
8663 spec
->autocfg
.hp_pins
[0] = 0x14;
8664 spec
->autocfg
.speaker_pins
[0] = 0x1b;
8667 static void alc882_targa_unsol_event(struct hda_codec
*codec
, unsigned int res
)
8669 if ((res
>> 26) == ALC880_HP_EVENT
)
8670 alc882_targa_automute(codec
);
8673 static struct hda_verb alc882_asus_a7j_verbs
[] = {
8674 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8675 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
8677 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
8678 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
8679 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
8681 {0x14, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* Front */
8682 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* HP */
8683 {0x16, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* Front */
8685 {0x18, AC_VERB_SET_CONNECT_SEL
, 0x02}, /* mic/clfe */
8686 {0x1a, AC_VERB_SET_CONNECT_SEL
, 0x01}, /* line/surround */
8687 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* HP */
8691 static struct hda_verb alc882_asus_a7m_verbs
[] = {
8692 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8693 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
8695 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
8696 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
8697 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
8699 {0x14, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* Front */
8700 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* HP */
8701 {0x16, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* Front */
8703 {0x18, AC_VERB_SET_CONNECT_SEL
, 0x02}, /* mic/clfe */
8704 {0x1a, AC_VERB_SET_CONNECT_SEL
, 0x01}, /* line/surround */
8705 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* HP */
8709 static void alc882_gpio_mute(struct hda_codec
*codec
, int pin
, int muted
)
8711 unsigned int gpiostate
, gpiomask
, gpiodir
;
8713 gpiostate
= snd_hda_codec_read(codec
, codec
->afg
, 0,
8714 AC_VERB_GET_GPIO_DATA
, 0);
8717 gpiostate
|= (1 << pin
);
8719 gpiostate
&= ~(1 << pin
);
8721 gpiomask
= snd_hda_codec_read(codec
, codec
->afg
, 0,
8722 AC_VERB_GET_GPIO_MASK
, 0);
8723 gpiomask
|= (1 << pin
);
8725 gpiodir
= snd_hda_codec_read(codec
, codec
->afg
, 0,
8726 AC_VERB_GET_GPIO_DIRECTION
, 0);
8727 gpiodir
|= (1 << pin
);
8730 snd_hda_codec_write(codec
, codec
->afg
, 0,
8731 AC_VERB_SET_GPIO_MASK
, gpiomask
);
8732 snd_hda_codec_write(codec
, codec
->afg
, 0,
8733 AC_VERB_SET_GPIO_DIRECTION
, gpiodir
);
8737 snd_hda_codec_write(codec
, codec
->afg
, 0,
8738 AC_VERB_SET_GPIO_DATA
, gpiostate
);
8741 /* set up GPIO at initialization */
8742 static void alc885_macpro_init_hook(struct hda_codec
*codec
)
8744 alc882_gpio_mute(codec
, 0, 0);
8745 alc882_gpio_mute(codec
, 1, 0);
8748 /* set up GPIO and update auto-muting at initialization */
8749 static void alc885_imac24_init_hook(struct hda_codec
*codec
)
8751 alc885_macpro_init_hook(codec
);
8752 alc_automute_amp(codec
);
8756 * generic initialization of ADC, input mixers and output mixers
8758 static struct hda_verb alc883_auto_init_verbs
[] = {
8760 * Unmute ADC0-2 and set the default input to mic-in
8762 {0x08, AC_VERB_SET_CONNECT_SEL
, 0x00},
8763 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8764 {0x09, AC_VERB_SET_CONNECT_SEL
, 0x00},
8765 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8768 * Set up output mixers (0x0c - 0x0f)
8770 /* set vol=0 to output mixers */
8771 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
8772 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
8773 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
8774 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
8775 /* set up input amps for analog loopback */
8776 /* Amp Indices: DAC = 0, mixer = 1 */
8777 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8778 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
8779 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8780 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
8781 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8782 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
8783 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8784 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
8785 {0x26, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8786 {0x26, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
8788 /* FIXME: use matrix-type input source selection */
8789 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
8791 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8793 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8797 /* 2ch mode (Speaker:front, Subwoofer:CLFE, Line:input, Headphones:front) */
8798 static struct hda_verb alc889A_mb31_ch2_init
[] = {
8799 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* HP as front */
8800 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
}, /* Subwoofer on */
8801 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
}, /* Line as input */
8802 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
}, /* Line off */
8806 /* 4ch mode (Speaker:front, Subwoofer:CLFE, Line:CLFE, Headphones:front) */
8807 static struct hda_verb alc889A_mb31_ch4_init
[] = {
8808 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* HP as front */
8809 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
}, /* Subwoofer on */
8810 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
}, /* Line as output */
8811 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
}, /* Line on */
8815 /* 5ch mode (Speaker:front, Subwoofer:CLFE, Line:input, Headphones:rear) */
8816 static struct hda_verb alc889A_mb31_ch5_init
[] = {
8817 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x01}, /* HP as rear */
8818 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
}, /* Subwoofer on */
8819 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
}, /* Line as input */
8820 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
}, /* Line off */
8824 /* 6ch mode (Speaker:front, Subwoofer:off, Line:CLFE, Headphones:Rear) */
8825 static struct hda_verb alc889A_mb31_ch6_init
[] = {
8826 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x01}, /* HP as front */
8827 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
}, /* Subwoofer off */
8828 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
}, /* Line as output */
8829 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
}, /* Line on */
8833 static struct hda_channel_mode alc889A_mb31_6ch_modes
[4] = {
8834 { 2, alc889A_mb31_ch2_init
},
8835 { 4, alc889A_mb31_ch4_init
},
8836 { 5, alc889A_mb31_ch5_init
},
8837 { 6, alc889A_mb31_ch6_init
},
8840 static struct hda_verb alc883_medion_eapd_verbs
[] = {
8841 /* eanable EAPD on medion laptop */
8842 {0x20, AC_VERB_SET_COEF_INDEX
, 0x07},
8843 {0x20, AC_VERB_SET_PROC_COEF
, 0x3070},
8847 #define alc883_base_mixer alc882_base_mixer
8849 static struct snd_kcontrol_new alc883_mitac_mixer
[] = {
8850 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
8851 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
8852 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT
),
8853 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT
),
8854 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT
),
8855 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT
),
8856 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
8857 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
8858 HDA_CODEC_VOLUME("Mic Boost Volume", 0x18, 0, HDA_INPUT
),
8859 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
8860 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
8861 HDA_CODEC_VOLUME("Front Mic Boost Volume", 0x19, 0, HDA_INPUT
),
8862 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
8866 static struct snd_kcontrol_new alc883_clevo_m720_mixer
[] = {
8867 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
8868 HDA_BIND_MUTE("Headphone Playback Switch", 0x0c, 2, HDA_INPUT
),
8869 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
8870 HDA_BIND_MUTE("Speaker Playback Switch", 0x0d, 2, HDA_INPUT
),
8871 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
8872 HDA_CODEC_VOLUME("Mic Boost Volume", 0x18, 0, HDA_INPUT
),
8873 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
8874 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
8875 HDA_CODEC_VOLUME("Internal Mic Boost Volume", 0x19, 0, HDA_INPUT
),
8876 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
8880 static struct snd_kcontrol_new alc883_2ch_fujitsu_pi2515_mixer
[] = {
8881 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
8882 HDA_BIND_MUTE("Headphone Playback Switch", 0x0c, 2, HDA_INPUT
),
8883 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
8884 HDA_BIND_MUTE("Speaker Playback Switch", 0x0d, 2, HDA_INPUT
),
8885 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
8886 HDA_CODEC_VOLUME("Mic Boost Volume", 0x18, 0, HDA_INPUT
),
8887 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
8888 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
8889 HDA_CODEC_VOLUME("Internal Mic Boost Volume", 0x19, 0, HDA_INPUT
),
8890 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
8894 static struct snd_kcontrol_new alc883_3ST_2ch_mixer
[] = {
8895 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
8896 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
8897 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
8898 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
8899 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
8900 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
8901 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
8902 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
8903 HDA_CODEC_VOLUME("Mic Boost Volume", 0x18, 0, HDA_INPUT
),
8904 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
8905 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
8906 HDA_CODEC_VOLUME("Front Mic Boost Volume", 0x19, 0, HDA_INPUT
),
8907 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
8911 static struct snd_kcontrol_new alc883_3ST_6ch_mixer
[] = {
8912 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
8913 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
8914 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
8915 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT
),
8916 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT
),
8917 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT
),
8918 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT
),
8919 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT
),
8920 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
8921 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
8922 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
8923 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
8924 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
8925 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
8926 HDA_CODEC_VOLUME("Mic Boost Volume", 0x18, 0, HDA_INPUT
),
8927 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
8928 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
8929 HDA_CODEC_VOLUME("Front Mic Boost Volume", 0x19, 0, HDA_INPUT
),
8930 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
8934 static struct snd_kcontrol_new alc883_3ST_6ch_intel_mixer
[] = {
8935 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
8936 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
8937 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
8938 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT
),
8939 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0,
8941 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT
),
8942 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT
),
8943 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT
),
8944 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
8945 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
8946 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
8947 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
8948 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
8949 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
8950 HDA_CODEC_VOLUME("Mic Boost Volume", 0x19, 0, HDA_INPUT
),
8951 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
8952 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
8953 HDA_CODEC_VOLUME("Front Mic Boost Volume", 0x18, 0, HDA_INPUT
),
8954 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
8958 static struct snd_kcontrol_new alc885_8ch_intel_mixer
[] = {
8959 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
8960 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
8961 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
8962 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT
),
8963 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0,
8965 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT
),
8966 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT
),
8967 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT
),
8968 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0f, 0x0, HDA_OUTPUT
),
8969 HDA_BIND_MUTE("Speaker Playback Switch", 0x0f, 2, HDA_INPUT
),
8970 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
8971 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
8972 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
8973 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x3, HDA_INPUT
),
8974 HDA_CODEC_VOLUME("Mic Boost Volume", 0x1b, 0, HDA_INPUT
),
8975 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x3, HDA_INPUT
),
8976 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
8977 HDA_CODEC_VOLUME("Front Mic Boost Volume", 0x18, 0, HDA_INPUT
),
8978 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
8982 static struct snd_kcontrol_new alc883_fivestack_mixer
[] = {
8983 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
8984 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
8985 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
8986 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT
),
8987 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT
),
8988 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT
),
8989 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT
),
8990 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT
),
8991 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
8992 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
8993 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
8994 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
8995 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
8996 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
8997 HDA_CODEC_VOLUME("Mic Boost Volume", 0x18, 0, HDA_INPUT
),
8998 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
8999 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
9000 HDA_CODEC_VOLUME("Front Mic Boost Volume", 0x19, 0, HDA_INPUT
),
9001 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
9005 static struct snd_kcontrol_new alc883_targa_mixer
[] = {
9006 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
9007 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
9008 HDA_CODEC_MUTE("Headphone Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
9009 HDA_CODEC_MUTE("Speaker Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
9010 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
9011 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT
),
9012 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT
),
9013 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT
),
9014 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT
),
9015 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT
),
9016 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
9017 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
9018 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
9019 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
9020 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
9021 HDA_CODEC_VOLUME("Mic Boost Volume", 0x18, 0, HDA_INPUT
),
9022 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
9026 static struct snd_kcontrol_new alc883_targa_2ch_mixer
[] = {
9027 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
9028 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
9029 HDA_CODEC_MUTE("Headphone Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
9030 HDA_CODEC_MUTE("Speaker Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
9031 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
9032 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
9033 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
9034 HDA_CODEC_VOLUME("Mic Boost Volume", 0x18, 0, HDA_INPUT
),
9035 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
9036 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
9037 HDA_CODEC_VOLUME("Internal Mic Boost Volume", 0x19, 0, HDA_INPUT
),
9038 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
9042 static struct snd_kcontrol_new alc883_targa_8ch_mixer
[] = {
9043 HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT
),
9044 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT
),
9045 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
9046 HDA_CODEC_VOLUME("Internal Mic Boost Volume", 0x19, 0, HDA_INPUT
),
9047 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
9051 static struct snd_kcontrol_new alc883_lenovo_101e_2ch_mixer
[] = {
9052 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
9053 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
9054 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
9055 HDA_BIND_MUTE("Speaker Playback Switch", 0x0d, 2, HDA_INPUT
),
9056 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
9057 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
9058 HDA_CODEC_VOLUME("Mic Boost Volume", 0x18, 0, HDA_INPUT
),
9059 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
9063 static struct snd_kcontrol_new alc883_lenovo_nb0763_mixer
[] = {
9064 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
9065 HDA_BIND_MUTE("Speaker Playback Switch", 0x0c, 2, HDA_INPUT
),
9066 HDA_CODEC_MUTE("Headphone Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
9067 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
9068 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
9069 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
9070 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
9071 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
9072 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
9076 static struct snd_kcontrol_new alc883_medion_wim2160_mixer
[] = {
9077 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
9078 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
9079 HDA_CODEC_MUTE("Speaker Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
9080 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x0, HDA_OUTPUT
),
9081 HDA_CODEC_VOLUME("Line Playback Volume", 0x08, 0x0, HDA_INPUT
),
9082 HDA_CODEC_MUTE("Line Playback Switch", 0x08, 0x0, HDA_INPUT
),
9086 static struct hda_verb alc883_medion_wim2160_verbs
[] = {
9087 /* Unmute front mixer */
9088 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
9089 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
9091 /* Set speaker pin to front mixer */
9092 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00},
9094 /* Init headphone pin */
9095 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
9096 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
9097 {0x1a, AC_VERB_SET_CONNECT_SEL
, 0x00},
9098 {0x1a, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
9103 /* toggle speaker-output according to the hp-jack state */
9104 static void alc883_medion_wim2160_setup(struct hda_codec
*codec
)
9106 struct alc_spec
*spec
= codec
->spec
;
9108 spec
->autocfg
.hp_pins
[0] = 0x1a;
9109 spec
->autocfg
.speaker_pins
[0] = 0x15;
9112 static struct snd_kcontrol_new alc883_acer_aspire_mixer
[] = {
9113 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
9114 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
9115 HDA_CODEC_MUTE("Headphone Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
9116 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
9117 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
9118 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
9119 HDA_CODEC_VOLUME("Mic Boost Volume", 0x18, 0, HDA_INPUT
),
9120 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
9124 static struct snd_kcontrol_new alc888_acer_aspire_6530_mixer
[] = {
9125 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
9126 HDA_CODEC_VOLUME("LFE Playback Volume", 0x0f, 0x0, HDA_OUTPUT
),
9127 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
9128 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
9129 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
9130 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
9131 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
9132 HDA_CODEC_VOLUME("Mic Boost Volume", 0x18, 0, HDA_INPUT
),
9133 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
9137 static struct snd_kcontrol_new alc888_lenovo_sky_mixer
[] = {
9138 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
9139 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
9140 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0e, 0x0, HDA_OUTPUT
),
9141 HDA_BIND_MUTE("Surround Playback Switch", 0x0e, 2, HDA_INPUT
),
9142 HDA_CODEC_VOLUME_MONO("Center Playback Volume",
9143 0x0d, 1, 0x0, HDA_OUTPUT
),
9144 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0d, 2, 0x0, HDA_OUTPUT
),
9145 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0d, 1, 2, HDA_INPUT
),
9146 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0d, 2, 2, HDA_INPUT
),
9147 HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT
),
9148 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT
),
9149 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
9150 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
9151 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
9152 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
9153 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
9154 HDA_CODEC_VOLUME("Mic Boost Volume", 0x18, 0, HDA_INPUT
),
9155 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
9156 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
9157 HDA_CODEC_VOLUME("Front Mic Boost Volume", 0x19, 0, HDA_INPUT
),
9158 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
9162 static struct snd_kcontrol_new alc889A_mb31_mixer
[] = {
9164 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x00, HDA_OUTPUT
),
9165 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 0x02, HDA_INPUT
),
9166 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x00, HDA_OUTPUT
),
9167 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 0x02, HDA_INPUT
),
9168 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x00,
9170 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 0x02, HDA_INPUT
),
9171 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x00, HDA_OUTPUT
),
9172 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 0x02, HDA_INPUT
),
9173 /* Output switches */
9174 HDA_CODEC_MUTE("Enable Speaker", 0x14, 0x00, HDA_OUTPUT
),
9175 HDA_CODEC_MUTE("Enable Headphones", 0x15, 0x00, HDA_OUTPUT
),
9176 HDA_CODEC_MUTE_MONO("Enable LFE", 0x16, 2, 0x00, HDA_OUTPUT
),
9178 HDA_CODEC_VOLUME("Mic Boost Volume", 0x18, 0x00, HDA_INPUT
),
9179 HDA_CODEC_VOLUME("Line Boost Volume", 0x1a, 0x00, HDA_INPUT
),
9181 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x00, HDA_INPUT
),
9182 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x00, HDA_INPUT
),
9183 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
9184 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
9188 static struct snd_kcontrol_new alc883_vaiott_mixer
[] = {
9189 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
9190 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
9191 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
9192 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
9193 HDA_CODEC_VOLUME("Mic Boost Volume", 0x19, 0, HDA_INPUT
),
9194 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
9198 static struct hda_bind_ctls alc883_bind_cap_vol
= {
9199 .ops
= &snd_hda_bind_vol
,
9201 HDA_COMPOSE_AMP_VAL(0x08, 3, 0, HDA_INPUT
),
9202 HDA_COMPOSE_AMP_VAL(0x09, 3, 0, HDA_INPUT
),
9207 static struct hda_bind_ctls alc883_bind_cap_switch
= {
9208 .ops
= &snd_hda_bind_sw
,
9210 HDA_COMPOSE_AMP_VAL(0x08, 3, 0, HDA_INPUT
),
9211 HDA_COMPOSE_AMP_VAL(0x09, 3, 0, HDA_INPUT
),
9216 static struct snd_kcontrol_new alc883_asus_eee1601_mixer
[] = {
9217 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
9218 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
9219 HDA_CODEC_MUTE("Headphone Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
9220 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
9221 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
9222 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
9223 HDA_CODEC_VOLUME("Mic Boost Volume", 0x18, 0, HDA_INPUT
),
9224 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
9228 static struct snd_kcontrol_new alc883_asus_eee1601_cap_mixer
[] = {
9229 HDA_BIND_VOL("Capture Volume", &alc883_bind_cap_vol
),
9230 HDA_BIND_SW("Capture Switch", &alc883_bind_cap_switch
),
9232 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
9233 /* .name = "Capture Source", */
9234 .name
= "Input Source",
9236 .info
= alc_mux_enum_info
,
9237 .get
= alc_mux_enum_get
,
9238 .put
= alc_mux_enum_put
,
9243 static struct snd_kcontrol_new alc883_chmode_mixer
[] = {
9245 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
9246 .name
= "Channel Mode",
9247 .info
= alc_ch_mode_info
,
9248 .get
= alc_ch_mode_get
,
9249 .put
= alc_ch_mode_put
,
9254 /* toggle speaker-output according to the hp-jack state */
9255 static void alc883_mitac_setup(struct hda_codec
*codec
)
9257 struct alc_spec
*spec
= codec
->spec
;
9259 spec
->autocfg
.hp_pins
[0] = 0x15;
9260 spec
->autocfg
.speaker_pins
[0] = 0x14;
9261 spec
->autocfg
.speaker_pins
[1] = 0x17;
9264 static struct hda_verb alc883_mitac_verbs
[] = {
9266 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00},
9267 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
9269 {0x17, AC_VERB_SET_CONNECT_SEL
, 0x02},
9270 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
9272 /* enable unsolicited event */
9273 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
9274 /* {0x18, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_MIC_EVENT | AC_USRSP_EN}, */
9279 static struct hda_verb alc883_clevo_m540r_verbs
[] = {
9281 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00},
9282 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
9284 /*{0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},*/
9286 /* enable unsolicited event */
9288 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
9289 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_MIC_EVENT | AC_USRSP_EN},
9295 static struct hda_verb alc883_clevo_m720_verbs
[] = {
9297 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00},
9298 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
9300 {0x14, AC_VERB_SET_CONNECT_SEL
, 0x01},
9301 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
9303 /* enable unsolicited event */
9304 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
9305 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_MIC_EVENT
| AC_USRSP_EN
},
9310 static struct hda_verb alc883_2ch_fujitsu_pi2515_verbs
[] = {
9312 {0x14, AC_VERB_SET_CONNECT_SEL
, 0x00},
9313 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
9315 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x01},
9316 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
9318 /* enable unsolicited event */
9319 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
9324 static struct hda_verb alc883_targa_verbs
[] = {
9325 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
9326 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
9328 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
9329 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
9331 /* Connect Line-Out side jack (SPDIF) to Side */
9332 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
9333 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
9334 {0x17, AC_VERB_SET_CONNECT_SEL
, 0x03},
9335 /* Connect Mic jack to CLFE */
9336 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
9337 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
9338 {0x18, AC_VERB_SET_CONNECT_SEL
, 0x02},
9339 /* Connect Line-in jack to Surround */
9340 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
9341 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
9342 {0x1a, AC_VERB_SET_CONNECT_SEL
, 0x01},
9343 /* Connect HP out jack to Front */
9344 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
9345 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
9346 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0x00},
9348 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
9353 static struct hda_verb alc883_lenovo_101e_verbs
[] = {
9354 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00},
9355 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_FRONT_EVENT
|AC_USRSP_EN
},
9356 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
|AC_USRSP_EN
},
9360 static struct hda_verb alc883_lenovo_nb0763_verbs
[] = {
9361 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00},
9362 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
9363 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
9364 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
9368 static struct hda_verb alc888_lenovo_ms7195_verbs
[] = {
9369 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
9370 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
9371 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00},
9372 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_FRONT_EVENT
| AC_USRSP_EN
},
9373 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
9377 static struct hda_verb alc883_haier_w66_verbs
[] = {
9378 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
9379 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
9381 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
9383 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0x00},
9384 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
9385 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
9386 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
9390 static struct hda_verb alc888_lenovo_sky_verbs
[] = {
9391 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
9392 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
9393 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
9394 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
9395 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
9396 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
9397 {0x1a, AC_VERB_SET_CONNECT_SEL
, 0x00},
9398 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
9402 static struct hda_verb alc888_6st_dell_verbs
[] = {
9403 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
9407 static struct hda_verb alc883_vaiott_verbs
[] = {
9409 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00},
9410 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
9412 /* enable unsolicited event */
9413 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
9418 static void alc888_3st_hp_setup(struct hda_codec
*codec
)
9420 struct alc_spec
*spec
= codec
->spec
;
9422 spec
->autocfg
.hp_pins
[0] = 0x1b;
9423 spec
->autocfg
.speaker_pins
[0] = 0x14;
9424 spec
->autocfg
.speaker_pins
[1] = 0x16;
9425 spec
->autocfg
.speaker_pins
[2] = 0x18;
9428 static struct hda_verb alc888_3st_hp_verbs
[] = {
9429 {0x14, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* Front: output 0 (0x0c) */
9430 {0x16, AC_VERB_SET_CONNECT_SEL
, 0x01}, /* Rear : output 1 (0x0d) */
9431 {0x18, AC_VERB_SET_CONNECT_SEL
, 0x02}, /* CLFE : output 2 (0x0e) */
9432 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
9439 static struct hda_verb alc888_3st_hp_2ch_init
[] = {
9440 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
9441 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
9442 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
9443 { 0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
9450 static struct hda_verb alc888_3st_hp_4ch_init
[] = {
9451 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
9452 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
9453 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
9454 { 0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
9455 { 0x16, AC_VERB_SET_CONNECT_SEL
, 0x01 },
9462 static struct hda_verb alc888_3st_hp_6ch_init
[] = {
9463 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
9464 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
9465 { 0x18, AC_VERB_SET_CONNECT_SEL
, 0x02 },
9466 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
9467 { 0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
9468 { 0x16, AC_VERB_SET_CONNECT_SEL
, 0x01 },
9472 static struct hda_channel_mode alc888_3st_hp_modes
[3] = {
9473 { 2, alc888_3st_hp_2ch_init
},
9474 { 4, alc888_3st_hp_4ch_init
},
9475 { 6, alc888_3st_hp_6ch_init
},
9478 /* toggle front-jack and RCA according to the hp-jack state */
9479 static void alc888_lenovo_ms7195_front_automute(struct hda_codec
*codec
)
9481 unsigned int present
= snd_hda_jack_detect(codec
, 0x1b);
9483 snd_hda_codec_amp_stereo(codec
, 0x14, HDA_OUTPUT
, 0,
9484 HDA_AMP_MUTE
, present
? HDA_AMP_MUTE
: 0);
9485 snd_hda_codec_amp_stereo(codec
, 0x15, HDA_OUTPUT
, 0,
9486 HDA_AMP_MUTE
, present
? HDA_AMP_MUTE
: 0);
9489 /* toggle RCA according to the front-jack state */
9490 static void alc888_lenovo_ms7195_rca_automute(struct hda_codec
*codec
)
9492 unsigned int present
= snd_hda_jack_detect(codec
, 0x14);
9494 snd_hda_codec_amp_stereo(codec
, 0x15, HDA_OUTPUT
, 0,
9495 HDA_AMP_MUTE
, present
? HDA_AMP_MUTE
: 0);
9498 static void alc883_lenovo_ms7195_unsol_event(struct hda_codec
*codec
,
9501 if ((res
>> 26) == ALC880_HP_EVENT
)
9502 alc888_lenovo_ms7195_front_automute(codec
);
9503 if ((res
>> 26) == ALC880_FRONT_EVENT
)
9504 alc888_lenovo_ms7195_rca_automute(codec
);
9507 /* toggle speaker-output according to the hp-jack state */
9508 static void alc883_lenovo_nb0763_setup(struct hda_codec
*codec
)
9510 struct alc_spec
*spec
= codec
->spec
;
9512 spec
->autocfg
.hp_pins
[0] = 0x14;
9513 spec
->autocfg
.speaker_pins
[0] = 0x15;
9516 /* toggle speaker-output according to the hp-jack state */
9517 #define alc883_targa_init_hook alc882_targa_init_hook
9518 #define alc883_targa_unsol_event alc882_targa_unsol_event
9520 static void alc883_clevo_m720_setup(struct hda_codec
*codec
)
9522 struct alc_spec
*spec
= codec
->spec
;
9524 spec
->autocfg
.hp_pins
[0] = 0x15;
9525 spec
->autocfg
.speaker_pins
[0] = 0x14;
9528 static void alc883_clevo_m720_init_hook(struct hda_codec
*codec
)
9530 alc_automute_amp(codec
);
9531 alc88x_simple_mic_automute(codec
);
9534 static void alc883_clevo_m720_unsol_event(struct hda_codec
*codec
,
9537 switch (res
>> 26) {
9538 case ALC880_MIC_EVENT
:
9539 alc88x_simple_mic_automute(codec
);
9542 alc_automute_amp_unsol_event(codec
, res
);
9547 /* toggle speaker-output according to the hp-jack state */
9548 static void alc883_2ch_fujitsu_pi2515_setup(struct hda_codec
*codec
)
9550 struct alc_spec
*spec
= codec
->spec
;
9552 spec
->autocfg
.hp_pins
[0] = 0x14;
9553 spec
->autocfg
.speaker_pins
[0] = 0x15;
9556 static void alc883_haier_w66_setup(struct hda_codec
*codec
)
9558 struct alc_spec
*spec
= codec
->spec
;
9560 spec
->autocfg
.hp_pins
[0] = 0x1b;
9561 spec
->autocfg
.speaker_pins
[0] = 0x14;
9564 static void alc883_lenovo_101e_ispeaker_automute(struct hda_codec
*codec
)
9566 int bits
= snd_hda_jack_detect(codec
, 0x14) ? HDA_AMP_MUTE
: 0;
9568 snd_hda_codec_amp_stereo(codec
, 0x15, HDA_OUTPUT
, 0,
9569 HDA_AMP_MUTE
, bits
);
9572 static void alc883_lenovo_101e_all_automute(struct hda_codec
*codec
)
9574 int bits
= snd_hda_jack_detect(codec
, 0x1b) ? HDA_AMP_MUTE
: 0;
9576 snd_hda_codec_amp_stereo(codec
, 0x15, HDA_OUTPUT
, 0,
9577 HDA_AMP_MUTE
, bits
);
9578 snd_hda_codec_amp_stereo(codec
, 0x14, HDA_OUTPUT
, 0,
9579 HDA_AMP_MUTE
, bits
);
9582 static void alc883_lenovo_101e_unsol_event(struct hda_codec
*codec
,
9585 if ((res
>> 26) == ALC880_HP_EVENT
)
9586 alc883_lenovo_101e_all_automute(codec
);
9587 if ((res
>> 26) == ALC880_FRONT_EVENT
)
9588 alc883_lenovo_101e_ispeaker_automute(codec
);
9591 /* toggle speaker-output according to the hp-jack state */
9592 static void alc883_acer_aspire_setup(struct hda_codec
*codec
)
9594 struct alc_spec
*spec
= codec
->spec
;
9596 spec
->autocfg
.hp_pins
[0] = 0x14;
9597 spec
->autocfg
.speaker_pins
[0] = 0x15;
9598 spec
->autocfg
.speaker_pins
[1] = 0x16;
9601 static struct hda_verb alc883_acer_eapd_verbs
[] = {
9602 /* HP Pin: output 0 (0x0c) */
9603 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
9604 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
9605 {0x14, AC_VERB_SET_CONNECT_SEL
, 0x00},
9606 /* Front Pin: output 0 (0x0c) */
9607 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
9608 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00},
9609 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
9610 {0x16, AC_VERB_SET_CONNECT_SEL
, 0x00},
9611 /* eanable EAPD on medion laptop */
9612 {0x20, AC_VERB_SET_COEF_INDEX
, 0x07},
9613 {0x20, AC_VERB_SET_PROC_COEF
, 0x3050},
9614 /* enable unsolicited event */
9615 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
9619 static void alc888_6st_dell_setup(struct hda_codec
*codec
)
9621 struct alc_spec
*spec
= codec
->spec
;
9623 spec
->autocfg
.hp_pins
[0] = 0x1b;
9624 spec
->autocfg
.speaker_pins
[0] = 0x14;
9625 spec
->autocfg
.speaker_pins
[1] = 0x15;
9626 spec
->autocfg
.speaker_pins
[2] = 0x16;
9627 spec
->autocfg
.speaker_pins
[3] = 0x17;
9630 static void alc888_lenovo_sky_setup(struct hda_codec
*codec
)
9632 struct alc_spec
*spec
= codec
->spec
;
9634 spec
->autocfg
.hp_pins
[0] = 0x1b;
9635 spec
->autocfg
.speaker_pins
[0] = 0x14;
9636 spec
->autocfg
.speaker_pins
[1] = 0x15;
9637 spec
->autocfg
.speaker_pins
[2] = 0x16;
9638 spec
->autocfg
.speaker_pins
[3] = 0x17;
9639 spec
->autocfg
.speaker_pins
[4] = 0x1a;
9642 static void alc883_vaiott_setup(struct hda_codec
*codec
)
9644 struct alc_spec
*spec
= codec
->spec
;
9646 spec
->autocfg
.hp_pins
[0] = 0x15;
9647 spec
->autocfg
.speaker_pins
[0] = 0x14;
9648 spec
->autocfg
.speaker_pins
[1] = 0x17;
9651 static struct hda_verb alc888_asus_m90v_verbs
[] = {
9652 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
9653 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
9654 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
9655 /* enable unsolicited event */
9656 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
9657 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_MIC_EVENT
| AC_USRSP_EN
},
9661 static void alc883_mode2_setup(struct hda_codec
*codec
)
9663 struct alc_spec
*spec
= codec
->spec
;
9665 spec
->autocfg
.hp_pins
[0] = 0x1b;
9666 spec
->autocfg
.speaker_pins
[0] = 0x14;
9667 spec
->autocfg
.speaker_pins
[1] = 0x15;
9668 spec
->autocfg
.speaker_pins
[2] = 0x16;
9669 spec
->ext_mic
.pin
= 0x18;
9670 spec
->int_mic
.pin
= 0x19;
9671 spec
->ext_mic
.mux_idx
= 0;
9672 spec
->int_mic
.mux_idx
= 1;
9676 static struct hda_verb alc888_asus_eee1601_verbs
[] = {
9677 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
9678 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
9679 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
9680 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
9681 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
9682 {0x20, AC_VERB_SET_COEF_INDEX
, 0x0b},
9683 {0x20, AC_VERB_SET_PROC_COEF
, 0x0838},
9684 /* enable unsolicited event */
9685 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
9689 static void alc883_eee1601_inithook(struct hda_codec
*codec
)
9691 struct alc_spec
*spec
= codec
->spec
;
9693 spec
->autocfg
.hp_pins
[0] = 0x14;
9694 spec
->autocfg
.speaker_pins
[0] = 0x1b;
9695 alc_automute_pin(codec
);
9698 static struct hda_verb alc889A_mb31_verbs
[] = {
9699 /* Init rear pin (used as headphone output) */
9700 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0xc4}, /* Apple Headphones */
9701 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* Connect to front */
9702 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
9703 /* Init line pin (used as output in 4ch and 6ch mode) */
9704 {0x1a, AC_VERB_SET_CONNECT_SEL
, 0x02}, /* Connect to CLFE */
9705 /* Init line 2 pin (used as headphone out by default) */
9706 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
}, /* Use as input */
9707 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
}, /* Mute output */
9711 /* Mute speakers according to the headphone jack state */
9712 static void alc889A_mb31_automute(struct hda_codec
*codec
)
9714 unsigned int present
;
9716 /* Mute only in 2ch or 4ch mode */
9717 if (snd_hda_codec_read(codec
, 0x15, 0, AC_VERB_GET_CONNECT_SEL
, 0)
9719 present
= snd_hda_jack_detect(codec
, 0x15);
9720 snd_hda_codec_amp_stereo(codec
, 0x14, HDA_OUTPUT
, 0,
9721 HDA_AMP_MUTE
, present
? HDA_AMP_MUTE
: 0);
9722 snd_hda_codec_amp_stereo(codec
, 0x16, HDA_OUTPUT
, 0,
9723 HDA_AMP_MUTE
, present
? HDA_AMP_MUTE
: 0);
9727 static void alc889A_mb31_unsol_event(struct hda_codec
*codec
, unsigned int res
)
9729 if ((res
>> 26) == ALC880_HP_EVENT
)
9730 alc889A_mb31_automute(codec
);
9734 #ifdef CONFIG_SND_HDA_POWER_SAVE
9735 #define alc882_loopbacks alc880_loopbacks
9738 /* pcm configuration: identical with ALC880 */
9739 #define alc882_pcm_analog_playback alc880_pcm_analog_playback
9740 #define alc882_pcm_analog_capture alc880_pcm_analog_capture
9741 #define alc882_pcm_digital_playback alc880_pcm_digital_playback
9742 #define alc882_pcm_digital_capture alc880_pcm_digital_capture
9744 static hda_nid_t alc883_slave_dig_outs
[] = {
9745 ALC1200_DIGOUT_NID
, 0,
9748 static hda_nid_t alc1200_slave_dig_outs
[] = {
9749 ALC883_DIGOUT_NID
, 0,
9753 * configuration and preset
9755 static const char * const alc882_models
[ALC882_MODEL_LAST
] = {
9756 [ALC882_3ST_DIG
] = "3stack-dig",
9757 [ALC882_6ST_DIG
] = "6stack-dig",
9758 [ALC882_ARIMA
] = "arima",
9759 [ALC882_W2JC
] = "w2jc",
9760 [ALC882_TARGA
] = "targa",
9761 [ALC882_ASUS_A7J
] = "asus-a7j",
9762 [ALC882_ASUS_A7M
] = "asus-a7m",
9763 [ALC885_MACPRO
] = "macpro",
9764 [ALC885_MB5
] = "mb5",
9765 [ALC885_MACMINI3
] = "macmini3",
9766 [ALC885_MBA21
] = "mba21",
9767 [ALC885_MBP3
] = "mbp3",
9768 [ALC885_IMAC24
] = "imac24",
9769 [ALC885_IMAC91
] = "imac91",
9770 [ALC883_3ST_2ch_DIG
] = "3stack-2ch-dig",
9771 [ALC883_3ST_6ch_DIG
] = "3stack-6ch-dig",
9772 [ALC883_3ST_6ch
] = "3stack-6ch",
9773 [ALC883_6ST_DIG
] = "alc883-6stack-dig",
9774 [ALC883_TARGA_DIG
] = "targa-dig",
9775 [ALC883_TARGA_2ch_DIG
] = "targa-2ch-dig",
9776 [ALC883_TARGA_8ch_DIG
] = "targa-8ch-dig",
9777 [ALC883_ACER
] = "acer",
9778 [ALC883_ACER_ASPIRE
] = "acer-aspire",
9779 [ALC888_ACER_ASPIRE_4930G
] = "acer-aspire-4930g",
9780 [ALC888_ACER_ASPIRE_6530G
] = "acer-aspire-6530g",
9781 [ALC888_ACER_ASPIRE_8930G
] = "acer-aspire-8930g",
9782 [ALC888_ACER_ASPIRE_7730G
] = "acer-aspire-7730g",
9783 [ALC883_MEDION
] = "medion",
9784 [ALC883_MEDION_WIM2160
] = "medion-wim2160",
9785 [ALC883_LAPTOP_EAPD
] = "laptop-eapd",
9786 [ALC883_LENOVO_101E_2ch
] = "lenovo-101e",
9787 [ALC883_LENOVO_NB0763
] = "lenovo-nb0763",
9788 [ALC888_LENOVO_MS7195_DIG
] = "lenovo-ms7195-dig",
9789 [ALC888_LENOVO_SKY
] = "lenovo-sky",
9790 [ALC883_HAIER_W66
] = "haier-w66",
9791 [ALC888_3ST_HP
] = "3stack-hp",
9792 [ALC888_6ST_DELL
] = "6stack-dell",
9793 [ALC883_MITAC
] = "mitac",
9794 [ALC883_CLEVO_M540R
] = "clevo-m540r",
9795 [ALC883_CLEVO_M720
] = "clevo-m720",
9796 [ALC883_FUJITSU_PI2515
] = "fujitsu-pi2515",
9797 [ALC888_FUJITSU_XA3530
] = "fujitsu-xa3530",
9798 [ALC883_3ST_6ch_INTEL
] = "3stack-6ch-intel",
9799 [ALC889A_INTEL
] = "intel-alc889a",
9800 [ALC889_INTEL
] = "intel-x58",
9801 [ALC1200_ASUS_P5Q
] = "asus-p5q",
9802 [ALC889A_MB31
] = "mb31",
9803 [ALC883_SONY_VAIO_TT
] = "sony-vaio-tt",
9804 [ALC882_AUTO
] = "auto",
9807 static struct snd_pci_quirk alc882_cfg_tbl
[] = {
9808 SND_PCI_QUIRK(0x1019, 0x6668, "ECS", ALC882_6ST_DIG
),
9810 SND_PCI_QUIRK(0x1025, 0x006c, "Acer Aspire 9810", ALC883_ACER_ASPIRE
),
9811 SND_PCI_QUIRK(0x1025, 0x0090, "Acer Aspire", ALC883_ACER_ASPIRE
),
9812 SND_PCI_QUIRK(0x1025, 0x010a, "Acer Ferrari 5000", ALC883_ACER_ASPIRE
),
9813 SND_PCI_QUIRK(0x1025, 0x0110, "Acer Aspire", ALC883_ACER_ASPIRE
),
9814 SND_PCI_QUIRK(0x1025, 0x0112, "Acer Aspire 9303", ALC883_ACER_ASPIRE
),
9815 SND_PCI_QUIRK(0x1025, 0x0121, "Acer Aspire 5920G", ALC883_ACER_ASPIRE
),
9816 SND_PCI_QUIRK(0x1025, 0x013e, "Acer Aspire 4930G",
9817 ALC888_ACER_ASPIRE_4930G
),
9818 SND_PCI_QUIRK(0x1025, 0x013f, "Acer Aspire 5930G",
9819 ALC888_ACER_ASPIRE_4930G
),
9820 SND_PCI_QUIRK(0x1025, 0x0145, "Acer Aspire 8930G",
9821 ALC888_ACER_ASPIRE_8930G
),
9822 SND_PCI_QUIRK(0x1025, 0x0146, "Acer Aspire 6935G",
9823 ALC888_ACER_ASPIRE_8930G
),
9824 SND_PCI_QUIRK(0x1025, 0x0157, "Acer X3200", ALC882_AUTO
),
9825 SND_PCI_QUIRK(0x1025, 0x0158, "Acer AX1700-U3700A", ALC882_AUTO
),
9826 SND_PCI_QUIRK(0x1025, 0x015e, "Acer Aspire 6930G",
9827 ALC888_ACER_ASPIRE_6530G
),
9828 SND_PCI_QUIRK(0x1025, 0x0166, "Acer Aspire 6530G",
9829 ALC888_ACER_ASPIRE_6530G
),
9830 SND_PCI_QUIRK(0x1025, 0x0142, "Acer Aspire 7730G",
9831 ALC888_ACER_ASPIRE_7730G
),
9832 /* default Acer -- disabled as it causes more problems.
9833 * model=auto should work fine now
9835 /* SND_PCI_QUIRK_VENDOR(0x1025, "Acer laptop", ALC883_ACER), */
9837 SND_PCI_QUIRK(0x1028, 0x020d, "Dell Inspiron 530", ALC888_6ST_DELL
),
9839 SND_PCI_QUIRK(0x103c, 0x2a3d, "HP Pavilion", ALC883_6ST_DIG
),
9840 SND_PCI_QUIRK(0x103c, 0x2a4f, "HP Samba", ALC888_3ST_HP
),
9841 SND_PCI_QUIRK(0x103c, 0x2a60, "HP Lucknow", ALC888_3ST_HP
),
9842 SND_PCI_QUIRK(0x103c, 0x2a61, "HP Nettle", ALC883_6ST_DIG
),
9843 SND_PCI_QUIRK(0x103c, 0x2a66, "HP Acacia", ALC888_3ST_HP
),
9844 SND_PCI_QUIRK(0x103c, 0x2a72, "HP Educ.ar", ALC888_3ST_HP
),
9846 SND_PCI_QUIRK(0x1043, 0x060d, "Asus A7J", ALC882_ASUS_A7J
),
9847 SND_PCI_QUIRK(0x1043, 0x1243, "Asus A7J", ALC882_ASUS_A7J
),
9848 SND_PCI_QUIRK(0x1043, 0x13c2, "Asus A7M", ALC882_ASUS_A7M
),
9849 SND_PCI_QUIRK(0x1043, 0x1873, "Asus M90V", ALC888_ASUS_M90V
),
9850 SND_PCI_QUIRK(0x1043, 0x1971, "Asus W2JC", ALC882_W2JC
),
9851 SND_PCI_QUIRK(0x1043, 0x817f, "Asus P5LD2", ALC882_6ST_DIG
),
9852 SND_PCI_QUIRK(0x1043, 0x81d8, "Asus P5WD", ALC882_6ST_DIG
),
9853 SND_PCI_QUIRK(0x1043, 0x8249, "Asus M2A-VM HDMI", ALC883_3ST_6ch_DIG
),
9854 SND_PCI_QUIRK(0x1043, 0x8284, "Asus Z37E", ALC883_6ST_DIG
),
9855 SND_PCI_QUIRK(0x1043, 0x82fe, "Asus P5Q-EM HDMI", ALC1200_ASUS_P5Q
),
9856 SND_PCI_QUIRK(0x1043, 0x835f, "Asus Eee 1601", ALC888_ASUS_EEE1601
),
9858 SND_PCI_QUIRK(0x104d, 0x9047, "Sony Vaio TT", ALC883_SONY_VAIO_TT
),
9859 SND_PCI_QUIRK(0x105b, 0x0ce8, "Foxconn P35AX-S", ALC883_6ST_DIG
),
9860 SND_PCI_QUIRK(0x105b, 0x6668, "Foxconn", ALC882_6ST_DIG
),
9861 SND_PCI_QUIRK(0x1071, 0x8227, "Mitac 82801H", ALC883_MITAC
),
9862 SND_PCI_QUIRK(0x1071, 0x8253, "Mitac 8252d", ALC883_MITAC
),
9863 SND_PCI_QUIRK(0x1071, 0x8258, "Evesham Voyaeger", ALC883_LAPTOP_EAPD
),
9864 SND_PCI_QUIRK(0x10f1, 0x2350, "TYAN-S2350", ALC888_6ST_DELL
),
9865 SND_PCI_QUIRK(0x108e, 0x534d, NULL
, ALC883_3ST_6ch
),
9866 SND_PCI_QUIRK(0x1458, 0xa002, "Gigabyte P35 DS3R", ALC882_6ST_DIG
),
9868 SND_PCI_QUIRK(0x1462, 0x0349, "MSI", ALC883_TARGA_2ch_DIG
),
9869 SND_PCI_QUIRK(0x1462, 0x040d, "MSI", ALC883_TARGA_2ch_DIG
),
9870 SND_PCI_QUIRK(0x1462, 0x0579, "MSI", ALC883_TARGA_2ch_DIG
),
9871 SND_PCI_QUIRK(0x1462, 0x28fb, "Targa T8", ALC882_TARGA
), /* MSI-1049 T8 */
9872 SND_PCI_QUIRK(0x1462, 0x2fb3, "MSI", ALC882_AUTO
),
9873 SND_PCI_QUIRK(0x1462, 0x6668, "MSI", ALC882_6ST_DIG
),
9874 SND_PCI_QUIRK(0x1462, 0x3729, "MSI S420", ALC883_TARGA_DIG
),
9875 SND_PCI_QUIRK(0x1462, 0x3783, "NEC S970", ALC883_TARGA_DIG
),
9876 SND_PCI_QUIRK(0x1462, 0x3b7f, "MSI", ALC883_TARGA_2ch_DIG
),
9877 SND_PCI_QUIRK(0x1462, 0x3ef9, "MSI", ALC883_TARGA_DIG
),
9878 SND_PCI_QUIRK(0x1462, 0x3fc1, "MSI", ALC883_TARGA_DIG
),
9879 SND_PCI_QUIRK(0x1462, 0x3fc3, "MSI", ALC883_TARGA_DIG
),
9880 SND_PCI_QUIRK(0x1462, 0x3fcc, "MSI", ALC883_TARGA_DIG
),
9881 SND_PCI_QUIRK(0x1462, 0x3fdf, "MSI", ALC883_TARGA_DIG
),
9882 SND_PCI_QUIRK(0x1462, 0x42cd, "MSI", ALC883_TARGA_DIG
),
9883 SND_PCI_QUIRK(0x1462, 0x4314, "MSI", ALC883_TARGA_DIG
),
9884 SND_PCI_QUIRK(0x1462, 0x4319, "MSI", ALC883_TARGA_DIG
),
9885 SND_PCI_QUIRK(0x1462, 0x4324, "MSI", ALC883_TARGA_DIG
),
9886 SND_PCI_QUIRK(0x1462, 0x4570, "MSI Wind Top AE2220", ALC883_TARGA_DIG
),
9887 SND_PCI_QUIRK(0x1462, 0x6510, "MSI GX620", ALC883_TARGA_8ch_DIG
),
9888 SND_PCI_QUIRK(0x1462, 0x6668, "MSI", ALC883_6ST_DIG
),
9889 SND_PCI_QUIRK(0x1462, 0x7187, "MSI", ALC883_6ST_DIG
),
9890 SND_PCI_QUIRK(0x1462, 0x7250, "MSI", ALC883_6ST_DIG
),
9891 SND_PCI_QUIRK(0x1462, 0x7260, "MSI 7260", ALC883_TARGA_DIG
),
9892 SND_PCI_QUIRK(0x1462, 0x7267, "MSI", ALC883_3ST_6ch_DIG
),
9893 SND_PCI_QUIRK(0x1462, 0x7280, "MSI", ALC883_6ST_DIG
),
9894 SND_PCI_QUIRK(0x1462, 0x7327, "MSI", ALC883_6ST_DIG
),
9895 SND_PCI_QUIRK(0x1462, 0x7350, "MSI", ALC883_6ST_DIG
),
9896 SND_PCI_QUIRK(0x1462, 0x7437, "MSI NetOn AP1900", ALC883_TARGA_DIG
),
9897 SND_PCI_QUIRK(0x1462, 0xa422, "MSI", ALC883_TARGA_2ch_DIG
),
9898 SND_PCI_QUIRK(0x1462, 0xaa08, "MSI", ALC883_TARGA_2ch_DIG
),
9900 SND_PCI_QUIRK(0x147b, 0x1083, "Abit IP35-PRO", ALC883_6ST_DIG
),
9901 SND_PCI_QUIRK(0x1558, 0x0571, "Clevo laptop M570U", ALC883_3ST_6ch_DIG
),
9902 SND_PCI_QUIRK(0x1558, 0x0721, "Clevo laptop M720R", ALC883_CLEVO_M720
),
9903 SND_PCI_QUIRK(0x1558, 0x0722, "Clevo laptop M720SR", ALC883_CLEVO_M720
),
9904 SND_PCI_QUIRK(0x1558, 0x5409, "Clevo laptop M540R", ALC883_CLEVO_M540R
),
9905 SND_PCI_QUIRK_VENDOR(0x1558, "Clevo laptop", ALC883_LAPTOP_EAPD
),
9906 SND_PCI_QUIRK(0x15d9, 0x8780, "Supermicro PDSBA", ALC883_3ST_6ch
),
9907 /* SND_PCI_QUIRK(0x161f, 0x2054, "Arima W820", ALC882_ARIMA), */
9908 SND_PCI_QUIRK(0x161f, 0x2054, "Medion laptop", ALC883_MEDION
),
9909 SND_PCI_QUIRK_MASK(0x1734, 0xfff0, 0x1100, "FSC AMILO Xi/Pi25xx",
9910 ALC883_FUJITSU_PI2515
),
9911 SND_PCI_QUIRK_MASK(0x1734, 0xfff0, 0x1130, "Fujitsu AMILO Xa35xx",
9912 ALC888_FUJITSU_XA3530
),
9913 SND_PCI_QUIRK(0x17aa, 0x101e, "Lenovo 101e", ALC883_LENOVO_101E_2ch
),
9914 SND_PCI_QUIRK(0x17aa, 0x2085, "Lenovo NB0763", ALC883_LENOVO_NB0763
),
9915 SND_PCI_QUIRK(0x17aa, 0x3bfc, "Lenovo NB0763", ALC883_LENOVO_NB0763
),
9916 SND_PCI_QUIRK(0x17aa, 0x3bfd, "Lenovo NB0763", ALC883_LENOVO_NB0763
),
9917 SND_PCI_QUIRK(0x17aa, 0x101d, "Lenovo Sky", ALC888_LENOVO_SKY
),
9918 SND_PCI_QUIRK(0x17c0, 0x4085, "MEDION MD96630", ALC888_LENOVO_MS7195_DIG
),
9919 SND_PCI_QUIRK(0x17f2, 0x5000, "Albatron KI690-AM2", ALC883_6ST_DIG
),
9920 SND_PCI_QUIRK(0x1991, 0x5625, "Haier W66", ALC883_HAIER_W66
),
9922 SND_PCI_QUIRK(0x8086, 0x0001, "DG33BUC", ALC883_3ST_6ch_INTEL
),
9923 SND_PCI_QUIRK(0x8086, 0x0002, "DG33FBC", ALC883_3ST_6ch_INTEL
),
9924 SND_PCI_QUIRK(0x8086, 0x2503, "82801H", ALC883_MITAC
),
9925 SND_PCI_QUIRK(0x8086, 0x0022, "DX58SO", ALC889_INTEL
),
9926 SND_PCI_QUIRK(0x8086, 0x0021, "Intel IbexPeak", ALC889A_INTEL
),
9927 SND_PCI_QUIRK(0x8086, 0x3b56, "Intel IbexPeak", ALC889A_INTEL
),
9928 SND_PCI_QUIRK(0x8086, 0xd601, "D102GGC", ALC882_6ST_DIG
),
9933 /* codec SSID table for Intel Mac */
9934 static struct snd_pci_quirk alc882_ssid_cfg_tbl
[] = {
9935 SND_PCI_QUIRK(0x106b, 0x00a0, "MacBookPro 3,1", ALC885_MBP3
),
9936 SND_PCI_QUIRK(0x106b, 0x00a1, "Macbook", ALC885_MBP3
),
9937 SND_PCI_QUIRK(0x106b, 0x00a4, "MacbookPro 4,1", ALC885_MBP3
),
9938 SND_PCI_QUIRK(0x106b, 0x0c00, "Mac Pro", ALC885_MACPRO
),
9939 SND_PCI_QUIRK(0x106b, 0x1000, "iMac 24", ALC885_IMAC24
),
9940 SND_PCI_QUIRK(0x106b, 0x2800, "AppleTV", ALC885_IMAC24
),
9941 SND_PCI_QUIRK(0x106b, 0x2c00, "MacbookPro rev3", ALC885_MBP3
),
9942 SND_PCI_QUIRK(0x106b, 0x3000, "iMac", ALC889A_MB31
),
9943 SND_PCI_QUIRK(0x106b, 0x3200, "iMac 7,1 Aluminum", ALC882_ASUS_A7M
),
9944 SND_PCI_QUIRK(0x106b, 0x3400, "MacBookAir 1,1", ALC885_MBP3
),
9945 SND_PCI_QUIRK(0x106b, 0x3500, "MacBookAir 2,1", ALC885_MBA21
),
9946 SND_PCI_QUIRK(0x106b, 0x3600, "Macbook 3,1", ALC889A_MB31
),
9947 SND_PCI_QUIRK(0x106b, 0x3800, "MacbookPro 4,1", ALC885_MBP3
),
9948 SND_PCI_QUIRK(0x106b, 0x3e00, "iMac 24 Aluminum", ALC885_IMAC24
),
9949 SND_PCI_QUIRK(0x106b, 0x4900, "iMac 9,1 Aluminum", ALC885_IMAC91
),
9950 SND_PCI_QUIRK(0x106b, 0x3f00, "Macbook 5,1", ALC885_MB5
),
9951 SND_PCI_QUIRK(0x106b, 0x4a00, "Macbook 5,2", ALC885_MB5
),
9952 /* FIXME: HP jack sense seems not working for MBP 5,1 or 5,2,
9953 * so apparently no perfect solution yet
9955 SND_PCI_QUIRK(0x106b, 0x4000, "MacbookPro 5,1", ALC885_MB5
),
9956 SND_PCI_QUIRK(0x106b, 0x4600, "MacbookPro 5,2", ALC885_MB5
),
9957 SND_PCI_QUIRK(0x106b, 0x4100, "Macmini 3,1", ALC885_MACMINI3
),
9961 static struct alc_config_preset alc882_presets
[] = {
9962 [ALC882_3ST_DIG
] = {
9963 .mixers
= { alc882_base_mixer
},
9964 .init_verbs
= { alc882_base_init_verbs
,
9965 alc882_adc1_init_verbs
},
9966 .num_dacs
= ARRAY_SIZE(alc882_dac_nids
),
9967 .dac_nids
= alc882_dac_nids
,
9968 .dig_out_nid
= ALC882_DIGOUT_NID
,
9969 .dig_in_nid
= ALC882_DIGIN_NID
,
9970 .num_channel_mode
= ARRAY_SIZE(alc882_ch_modes
),
9971 .channel_mode
= alc882_ch_modes
,
9973 .input_mux
= &alc882_capture_source
,
9975 [ALC882_6ST_DIG
] = {
9976 .mixers
= { alc882_base_mixer
, alc882_chmode_mixer
},
9977 .init_verbs
= { alc882_base_init_verbs
,
9978 alc882_adc1_init_verbs
},
9979 .num_dacs
= ARRAY_SIZE(alc882_dac_nids
),
9980 .dac_nids
= alc882_dac_nids
,
9981 .dig_out_nid
= ALC882_DIGOUT_NID
,
9982 .dig_in_nid
= ALC882_DIGIN_NID
,
9983 .num_channel_mode
= ARRAY_SIZE(alc882_sixstack_modes
),
9984 .channel_mode
= alc882_sixstack_modes
,
9985 .input_mux
= &alc882_capture_source
,
9988 .mixers
= { alc882_base_mixer
, alc882_chmode_mixer
},
9989 .init_verbs
= { alc882_base_init_verbs
, alc882_adc1_init_verbs
,
9990 alc882_eapd_verbs
},
9991 .num_dacs
= ARRAY_SIZE(alc882_dac_nids
),
9992 .dac_nids
= alc882_dac_nids
,
9993 .num_channel_mode
= ARRAY_SIZE(alc882_sixstack_modes
),
9994 .channel_mode
= alc882_sixstack_modes
,
9995 .input_mux
= &alc882_capture_source
,
9998 .mixers
= { alc882_w2jc_mixer
, alc882_chmode_mixer
},
9999 .init_verbs
= { alc882_base_init_verbs
, alc882_adc1_init_verbs
,
10000 alc882_eapd_verbs
, alc880_gpio1_init_verbs
},
10001 .num_dacs
= ARRAY_SIZE(alc882_dac_nids
),
10002 .dac_nids
= alc882_dac_nids
,
10003 .num_channel_mode
= ARRAY_SIZE(alc880_threestack_modes
),
10004 .channel_mode
= alc880_threestack_modes
,
10006 .input_mux
= &alc882_capture_source
,
10007 .dig_out_nid
= ALC882_DIGOUT_NID
,
10010 .mixers
= { alc885_mba21_mixer
},
10011 .init_verbs
= { alc885_mba21_init_verbs
, alc880_gpio1_init_verbs
},
10013 .dac_nids
= alc882_dac_nids
,
10014 .channel_mode
= alc885_mba21_ch_modes
,
10015 .num_channel_mode
= ARRAY_SIZE(alc885_mba21_ch_modes
),
10016 .input_mux
= &alc882_capture_source
,
10017 .unsol_event
= alc_automute_amp_unsol_event
,
10018 .setup
= alc885_mba21_setup
,
10019 .init_hook
= alc_automute_amp
,
10022 .mixers
= { alc885_mbp3_mixer
, alc882_chmode_mixer
},
10023 .init_verbs
= { alc885_mbp3_init_verbs
,
10024 alc880_gpio1_init_verbs
},
10026 .dac_nids
= alc882_dac_nids
,
10028 .channel_mode
= alc885_mbp_4ch_modes
,
10029 .num_channel_mode
= ARRAY_SIZE(alc885_mbp_4ch_modes
),
10030 .input_mux
= &alc882_capture_source
,
10031 .dig_out_nid
= ALC882_DIGOUT_NID
,
10032 .dig_in_nid
= ALC882_DIGIN_NID
,
10033 .unsol_event
= alc_automute_amp_unsol_event
,
10034 .setup
= alc885_mbp3_setup
,
10035 .init_hook
= alc_automute_amp
,
10038 .mixers
= { alc885_mb5_mixer
, alc882_chmode_mixer
},
10039 .init_verbs
= { alc885_mb5_init_verbs
,
10040 alc880_gpio1_init_verbs
},
10041 .num_dacs
= ARRAY_SIZE(alc882_dac_nids
),
10042 .dac_nids
= alc882_dac_nids
,
10043 .channel_mode
= alc885_mb5_6ch_modes
,
10044 .num_channel_mode
= ARRAY_SIZE(alc885_mb5_6ch_modes
),
10045 .input_mux
= &mb5_capture_source
,
10046 .dig_out_nid
= ALC882_DIGOUT_NID
,
10047 .dig_in_nid
= ALC882_DIGIN_NID
,
10048 .unsol_event
= alc_automute_amp_unsol_event
,
10049 .setup
= alc885_mb5_setup
,
10050 .init_hook
= alc_automute_amp
,
10052 [ALC885_MACMINI3
] = {
10053 .mixers
= { alc885_macmini3_mixer
, alc882_chmode_mixer
},
10054 .init_verbs
= { alc885_macmini3_init_verbs
,
10055 alc880_gpio1_init_verbs
},
10056 .num_dacs
= ARRAY_SIZE(alc882_dac_nids
),
10057 .dac_nids
= alc882_dac_nids
,
10058 .channel_mode
= alc885_macmini3_6ch_modes
,
10059 .num_channel_mode
= ARRAY_SIZE(alc885_macmini3_6ch_modes
),
10060 .input_mux
= &macmini3_capture_source
,
10061 .dig_out_nid
= ALC882_DIGOUT_NID
,
10062 .dig_in_nid
= ALC882_DIGIN_NID
,
10063 .unsol_event
= alc_automute_amp_unsol_event
,
10064 .setup
= alc885_macmini3_setup
,
10065 .init_hook
= alc_automute_amp
,
10067 [ALC885_MACPRO
] = {
10068 .mixers
= { alc882_macpro_mixer
},
10069 .init_verbs
= { alc882_macpro_init_verbs
},
10070 .num_dacs
= ARRAY_SIZE(alc882_dac_nids
),
10071 .dac_nids
= alc882_dac_nids
,
10072 .dig_out_nid
= ALC882_DIGOUT_NID
,
10073 .dig_in_nid
= ALC882_DIGIN_NID
,
10074 .num_channel_mode
= ARRAY_SIZE(alc882_ch_modes
),
10075 .channel_mode
= alc882_ch_modes
,
10076 .input_mux
= &alc882_capture_source
,
10077 .init_hook
= alc885_macpro_init_hook
,
10079 [ALC885_IMAC24
] = {
10080 .mixers
= { alc885_imac24_mixer
},
10081 .init_verbs
= { alc885_imac24_init_verbs
},
10082 .num_dacs
= ARRAY_SIZE(alc882_dac_nids
),
10083 .dac_nids
= alc882_dac_nids
,
10084 .dig_out_nid
= ALC882_DIGOUT_NID
,
10085 .dig_in_nid
= ALC882_DIGIN_NID
,
10086 .num_channel_mode
= ARRAY_SIZE(alc882_ch_modes
),
10087 .channel_mode
= alc882_ch_modes
,
10088 .input_mux
= &alc882_capture_source
,
10089 .unsol_event
= alc_automute_amp_unsol_event
,
10090 .setup
= alc885_imac24_setup
,
10091 .init_hook
= alc885_imac24_init_hook
,
10093 [ALC885_IMAC91
] = {
10094 .mixers
= {alc885_imac91_mixer
},
10095 .init_verbs
= { alc885_imac91_init_verbs
,
10096 alc880_gpio1_init_verbs
},
10097 .num_dacs
= ARRAY_SIZE(alc882_dac_nids
),
10098 .dac_nids
= alc882_dac_nids
,
10099 .channel_mode
= alc885_mba21_ch_modes
,
10100 .num_channel_mode
= ARRAY_SIZE(alc885_mba21_ch_modes
),
10101 .input_mux
= &alc889A_imac91_capture_source
,
10102 .dig_out_nid
= ALC882_DIGOUT_NID
,
10103 .dig_in_nid
= ALC882_DIGIN_NID
,
10104 .unsol_event
= alc_automute_amp_unsol_event
,
10105 .setup
= alc885_imac91_setup
,
10106 .init_hook
= alc_automute_amp
,
10109 .mixers
= { alc882_targa_mixer
, alc882_chmode_mixer
},
10110 .init_verbs
= { alc882_base_init_verbs
, alc882_adc1_init_verbs
,
10111 alc880_gpio3_init_verbs
, alc882_targa_verbs
},
10112 .num_dacs
= ARRAY_SIZE(alc882_dac_nids
),
10113 .dac_nids
= alc882_dac_nids
,
10114 .dig_out_nid
= ALC882_DIGOUT_NID
,
10115 .num_adc_nids
= ARRAY_SIZE(alc882_adc_nids
),
10116 .adc_nids
= alc882_adc_nids
,
10117 .capsrc_nids
= alc882_capsrc_nids
,
10118 .num_channel_mode
= ARRAY_SIZE(alc882_3ST_6ch_modes
),
10119 .channel_mode
= alc882_3ST_6ch_modes
,
10121 .input_mux
= &alc882_capture_source
,
10122 .unsol_event
= alc882_targa_unsol_event
,
10123 .setup
= alc882_targa_setup
,
10124 .init_hook
= alc882_targa_automute
,
10126 [ALC882_ASUS_A7J
] = {
10127 .mixers
= { alc882_asus_a7j_mixer
, alc882_chmode_mixer
},
10128 .init_verbs
= { alc882_base_init_verbs
, alc882_adc1_init_verbs
,
10129 alc882_asus_a7j_verbs
},
10130 .num_dacs
= ARRAY_SIZE(alc882_dac_nids
),
10131 .dac_nids
= alc882_dac_nids
,
10132 .dig_out_nid
= ALC882_DIGOUT_NID
,
10133 .num_adc_nids
= ARRAY_SIZE(alc882_adc_nids
),
10134 .adc_nids
= alc882_adc_nids
,
10135 .capsrc_nids
= alc882_capsrc_nids
,
10136 .num_channel_mode
= ARRAY_SIZE(alc882_3ST_6ch_modes
),
10137 .channel_mode
= alc882_3ST_6ch_modes
,
10139 .input_mux
= &alc882_capture_source
,
10141 [ALC882_ASUS_A7M
] = {
10142 .mixers
= { alc882_asus_a7m_mixer
, alc882_chmode_mixer
},
10143 .init_verbs
= { alc882_base_init_verbs
, alc882_adc1_init_verbs
,
10144 alc882_eapd_verbs
, alc880_gpio1_init_verbs
,
10145 alc882_asus_a7m_verbs
},
10146 .num_dacs
= ARRAY_SIZE(alc882_dac_nids
),
10147 .dac_nids
= alc882_dac_nids
,
10148 .dig_out_nid
= ALC882_DIGOUT_NID
,
10149 .num_channel_mode
= ARRAY_SIZE(alc880_threestack_modes
),
10150 .channel_mode
= alc880_threestack_modes
,
10152 .input_mux
= &alc882_capture_source
,
10154 [ALC883_3ST_2ch_DIG
] = {
10155 .mixers
= { alc883_3ST_2ch_mixer
},
10156 .init_verbs
= { alc883_init_verbs
},
10157 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
10158 .dac_nids
= alc883_dac_nids
,
10159 .dig_out_nid
= ALC883_DIGOUT_NID
,
10160 .dig_in_nid
= ALC883_DIGIN_NID
,
10161 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_2ch_modes
),
10162 .channel_mode
= alc883_3ST_2ch_modes
,
10163 .input_mux
= &alc883_capture_source
,
10165 [ALC883_3ST_6ch_DIG
] = {
10166 .mixers
= { alc883_3ST_6ch_mixer
, alc883_chmode_mixer
},
10167 .init_verbs
= { alc883_init_verbs
},
10168 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
10169 .dac_nids
= alc883_dac_nids
,
10170 .dig_out_nid
= ALC883_DIGOUT_NID
,
10171 .dig_in_nid
= ALC883_DIGIN_NID
,
10172 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_6ch_modes
),
10173 .channel_mode
= alc883_3ST_6ch_modes
,
10175 .input_mux
= &alc883_capture_source
,
10177 [ALC883_3ST_6ch
] = {
10178 .mixers
= { alc883_3ST_6ch_mixer
, alc883_chmode_mixer
},
10179 .init_verbs
= { alc883_init_verbs
},
10180 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
10181 .dac_nids
= alc883_dac_nids
,
10182 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_6ch_modes
),
10183 .channel_mode
= alc883_3ST_6ch_modes
,
10185 .input_mux
= &alc883_capture_source
,
10187 [ALC883_3ST_6ch_INTEL
] = {
10188 .mixers
= { alc883_3ST_6ch_intel_mixer
, alc883_chmode_mixer
},
10189 .init_verbs
= { alc883_init_verbs
},
10190 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
10191 .dac_nids
= alc883_dac_nids
,
10192 .dig_out_nid
= ALC883_DIGOUT_NID
,
10193 .dig_in_nid
= ALC883_DIGIN_NID
,
10194 .slave_dig_outs
= alc883_slave_dig_outs
,
10195 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_6ch_intel_modes
),
10196 .channel_mode
= alc883_3ST_6ch_intel_modes
,
10198 .input_mux
= &alc883_3stack_6ch_intel
,
10200 [ALC889A_INTEL
] = {
10201 .mixers
= { alc885_8ch_intel_mixer
, alc883_chmode_mixer
},
10202 .init_verbs
= { alc885_init_verbs
, alc885_init_input_verbs
,
10203 alc_hp15_unsol_verbs
},
10204 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
10205 .dac_nids
= alc883_dac_nids
,
10206 .num_adc_nids
= ARRAY_SIZE(alc889_adc_nids
),
10207 .adc_nids
= alc889_adc_nids
,
10208 .dig_out_nid
= ALC883_DIGOUT_NID
,
10209 .dig_in_nid
= ALC883_DIGIN_NID
,
10210 .slave_dig_outs
= alc883_slave_dig_outs
,
10211 .num_channel_mode
= ARRAY_SIZE(alc889_8ch_intel_modes
),
10212 .channel_mode
= alc889_8ch_intel_modes
,
10213 .capsrc_nids
= alc889_capsrc_nids
,
10214 .input_mux
= &alc889_capture_source
,
10215 .setup
= alc889_automute_setup
,
10216 .init_hook
= alc_automute_amp
,
10217 .unsol_event
= alc_automute_amp_unsol_event
,
10221 .mixers
= { alc885_8ch_intel_mixer
, alc883_chmode_mixer
},
10222 .init_verbs
= { alc885_init_verbs
, alc889_init_input_verbs
,
10223 alc889_eapd_verbs
, alc_hp15_unsol_verbs
},
10224 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
10225 .dac_nids
= alc883_dac_nids
,
10226 .num_adc_nids
= ARRAY_SIZE(alc889_adc_nids
),
10227 .adc_nids
= alc889_adc_nids
,
10228 .dig_out_nid
= ALC883_DIGOUT_NID
,
10229 .dig_in_nid
= ALC883_DIGIN_NID
,
10230 .slave_dig_outs
= alc883_slave_dig_outs
,
10231 .num_channel_mode
= ARRAY_SIZE(alc889_8ch_intel_modes
),
10232 .channel_mode
= alc889_8ch_intel_modes
,
10233 .capsrc_nids
= alc889_capsrc_nids
,
10234 .input_mux
= &alc889_capture_source
,
10235 .setup
= alc889_automute_setup
,
10236 .init_hook
= alc889_intel_init_hook
,
10237 .unsol_event
= alc_automute_amp_unsol_event
,
10240 [ALC883_6ST_DIG
] = {
10241 .mixers
= { alc883_base_mixer
, alc883_chmode_mixer
},
10242 .init_verbs
= { alc883_init_verbs
},
10243 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
10244 .dac_nids
= alc883_dac_nids
,
10245 .dig_out_nid
= ALC883_DIGOUT_NID
,
10246 .dig_in_nid
= ALC883_DIGIN_NID
,
10247 .num_channel_mode
= ARRAY_SIZE(alc883_sixstack_modes
),
10248 .channel_mode
= alc883_sixstack_modes
,
10249 .input_mux
= &alc883_capture_source
,
10251 [ALC883_TARGA_DIG
] = {
10252 .mixers
= { alc883_targa_mixer
, alc883_chmode_mixer
},
10253 .init_verbs
= { alc883_init_verbs
, alc880_gpio3_init_verbs
,
10254 alc883_targa_verbs
},
10255 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
10256 .dac_nids
= alc883_dac_nids
,
10257 .dig_out_nid
= ALC883_DIGOUT_NID
,
10258 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_6ch_modes
),
10259 .channel_mode
= alc883_3ST_6ch_modes
,
10261 .input_mux
= &alc883_capture_source
,
10262 .unsol_event
= alc883_targa_unsol_event
,
10263 .setup
= alc882_targa_setup
,
10264 .init_hook
= alc882_targa_automute
,
10266 [ALC883_TARGA_2ch_DIG
] = {
10267 .mixers
= { alc883_targa_2ch_mixer
},
10268 .init_verbs
= { alc883_init_verbs
, alc880_gpio3_init_verbs
,
10269 alc883_targa_verbs
},
10270 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
10271 .dac_nids
= alc883_dac_nids
,
10272 .adc_nids
= alc883_adc_nids_alt
,
10273 .num_adc_nids
= ARRAY_SIZE(alc883_adc_nids_alt
),
10274 .capsrc_nids
= alc883_capsrc_nids
,
10275 .dig_out_nid
= ALC883_DIGOUT_NID
,
10276 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_2ch_modes
),
10277 .channel_mode
= alc883_3ST_2ch_modes
,
10278 .input_mux
= &alc883_capture_source
,
10279 .unsol_event
= alc883_targa_unsol_event
,
10280 .setup
= alc882_targa_setup
,
10281 .init_hook
= alc882_targa_automute
,
10283 [ALC883_TARGA_8ch_DIG
] = {
10284 .mixers
= { alc883_targa_mixer
, alc883_targa_8ch_mixer
,
10285 alc883_chmode_mixer
},
10286 .init_verbs
= { alc883_init_verbs
, alc880_gpio3_init_verbs
,
10287 alc883_targa_verbs
},
10288 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
10289 .dac_nids
= alc883_dac_nids
,
10290 .num_adc_nids
= ARRAY_SIZE(alc883_adc_nids_rev
),
10291 .adc_nids
= alc883_adc_nids_rev
,
10292 .capsrc_nids
= alc883_capsrc_nids_rev
,
10293 .dig_out_nid
= ALC883_DIGOUT_NID
,
10294 .dig_in_nid
= ALC883_DIGIN_NID
,
10295 .num_channel_mode
= ARRAY_SIZE(alc883_4ST_8ch_modes
),
10296 .channel_mode
= alc883_4ST_8ch_modes
,
10298 .input_mux
= &alc883_capture_source
,
10299 .unsol_event
= alc883_targa_unsol_event
,
10300 .setup
= alc882_targa_setup
,
10301 .init_hook
= alc882_targa_automute
,
10304 .mixers
= { alc883_base_mixer
},
10305 /* On TravelMate laptops, GPIO 0 enables the internal speaker
10306 * and the headphone jack. Turn this on and rely on the
10307 * standard mute methods whenever the user wants to turn
10308 * these outputs off.
10310 .init_verbs
= { alc883_init_verbs
, alc880_gpio1_init_verbs
},
10311 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
10312 .dac_nids
= alc883_dac_nids
,
10313 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_2ch_modes
),
10314 .channel_mode
= alc883_3ST_2ch_modes
,
10315 .input_mux
= &alc883_capture_source
,
10317 [ALC883_ACER_ASPIRE
] = {
10318 .mixers
= { alc883_acer_aspire_mixer
},
10319 .init_verbs
= { alc883_init_verbs
, alc883_acer_eapd_verbs
},
10320 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
10321 .dac_nids
= alc883_dac_nids
,
10322 .dig_out_nid
= ALC883_DIGOUT_NID
,
10323 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_2ch_modes
),
10324 .channel_mode
= alc883_3ST_2ch_modes
,
10325 .input_mux
= &alc883_capture_source
,
10326 .unsol_event
= alc_automute_amp_unsol_event
,
10327 .setup
= alc883_acer_aspire_setup
,
10328 .init_hook
= alc_automute_amp
,
10330 [ALC888_ACER_ASPIRE_4930G
] = {
10331 .mixers
= { alc888_acer_aspire_4930g_mixer
,
10332 alc883_chmode_mixer
},
10333 .init_verbs
= { alc883_init_verbs
, alc880_gpio1_init_verbs
,
10334 alc888_acer_aspire_4930g_verbs
},
10335 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
10336 .dac_nids
= alc883_dac_nids
,
10337 .num_adc_nids
= ARRAY_SIZE(alc883_adc_nids_rev
),
10338 .adc_nids
= alc883_adc_nids_rev
,
10339 .capsrc_nids
= alc883_capsrc_nids_rev
,
10340 .dig_out_nid
= ALC883_DIGOUT_NID
,
10341 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_6ch_modes
),
10342 .channel_mode
= alc883_3ST_6ch_modes
,
10344 .const_channel_count
= 6,
10346 ARRAY_SIZE(alc888_2_capture_sources
),
10347 .input_mux
= alc888_2_capture_sources
,
10348 .unsol_event
= alc_automute_amp_unsol_event
,
10349 .setup
= alc888_acer_aspire_4930g_setup
,
10350 .init_hook
= alc_automute_amp
,
10352 [ALC888_ACER_ASPIRE_6530G
] = {
10353 .mixers
= { alc888_acer_aspire_6530_mixer
},
10354 .init_verbs
= { alc883_init_verbs
, alc880_gpio1_init_verbs
,
10355 alc888_acer_aspire_6530g_verbs
},
10356 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
10357 .dac_nids
= alc883_dac_nids
,
10358 .num_adc_nids
= ARRAY_SIZE(alc883_adc_nids_rev
),
10359 .adc_nids
= alc883_adc_nids_rev
,
10360 .capsrc_nids
= alc883_capsrc_nids_rev
,
10361 .dig_out_nid
= ALC883_DIGOUT_NID
,
10362 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_2ch_modes
),
10363 .channel_mode
= alc883_3ST_2ch_modes
,
10365 ARRAY_SIZE(alc888_2_capture_sources
),
10366 .input_mux
= alc888_acer_aspire_6530_sources
,
10367 .unsol_event
= alc_automute_amp_unsol_event
,
10368 .setup
= alc888_acer_aspire_6530g_setup
,
10369 .init_hook
= alc_automute_amp
,
10371 [ALC888_ACER_ASPIRE_8930G
] = {
10372 .mixers
= { alc889_acer_aspire_8930g_mixer
,
10373 alc883_chmode_mixer
},
10374 .init_verbs
= { alc883_init_verbs
, alc880_gpio1_init_verbs
,
10375 alc889_acer_aspire_8930g_verbs
,
10376 alc889_eapd_verbs
},
10377 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
10378 .dac_nids
= alc883_dac_nids
,
10379 .num_adc_nids
= ARRAY_SIZE(alc889_adc_nids
),
10380 .adc_nids
= alc889_adc_nids
,
10381 .capsrc_nids
= alc889_capsrc_nids
,
10382 .dig_out_nid
= ALC883_DIGOUT_NID
,
10383 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_6ch_modes
),
10384 .channel_mode
= alc883_3ST_6ch_modes
,
10386 .const_channel_count
= 6,
10388 ARRAY_SIZE(alc889_capture_sources
),
10389 .input_mux
= alc889_capture_sources
,
10390 .unsol_event
= alc_automute_amp_unsol_event
,
10391 .setup
= alc889_acer_aspire_8930g_setup
,
10392 .init_hook
= alc_automute_amp
,
10393 #ifdef CONFIG_SND_HDA_POWER_SAVE
10394 .power_hook
= alc_power_eapd
,
10397 [ALC888_ACER_ASPIRE_7730G
] = {
10398 .mixers
= { alc883_3ST_6ch_mixer
,
10399 alc883_chmode_mixer
},
10400 .init_verbs
= { alc883_init_verbs
, alc880_gpio1_init_verbs
,
10401 alc888_acer_aspire_7730G_verbs
},
10402 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
10403 .dac_nids
= alc883_dac_nids
,
10404 .num_adc_nids
= ARRAY_SIZE(alc883_adc_nids_rev
),
10405 .adc_nids
= alc883_adc_nids_rev
,
10406 .capsrc_nids
= alc883_capsrc_nids_rev
,
10407 .dig_out_nid
= ALC883_DIGOUT_NID
,
10408 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_6ch_modes
),
10409 .channel_mode
= alc883_3ST_6ch_modes
,
10411 .const_channel_count
= 6,
10412 .input_mux
= &alc883_capture_source
,
10413 .unsol_event
= alc_automute_amp_unsol_event
,
10414 .setup
= alc888_acer_aspire_7730g_setup
,
10415 .init_hook
= alc_automute_amp
,
10417 [ALC883_MEDION
] = {
10418 .mixers
= { alc883_fivestack_mixer
,
10419 alc883_chmode_mixer
},
10420 .init_verbs
= { alc883_init_verbs
,
10421 alc883_medion_eapd_verbs
},
10422 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
10423 .dac_nids
= alc883_dac_nids
,
10424 .adc_nids
= alc883_adc_nids_alt
,
10425 .num_adc_nids
= ARRAY_SIZE(alc883_adc_nids_alt
),
10426 .capsrc_nids
= alc883_capsrc_nids
,
10427 .num_channel_mode
= ARRAY_SIZE(alc883_sixstack_modes
),
10428 .channel_mode
= alc883_sixstack_modes
,
10429 .input_mux
= &alc883_capture_source
,
10431 [ALC883_MEDION_WIM2160
] = {
10432 .mixers
= { alc883_medion_wim2160_mixer
},
10433 .init_verbs
= { alc883_init_verbs
, alc883_medion_wim2160_verbs
},
10434 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
10435 .dac_nids
= alc883_dac_nids
,
10436 .dig_out_nid
= ALC883_DIGOUT_NID
,
10437 .num_adc_nids
= ARRAY_SIZE(alc883_adc_nids
),
10438 .adc_nids
= alc883_adc_nids
,
10439 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_2ch_modes
),
10440 .channel_mode
= alc883_3ST_2ch_modes
,
10441 .input_mux
= &alc883_capture_source
,
10442 .unsol_event
= alc_automute_amp_unsol_event
,
10443 .setup
= alc883_medion_wim2160_setup
,
10444 .init_hook
= alc_automute_amp
,
10446 [ALC883_LAPTOP_EAPD
] = {
10447 .mixers
= { alc883_base_mixer
},
10448 .init_verbs
= { alc883_init_verbs
, alc882_eapd_verbs
},
10449 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
10450 .dac_nids
= alc883_dac_nids
,
10451 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_2ch_modes
),
10452 .channel_mode
= alc883_3ST_2ch_modes
,
10453 .input_mux
= &alc883_capture_source
,
10455 [ALC883_CLEVO_M540R
] = {
10456 .mixers
= { alc883_3ST_6ch_mixer
, alc883_chmode_mixer
},
10457 .init_verbs
= { alc883_init_verbs
, alc883_clevo_m540r_verbs
},
10458 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
10459 .dac_nids
= alc883_dac_nids
,
10460 .dig_out_nid
= ALC883_DIGOUT_NID
,
10461 .dig_in_nid
= ALC883_DIGIN_NID
,
10462 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_6ch_clevo_modes
),
10463 .channel_mode
= alc883_3ST_6ch_clevo_modes
,
10465 .input_mux
= &alc883_capture_source
,
10466 /* This machine has the hardware HP auto-muting, thus
10467 * we need no software mute via unsol event
10470 [ALC883_CLEVO_M720
] = {
10471 .mixers
= { alc883_clevo_m720_mixer
},
10472 .init_verbs
= { alc883_init_verbs
, alc883_clevo_m720_verbs
},
10473 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
10474 .dac_nids
= alc883_dac_nids
,
10475 .dig_out_nid
= ALC883_DIGOUT_NID
,
10476 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_2ch_modes
),
10477 .channel_mode
= alc883_3ST_2ch_modes
,
10478 .input_mux
= &alc883_capture_source
,
10479 .unsol_event
= alc883_clevo_m720_unsol_event
,
10480 .setup
= alc883_clevo_m720_setup
,
10481 .init_hook
= alc883_clevo_m720_init_hook
,
10483 [ALC883_LENOVO_101E_2ch
] = {
10484 .mixers
= { alc883_lenovo_101e_2ch_mixer
},
10485 .init_verbs
= { alc883_init_verbs
, alc883_lenovo_101e_verbs
},
10486 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
10487 .dac_nids
= alc883_dac_nids
,
10488 .adc_nids
= alc883_adc_nids_alt
,
10489 .num_adc_nids
= ARRAY_SIZE(alc883_adc_nids_alt
),
10490 .capsrc_nids
= alc883_capsrc_nids
,
10491 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_2ch_modes
),
10492 .channel_mode
= alc883_3ST_2ch_modes
,
10493 .input_mux
= &alc883_lenovo_101e_capture_source
,
10494 .unsol_event
= alc883_lenovo_101e_unsol_event
,
10495 .init_hook
= alc883_lenovo_101e_all_automute
,
10497 [ALC883_LENOVO_NB0763
] = {
10498 .mixers
= { alc883_lenovo_nb0763_mixer
},
10499 .init_verbs
= { alc883_init_verbs
, alc883_lenovo_nb0763_verbs
},
10500 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
10501 .dac_nids
= alc883_dac_nids
,
10502 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_2ch_modes
),
10503 .channel_mode
= alc883_3ST_2ch_modes
,
10505 .input_mux
= &alc883_lenovo_nb0763_capture_source
,
10506 .unsol_event
= alc_automute_amp_unsol_event
,
10507 .setup
= alc883_lenovo_nb0763_setup
,
10508 .init_hook
= alc_automute_amp
,
10510 [ALC888_LENOVO_MS7195_DIG
] = {
10511 .mixers
= { alc883_3ST_6ch_mixer
, alc883_chmode_mixer
},
10512 .init_verbs
= { alc883_init_verbs
, alc888_lenovo_ms7195_verbs
},
10513 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
10514 .dac_nids
= alc883_dac_nids
,
10515 .dig_out_nid
= ALC883_DIGOUT_NID
,
10516 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_6ch_modes
),
10517 .channel_mode
= alc883_3ST_6ch_modes
,
10519 .input_mux
= &alc883_capture_source
,
10520 .unsol_event
= alc883_lenovo_ms7195_unsol_event
,
10521 .init_hook
= alc888_lenovo_ms7195_front_automute
,
10523 [ALC883_HAIER_W66
] = {
10524 .mixers
= { alc883_targa_2ch_mixer
},
10525 .init_verbs
= { alc883_init_verbs
, alc883_haier_w66_verbs
},
10526 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
10527 .dac_nids
= alc883_dac_nids
,
10528 .dig_out_nid
= ALC883_DIGOUT_NID
,
10529 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_2ch_modes
),
10530 .channel_mode
= alc883_3ST_2ch_modes
,
10531 .input_mux
= &alc883_capture_source
,
10532 .unsol_event
= alc_automute_amp_unsol_event
,
10533 .setup
= alc883_haier_w66_setup
,
10534 .init_hook
= alc_automute_amp
,
10536 [ALC888_3ST_HP
] = {
10537 .mixers
= { alc883_3ST_6ch_mixer
, alc883_chmode_mixer
},
10538 .init_verbs
= { alc883_init_verbs
, alc888_3st_hp_verbs
},
10539 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
10540 .dac_nids
= alc883_dac_nids
,
10541 .num_channel_mode
= ARRAY_SIZE(alc888_3st_hp_modes
),
10542 .channel_mode
= alc888_3st_hp_modes
,
10544 .input_mux
= &alc883_capture_source
,
10545 .unsol_event
= alc_automute_amp_unsol_event
,
10546 .setup
= alc888_3st_hp_setup
,
10547 .init_hook
= alc_automute_amp
,
10549 [ALC888_6ST_DELL
] = {
10550 .mixers
= { alc883_base_mixer
, alc883_chmode_mixer
},
10551 .init_verbs
= { alc883_init_verbs
, alc888_6st_dell_verbs
},
10552 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
10553 .dac_nids
= alc883_dac_nids
,
10554 .dig_out_nid
= ALC883_DIGOUT_NID
,
10555 .dig_in_nid
= ALC883_DIGIN_NID
,
10556 .num_channel_mode
= ARRAY_SIZE(alc883_sixstack_modes
),
10557 .channel_mode
= alc883_sixstack_modes
,
10558 .input_mux
= &alc883_capture_source
,
10559 .unsol_event
= alc_automute_amp_unsol_event
,
10560 .setup
= alc888_6st_dell_setup
,
10561 .init_hook
= alc_automute_amp
,
10564 .mixers
= { alc883_mitac_mixer
},
10565 .init_verbs
= { alc883_init_verbs
, alc883_mitac_verbs
},
10566 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
10567 .dac_nids
= alc883_dac_nids
,
10568 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_2ch_modes
),
10569 .channel_mode
= alc883_3ST_2ch_modes
,
10570 .input_mux
= &alc883_capture_source
,
10571 .unsol_event
= alc_automute_amp_unsol_event
,
10572 .setup
= alc883_mitac_setup
,
10573 .init_hook
= alc_automute_amp
,
10575 [ALC883_FUJITSU_PI2515
] = {
10576 .mixers
= { alc883_2ch_fujitsu_pi2515_mixer
},
10577 .init_verbs
= { alc883_init_verbs
,
10578 alc883_2ch_fujitsu_pi2515_verbs
},
10579 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
10580 .dac_nids
= alc883_dac_nids
,
10581 .dig_out_nid
= ALC883_DIGOUT_NID
,
10582 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_2ch_modes
),
10583 .channel_mode
= alc883_3ST_2ch_modes
,
10584 .input_mux
= &alc883_fujitsu_pi2515_capture_source
,
10585 .unsol_event
= alc_automute_amp_unsol_event
,
10586 .setup
= alc883_2ch_fujitsu_pi2515_setup
,
10587 .init_hook
= alc_automute_amp
,
10589 [ALC888_FUJITSU_XA3530
] = {
10590 .mixers
= { alc888_base_mixer
, alc883_chmode_mixer
},
10591 .init_verbs
= { alc883_init_verbs
,
10592 alc888_fujitsu_xa3530_verbs
},
10593 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
10594 .dac_nids
= alc883_dac_nids
,
10595 .num_adc_nids
= ARRAY_SIZE(alc883_adc_nids_rev
),
10596 .adc_nids
= alc883_adc_nids_rev
,
10597 .capsrc_nids
= alc883_capsrc_nids_rev
,
10598 .dig_out_nid
= ALC883_DIGOUT_NID
,
10599 .num_channel_mode
= ARRAY_SIZE(alc888_4ST_8ch_intel_modes
),
10600 .channel_mode
= alc888_4ST_8ch_intel_modes
,
10602 ARRAY_SIZE(alc888_2_capture_sources
),
10603 .input_mux
= alc888_2_capture_sources
,
10604 .unsol_event
= alc_automute_amp_unsol_event
,
10605 .setup
= alc888_fujitsu_xa3530_setup
,
10606 .init_hook
= alc_automute_amp
,
10608 [ALC888_LENOVO_SKY
] = {
10609 .mixers
= { alc888_lenovo_sky_mixer
, alc883_chmode_mixer
},
10610 .init_verbs
= { alc883_init_verbs
, alc888_lenovo_sky_verbs
},
10611 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
10612 .dac_nids
= alc883_dac_nids
,
10613 .dig_out_nid
= ALC883_DIGOUT_NID
,
10614 .num_channel_mode
= ARRAY_SIZE(alc883_sixstack_modes
),
10615 .channel_mode
= alc883_sixstack_modes
,
10617 .input_mux
= &alc883_lenovo_sky_capture_source
,
10618 .unsol_event
= alc_automute_amp_unsol_event
,
10619 .setup
= alc888_lenovo_sky_setup
,
10620 .init_hook
= alc_automute_amp
,
10622 [ALC888_ASUS_M90V
] = {
10623 .mixers
= { alc883_3ST_6ch_mixer
, alc883_chmode_mixer
},
10624 .init_verbs
= { alc883_init_verbs
, alc888_asus_m90v_verbs
},
10625 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
10626 .dac_nids
= alc883_dac_nids
,
10627 .dig_out_nid
= ALC883_DIGOUT_NID
,
10628 .dig_in_nid
= ALC883_DIGIN_NID
,
10629 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_6ch_modes
),
10630 .channel_mode
= alc883_3ST_6ch_modes
,
10632 .input_mux
= &alc883_fujitsu_pi2515_capture_source
,
10633 .unsol_event
= alc_sku_unsol_event
,
10634 .setup
= alc883_mode2_setup
,
10635 .init_hook
= alc_inithook
,
10637 [ALC888_ASUS_EEE1601
] = {
10638 .mixers
= { alc883_asus_eee1601_mixer
},
10639 .cap_mixer
= alc883_asus_eee1601_cap_mixer
,
10640 .init_verbs
= { alc883_init_verbs
, alc888_asus_eee1601_verbs
},
10641 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
10642 .dac_nids
= alc883_dac_nids
,
10643 .dig_out_nid
= ALC883_DIGOUT_NID
,
10644 .dig_in_nid
= ALC883_DIGIN_NID
,
10645 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_2ch_modes
),
10646 .channel_mode
= alc883_3ST_2ch_modes
,
10648 .input_mux
= &alc883_asus_eee1601_capture_source
,
10649 .unsol_event
= alc_sku_unsol_event
,
10650 .init_hook
= alc883_eee1601_inithook
,
10652 [ALC1200_ASUS_P5Q
] = {
10653 .mixers
= { alc883_base_mixer
, alc883_chmode_mixer
},
10654 .init_verbs
= { alc883_init_verbs
},
10655 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
10656 .dac_nids
= alc883_dac_nids
,
10657 .dig_out_nid
= ALC1200_DIGOUT_NID
,
10658 .dig_in_nid
= ALC883_DIGIN_NID
,
10659 .slave_dig_outs
= alc1200_slave_dig_outs
,
10660 .num_channel_mode
= ARRAY_SIZE(alc883_sixstack_modes
),
10661 .channel_mode
= alc883_sixstack_modes
,
10662 .input_mux
= &alc883_capture_source
,
10665 .mixers
= { alc889A_mb31_mixer
, alc883_chmode_mixer
},
10666 .init_verbs
= { alc883_init_verbs
, alc889A_mb31_verbs
,
10667 alc880_gpio1_init_verbs
},
10668 .adc_nids
= alc883_adc_nids
,
10669 .num_adc_nids
= ARRAY_SIZE(alc883_adc_nids
),
10670 .capsrc_nids
= alc883_capsrc_nids
,
10671 .dac_nids
= alc883_dac_nids
,
10672 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
10673 .channel_mode
= alc889A_mb31_6ch_modes
,
10674 .num_channel_mode
= ARRAY_SIZE(alc889A_mb31_6ch_modes
),
10675 .input_mux
= &alc889A_mb31_capture_source
,
10676 .dig_out_nid
= ALC883_DIGOUT_NID
,
10677 .unsol_event
= alc889A_mb31_unsol_event
,
10678 .init_hook
= alc889A_mb31_automute
,
10680 [ALC883_SONY_VAIO_TT
] = {
10681 .mixers
= { alc883_vaiott_mixer
},
10682 .init_verbs
= { alc883_init_verbs
, alc883_vaiott_verbs
},
10683 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
10684 .dac_nids
= alc883_dac_nids
,
10685 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_2ch_modes
),
10686 .channel_mode
= alc883_3ST_2ch_modes
,
10687 .input_mux
= &alc883_capture_source
,
10688 .unsol_event
= alc_automute_amp_unsol_event
,
10689 .setup
= alc883_vaiott_setup
,
10690 .init_hook
= alc_automute_amp
,
10699 PINFIX_ABIT_AW9D_MAX
,
10700 PINFIX_LENOVO_Y530
,
10702 PINFIX_ACER_ASPIRE_7736
,
10705 static const struct alc_fixup alc882_fixups
[] = {
10706 [PINFIX_ABIT_AW9D_MAX
] = {
10707 .type
= ALC_FIXUP_PINS
,
10708 .v
.pins
= (const struct alc_pincfg
[]) {
10709 { 0x15, 0x01080104 }, /* side */
10710 { 0x16, 0x01011012 }, /* rear */
10711 { 0x17, 0x01016011 }, /* clfe */
10715 [PINFIX_LENOVO_Y530
] = {
10716 .type
= ALC_FIXUP_PINS
,
10717 .v
.pins
= (const struct alc_pincfg
[]) {
10718 { 0x15, 0x99130112 }, /* rear int speakers */
10719 { 0x16, 0x99130111 }, /* subwoofer */
10723 [PINFIX_PB_M5210
] = {
10724 .type
= ALC_FIXUP_VERBS
,
10725 .v
.verbs
= (const struct hda_verb
[]) {
10726 { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF50
},
10730 [PINFIX_ACER_ASPIRE_7736
] = {
10731 .type
= ALC_FIXUP_SKU
,
10732 .v
.sku
= ALC_FIXUP_SKU_IGNORE
,
10736 static struct snd_pci_quirk alc882_fixup_tbl
[] = {
10737 SND_PCI_QUIRK(0x1025, 0x0155, "Packard-Bell M5120", PINFIX_PB_M5210
),
10738 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Y530", PINFIX_LENOVO_Y530
),
10739 SND_PCI_QUIRK(0x147b, 0x107a, "Abit AW9D-MAX", PINFIX_ABIT_AW9D_MAX
),
10740 SND_PCI_QUIRK(0x1025, 0x0296, "Acer Aspire 7736z", PINFIX_ACER_ASPIRE_7736
),
10745 * BIOS auto configuration
10747 static int alc882_auto_create_input_ctls(struct hda_codec
*codec
,
10748 const struct auto_pin_cfg
*cfg
)
10750 return alc_auto_create_input_ctls(codec
, cfg
, 0x0b, 0x23, 0x22);
10753 static void alc882_auto_set_output_and_unmute(struct hda_codec
*codec
,
10754 hda_nid_t nid
, int pin_type
,
10759 /* set as output */
10760 alc_set_pin_output(codec
, nid
, pin_type
);
10764 else if (dac
>= 0x02 && dac
<= 0x05)
10768 snd_hda_codec_write(codec
, nid
, 0, AC_VERB_SET_CONNECT_SEL
, idx
);
10771 static void alc882_auto_init_multi_out(struct hda_codec
*codec
)
10773 struct alc_spec
*spec
= codec
->spec
;
10776 for (i
= 0; i
<= HDA_SIDE
; i
++) {
10777 hda_nid_t nid
= spec
->autocfg
.line_out_pins
[i
];
10778 int pin_type
= get_pin_type(spec
->autocfg
.line_out_type
);
10780 alc882_auto_set_output_and_unmute(codec
, nid
, pin_type
,
10781 spec
->multiout
.dac_nids
[i
]);
10785 static void alc882_auto_init_hp_out(struct hda_codec
*codec
)
10787 struct alc_spec
*spec
= codec
->spec
;
10788 hda_nid_t pin
, dac
;
10791 if (spec
->autocfg
.line_out_type
!= AUTO_PIN_HP_OUT
) {
10792 for (i
= 0; i
< ARRAY_SIZE(spec
->autocfg
.hp_pins
); i
++) {
10793 pin
= spec
->autocfg
.hp_pins
[i
];
10796 dac
= spec
->multiout
.hp_nid
;
10798 dac
= spec
->multiout
.dac_nids
[0]; /* to front */
10799 alc882_auto_set_output_and_unmute(codec
, pin
, PIN_HP
, dac
);
10803 if (spec
->autocfg
.line_out_type
!= AUTO_PIN_SPEAKER_OUT
) {
10804 for (i
= 0; i
< ARRAY_SIZE(spec
->autocfg
.speaker_pins
); i
++) {
10805 pin
= spec
->autocfg
.speaker_pins
[i
];
10808 dac
= spec
->multiout
.extra_out_nid
[0];
10810 dac
= spec
->multiout
.dac_nids
[0]; /* to front */
10811 alc882_auto_set_output_and_unmute(codec
, pin
, PIN_OUT
, dac
);
10816 static void alc882_auto_init_analog_input(struct hda_codec
*codec
)
10818 struct alc_spec
*spec
= codec
->spec
;
10819 struct auto_pin_cfg
*cfg
= &spec
->autocfg
;
10822 for (i
= 0; i
< cfg
->num_inputs
; i
++) {
10823 hda_nid_t nid
= cfg
->inputs
[i
].pin
;
10824 alc_set_input_pin(codec
, nid
, cfg
->inputs
[i
].type
);
10825 if (get_wcaps(codec
, nid
) & AC_WCAP_OUT_AMP
)
10826 snd_hda_codec_write(codec
, nid
, 0,
10827 AC_VERB_SET_AMP_GAIN_MUTE
,
10832 static void alc882_auto_init_input_src(struct hda_codec
*codec
)
10834 struct alc_spec
*spec
= codec
->spec
;
10837 for (c
= 0; c
< spec
->num_adc_nids
; c
++) {
10838 hda_nid_t conn_list
[HDA_MAX_NUM_INPUTS
];
10839 hda_nid_t nid
= spec
->capsrc_nids
[c
];
10840 unsigned int mux_idx
;
10841 const struct hda_input_mux
*imux
;
10842 int conns
, mute
, idx
, item
;
10844 conns
= snd_hda_get_connections(codec
, nid
, conn_list
,
10845 ARRAY_SIZE(conn_list
));
10848 mux_idx
= c
>= spec
->num_mux_defs
? 0 : c
;
10849 imux
= &spec
->input_mux
[mux_idx
];
10850 if (!imux
->num_items
&& mux_idx
> 0)
10851 imux
= &spec
->input_mux
[0];
10852 for (idx
= 0; idx
< conns
; idx
++) {
10853 /* if the current connection is the selected one,
10854 * unmute it as default - otherwise mute it
10856 mute
= AMP_IN_MUTE(idx
);
10857 for (item
= 0; item
< imux
->num_items
; item
++) {
10858 if (imux
->items
[item
].index
== idx
) {
10859 if (spec
->cur_mux
[c
] == item
)
10860 mute
= AMP_IN_UNMUTE(idx
);
10864 /* check if we have a selector or mixer
10865 * we could check for the widget type instead, but
10866 * just check for Amp-In presence (in case of mixer
10867 * without amp-in there is something wrong, this
10868 * function shouldn't be used or capsrc nid is wrong)
10870 if (get_wcaps(codec
, nid
) & AC_WCAP_IN_AMP
)
10871 snd_hda_codec_write(codec
, nid
, 0,
10872 AC_VERB_SET_AMP_GAIN_MUTE
,
10874 else if (mute
!= AMP_IN_MUTE(idx
))
10875 snd_hda_codec_write(codec
, nid
, 0,
10876 AC_VERB_SET_CONNECT_SEL
,
10882 /* add mic boosts if needed */
10883 static int alc_auto_add_mic_boost(struct hda_codec
*codec
)
10885 struct alc_spec
*spec
= codec
->spec
;
10886 struct auto_pin_cfg
*cfg
= &spec
->autocfg
;
10890 const char *prev_label
= NULL
;
10892 for (i
= 0; i
< cfg
->num_inputs
; i
++) {
10893 if (cfg
->inputs
[i
].type
> AUTO_PIN_MIC
)
10895 nid
= cfg
->inputs
[i
].pin
;
10896 if (get_wcaps(codec
, nid
) & AC_WCAP_IN_AMP
) {
10898 char boost_label
[32];
10900 label
= hda_get_autocfg_input_label(codec
, cfg
, i
);
10901 if (prev_label
&& !strcmp(label
, prev_label
))
10905 prev_label
= label
;
10907 snprintf(boost_label
, sizeof(boost_label
),
10908 "%s Boost Volume", label
);
10909 err
= add_control(spec
, ALC_CTL_WIDGET_VOL
,
10910 boost_label
, type_idx
,
10911 HDA_COMPOSE_AMP_VAL(nid
, 3, 0, HDA_INPUT
));
10919 /* almost identical with ALC880 parser... */
10920 static int alc882_parse_auto_config(struct hda_codec
*codec
)
10922 struct alc_spec
*spec
= codec
->spec
;
10923 static hda_nid_t alc882_ignore
[] = { 0x1d, 0 };
10926 err
= snd_hda_parse_pin_def_config(codec
, &spec
->autocfg
,
10930 if (!spec
->autocfg
.line_outs
)
10931 return 0; /* can't find valid BIOS pin config */
10933 err
= alc880_auto_fill_dac_nids(spec
, &spec
->autocfg
);
10936 err
= alc880_auto_create_multi_out_ctls(spec
, &spec
->autocfg
);
10939 err
= alc880_auto_create_extra_out(spec
, spec
->autocfg
.hp_pins
[0],
10943 err
= alc880_auto_create_extra_out(spec
,
10944 spec
->autocfg
.speaker_pins
[0],
10948 err
= alc882_auto_create_input_ctls(codec
, &spec
->autocfg
);
10952 spec
->multiout
.max_channels
= spec
->multiout
.num_dacs
* 2;
10954 alc_auto_parse_digital(codec
);
10956 if (spec
->kctls
.list
)
10957 add_mixer(spec
, spec
->kctls
.list
);
10959 add_verb(spec
, alc883_auto_init_verbs
);
10960 /* if ADC 0x07 is available, initialize it, too */
10961 if (get_wcaps_type(get_wcaps(codec
, 0x07)) == AC_WID_AUD_IN
)
10962 add_verb(spec
, alc882_adc1_init_verbs
);
10964 spec
->num_mux_defs
= 1;
10965 spec
->input_mux
= &spec
->private_imux
[0];
10967 alc_ssid_check(codec
, 0x15, 0x1b, 0x14, 0);
10969 err
= alc_auto_add_mic_boost(codec
);
10973 return 1; /* config found */
10976 /* additional initialization for auto-configuration model */
10977 static void alc882_auto_init(struct hda_codec
*codec
)
10979 struct alc_spec
*spec
= codec
->spec
;
10980 alc882_auto_init_multi_out(codec
);
10981 alc882_auto_init_hp_out(codec
);
10982 alc882_auto_init_analog_input(codec
);
10983 alc882_auto_init_input_src(codec
);
10984 alc_auto_init_digital(codec
);
10985 if (spec
->unsol_event
)
10986 alc_inithook(codec
);
10989 static int patch_alc882(struct hda_codec
*codec
)
10991 struct alc_spec
*spec
;
10992 int err
, board_config
;
10994 spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
10998 codec
->spec
= spec
;
11000 switch (codec
->vendor_id
) {
11005 /* ALC883 and variants */
11006 alc_fix_pll_init(codec
, 0x20, 0x0a, 10);
11010 board_config
= snd_hda_check_board_config(codec
, ALC882_MODEL_LAST
,
11014 if (board_config
< 0 || board_config
>= ALC882_MODEL_LAST
)
11015 board_config
= snd_hda_check_board_codec_sid_config(codec
,
11016 ALC882_MODEL_LAST
, alc882_models
, alc882_ssid_cfg_tbl
);
11018 if (board_config
< 0 || board_config
>= ALC882_MODEL_LAST
) {
11019 printk(KERN_INFO
"hda_codec: %s: BIOS auto-probing.\n",
11021 board_config
= ALC882_AUTO
;
11024 if (board_config
== ALC882_AUTO
) {
11025 alc_pick_fixup(codec
, NULL
, alc882_fixup_tbl
, alc882_fixups
);
11026 alc_apply_fixup(codec
, ALC_FIXUP_ACT_PRE_PROBE
);
11029 alc_auto_parse_customize_define(codec
);
11031 if (board_config
== ALC882_AUTO
) {
11032 /* automatic parse from the BIOS config */
11033 err
= alc882_parse_auto_config(codec
);
11039 "hda_codec: Cannot set up configuration "
11040 "from BIOS. Using base mode...\n");
11041 board_config
= ALC882_3ST_DIG
;
11045 if (has_cdefine_beep(codec
)) {
11046 err
= snd_hda_attach_beep_device(codec
, 0x1);
11053 if (board_config
!= ALC882_AUTO
)
11054 setup_preset(codec
, &alc882_presets
[board_config
]);
11056 spec
->stream_analog_playback
= &alc882_pcm_analog_playback
;
11057 spec
->stream_analog_capture
= &alc882_pcm_analog_capture
;
11058 /* FIXME: setup DAC5 */
11059 /*spec->stream_analog_alt_playback = &alc880_pcm_analog_alt_playback;*/
11060 spec
->stream_analog_alt_capture
= &alc880_pcm_analog_alt_capture
;
11062 spec
->stream_digital_playback
= &alc882_pcm_digital_playback
;
11063 spec
->stream_digital_capture
= &alc882_pcm_digital_capture
;
11065 if (!spec
->adc_nids
&& spec
->input_mux
) {
11067 spec
->num_adc_nids
= 0;
11068 for (i
= 0; i
< ARRAY_SIZE(alc882_adc_nids
); i
++) {
11069 const struct hda_input_mux
*imux
= spec
->input_mux
;
11071 hda_nid_t items
[16];
11072 hda_nid_t nid
= alc882_adc_nids
[i
];
11073 unsigned int wcap
= get_wcaps(codec
, nid
);
11075 wcap
= get_wcaps_type(wcap
);
11076 if (wcap
!= AC_WID_AUD_IN
)
11078 spec
->private_adc_nids
[spec
->num_adc_nids
] = nid
;
11079 err
= snd_hda_get_connections(codec
, nid
, &cap
, 1);
11082 err
= snd_hda_get_connections(codec
, cap
, items
,
11083 ARRAY_SIZE(items
));
11086 for (j
= 0; j
< imux
->num_items
; j
++)
11087 if (imux
->items
[j
].index
>= err
)
11089 if (j
< imux
->num_items
)
11091 spec
->private_capsrc_nids
[spec
->num_adc_nids
] = cap
;
11092 spec
->num_adc_nids
++;
11094 spec
->adc_nids
= spec
->private_adc_nids
;
11095 spec
->capsrc_nids
= spec
->private_capsrc_nids
;
11098 set_capture_mixer(codec
);
11100 if (has_cdefine_beep(codec
))
11101 set_beep_amp(spec
, 0x0b, 0x05, HDA_INPUT
);
11103 alc_apply_fixup(codec
, ALC_FIXUP_ACT_PROBE
);
11105 spec
->vmaster_nid
= 0x0c;
11107 codec
->patch_ops
= alc_patch_ops
;
11108 if (board_config
== ALC882_AUTO
)
11109 spec
->init_hook
= alc882_auto_init
;
11111 alc_init_jacks(codec
);
11112 #ifdef CONFIG_SND_HDA_POWER_SAVE
11113 if (!spec
->loopback
.amplist
)
11114 spec
->loopback
.amplist
= alc882_loopbacks
;
11125 #define ALC262_DIGOUT_NID ALC880_DIGOUT_NID
11126 #define ALC262_DIGIN_NID ALC880_DIGIN_NID
11128 #define alc262_dac_nids alc260_dac_nids
11129 #define alc262_adc_nids alc882_adc_nids
11130 #define alc262_adc_nids_alt alc882_adc_nids_alt
11131 #define alc262_capsrc_nids alc882_capsrc_nids
11132 #define alc262_capsrc_nids_alt alc882_capsrc_nids_alt
11134 #define alc262_modes alc260_modes
11135 #define alc262_capture_source alc882_capture_source
11137 static hda_nid_t alc262_dmic_adc_nids
[1] = {
11142 static hda_nid_t alc262_dmic_capsrc_nids
[1] = { 0x22 };
11144 static struct snd_kcontrol_new alc262_base_mixer
[] = {
11145 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
11146 HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
11147 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
11148 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
11149 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
11150 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
11151 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
11152 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
11153 HDA_CODEC_VOLUME("Mic Boost Volume", 0x18, 0, HDA_INPUT
),
11154 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x01, HDA_INPUT
),
11155 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x01, HDA_INPUT
),
11156 HDA_CODEC_VOLUME("Front Mic Boost Volume", 0x19, 0, HDA_INPUT
),
11157 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0D, 0x0, HDA_OUTPUT
),
11158 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
11159 HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT
),
11160 HDA_CODEC_MUTE_MONO("Mono Playback Switch", 0x16, 2, 0x0, HDA_OUTPUT
),
11164 /* update HP, line and mono-out pins according to the master switch */
11165 static void alc262_hp_master_update(struct hda_codec
*codec
)
11167 struct alc_spec
*spec
= codec
->spec
;
11168 int val
= spec
->master_sw
;
11170 /* HP & line-out */
11171 snd_hda_codec_write_cache(codec
, 0x1b, 0,
11172 AC_VERB_SET_PIN_WIDGET_CONTROL
,
11174 snd_hda_codec_write_cache(codec
, 0x15, 0,
11175 AC_VERB_SET_PIN_WIDGET_CONTROL
,
11177 /* mono (speaker) depending on the HP jack sense */
11178 val
= val
&& !spec
->jack_present
;
11179 snd_hda_codec_write_cache(codec
, 0x16, 0,
11180 AC_VERB_SET_PIN_WIDGET_CONTROL
,
11181 val
? PIN_OUT
: 0);
11184 static void alc262_hp_bpc_automute(struct hda_codec
*codec
)
11186 struct alc_spec
*spec
= codec
->spec
;
11188 spec
->jack_present
= snd_hda_jack_detect(codec
, 0x1b);
11189 alc262_hp_master_update(codec
);
11192 static void alc262_hp_bpc_unsol_event(struct hda_codec
*codec
, unsigned int res
)
11194 if ((res
>> 26) != ALC880_HP_EVENT
)
11196 alc262_hp_bpc_automute(codec
);
11199 static void alc262_hp_wildwest_automute(struct hda_codec
*codec
)
11201 struct alc_spec
*spec
= codec
->spec
;
11203 spec
->jack_present
= snd_hda_jack_detect(codec
, 0x15);
11204 alc262_hp_master_update(codec
);
11207 static void alc262_hp_wildwest_unsol_event(struct hda_codec
*codec
,
11210 if ((res
>> 26) != ALC880_HP_EVENT
)
11212 alc262_hp_wildwest_automute(codec
);
11215 #define alc262_hp_master_sw_get alc260_hp_master_sw_get
11217 static int alc262_hp_master_sw_put(struct snd_kcontrol
*kcontrol
,
11218 struct snd_ctl_elem_value
*ucontrol
)
11220 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
11221 struct alc_spec
*spec
= codec
->spec
;
11222 int val
= !!*ucontrol
->value
.integer
.value
;
11224 if (val
== spec
->master_sw
)
11226 spec
->master_sw
= val
;
11227 alc262_hp_master_update(codec
);
11231 #define ALC262_HP_MASTER_SWITCH \
11233 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
11234 .name = "Master Playback Switch", \
11235 .info = snd_ctl_boolean_mono_info, \
11236 .get = alc262_hp_master_sw_get, \
11237 .put = alc262_hp_master_sw_put, \
11240 .iface = NID_MAPPING, \
11241 .name = "Master Playback Switch", \
11242 .private_value = 0x15 | (0x16 << 8) | (0x1b << 16), \
11246 static struct snd_kcontrol_new alc262_HP_BPC_mixer
[] = {
11247 ALC262_HP_MASTER_SWITCH
,
11248 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
11249 HDA_CODEC_MUTE("Front Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
11250 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
11251 HDA_CODEC_VOLUME_MONO("Speaker Playback Volume", 0x0e, 2, 0x0,
11253 HDA_CODEC_MUTE_MONO("Speaker Playback Switch", 0x16, 2, 0x0,
11255 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
11256 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
11257 HDA_CODEC_VOLUME("Mic Boost Volume", 0x18, 0, HDA_INPUT
),
11258 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x01, HDA_INPUT
),
11259 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x01, HDA_INPUT
),
11260 HDA_CODEC_VOLUME("Front Mic Boost Volume", 0x19, 0, HDA_INPUT
),
11261 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
11262 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
11263 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
11264 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
11265 HDA_CODEC_VOLUME("AUX IN Playback Volume", 0x0b, 0x06, HDA_INPUT
),
11266 HDA_CODEC_MUTE("AUX IN Playback Switch", 0x0b, 0x06, HDA_INPUT
),
11270 static struct snd_kcontrol_new alc262_HP_BPC_WildWest_mixer
[] = {
11271 ALC262_HP_MASTER_SWITCH
,
11272 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
11273 HDA_CODEC_MUTE("Front Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
11274 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
11275 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
11276 HDA_CODEC_VOLUME_MONO("Speaker Playback Volume", 0x0e, 2, 0x0,
11278 HDA_CODEC_MUTE_MONO("Speaker Playback Switch", 0x16, 2, 0x0,
11280 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x02, HDA_INPUT
),
11281 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x02, HDA_INPUT
),
11282 HDA_CODEC_VOLUME("Front Mic Boost Volume", 0x1a, 0, HDA_INPUT
),
11283 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x01, HDA_INPUT
),
11284 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x01, HDA_INPUT
),
11285 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
11286 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
11290 static struct snd_kcontrol_new alc262_HP_BPC_WildWest_option_mixer
[] = {
11291 HDA_CODEC_VOLUME("Rear Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
11292 HDA_CODEC_MUTE("Rear Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
11293 HDA_CODEC_VOLUME("Rear Mic Boost Volume", 0x18, 0, HDA_INPUT
),
11297 /* mute/unmute internal speaker according to the hp jack and mute state */
11298 static void alc262_hp_t5735_setup(struct hda_codec
*codec
)
11300 struct alc_spec
*spec
= codec
->spec
;
11302 spec
->autocfg
.hp_pins
[0] = 0x15;
11303 spec
->autocfg
.speaker_pins
[0] = 0x14;
11306 static struct snd_kcontrol_new alc262_hp_t5735_mixer
[] = {
11307 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
11308 HDA_CODEC_MUTE("Speaker Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
11309 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
11310 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
11311 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
11312 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
11313 HDA_CODEC_VOLUME("Mic Boost Volume", 0x18, 0, HDA_INPUT
),
11317 static struct hda_verb alc262_hp_t5735_verbs
[] = {
11318 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
11319 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
11321 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
11325 static struct snd_kcontrol_new alc262_hp_rp5700_mixer
[] = {
11326 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
11327 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
11328 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0e, 0x0, HDA_OUTPUT
),
11329 HDA_CODEC_MUTE("Speaker Playback Switch", 0x16, 0x0, HDA_OUTPUT
),
11330 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x01, HDA_INPUT
),
11331 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x01, HDA_INPUT
),
11335 static struct hda_verb alc262_hp_rp5700_verbs
[] = {
11336 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
11337 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
11338 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
11339 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
11340 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
11341 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0x00},
11342 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x01 << 8))},
11343 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x01 << 8))},
11344 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x00 << 8))},
11345 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x00 << 8))},
11349 static struct hda_input_mux alc262_hp_rp5700_capture_source
= {
11356 /* bind hp and internal speaker mute (with plug check) as master switch */
11357 static void alc262_hippo_master_update(struct hda_codec
*codec
)
11359 struct alc_spec
*spec
= codec
->spec
;
11360 hda_nid_t hp_nid
= spec
->autocfg
.hp_pins
[0];
11361 hda_nid_t line_nid
= spec
->autocfg
.line_out_pins
[0];
11362 hda_nid_t speaker_nid
= spec
->autocfg
.speaker_pins
[0];
11366 mute
= spec
->master_sw
? 0 : HDA_AMP_MUTE
;
11367 snd_hda_codec_amp_stereo(codec
, hp_nid
, HDA_OUTPUT
, 0,
11368 HDA_AMP_MUTE
, mute
);
11369 /* mute internal speaker per jack sense */
11370 if (spec
->jack_present
)
11371 mute
= HDA_AMP_MUTE
;
11373 snd_hda_codec_amp_stereo(codec
, line_nid
, HDA_OUTPUT
, 0,
11374 HDA_AMP_MUTE
, mute
);
11375 if (speaker_nid
&& speaker_nid
!= line_nid
)
11376 snd_hda_codec_amp_stereo(codec
, speaker_nid
, HDA_OUTPUT
, 0,
11377 HDA_AMP_MUTE
, mute
);
11380 #define alc262_hippo_master_sw_get alc262_hp_master_sw_get
11382 static int alc262_hippo_master_sw_put(struct snd_kcontrol
*kcontrol
,
11383 struct snd_ctl_elem_value
*ucontrol
)
11385 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
11386 struct alc_spec
*spec
= codec
->spec
;
11387 int val
= !!*ucontrol
->value
.integer
.value
;
11389 if (val
== spec
->master_sw
)
11391 spec
->master_sw
= val
;
11392 alc262_hippo_master_update(codec
);
11396 #define ALC262_HIPPO_MASTER_SWITCH \
11398 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
11399 .name = "Master Playback Switch", \
11400 .info = snd_ctl_boolean_mono_info, \
11401 .get = alc262_hippo_master_sw_get, \
11402 .put = alc262_hippo_master_sw_put, \
11405 .iface = NID_MAPPING, \
11406 .name = "Master Playback Switch", \
11407 .subdevice = SUBDEV_HP(0) | (SUBDEV_LINE(0) << 8) | \
11408 (SUBDEV_SPEAKER(0) << 16), \
11411 static struct snd_kcontrol_new alc262_hippo_mixer
[] = {
11412 ALC262_HIPPO_MASTER_SWITCH
,
11413 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
11414 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
11415 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
11416 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
11417 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
11418 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
11419 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
11420 HDA_CODEC_VOLUME("Mic Boost Volume", 0x18, 0, HDA_INPUT
),
11421 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x01, HDA_INPUT
),
11422 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x01, HDA_INPUT
),
11423 HDA_CODEC_VOLUME("Front Mic Boost Volume", 0x19, 0, HDA_INPUT
),
11424 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
11428 static struct snd_kcontrol_new alc262_hippo1_mixer
[] = {
11429 HDA_CODEC_VOLUME("Master Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
11430 ALC262_HIPPO_MASTER_SWITCH
,
11431 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
11432 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
11433 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
11434 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
11435 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
11436 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
11437 HDA_CODEC_VOLUME("Mic Boost Volume", 0x18, 0, HDA_INPUT
),
11438 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x01, HDA_INPUT
),
11439 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x01, HDA_INPUT
),
11440 HDA_CODEC_VOLUME("Front Mic Boost Volume", 0x19, 0, HDA_INPUT
),
11444 /* mute/unmute internal speaker according to the hp jack and mute state */
11445 static void alc262_hippo_automute(struct hda_codec
*codec
)
11447 struct alc_spec
*spec
= codec
->spec
;
11448 hda_nid_t hp_nid
= spec
->autocfg
.hp_pins
[0];
11450 spec
->jack_present
= snd_hda_jack_detect(codec
, hp_nid
);
11451 alc262_hippo_master_update(codec
);
11454 static void alc262_hippo_unsol_event(struct hda_codec
*codec
, unsigned int res
)
11456 if ((res
>> 26) != ALC880_HP_EVENT
)
11458 alc262_hippo_automute(codec
);
11461 static void alc262_hippo_setup(struct hda_codec
*codec
)
11463 struct alc_spec
*spec
= codec
->spec
;
11465 spec
->autocfg
.hp_pins
[0] = 0x15;
11466 spec
->autocfg
.speaker_pins
[0] = 0x14;
11469 static void alc262_hippo1_setup(struct hda_codec
*codec
)
11471 struct alc_spec
*spec
= codec
->spec
;
11473 spec
->autocfg
.hp_pins
[0] = 0x1b;
11474 spec
->autocfg
.speaker_pins
[0] = 0x14;
11478 static struct snd_kcontrol_new alc262_sony_mixer
[] = {
11479 HDA_CODEC_VOLUME("Master Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
11480 ALC262_HIPPO_MASTER_SWITCH
,
11481 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
11482 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
11483 HDA_CODEC_VOLUME("ATAPI Mic Playback Volume", 0x0b, 0x01, HDA_INPUT
),
11484 HDA_CODEC_MUTE("ATAPI Mic Playback Switch", 0x0b, 0x01, HDA_INPUT
),
11488 static struct snd_kcontrol_new alc262_benq_t31_mixer
[] = {
11489 HDA_CODEC_VOLUME("Master Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
11490 ALC262_HIPPO_MASTER_SWITCH
,
11491 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
11492 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
11493 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
11494 HDA_CODEC_VOLUME("ATAPI Mic Playback Volume", 0x0b, 0x01, HDA_INPUT
),
11495 HDA_CODEC_MUTE("ATAPI Mic Playback Switch", 0x0b, 0x01, HDA_INPUT
),
11499 static struct snd_kcontrol_new alc262_tyan_mixer
[] = {
11500 HDA_CODEC_VOLUME("Master Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
11501 HDA_BIND_MUTE("Master Playback Switch", 0x0c, 2, HDA_INPUT
),
11502 HDA_CODEC_VOLUME("Aux Playback Volume", 0x0b, 0x06, HDA_INPUT
),
11503 HDA_CODEC_MUTE("Aux Playback Switch", 0x0b, 0x06, HDA_INPUT
),
11504 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
11505 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
11506 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
11507 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
11508 HDA_CODEC_VOLUME("Mic Boost Volume", 0x18, 0, HDA_INPUT
),
11509 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x01, HDA_INPUT
),
11510 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x01, HDA_INPUT
),
11511 HDA_CODEC_VOLUME("Front Mic Boost Volume", 0x19, 0, HDA_INPUT
),
11515 static struct hda_verb alc262_tyan_verbs
[] = {
11516 /* Headphone automute */
11517 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
11518 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
11519 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00},
11521 /* P11 AUX_IN, white 4-pin connector */
11522 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
11523 {0x14, AC_VERB_SET_CONFIG_DEFAULT_BYTES_1
, 0xe1},
11524 {0x14, AC_VERB_SET_CONFIG_DEFAULT_BYTES_2
, 0x93},
11525 {0x14, AC_VERB_SET_CONFIG_DEFAULT_BYTES_3
, 0x19},
11530 /* unsolicited event for HP jack sensing */
11531 static void alc262_tyan_setup(struct hda_codec
*codec
)
11533 struct alc_spec
*spec
= codec
->spec
;
11535 spec
->autocfg
.hp_pins
[0] = 0x1b;
11536 spec
->autocfg
.speaker_pins
[0] = 0x15;
11540 #define alc262_capture_mixer alc882_capture_mixer
11541 #define alc262_capture_alt_mixer alc882_capture_alt_mixer
11544 * generic initialization of ADC, input mixers and output mixers
11546 static struct hda_verb alc262_init_verbs
[] = {
11548 * Unmute ADC0-2 and set the default input to mic-in
11550 {0x07, AC_VERB_SET_CONNECT_SEL
, 0x00},
11551 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
11552 {0x08, AC_VERB_SET_CONNECT_SEL
, 0x00},
11553 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
11554 {0x09, AC_VERB_SET_CONNECT_SEL
, 0x00},
11555 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
11557 /* Mute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
11559 * Note: PASD motherboards uses the Line In 2 as the input for
11560 * front panel mic (mic 2)
11562 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
11563 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
11564 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
11565 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
11566 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
11567 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
11570 * Set up output mixers (0x0c - 0x0e)
11572 /* set vol=0 to output mixers */
11573 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
11574 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
11575 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
11576 /* set up input amps for analog loopback */
11577 /* Amp Indices: DAC = 0, mixer = 1 */
11578 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
11579 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
11580 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
11581 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
11582 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
11583 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
11585 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40},
11586 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0xc0},
11587 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40},
11588 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24},
11589 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20},
11590 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20},
11592 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, 0x0000},
11593 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, 0x0000},
11594 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, 0x0000},
11595 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, 0x0000},
11596 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, 0x0000},
11598 {0x14, AC_VERB_SET_CONNECT_SEL
, 0x00},
11599 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x01},
11601 /* FIXME: use matrix-type input source selection */
11602 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
11603 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
11604 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
11605 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x03 << 8))},
11606 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x02 << 8))},
11607 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x04 << 8))},
11609 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
11610 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x03 << 8))},
11611 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x02 << 8))},
11612 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x04 << 8))},
11614 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
11615 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x03 << 8))},
11616 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x02 << 8))},
11617 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x04 << 8))},
11622 static struct hda_verb alc262_eapd_verbs
[] = {
11623 {0x14, AC_VERB_SET_EAPD_BTLENABLE
, 2},
11624 {0x15, AC_VERB_SET_EAPD_BTLENABLE
, 2},
11628 static struct hda_verb alc262_hippo1_unsol_verbs
[] = {
11629 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0xc0},
11630 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0x00},
11631 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, 0x0000},
11633 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
11634 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
11638 static struct hda_verb alc262_sony_unsol_verbs
[] = {
11639 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0xc0},
11640 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00},
11641 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24}, // Front Mic
11643 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
11644 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
11648 static struct snd_kcontrol_new alc262_toshiba_s06_mixer
[] = {
11649 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
11650 HDA_CODEC_MUTE("Speaker Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
11651 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
11652 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
11653 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
11657 static struct hda_verb alc262_toshiba_s06_verbs
[] = {
11658 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
11659 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
11660 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
11661 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00},
11662 {0x22, AC_VERB_SET_CONNECT_SEL
, 0x09},
11663 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24},
11664 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
11665 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
11669 static void alc262_toshiba_s06_setup(struct hda_codec
*codec
)
11671 struct alc_spec
*spec
= codec
->spec
;
11673 spec
->autocfg
.hp_pins
[0] = 0x15;
11674 spec
->autocfg
.speaker_pins
[0] = 0x14;
11675 spec
->ext_mic
.pin
= 0x18;
11676 spec
->ext_mic
.mux_idx
= 0;
11677 spec
->int_mic
.pin
= 0x12;
11678 spec
->int_mic
.mux_idx
= 9;
11679 spec
->auto_mic
= 1;
11685 * 0x16 = internal speaker
11686 * 0x18 = external mic
11689 static struct snd_kcontrol_new alc262_nec_mixer
[] = {
11690 HDA_CODEC_VOLUME_MONO("Speaker Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT
),
11691 HDA_CODEC_MUTE_MONO("Speaker Playback Switch", 0x16, 0, 0x0, HDA_OUTPUT
),
11693 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
11694 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
11695 HDA_CODEC_VOLUME("Mic Boost Volume", 0x18, 0, HDA_INPUT
),
11697 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
11698 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
11702 static struct hda_verb alc262_nec_verbs
[] = {
11703 /* Unmute Speaker */
11704 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
11707 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
11708 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
11710 /* External mic to headphone */
11711 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
11712 /* External mic to speaker */
11713 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
11719 * 0x14 = headphone/spdif-out, 0x15 = internal speaker,
11720 * 0x1b = port replicator headphone out
11723 #define ALC_HP_EVENT 0x37
11725 static struct hda_verb alc262_fujitsu_unsol_verbs
[] = {
11726 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC_HP_EVENT
},
11727 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
11728 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC_HP_EVENT
},
11729 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
11733 static struct hda_verb alc262_lenovo_3000_unsol_verbs
[] = {
11734 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC_HP_EVENT
},
11735 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
11739 static struct hda_verb alc262_lenovo_3000_init_verbs
[] = {
11740 /* Front Mic pin: input vref at 50% */
11741 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF50
},
11742 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
11746 static struct hda_input_mux alc262_fujitsu_capture_source
= {
11750 { "Internal Mic", 0x1 },
11755 static struct hda_input_mux alc262_HP_capture_source
= {
11759 { "Front Mic", 0x1 },
11766 static struct hda_input_mux alc262_HP_D7000_capture_source
= {
11770 { "Front Mic", 0x2 },
11776 /* mute/unmute internal speaker according to the hp jacks and mute state */
11777 static void alc262_fujitsu_automute(struct hda_codec
*codec
, int force
)
11779 struct alc_spec
*spec
= codec
->spec
;
11782 if (force
|| !spec
->sense_updated
) {
11783 spec
->jack_present
= snd_hda_jack_detect(codec
, 0x14) ||
11784 snd_hda_jack_detect(codec
, 0x1b);
11785 spec
->sense_updated
= 1;
11787 /* unmute internal speaker only if both HPs are unplugged and
11788 * master switch is on
11790 if (spec
->jack_present
)
11791 mute
= HDA_AMP_MUTE
;
11793 mute
= snd_hda_codec_amp_read(codec
, 0x14, 0, HDA_OUTPUT
, 0);
11794 snd_hda_codec_amp_stereo(codec
, 0x15, HDA_OUTPUT
, 0,
11795 HDA_AMP_MUTE
, mute
);
11798 /* unsolicited event for HP jack sensing */
11799 static void alc262_fujitsu_unsol_event(struct hda_codec
*codec
,
11802 if ((res
>> 26) != ALC_HP_EVENT
)
11804 alc262_fujitsu_automute(codec
, 1);
11807 static void alc262_fujitsu_init_hook(struct hda_codec
*codec
)
11809 alc262_fujitsu_automute(codec
, 1);
11812 /* bind volumes of both NID 0x0c and 0x0d */
11813 static struct hda_bind_ctls alc262_fujitsu_bind_master_vol
= {
11814 .ops
= &snd_hda_bind_vol
,
11816 HDA_COMPOSE_AMP_VAL(0x0c, 3, 0, HDA_OUTPUT
),
11817 HDA_COMPOSE_AMP_VAL(0x0d, 3, 0, HDA_OUTPUT
),
11822 /* mute/unmute internal speaker according to the hp jack and mute state */
11823 static void alc262_lenovo_3000_automute(struct hda_codec
*codec
, int force
)
11825 struct alc_spec
*spec
= codec
->spec
;
11828 if (force
|| !spec
->sense_updated
) {
11829 spec
->jack_present
= snd_hda_jack_detect(codec
, 0x1b);
11830 spec
->sense_updated
= 1;
11832 if (spec
->jack_present
) {
11833 /* mute internal speaker */
11834 snd_hda_codec_amp_stereo(codec
, 0x14, HDA_OUTPUT
, 0,
11835 HDA_AMP_MUTE
, HDA_AMP_MUTE
);
11836 snd_hda_codec_amp_stereo(codec
, 0x16, HDA_OUTPUT
, 0,
11837 HDA_AMP_MUTE
, HDA_AMP_MUTE
);
11839 /* unmute internal speaker if necessary */
11840 mute
= snd_hda_codec_amp_read(codec
, 0x1b, 0, HDA_OUTPUT
, 0);
11841 snd_hda_codec_amp_stereo(codec
, 0x14, HDA_OUTPUT
, 0,
11842 HDA_AMP_MUTE
, mute
);
11843 snd_hda_codec_amp_stereo(codec
, 0x16, HDA_OUTPUT
, 0,
11844 HDA_AMP_MUTE
, mute
);
11848 /* unsolicited event for HP jack sensing */
11849 static void alc262_lenovo_3000_unsol_event(struct hda_codec
*codec
,
11852 if ((res
>> 26) != ALC_HP_EVENT
)
11854 alc262_lenovo_3000_automute(codec
, 1);
11857 static int amp_stereo_mute_update(struct hda_codec
*codec
, hda_nid_t nid
,
11858 int dir
, int idx
, long *valp
)
11862 for (i
= 0; i
< 2; i
++, valp
++)
11863 change
|= snd_hda_codec_amp_update(codec
, nid
, i
, dir
, idx
,
11865 *valp
? 0 : HDA_AMP_MUTE
);
11869 /* bind hp and internal speaker mute (with plug check) */
11870 static int alc262_fujitsu_master_sw_put(struct snd_kcontrol
*kcontrol
,
11871 struct snd_ctl_elem_value
*ucontrol
)
11873 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
11874 long *valp
= ucontrol
->value
.integer
.value
;
11877 change
= amp_stereo_mute_update(codec
, 0x14, HDA_OUTPUT
, 0, valp
);
11878 change
|= amp_stereo_mute_update(codec
, 0x1b, HDA_OUTPUT
, 0, valp
);
11880 alc262_fujitsu_automute(codec
, 0);
11884 static struct snd_kcontrol_new alc262_fujitsu_mixer
[] = {
11885 HDA_BIND_VOL("Master Playback Volume", &alc262_fujitsu_bind_master_vol
),
11887 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
11888 .name
= "Master Playback Switch",
11889 .subdevice
= HDA_SUBDEV_AMP_FLAG
,
11890 .info
= snd_hda_mixer_amp_switch_info
,
11891 .get
= snd_hda_mixer_amp_switch_get
,
11892 .put
= alc262_fujitsu_master_sw_put
,
11893 .private_value
= HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT
),
11896 .iface
= NID_MAPPING
,
11897 .name
= "Master Playback Switch",
11898 .private_value
= 0x1b,
11900 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
11901 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
11902 HDA_CODEC_VOLUME("Mic Boost Volume", 0x18, 0, HDA_INPUT
),
11903 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
11904 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
11905 HDA_CODEC_VOLUME("Internal Mic Boost Volume", 0x19, 0, HDA_INPUT
),
11906 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
11907 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
11911 /* bind hp and internal speaker mute (with plug check) */
11912 static int alc262_lenovo_3000_master_sw_put(struct snd_kcontrol
*kcontrol
,
11913 struct snd_ctl_elem_value
*ucontrol
)
11915 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
11916 long *valp
= ucontrol
->value
.integer
.value
;
11919 change
= amp_stereo_mute_update(codec
, 0x1b, HDA_OUTPUT
, 0, valp
);
11921 alc262_lenovo_3000_automute(codec
, 0);
11925 static struct snd_kcontrol_new alc262_lenovo_3000_mixer
[] = {
11926 HDA_BIND_VOL("Master Playback Volume", &alc262_fujitsu_bind_master_vol
),
11928 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
11929 .name
= "Master Playback Switch",
11930 .subdevice
= HDA_SUBDEV_AMP_FLAG
,
11931 .info
= snd_hda_mixer_amp_switch_info
,
11932 .get
= snd_hda_mixer_amp_switch_get
,
11933 .put
= alc262_lenovo_3000_master_sw_put
,
11934 .private_value
= HDA_COMPOSE_AMP_VAL(0x1b, 3, 0, HDA_OUTPUT
),
11936 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
11937 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
11938 HDA_CODEC_VOLUME("Mic Boost Volume", 0x18, 0, HDA_INPUT
),
11939 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
11940 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
11941 HDA_CODEC_VOLUME("Internal Mic Boost Volume", 0x19, 0, HDA_INPUT
),
11942 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
11943 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
11947 static struct snd_kcontrol_new alc262_toshiba_rx1_mixer
[] = {
11948 HDA_BIND_VOL("Master Playback Volume", &alc262_fujitsu_bind_master_vol
),
11949 ALC262_HIPPO_MASTER_SWITCH
,
11950 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
11951 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
11952 HDA_CODEC_VOLUME("Mic Boost Volume", 0x18, 0, HDA_INPUT
),
11953 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x01, HDA_INPUT
),
11954 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x01, HDA_INPUT
),
11955 HDA_CODEC_VOLUME("Front Mic Boost Volume", 0x19, 0, HDA_INPUT
),
11959 /* additional init verbs for Benq laptops */
11960 static struct hda_verb alc262_EAPD_verbs
[] = {
11961 {0x20, AC_VERB_SET_COEF_INDEX
, 0x07},
11962 {0x20, AC_VERB_SET_PROC_COEF
, 0x3070},
11966 static struct hda_verb alc262_benq_t31_EAPD_verbs
[] = {
11967 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00},
11968 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24},
11970 {0x20, AC_VERB_SET_COEF_INDEX
, 0x07},
11971 {0x20, AC_VERB_SET_PROC_COEF
, 0x3050},
11975 /* Samsung Q1 Ultra Vista model setup */
11976 static struct snd_kcontrol_new alc262_ultra_mixer
[] = {
11977 HDA_CODEC_VOLUME("Master Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
11978 HDA_BIND_MUTE("Master Playback Switch", 0x0c, 2, HDA_INPUT
),
11979 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x01, HDA_INPUT
),
11980 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x01, HDA_INPUT
),
11981 HDA_CODEC_VOLUME("Mic Boost Volume", 0x19, 0, HDA_INPUT
),
11982 HDA_CODEC_VOLUME("Headphone Mic Boost Volume", 0x15, 0, HDA_INPUT
),
11986 static struct hda_verb alc262_ultra_verbs
[] = {
11988 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
11989 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
11990 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
11992 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
11993 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
11994 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
11995 {0x14, AC_VERB_SET_CONNECT_SEL
, 0x00},
11997 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
11998 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
11999 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
12000 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00},
12001 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
12003 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
12004 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
12005 /* ADC, choose mic */
12006 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
12007 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
12008 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
12009 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
12010 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
12011 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
12012 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(5)},
12013 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(6)},
12014 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(7)},
12015 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(8)},
12019 /* mute/unmute internal speaker according to the hp jack and mute state */
12020 static void alc262_ultra_automute(struct hda_codec
*codec
)
12022 struct alc_spec
*spec
= codec
->spec
;
12026 /* auto-mute only when HP is used as HP */
12027 if (!spec
->cur_mux
[0]) {
12028 spec
->jack_present
= snd_hda_jack_detect(codec
, 0x15);
12029 if (spec
->jack_present
)
12030 mute
= HDA_AMP_MUTE
;
12032 /* mute/unmute internal speaker */
12033 snd_hda_codec_amp_stereo(codec
, 0x14, HDA_OUTPUT
, 0,
12034 HDA_AMP_MUTE
, mute
);
12035 /* mute/unmute HP */
12036 snd_hda_codec_amp_stereo(codec
, 0x15, HDA_OUTPUT
, 0,
12037 HDA_AMP_MUTE
, mute
? 0 : HDA_AMP_MUTE
);
12040 /* unsolicited event for HP jack sensing */
12041 static void alc262_ultra_unsol_event(struct hda_codec
*codec
,
12044 if ((res
>> 26) != ALC880_HP_EVENT
)
12046 alc262_ultra_automute(codec
);
12049 static struct hda_input_mux alc262_ultra_capture_source
= {
12053 { "Headphone", 0x7 },
12057 static int alc262_ultra_mux_enum_put(struct snd_kcontrol
*kcontrol
,
12058 struct snd_ctl_elem_value
*ucontrol
)
12060 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
12061 struct alc_spec
*spec
= codec
->spec
;
12064 ret
= alc_mux_enum_put(kcontrol
, ucontrol
);
12067 /* reprogram the HP pin as mic or HP according to the input source */
12068 snd_hda_codec_write_cache(codec
, 0x15, 0,
12069 AC_VERB_SET_PIN_WIDGET_CONTROL
,
12070 spec
->cur_mux
[0] ? PIN_VREF80
: PIN_HP
);
12071 alc262_ultra_automute(codec
); /* mute/unmute HP */
12075 static struct snd_kcontrol_new alc262_ultra_capture_mixer
[] = {
12076 HDA_CODEC_VOLUME("Capture Volume", 0x07, 0x0, HDA_INPUT
),
12077 HDA_CODEC_MUTE("Capture Switch", 0x07, 0x0, HDA_INPUT
),
12079 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
12080 .name
= "Capture Source",
12081 .info
= alc_mux_enum_info
,
12082 .get
= alc_mux_enum_get
,
12083 .put
= alc262_ultra_mux_enum_put
,
12086 .iface
= NID_MAPPING
,
12087 .name
= "Capture Source",
12088 .private_value
= 0x15,
12093 /* We use two mixers depending on the output pin; 0x16 is a mono output
12094 * and thus it's bound with a different mixer.
12095 * This function returns which mixer amp should be used.
12097 static int alc262_check_volbit(hda_nid_t nid
)
12101 else if (nid
== 0x16)
12107 static int alc262_add_out_vol_ctl(struct alc_spec
*spec
, hda_nid_t nid
,
12108 const char *pfx
, int *vbits
, int idx
)
12113 vbit
= alc262_check_volbit(nid
);
12116 if (*vbits
& vbit
) /* a volume control for this mixer already there */
12120 val
= HDA_COMPOSE_AMP_VAL(0x0e, 2, 0, HDA_OUTPUT
);
12122 val
= HDA_COMPOSE_AMP_VAL(0x0c, 3, 0, HDA_OUTPUT
);
12123 return __add_pb_vol_ctrl(spec
, ALC_CTL_WIDGET_VOL
, pfx
, idx
, val
);
12126 static int alc262_add_out_sw_ctl(struct alc_spec
*spec
, hda_nid_t nid
,
12127 const char *pfx
, int idx
)
12134 val
= HDA_COMPOSE_AMP_VAL(nid
, 2, 0, HDA_OUTPUT
);
12136 val
= HDA_COMPOSE_AMP_VAL(nid
, 3, 0, HDA_OUTPUT
);
12137 return __add_pb_sw_ctrl(spec
, ALC_CTL_WIDGET_MUTE
, pfx
, idx
, val
);
12140 /* add playback controls from the parsed DAC table */
12141 static int alc262_auto_create_multi_out_ctls(struct alc_spec
*spec
,
12142 const struct auto_pin_cfg
*cfg
)
12148 spec
->multiout
.num_dacs
= 1; /* only use one dac */
12149 spec
->multiout
.dac_nids
= spec
->private_dac_nids
;
12150 spec
->multiout
.dac_nids
[0] = 2;
12152 pfx
= alc_get_line_out_pfx(cfg
, true);
12155 for (i
= 0; i
< 2; i
++) {
12156 err
= alc262_add_out_sw_ctl(spec
, cfg
->line_out_pins
[i
], pfx
, i
);
12159 if (cfg
->line_out_type
!= AUTO_PIN_SPEAKER_OUT
) {
12160 err
= alc262_add_out_sw_ctl(spec
, cfg
->speaker_pins
[i
],
12165 if (cfg
->line_out_type
!= AUTO_PIN_HP_OUT
) {
12166 err
= alc262_add_out_sw_ctl(spec
, cfg
->hp_pins
[i
],
12173 vbits
= alc262_check_volbit(cfg
->line_out_pins
[0]) |
12174 alc262_check_volbit(cfg
->speaker_pins
[0]) |
12175 alc262_check_volbit(cfg
->hp_pins
[0]);
12176 if (vbits
== 1 || vbits
== 2)
12177 pfx
= "Master"; /* only one mixer is used */
12179 for (i
= 0; i
< 2; i
++) {
12180 err
= alc262_add_out_vol_ctl(spec
, cfg
->line_out_pins
[i
], pfx
,
12184 if (cfg
->line_out_type
!= AUTO_PIN_SPEAKER_OUT
) {
12185 err
= alc262_add_out_vol_ctl(spec
, cfg
->speaker_pins
[i
],
12186 "Speaker", &vbits
, i
);
12190 if (cfg
->line_out_type
!= AUTO_PIN_HP_OUT
) {
12191 err
= alc262_add_out_vol_ctl(spec
, cfg
->hp_pins
[i
],
12192 "Headphone", &vbits
, i
);
12200 #define alc262_auto_create_input_ctls \
12201 alc882_auto_create_input_ctls
12204 * generic initialization of ADC, input mixers and output mixers
12206 static struct hda_verb alc262_volume_init_verbs
[] = {
12208 * Unmute ADC0-2 and set the default input to mic-in
12210 {0x07, AC_VERB_SET_CONNECT_SEL
, 0x00},
12211 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
12212 {0x08, AC_VERB_SET_CONNECT_SEL
, 0x00},
12213 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
12214 {0x09, AC_VERB_SET_CONNECT_SEL
, 0x00},
12215 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
12217 /* Mute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
12219 * Note: PASD motherboards uses the Line In 2 as the input for
12220 * front panel mic (mic 2)
12222 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
12223 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
12224 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
12225 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
12226 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
12227 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
12230 * Set up output mixers (0x0c - 0x0f)
12232 /* set vol=0 to output mixers */
12233 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
12234 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
12235 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
12237 /* set up input amps for analog loopback */
12238 /* Amp Indices: DAC = 0, mixer = 1 */
12239 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
12240 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
12241 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
12242 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
12243 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
12244 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
12246 /* FIXME: use matrix-type input source selection */
12247 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
12248 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
12249 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
12250 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x03 << 8))},
12251 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x02 << 8))},
12252 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x04 << 8))},
12254 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
12255 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x03 << 8))},
12256 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x02 << 8))},
12257 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x04 << 8))},
12259 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
12260 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x03 << 8))},
12261 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x02 << 8))},
12262 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x04 << 8))},
12267 static struct hda_verb alc262_HP_BPC_init_verbs
[] = {
12269 * Unmute ADC0-2 and set the default input to mic-in
12271 {0x07, AC_VERB_SET_CONNECT_SEL
, 0x00},
12272 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
12273 {0x08, AC_VERB_SET_CONNECT_SEL
, 0x00},
12274 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
12275 {0x09, AC_VERB_SET_CONNECT_SEL
, 0x00},
12276 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
12278 /* Mute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
12280 * Note: PASD motherboards uses the Line In 2 as the input for
12281 * front panel mic (mic 2)
12283 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
12284 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
12285 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
12286 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
12287 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
12288 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
12289 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(5)},
12290 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(6)},
12293 * Set up output mixers (0x0c - 0x0e)
12295 /* set vol=0 to output mixers */
12296 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
12297 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
12298 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
12300 /* set up input amps for analog loopback */
12301 /* Amp Indices: DAC = 0, mixer = 1 */
12302 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
12303 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
12304 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
12305 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
12306 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
12307 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
12309 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
12310 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
12311 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
12313 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
12314 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
12316 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0x00},
12317 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00},
12319 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20},
12320 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24},
12321 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24},
12322 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20},
12323 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20},
12325 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, 0x7000 },
12326 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, 0x7000 },
12327 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, 0x7000 },
12328 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, 0x7000 },
12329 {0x1c, AC_VERB_SET_AMP_GAIN_MUTE
, 0x7000 },
12330 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE
, 0x7000 },
12333 /* FIXME: use matrix-type input source selection */
12334 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 0b, 12 */
12335 /* Input mixer1: only unmute Mic */
12336 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
12337 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x01 << 8))},
12338 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x02 << 8))},
12339 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x03 << 8))},
12340 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x04 << 8))},
12341 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x05 << 8))},
12342 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x06 << 8))},
12343 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x07 << 8))},
12344 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x08 << 8))},
12346 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
12347 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x01 << 8))},
12348 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x02 << 8))},
12349 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x03 << 8))},
12350 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x04 << 8))},
12351 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x05 << 8))},
12352 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x06 << 8))},
12353 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x07 << 8))},
12354 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x08 << 8))},
12356 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
12357 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x01 << 8))},
12358 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x02 << 8))},
12359 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x03 << 8))},
12360 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x04 << 8))},
12361 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x05 << 8))},
12362 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x06 << 8))},
12363 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x07 << 8))},
12364 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x08 << 8))},
12366 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
12371 static struct hda_verb alc262_HP_BPC_WildWest_init_verbs
[] = {
12373 * Unmute ADC0-2 and set the default input to mic-in
12375 {0x07, AC_VERB_SET_CONNECT_SEL
, 0x00},
12376 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
12377 {0x08, AC_VERB_SET_CONNECT_SEL
, 0x00},
12378 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
12379 {0x09, AC_VERB_SET_CONNECT_SEL
, 0x00},
12380 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
12382 /* Mute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
12384 * Note: PASD motherboards uses the Line In 2 as the input for front
12385 * panel mic (mic 2)
12387 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
12388 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
12389 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
12390 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
12391 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
12392 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
12393 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(5)},
12394 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(6)},
12395 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(7)},
12397 * Set up output mixers (0x0c - 0x0e)
12399 /* set vol=0 to output mixers */
12400 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
12401 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
12402 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
12404 /* set up input amps for analog loopback */
12405 /* Amp Indices: DAC = 0, mixer = 1 */
12406 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
12407 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
12408 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
12409 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
12410 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
12411 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
12414 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
}, /* HP */
12415 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
}, /* Mono */
12416 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
}, /* rear MIC */
12417 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
}, /* Line in */
12418 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
}, /* Front MIC */
12419 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
}, /* Line out */
12420 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
}, /* CD in */
12422 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
12423 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
12425 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0x00},
12426 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x01},
12428 /* {0x14, AC_VERB_SET_AMP_GAIN_MUTE, 0x7023 }, */
12429 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, 0x7000 },
12430 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, 0x7000 },
12431 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, 0x7023 },
12432 {0x1c, AC_VERB_SET_AMP_GAIN_MUTE
, 0x7000 },
12433 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE
, 0x7000 },
12435 /* FIXME: use matrix-type input source selection */
12436 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
12437 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
12438 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))}, /*rear MIC*/
12439 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x01 << 8))}, /*Line in*/
12440 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x02 << 8))}, /*F MIC*/
12441 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x03 << 8))}, /*Front*/
12442 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x04 << 8))}, /*CD*/
12443 /* {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x06 << 8))}, */
12444 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x07 << 8))}, /*HP*/
12446 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
12447 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x01 << 8))},
12448 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x02 << 8))},
12449 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x03 << 8))},
12450 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x04 << 8))},
12451 /* {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x06 << 8))}, */
12452 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x07 << 8))},
12454 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
12455 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x01 << 8))},
12456 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x02 << 8))},
12457 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x03 << 8))},
12458 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x04 << 8))},
12459 /* {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x06 << 8))}, */
12460 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x07 << 8))},
12462 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
12467 static struct hda_verb alc262_toshiba_rx1_unsol_verbs
[] = {
12469 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
}, /* Front Speaker */
12470 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
12471 {0x14, AC_VERB_SET_CONNECT_SEL
, 0x01},
12473 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
}, /* MIC jack */
12474 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
}, /* Front MIC */
12475 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0) },
12476 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0) },
12478 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
}, /* HP jack */
12479 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00},
12480 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
12491 static const struct alc_fixup alc262_fixups
[] = {
12492 [PINFIX_FSC_H270
] = {
12493 .type
= ALC_FIXUP_PINS
,
12494 .v
.pins
= (const struct alc_pincfg
[]) {
12495 { 0x14, 0x99130110 }, /* speaker */
12496 { 0x15, 0x0221142f }, /* front HP */
12497 { 0x1b, 0x0121141f }, /* rear HP */
12503 static struct snd_pci_quirk alc262_fixup_tbl
[] = {
12504 SND_PCI_QUIRK(0x1734, 0x1147, "FSC Celsius H270", PINFIX_FSC_H270
),
12509 #ifdef CONFIG_SND_HDA_POWER_SAVE
12510 #define alc262_loopbacks alc880_loopbacks
12513 /* pcm configuration: identical with ALC880 */
12514 #define alc262_pcm_analog_playback alc880_pcm_analog_playback
12515 #define alc262_pcm_analog_capture alc880_pcm_analog_capture
12516 #define alc262_pcm_digital_playback alc880_pcm_digital_playback
12517 #define alc262_pcm_digital_capture alc880_pcm_digital_capture
12520 * BIOS auto configuration
12522 static int alc262_parse_auto_config(struct hda_codec
*codec
)
12524 struct alc_spec
*spec
= codec
->spec
;
12526 static hda_nid_t alc262_ignore
[] = { 0x1d, 0 };
12528 err
= snd_hda_parse_pin_def_config(codec
, &spec
->autocfg
,
12532 if (!spec
->autocfg
.line_outs
) {
12533 if (spec
->autocfg
.dig_outs
|| spec
->autocfg
.dig_in_pin
) {
12534 spec
->multiout
.max_channels
= 2;
12535 spec
->no_analog
= 1;
12538 return 0; /* can't find valid BIOS pin config */
12540 err
= alc262_auto_create_multi_out_ctls(spec
, &spec
->autocfg
);
12543 err
= alc262_auto_create_input_ctls(codec
, &spec
->autocfg
);
12547 spec
->multiout
.max_channels
= spec
->multiout
.num_dacs
* 2;
12550 alc_auto_parse_digital(codec
);
12552 if (spec
->kctls
.list
)
12553 add_mixer(spec
, spec
->kctls
.list
);
12555 add_verb(spec
, alc262_volume_init_verbs
);
12556 spec
->num_mux_defs
= 1;
12557 spec
->input_mux
= &spec
->private_imux
[0];
12559 err
= alc_auto_add_mic_boost(codec
);
12563 alc_ssid_check(codec
, 0x15, 0x1b, 0x14, 0);
12568 #define alc262_auto_init_multi_out alc882_auto_init_multi_out
12569 #define alc262_auto_init_hp_out alc882_auto_init_hp_out
12570 #define alc262_auto_init_analog_input alc882_auto_init_analog_input
12571 #define alc262_auto_init_input_src alc882_auto_init_input_src
12574 /* init callback for auto-configuration model -- overriding the default init */
12575 static void alc262_auto_init(struct hda_codec
*codec
)
12577 struct alc_spec
*spec
= codec
->spec
;
12578 alc262_auto_init_multi_out(codec
);
12579 alc262_auto_init_hp_out(codec
);
12580 alc262_auto_init_analog_input(codec
);
12581 alc262_auto_init_input_src(codec
);
12582 alc_auto_init_digital(codec
);
12583 if (spec
->unsol_event
)
12584 alc_inithook(codec
);
12588 * configuration and preset
12590 static const char * const alc262_models
[ALC262_MODEL_LAST
] = {
12591 [ALC262_BASIC
] = "basic",
12592 [ALC262_HIPPO
] = "hippo",
12593 [ALC262_HIPPO_1
] = "hippo_1",
12594 [ALC262_FUJITSU
] = "fujitsu",
12595 [ALC262_HP_BPC
] = "hp-bpc",
12596 [ALC262_HP_BPC_D7000_WL
]= "hp-bpc-d7000",
12597 [ALC262_HP_TC_T5735
] = "hp-tc-t5735",
12598 [ALC262_HP_RP5700
] = "hp-rp5700",
12599 [ALC262_BENQ_ED8
] = "benq",
12600 [ALC262_BENQ_T31
] = "benq-t31",
12601 [ALC262_SONY_ASSAMD
] = "sony-assamd",
12602 [ALC262_TOSHIBA_S06
] = "toshiba-s06",
12603 [ALC262_TOSHIBA_RX1
] = "toshiba-rx1",
12604 [ALC262_ULTRA
] = "ultra",
12605 [ALC262_LENOVO_3000
] = "lenovo-3000",
12606 [ALC262_NEC
] = "nec",
12607 [ALC262_TYAN
] = "tyan",
12608 [ALC262_AUTO
] = "auto",
12611 static struct snd_pci_quirk alc262_cfg_tbl
[] = {
12612 SND_PCI_QUIRK(0x1002, 0x437b, "Hippo", ALC262_HIPPO
),
12613 SND_PCI_QUIRK(0x1033, 0x8895, "NEC Versa S9100", ALC262_NEC
),
12614 SND_PCI_QUIRK_MASK(0x103c, 0xff00, 0x1200, "HP xw series",
12616 SND_PCI_QUIRK_MASK(0x103c, 0xff00, 0x1300, "HP xw series",
12618 SND_PCI_QUIRK_MASK(0x103c, 0xff00, 0x1500, "HP z series",
12620 SND_PCI_QUIRK_MASK(0x103c, 0xff00, 0x1700, "HP xw series",
12622 SND_PCI_QUIRK(0x103c, 0x2800, "HP D7000", ALC262_HP_BPC_D7000_WL
),
12623 SND_PCI_QUIRK(0x103c, 0x2801, "HP D7000", ALC262_HP_BPC_D7000_WF
),
12624 SND_PCI_QUIRK(0x103c, 0x2802, "HP D7000", ALC262_HP_BPC_D7000_WL
),
12625 SND_PCI_QUIRK(0x103c, 0x2803, "HP D7000", ALC262_HP_BPC_D7000_WF
),
12626 SND_PCI_QUIRK(0x103c, 0x2804, "HP D7000", ALC262_HP_BPC_D7000_WL
),
12627 SND_PCI_QUIRK(0x103c, 0x2805, "HP D7000", ALC262_HP_BPC_D7000_WF
),
12628 SND_PCI_QUIRK(0x103c, 0x2806, "HP D7000", ALC262_HP_BPC_D7000_WL
),
12629 SND_PCI_QUIRK(0x103c, 0x2807, "HP D7000", ALC262_HP_BPC_D7000_WF
),
12630 SND_PCI_QUIRK(0x103c, 0x280c, "HP xw4400", ALC262_HP_BPC
),
12631 SND_PCI_QUIRK(0x103c, 0x3014, "HP xw6400", ALC262_HP_BPC
),
12632 SND_PCI_QUIRK(0x103c, 0x3015, "HP xw8400", ALC262_HP_BPC
),
12633 SND_PCI_QUIRK(0x103c, 0x302f, "HP Thin Client T5735",
12634 ALC262_HP_TC_T5735
),
12635 SND_PCI_QUIRK(0x103c, 0x2817, "HP RP5700", ALC262_HP_RP5700
),
12636 SND_PCI_QUIRK(0x104d, 0x1f00, "Sony ASSAMD", ALC262_SONY_ASSAMD
),
12637 SND_PCI_QUIRK(0x104d, 0x8203, "Sony UX-90", ALC262_HIPPO
),
12638 SND_PCI_QUIRK(0x104d, 0x820f, "Sony ASSAMD", ALC262_SONY_ASSAMD
),
12639 SND_PCI_QUIRK(0x104d, 0x9016, "Sony VAIO", ALC262_AUTO
), /* dig-only */
12640 SND_PCI_QUIRK(0x104d, 0x9025, "Sony VAIO Z21MN", ALC262_TOSHIBA_S06
),
12641 SND_PCI_QUIRK(0x104d, 0x9035, "Sony VAIO VGN-FW170J", ALC262_AUTO
),
12642 SND_PCI_QUIRK(0x104d, 0x9047, "Sony VAIO Type G", ALC262_AUTO
),
12643 #if 0 /* disable the quirk since model=auto works better in recent versions */
12644 SND_PCI_QUIRK_MASK(0x104d, 0xff00, 0x9000, "Sony VAIO",
12645 ALC262_SONY_ASSAMD
),
12647 SND_PCI_QUIRK(0x1179, 0x0001, "Toshiba dynabook SS RX1",
12648 ALC262_TOSHIBA_RX1
),
12649 SND_PCI_QUIRK(0x1179, 0xff7b, "Toshiba S06", ALC262_TOSHIBA_S06
),
12650 SND_PCI_QUIRK(0x10cf, 0x1397, "Fujitsu", ALC262_FUJITSU
),
12651 SND_PCI_QUIRK(0x10cf, 0x142d, "Fujitsu Lifebook E8410", ALC262_FUJITSU
),
12652 SND_PCI_QUIRK(0x10f1, 0x2915, "Tyan Thunder n6650W", ALC262_TYAN
),
12653 SND_PCI_QUIRK_MASK(0x144d, 0xff00, 0xc032, "Samsung Q1",
12655 SND_PCI_QUIRK(0x144d, 0xc510, "Samsung Q45", ALC262_HIPPO
),
12656 SND_PCI_QUIRK(0x17aa, 0x384e, "Lenovo 3000 y410", ALC262_LENOVO_3000
),
12657 SND_PCI_QUIRK(0x17ff, 0x0560, "Benq ED8", ALC262_BENQ_ED8
),
12658 SND_PCI_QUIRK(0x17ff, 0x058d, "Benq T31-16", ALC262_BENQ_T31
),
12659 SND_PCI_QUIRK(0x17ff, 0x058f, "Benq Hippo", ALC262_HIPPO_1
),
12663 static struct alc_config_preset alc262_presets
[] = {
12665 .mixers
= { alc262_base_mixer
},
12666 .init_verbs
= { alc262_init_verbs
},
12667 .num_dacs
= ARRAY_SIZE(alc262_dac_nids
),
12668 .dac_nids
= alc262_dac_nids
,
12670 .num_channel_mode
= ARRAY_SIZE(alc262_modes
),
12671 .channel_mode
= alc262_modes
,
12672 .input_mux
= &alc262_capture_source
,
12675 .mixers
= { alc262_hippo_mixer
},
12676 .init_verbs
= { alc262_init_verbs
, alc_hp15_unsol_verbs
},
12677 .num_dacs
= ARRAY_SIZE(alc262_dac_nids
),
12678 .dac_nids
= alc262_dac_nids
,
12680 .dig_out_nid
= ALC262_DIGOUT_NID
,
12681 .num_channel_mode
= ARRAY_SIZE(alc262_modes
),
12682 .channel_mode
= alc262_modes
,
12683 .input_mux
= &alc262_capture_source
,
12684 .unsol_event
= alc262_hippo_unsol_event
,
12685 .setup
= alc262_hippo_setup
,
12686 .init_hook
= alc262_hippo_automute
,
12688 [ALC262_HIPPO_1
] = {
12689 .mixers
= { alc262_hippo1_mixer
},
12690 .init_verbs
= { alc262_init_verbs
, alc262_hippo1_unsol_verbs
},
12691 .num_dacs
= ARRAY_SIZE(alc262_dac_nids
),
12692 .dac_nids
= alc262_dac_nids
,
12694 .dig_out_nid
= ALC262_DIGOUT_NID
,
12695 .num_channel_mode
= ARRAY_SIZE(alc262_modes
),
12696 .channel_mode
= alc262_modes
,
12697 .input_mux
= &alc262_capture_source
,
12698 .unsol_event
= alc262_hippo_unsol_event
,
12699 .setup
= alc262_hippo1_setup
,
12700 .init_hook
= alc262_hippo_automute
,
12702 [ALC262_FUJITSU
] = {
12703 .mixers
= { alc262_fujitsu_mixer
},
12704 .init_verbs
= { alc262_init_verbs
, alc262_EAPD_verbs
,
12705 alc262_fujitsu_unsol_verbs
},
12706 .num_dacs
= ARRAY_SIZE(alc262_dac_nids
),
12707 .dac_nids
= alc262_dac_nids
,
12709 .dig_out_nid
= ALC262_DIGOUT_NID
,
12710 .num_channel_mode
= ARRAY_SIZE(alc262_modes
),
12711 .channel_mode
= alc262_modes
,
12712 .input_mux
= &alc262_fujitsu_capture_source
,
12713 .unsol_event
= alc262_fujitsu_unsol_event
,
12714 .init_hook
= alc262_fujitsu_init_hook
,
12716 [ALC262_HP_BPC
] = {
12717 .mixers
= { alc262_HP_BPC_mixer
},
12718 .init_verbs
= { alc262_HP_BPC_init_verbs
},
12719 .num_dacs
= ARRAY_SIZE(alc262_dac_nids
),
12720 .dac_nids
= alc262_dac_nids
,
12722 .num_channel_mode
= ARRAY_SIZE(alc262_modes
),
12723 .channel_mode
= alc262_modes
,
12724 .input_mux
= &alc262_HP_capture_source
,
12725 .unsol_event
= alc262_hp_bpc_unsol_event
,
12726 .init_hook
= alc262_hp_bpc_automute
,
12728 [ALC262_HP_BPC_D7000_WF
] = {
12729 .mixers
= { alc262_HP_BPC_WildWest_mixer
},
12730 .init_verbs
= { alc262_HP_BPC_WildWest_init_verbs
},
12731 .num_dacs
= ARRAY_SIZE(alc262_dac_nids
),
12732 .dac_nids
= alc262_dac_nids
,
12734 .num_channel_mode
= ARRAY_SIZE(alc262_modes
),
12735 .channel_mode
= alc262_modes
,
12736 .input_mux
= &alc262_HP_D7000_capture_source
,
12737 .unsol_event
= alc262_hp_wildwest_unsol_event
,
12738 .init_hook
= alc262_hp_wildwest_automute
,
12740 [ALC262_HP_BPC_D7000_WL
] = {
12741 .mixers
= { alc262_HP_BPC_WildWest_mixer
,
12742 alc262_HP_BPC_WildWest_option_mixer
},
12743 .init_verbs
= { alc262_HP_BPC_WildWest_init_verbs
},
12744 .num_dacs
= ARRAY_SIZE(alc262_dac_nids
),
12745 .dac_nids
= alc262_dac_nids
,
12747 .num_channel_mode
= ARRAY_SIZE(alc262_modes
),
12748 .channel_mode
= alc262_modes
,
12749 .input_mux
= &alc262_HP_D7000_capture_source
,
12750 .unsol_event
= alc262_hp_wildwest_unsol_event
,
12751 .init_hook
= alc262_hp_wildwest_automute
,
12753 [ALC262_HP_TC_T5735
] = {
12754 .mixers
= { alc262_hp_t5735_mixer
},
12755 .init_verbs
= { alc262_init_verbs
, alc262_hp_t5735_verbs
},
12756 .num_dacs
= ARRAY_SIZE(alc262_dac_nids
),
12757 .dac_nids
= alc262_dac_nids
,
12759 .num_channel_mode
= ARRAY_SIZE(alc262_modes
),
12760 .channel_mode
= alc262_modes
,
12761 .input_mux
= &alc262_capture_source
,
12762 .unsol_event
= alc_sku_unsol_event
,
12763 .setup
= alc262_hp_t5735_setup
,
12764 .init_hook
= alc_inithook
,
12766 [ALC262_HP_RP5700
] = {
12767 .mixers
= { alc262_hp_rp5700_mixer
},
12768 .init_verbs
= { alc262_init_verbs
, alc262_hp_rp5700_verbs
},
12769 .num_dacs
= ARRAY_SIZE(alc262_dac_nids
),
12770 .dac_nids
= alc262_dac_nids
,
12771 .num_channel_mode
= ARRAY_SIZE(alc262_modes
),
12772 .channel_mode
= alc262_modes
,
12773 .input_mux
= &alc262_hp_rp5700_capture_source
,
12775 [ALC262_BENQ_ED8
] = {
12776 .mixers
= { alc262_base_mixer
},
12777 .init_verbs
= { alc262_init_verbs
, alc262_EAPD_verbs
},
12778 .num_dacs
= ARRAY_SIZE(alc262_dac_nids
),
12779 .dac_nids
= alc262_dac_nids
,
12781 .num_channel_mode
= ARRAY_SIZE(alc262_modes
),
12782 .channel_mode
= alc262_modes
,
12783 .input_mux
= &alc262_capture_source
,
12785 [ALC262_SONY_ASSAMD
] = {
12786 .mixers
= { alc262_sony_mixer
},
12787 .init_verbs
= { alc262_init_verbs
, alc262_sony_unsol_verbs
},
12788 .num_dacs
= ARRAY_SIZE(alc262_dac_nids
),
12789 .dac_nids
= alc262_dac_nids
,
12791 .num_channel_mode
= ARRAY_SIZE(alc262_modes
),
12792 .channel_mode
= alc262_modes
,
12793 .input_mux
= &alc262_capture_source
,
12794 .unsol_event
= alc262_hippo_unsol_event
,
12795 .setup
= alc262_hippo_setup
,
12796 .init_hook
= alc262_hippo_automute
,
12798 [ALC262_BENQ_T31
] = {
12799 .mixers
= { alc262_benq_t31_mixer
},
12800 .init_verbs
= { alc262_init_verbs
, alc262_benq_t31_EAPD_verbs
,
12801 alc_hp15_unsol_verbs
},
12802 .num_dacs
= ARRAY_SIZE(alc262_dac_nids
),
12803 .dac_nids
= alc262_dac_nids
,
12805 .num_channel_mode
= ARRAY_SIZE(alc262_modes
),
12806 .channel_mode
= alc262_modes
,
12807 .input_mux
= &alc262_capture_source
,
12808 .unsol_event
= alc262_hippo_unsol_event
,
12809 .setup
= alc262_hippo_setup
,
12810 .init_hook
= alc262_hippo_automute
,
12813 .mixers
= { alc262_ultra_mixer
},
12814 .cap_mixer
= alc262_ultra_capture_mixer
,
12815 .init_verbs
= { alc262_ultra_verbs
},
12816 .num_dacs
= ARRAY_SIZE(alc262_dac_nids
),
12817 .dac_nids
= alc262_dac_nids
,
12818 .num_channel_mode
= ARRAY_SIZE(alc262_modes
),
12819 .channel_mode
= alc262_modes
,
12820 .input_mux
= &alc262_ultra_capture_source
,
12821 .adc_nids
= alc262_adc_nids
, /* ADC0 */
12822 .capsrc_nids
= alc262_capsrc_nids
,
12823 .num_adc_nids
= 1, /* single ADC */
12824 .unsol_event
= alc262_ultra_unsol_event
,
12825 .init_hook
= alc262_ultra_automute
,
12827 [ALC262_LENOVO_3000
] = {
12828 .mixers
= { alc262_lenovo_3000_mixer
},
12829 .init_verbs
= { alc262_init_verbs
, alc262_EAPD_verbs
,
12830 alc262_lenovo_3000_unsol_verbs
,
12831 alc262_lenovo_3000_init_verbs
},
12832 .num_dacs
= ARRAY_SIZE(alc262_dac_nids
),
12833 .dac_nids
= alc262_dac_nids
,
12835 .dig_out_nid
= ALC262_DIGOUT_NID
,
12836 .num_channel_mode
= ARRAY_SIZE(alc262_modes
),
12837 .channel_mode
= alc262_modes
,
12838 .input_mux
= &alc262_fujitsu_capture_source
,
12839 .unsol_event
= alc262_lenovo_3000_unsol_event
,
12842 .mixers
= { alc262_nec_mixer
},
12843 .init_verbs
= { alc262_nec_verbs
},
12844 .num_dacs
= ARRAY_SIZE(alc262_dac_nids
),
12845 .dac_nids
= alc262_dac_nids
,
12847 .num_channel_mode
= ARRAY_SIZE(alc262_modes
),
12848 .channel_mode
= alc262_modes
,
12849 .input_mux
= &alc262_capture_source
,
12851 [ALC262_TOSHIBA_S06
] = {
12852 .mixers
= { alc262_toshiba_s06_mixer
},
12853 .init_verbs
= { alc262_init_verbs
, alc262_toshiba_s06_verbs
,
12854 alc262_eapd_verbs
},
12855 .num_dacs
= ARRAY_SIZE(alc262_dac_nids
),
12856 .capsrc_nids
= alc262_dmic_capsrc_nids
,
12857 .dac_nids
= alc262_dac_nids
,
12858 .adc_nids
= alc262_dmic_adc_nids
, /* ADC0 */
12859 .num_adc_nids
= 1, /* single ADC */
12860 .dig_out_nid
= ALC262_DIGOUT_NID
,
12861 .num_channel_mode
= ARRAY_SIZE(alc262_modes
),
12862 .channel_mode
= alc262_modes
,
12863 .unsol_event
= alc_sku_unsol_event
,
12864 .setup
= alc262_toshiba_s06_setup
,
12865 .init_hook
= alc_inithook
,
12867 [ALC262_TOSHIBA_RX1
] = {
12868 .mixers
= { alc262_toshiba_rx1_mixer
},
12869 .init_verbs
= { alc262_init_verbs
, alc262_toshiba_rx1_unsol_verbs
},
12870 .num_dacs
= ARRAY_SIZE(alc262_dac_nids
),
12871 .dac_nids
= alc262_dac_nids
,
12873 .num_channel_mode
= ARRAY_SIZE(alc262_modes
),
12874 .channel_mode
= alc262_modes
,
12875 .input_mux
= &alc262_capture_source
,
12876 .unsol_event
= alc262_hippo_unsol_event
,
12877 .setup
= alc262_hippo_setup
,
12878 .init_hook
= alc262_hippo_automute
,
12881 .mixers
= { alc262_tyan_mixer
},
12882 .init_verbs
= { alc262_init_verbs
, alc262_tyan_verbs
},
12883 .num_dacs
= ARRAY_SIZE(alc262_dac_nids
),
12884 .dac_nids
= alc262_dac_nids
,
12886 .dig_out_nid
= ALC262_DIGOUT_NID
,
12887 .num_channel_mode
= ARRAY_SIZE(alc262_modes
),
12888 .channel_mode
= alc262_modes
,
12889 .input_mux
= &alc262_capture_source
,
12890 .unsol_event
= alc_automute_amp_unsol_event
,
12891 .setup
= alc262_tyan_setup
,
12892 .init_hook
= alc_automute_amp
,
12896 static int patch_alc262(struct hda_codec
*codec
)
12898 struct alc_spec
*spec
;
12902 spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
12906 codec
->spec
= spec
;
12908 /* pshou 07/11/05 set a zero PCM sample to DAC when FIFO is
12913 snd_hda_codec_write(codec
, 0x1a, 0, AC_VERB_SET_COEF_INDEX
, 7);
12914 tmp
= snd_hda_codec_read(codec
, 0x20, 0, AC_VERB_GET_PROC_COEF
, 0);
12915 snd_hda_codec_write(codec
, 0x1a, 0, AC_VERB_SET_COEF_INDEX
, 7);
12916 snd_hda_codec_write(codec
, 0x1a, 0, AC_VERB_SET_PROC_COEF
, tmp
| 0x80);
12919 alc_auto_parse_customize_define(codec
);
12921 alc_fix_pll_init(codec
, 0x20, 0x0a, 10);
12923 board_config
= snd_hda_check_board_config(codec
, ALC262_MODEL_LAST
,
12927 if (board_config
< 0) {
12928 printk(KERN_INFO
"hda_codec: %s: BIOS auto-probing.\n",
12930 board_config
= ALC262_AUTO
;
12933 if (board_config
== ALC262_AUTO
) {
12934 alc_pick_fixup(codec
, NULL
, alc262_fixup_tbl
, alc262_fixups
);
12935 alc_apply_fixup(codec
, ALC_FIXUP_ACT_PRE_PROBE
);
12938 if (board_config
== ALC262_AUTO
) {
12939 /* automatic parse from the BIOS config */
12940 err
= alc262_parse_auto_config(codec
);
12946 "hda_codec: Cannot set up configuration "
12947 "from BIOS. Using base mode...\n");
12948 board_config
= ALC262_BASIC
;
12952 if (!spec
->no_analog
&& has_cdefine_beep(codec
)) {
12953 err
= snd_hda_attach_beep_device(codec
, 0x1);
12960 if (board_config
!= ALC262_AUTO
)
12961 setup_preset(codec
, &alc262_presets
[board_config
]);
12963 spec
->stream_analog_playback
= &alc262_pcm_analog_playback
;
12964 spec
->stream_analog_capture
= &alc262_pcm_analog_capture
;
12966 spec
->stream_digital_playback
= &alc262_pcm_digital_playback
;
12967 spec
->stream_digital_capture
= &alc262_pcm_digital_capture
;
12969 if (!spec
->adc_nids
&& spec
->input_mux
) {
12971 /* check whether the digital-mic has to be supported */
12972 for (i
= 0; i
< spec
->input_mux
->num_items
; i
++) {
12973 if (spec
->input_mux
->items
[i
].index
>= 9)
12976 if (i
< spec
->input_mux
->num_items
) {
12977 /* use only ADC0 */
12978 spec
->adc_nids
= alc262_dmic_adc_nids
;
12979 spec
->num_adc_nids
= 1;
12980 spec
->capsrc_nids
= alc262_dmic_capsrc_nids
;
12982 /* all analog inputs */
12983 /* check whether NID 0x07 is valid */
12984 unsigned int wcap
= get_wcaps(codec
, 0x07);
12987 wcap
= get_wcaps_type(wcap
);
12988 if (wcap
!= AC_WID_AUD_IN
) {
12989 spec
->adc_nids
= alc262_adc_nids_alt
;
12990 spec
->num_adc_nids
=
12991 ARRAY_SIZE(alc262_adc_nids_alt
);
12992 spec
->capsrc_nids
= alc262_capsrc_nids_alt
;
12994 spec
->adc_nids
= alc262_adc_nids
;
12995 spec
->num_adc_nids
=
12996 ARRAY_SIZE(alc262_adc_nids
);
12997 spec
->capsrc_nids
= alc262_capsrc_nids
;
13001 if (!spec
->cap_mixer
&& !spec
->no_analog
)
13002 set_capture_mixer(codec
);
13003 if (!spec
->no_analog
&& has_cdefine_beep(codec
))
13004 set_beep_amp(spec
, 0x0b, 0x05, HDA_INPUT
);
13006 alc_apply_fixup(codec
, ALC_FIXUP_ACT_PROBE
);
13008 spec
->vmaster_nid
= 0x0c;
13010 codec
->patch_ops
= alc_patch_ops
;
13011 if (board_config
== ALC262_AUTO
)
13012 spec
->init_hook
= alc262_auto_init
;
13014 alc_init_jacks(codec
);
13015 #ifdef CONFIG_SND_HDA_POWER_SAVE
13016 if (!spec
->loopback
.amplist
)
13017 spec
->loopback
.amplist
= alc262_loopbacks
;
13024 * ALC268 channel source setting (2 channel)
13026 #define ALC268_DIGOUT_NID ALC880_DIGOUT_NID
13027 #define alc268_modes alc260_modes
13029 static hda_nid_t alc268_dac_nids
[2] = {
13034 static hda_nid_t alc268_adc_nids
[2] = {
13039 static hda_nid_t alc268_adc_nids_alt
[1] = {
13044 static hda_nid_t alc268_capsrc_nids
[2] = { 0x23, 0x24 };
13046 static struct snd_kcontrol_new alc268_base_mixer
[] = {
13047 /* output mixer control */
13048 HDA_CODEC_VOLUME("Front Playback Volume", 0x2, 0x0, HDA_OUTPUT
),
13049 HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
13050 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x3, 0x0, HDA_OUTPUT
),
13051 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
13052 HDA_CODEC_VOLUME("Mic Boost Volume", 0x18, 0, HDA_INPUT
),
13053 HDA_CODEC_VOLUME("Front Mic Boost Volume", 0x19, 0, HDA_INPUT
),
13054 HDA_CODEC_VOLUME("Line In Boost Volume", 0x1a, 0, HDA_INPUT
),
13058 static struct snd_kcontrol_new alc268_toshiba_mixer
[] = {
13059 /* output mixer control */
13060 HDA_CODEC_VOLUME("Front Playback Volume", 0x2, 0x0, HDA_OUTPUT
),
13061 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x3, 0x0, HDA_OUTPUT
),
13062 ALC262_HIPPO_MASTER_SWITCH
,
13063 HDA_CODEC_VOLUME("Mic Boost Volume", 0x18, 0, HDA_INPUT
),
13064 HDA_CODEC_VOLUME("Front Mic Boost Volume", 0x19, 0, HDA_INPUT
),
13065 HDA_CODEC_VOLUME("Line In Boost Volume", 0x1a, 0, HDA_INPUT
),
13069 /* bind Beep switches of both NID 0x0f and 0x10 */
13070 static struct hda_bind_ctls alc268_bind_beep_sw
= {
13071 .ops
= &snd_hda_bind_sw
,
13073 HDA_COMPOSE_AMP_VAL(0x0f, 3, 1, HDA_INPUT
),
13074 HDA_COMPOSE_AMP_VAL(0x10, 3, 1, HDA_INPUT
),
13079 static struct snd_kcontrol_new alc268_beep_mixer
[] = {
13080 HDA_CODEC_VOLUME("Beep Playback Volume", 0x1d, 0x0, HDA_INPUT
),
13081 HDA_BIND_SW("Beep Playback Switch", &alc268_bind_beep_sw
),
13085 static struct hda_verb alc268_eapd_verbs
[] = {
13086 {0x14, AC_VERB_SET_EAPD_BTLENABLE
, 2},
13087 {0x15, AC_VERB_SET_EAPD_BTLENABLE
, 2},
13091 /* Toshiba specific */
13092 static struct hda_verb alc268_toshiba_verbs
[] = {
13093 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
13097 /* Acer specific */
13098 /* bind volumes of both NID 0x02 and 0x03 */
13099 static struct hda_bind_ctls alc268_acer_bind_master_vol
= {
13100 .ops
= &snd_hda_bind_vol
,
13102 HDA_COMPOSE_AMP_VAL(0x02, 3, 0, HDA_OUTPUT
),
13103 HDA_COMPOSE_AMP_VAL(0x03, 3, 0, HDA_OUTPUT
),
13108 /* mute/unmute internal speaker according to the hp jack and mute state */
13109 static void alc268_acer_automute(struct hda_codec
*codec
, int force
)
13111 struct alc_spec
*spec
= codec
->spec
;
13114 if (force
|| !spec
->sense_updated
) {
13115 spec
->jack_present
= snd_hda_jack_detect(codec
, 0x14);
13116 spec
->sense_updated
= 1;
13118 if (spec
->jack_present
)
13119 mute
= HDA_AMP_MUTE
; /* mute internal speaker */
13120 else /* unmute internal speaker if necessary */
13121 mute
= snd_hda_codec_amp_read(codec
, 0x14, 0, HDA_OUTPUT
, 0);
13122 snd_hda_codec_amp_stereo(codec
, 0x15, HDA_OUTPUT
, 0,
13123 HDA_AMP_MUTE
, mute
);
13127 /* bind hp and internal speaker mute (with plug check) */
13128 static int alc268_acer_master_sw_put(struct snd_kcontrol
*kcontrol
,
13129 struct snd_ctl_elem_value
*ucontrol
)
13131 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
13132 long *valp
= ucontrol
->value
.integer
.value
;
13135 change
= amp_stereo_mute_update(codec
, 0x14, HDA_OUTPUT
, 0, valp
);
13137 alc268_acer_automute(codec
, 0);
13141 static struct snd_kcontrol_new alc268_acer_aspire_one_mixer
[] = {
13142 /* output mixer control */
13143 HDA_BIND_VOL("Master Playback Volume", &alc268_acer_bind_master_vol
),
13145 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
13146 .name
= "Master Playback Switch",
13147 .subdevice
= HDA_SUBDEV_AMP_FLAG
,
13148 .info
= snd_hda_mixer_amp_switch_info
,
13149 .get
= snd_hda_mixer_amp_switch_get
,
13150 .put
= alc268_acer_master_sw_put
,
13151 .private_value
= HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT
),
13153 HDA_CODEC_VOLUME("Mic Boost Capture Volume", 0x18, 0, HDA_INPUT
),
13157 static struct snd_kcontrol_new alc268_acer_mixer
[] = {
13158 /* output mixer control */
13159 HDA_BIND_VOL("Master Playback Volume", &alc268_acer_bind_master_vol
),
13161 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
13162 .name
= "Master Playback Switch",
13163 .subdevice
= HDA_SUBDEV_AMP_FLAG
,
13164 .info
= snd_hda_mixer_amp_switch_info
,
13165 .get
= snd_hda_mixer_amp_switch_get
,
13166 .put
= alc268_acer_master_sw_put
,
13167 .private_value
= HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT
),
13169 HDA_CODEC_VOLUME("Mic Boost Volume", 0x18, 0, HDA_INPUT
),
13170 HDA_CODEC_VOLUME("Internal Mic Boost Volume", 0x19, 0, HDA_INPUT
),
13171 HDA_CODEC_VOLUME("Line In Boost Volume", 0x1a, 0, HDA_INPUT
),
13175 static struct snd_kcontrol_new alc268_acer_dmic_mixer
[] = {
13176 /* output mixer control */
13177 HDA_BIND_VOL("Master Playback Volume", &alc268_acer_bind_master_vol
),
13179 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
13180 .name
= "Master Playback Switch",
13181 .subdevice
= HDA_SUBDEV_AMP_FLAG
,
13182 .info
= snd_hda_mixer_amp_switch_info
,
13183 .get
= snd_hda_mixer_amp_switch_get
,
13184 .put
= alc268_acer_master_sw_put
,
13185 .private_value
= HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT
),
13187 HDA_CODEC_VOLUME("Mic Boost Volume", 0x18, 0, HDA_INPUT
),
13188 HDA_CODEC_VOLUME("Line In Boost Volume", 0x1a, 0, HDA_INPUT
),
13192 static struct hda_verb alc268_acer_aspire_one_verbs
[] = {
13193 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
13194 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
13195 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
13196 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
13197 {0x23, AC_VERB_SET_CONNECT_SEL
, 0x06},
13198 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, 0xa017},
13202 static struct hda_verb alc268_acer_verbs
[] = {
13203 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
}, /* internal dmic? */
13204 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
13205 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
13206 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
13207 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
13208 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
13209 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
13213 /* unsolicited event for HP jack sensing */
13214 #define alc268_toshiba_unsol_event alc262_hippo_unsol_event
13215 #define alc268_toshiba_setup alc262_hippo_setup
13216 #define alc268_toshiba_automute alc262_hippo_automute
13218 static void alc268_acer_unsol_event(struct hda_codec
*codec
,
13221 if ((res
>> 26) != ALC880_HP_EVENT
)
13223 alc268_acer_automute(codec
, 1);
13226 static void alc268_acer_init_hook(struct hda_codec
*codec
)
13228 alc268_acer_automute(codec
, 1);
13231 /* toggle speaker-output according to the hp-jack state */
13232 static void alc268_aspire_one_speaker_automute(struct hda_codec
*codec
)
13234 unsigned int present
;
13235 unsigned char bits
;
13237 present
= snd_hda_jack_detect(codec
, 0x15);
13238 bits
= present
? HDA_AMP_MUTE
: 0;
13239 snd_hda_codec_amp_stereo(codec
, 0x0f, HDA_INPUT
, 0,
13240 HDA_AMP_MUTE
, bits
);
13241 snd_hda_codec_amp_stereo(codec
, 0x0f, HDA_INPUT
, 1,
13242 HDA_AMP_MUTE
, bits
);
13245 static void alc268_acer_lc_unsol_event(struct hda_codec
*codec
,
13248 switch (res
>> 26) {
13249 case ALC880_HP_EVENT
:
13250 alc268_aspire_one_speaker_automute(codec
);
13252 case ALC880_MIC_EVENT
:
13253 alc_mic_automute(codec
);
13258 static void alc268_acer_lc_setup(struct hda_codec
*codec
)
13260 struct alc_spec
*spec
= codec
->spec
;
13261 spec
->ext_mic
.pin
= 0x18;
13262 spec
->ext_mic
.mux_idx
= 0;
13263 spec
->int_mic
.pin
= 0x12;
13264 spec
->int_mic
.mux_idx
= 6;
13265 spec
->auto_mic
= 1;
13268 static void alc268_acer_lc_init_hook(struct hda_codec
*codec
)
13270 alc268_aspire_one_speaker_automute(codec
);
13271 alc_mic_automute(codec
);
13274 static struct snd_kcontrol_new alc268_dell_mixer
[] = {
13275 /* output mixer control */
13276 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
13277 HDA_CODEC_MUTE("Speaker Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
13278 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x03, 0x0, HDA_OUTPUT
),
13279 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
13280 HDA_CODEC_VOLUME("Mic Boost Volume", 0x18, 0, HDA_INPUT
),
13281 HDA_CODEC_VOLUME("Internal Mic Boost Volume", 0x19, 0, HDA_INPUT
),
13285 static struct hda_verb alc268_dell_verbs
[] = {
13286 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
13287 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
13288 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
13289 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_MIC_EVENT
| AC_USRSP_EN
},
13293 /* mute/unmute internal speaker according to the hp jack and mute state */
13294 static void alc268_dell_setup(struct hda_codec
*codec
)
13296 struct alc_spec
*spec
= codec
->spec
;
13298 spec
->autocfg
.hp_pins
[0] = 0x15;
13299 spec
->autocfg
.speaker_pins
[0] = 0x14;
13300 spec
->ext_mic
.pin
= 0x18;
13301 spec
->ext_mic
.mux_idx
= 0;
13302 spec
->int_mic
.pin
= 0x19;
13303 spec
->int_mic
.mux_idx
= 1;
13304 spec
->auto_mic
= 1;
13307 static struct snd_kcontrol_new alc267_quanta_il1_mixer
[] = {
13308 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x2, 0x0, HDA_OUTPUT
),
13309 HDA_CODEC_MUTE("Speaker Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
13310 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x3, 0x0, HDA_OUTPUT
),
13311 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
13312 HDA_CODEC_VOLUME("Mic Capture Volume", 0x23, 0x0, HDA_OUTPUT
),
13313 HDA_BIND_MUTE("Mic Capture Switch", 0x23, 2, HDA_OUTPUT
),
13314 HDA_CODEC_VOLUME("Mic Boost Volume", 0x18, 0, HDA_INPUT
),
13315 HDA_CODEC_VOLUME("Internal Mic Boost Volume", 0x19, 0, HDA_INPUT
),
13319 static struct hda_verb alc267_quanta_il1_verbs
[] = {
13320 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
13321 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_MIC_EVENT
| AC_USRSP_EN
},
13325 static void alc267_quanta_il1_setup(struct hda_codec
*codec
)
13327 struct alc_spec
*spec
= codec
->spec
;
13328 spec
->autocfg
.hp_pins
[0] = 0x15;
13329 spec
->autocfg
.speaker_pins
[0] = 0x14;
13330 spec
->ext_mic
.pin
= 0x18;
13331 spec
->ext_mic
.mux_idx
= 0;
13332 spec
->int_mic
.pin
= 0x19;
13333 spec
->int_mic
.mux_idx
= 1;
13334 spec
->auto_mic
= 1;
13338 * generic initialization of ADC, input mixers and output mixers
13340 static struct hda_verb alc268_base_init_verbs
[] = {
13341 /* Unmute DAC0-1 and set vol = 0 */
13342 {0x02, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
13343 {0x03, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
13346 * Set up output mixers (0x0c - 0x0e)
13348 /* set vol=0 to output mixers */
13349 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
13350 {0x0e, AC_VERB_SET_CONNECT_SEL
, 0x00},
13352 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
13353 {0x10, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
13355 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40},
13356 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0xc0},
13357 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40},
13358 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24},
13359 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24},
13360 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20},
13361 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20},
13362 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20},
13364 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
13365 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
13366 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
13367 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
13368 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
13370 /* set PCBEEP vol = 0, mute connections */
13371 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
13372 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
13373 {0x10, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
13375 /* Unmute Selector 23h,24h and set the default input to mic-in */
13377 {0x23, AC_VERB_SET_CONNECT_SEL
, 0x00},
13378 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
13379 {0x24, AC_VERB_SET_CONNECT_SEL
, 0x00},
13380 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
13386 * generic initialization of ADC, input mixers and output mixers
13388 static struct hda_verb alc268_volume_init_verbs
[] = {
13389 /* set output DAC */
13390 {0x02, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
13391 {0x03, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
13393 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24},
13394 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24},
13395 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20},
13396 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20},
13397 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20},
13399 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
13400 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
13401 {0x10, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
13403 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
13404 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
13406 /* set PCBEEP vol = 0, mute connections */
13407 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
13408 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
13409 {0x10, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
13414 static struct snd_kcontrol_new alc268_capture_nosrc_mixer
[] = {
13415 HDA_CODEC_VOLUME("Capture Volume", 0x23, 0x0, HDA_OUTPUT
),
13416 HDA_CODEC_MUTE("Capture Switch", 0x23, 0x0, HDA_OUTPUT
),
13420 static struct snd_kcontrol_new alc268_capture_alt_mixer
[] = {
13421 HDA_CODEC_VOLUME("Capture Volume", 0x23, 0x0, HDA_OUTPUT
),
13422 HDA_CODEC_MUTE("Capture Switch", 0x23, 0x0, HDA_OUTPUT
),
13427 static struct snd_kcontrol_new alc268_capture_mixer
[] = {
13428 HDA_CODEC_VOLUME("Capture Volume", 0x23, 0x0, HDA_OUTPUT
),
13429 HDA_CODEC_MUTE("Capture Switch", 0x23, 0x0, HDA_OUTPUT
),
13430 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x24, 0x0, HDA_OUTPUT
),
13431 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x24, 0x0, HDA_OUTPUT
),
13436 static struct hda_input_mux alc268_capture_source
= {
13440 { "Front Mic", 0x1 },
13446 static struct hda_input_mux alc268_acer_capture_source
= {
13450 { "Internal Mic", 0x1 },
13455 static struct hda_input_mux alc268_acer_dmic_capture_source
= {
13459 { "Internal Mic", 0x6 },
13464 #ifdef CONFIG_SND_DEBUG
13465 static struct snd_kcontrol_new alc268_test_mixer
[] = {
13466 /* Volume widgets */
13467 HDA_CODEC_VOLUME("LOUT1 Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
13468 HDA_CODEC_VOLUME("LOUT2 Playback Volume", 0x03, 0x0, HDA_OUTPUT
),
13469 HDA_BIND_MUTE_MONO("Mono sum Playback Switch", 0x0e, 1, 2, HDA_INPUT
),
13470 HDA_BIND_MUTE("LINE-OUT sum Playback Switch", 0x0f, 2, HDA_INPUT
),
13471 HDA_BIND_MUTE("HP-OUT sum Playback Switch", 0x10, 2, HDA_INPUT
),
13472 HDA_BIND_MUTE("LINE-OUT Playback Switch", 0x14, 2, HDA_OUTPUT
),
13473 HDA_BIND_MUTE("HP-OUT Playback Switch", 0x15, 2, HDA_OUTPUT
),
13474 HDA_BIND_MUTE("Mono Playback Switch", 0x16, 2, HDA_OUTPUT
),
13475 HDA_CODEC_VOLUME("MIC1 Capture Volume", 0x18, 0x0, HDA_INPUT
),
13476 HDA_BIND_MUTE("MIC1 Capture Switch", 0x18, 2, HDA_OUTPUT
),
13477 HDA_CODEC_VOLUME("MIC2 Capture Volume", 0x19, 0x0, HDA_INPUT
),
13478 HDA_CODEC_VOLUME("LINE1 Capture Volume", 0x1a, 0x0, HDA_INPUT
),
13479 HDA_BIND_MUTE("LINE1 Capture Switch", 0x1a, 2, HDA_OUTPUT
),
13480 /* The below appears problematic on some hardwares */
13481 /*HDA_CODEC_VOLUME("PCBEEP Playback Volume", 0x1d, 0x0, HDA_INPUT),*/
13482 HDA_CODEC_VOLUME("PCM-IN1 Capture Volume", 0x23, 0x0, HDA_OUTPUT
),
13483 HDA_BIND_MUTE("PCM-IN1 Capture Switch", 0x23, 2, HDA_OUTPUT
),
13484 HDA_CODEC_VOLUME("PCM-IN2 Capture Volume", 0x24, 0x0, HDA_OUTPUT
),
13485 HDA_BIND_MUTE("PCM-IN2 Capture Switch", 0x24, 2, HDA_OUTPUT
),
13487 /* Modes for retasking pin widgets */
13488 ALC_PIN_MODE("LINE-OUT pin mode", 0x14, ALC_PIN_DIR_INOUT
),
13489 ALC_PIN_MODE("HP-OUT pin mode", 0x15, ALC_PIN_DIR_INOUT
),
13490 ALC_PIN_MODE("MIC1 pin mode", 0x18, ALC_PIN_DIR_INOUT
),
13491 ALC_PIN_MODE("LINE1 pin mode", 0x1a, ALC_PIN_DIR_INOUT
),
13493 /* Controls for GPIO pins, assuming they are configured as outputs */
13494 ALC_GPIO_DATA_SWITCH("GPIO pin 0", 0x01, 0x01),
13495 ALC_GPIO_DATA_SWITCH("GPIO pin 1", 0x01, 0x02),
13496 ALC_GPIO_DATA_SWITCH("GPIO pin 2", 0x01, 0x04),
13497 ALC_GPIO_DATA_SWITCH("GPIO pin 3", 0x01, 0x08),
13499 /* Switches to allow the digital SPDIF output pin to be enabled.
13500 * The ALC268 does not have an SPDIF input.
13502 ALC_SPDIF_CTRL_SWITCH("SPDIF Playback Switch", 0x06, 0x01),
13504 /* A switch allowing EAPD to be enabled. Some laptops seem to use
13505 * this output to turn on an external amplifier.
13507 ALC_EAPD_CTRL_SWITCH("LINE-OUT EAPD Enable Switch", 0x0f, 0x02),
13508 ALC_EAPD_CTRL_SWITCH("HP-OUT EAPD Enable Switch", 0x10, 0x02),
13514 /* create input playback/capture controls for the given pin */
13515 static int alc268_new_analog_output(struct alc_spec
*spec
, hda_nid_t nid
,
13516 const char *ctlname
, int idx
)
13527 case 0x1a: /* ALC259/269 only */
13528 case 0x1b: /* ALC259/269 only */
13529 case 0x21: /* ALC269vb has this pin, too */
13533 snd_printd(KERN_WARNING
"hda_codec: "
13534 "ignoring pin 0x%x as unknown\n", nid
);
13537 if (spec
->multiout
.dac_nids
[0] != dac
&&
13538 spec
->multiout
.dac_nids
[1] != dac
) {
13539 err
= add_pb_vol_ctrl(spec
, ALC_CTL_WIDGET_VOL
, ctlname
,
13540 HDA_COMPOSE_AMP_VAL(dac
, 3, idx
,
13544 spec
->multiout
.dac_nids
[spec
->multiout
.num_dacs
++] = dac
;
13548 err
= add_pb_sw_ctrl(spec
, ALC_CTL_WIDGET_MUTE
, ctlname
,
13549 HDA_COMPOSE_AMP_VAL(nid
, 3, idx
, HDA_OUTPUT
));
13551 err
= add_pb_sw_ctrl(spec
, ALC_CTL_WIDGET_MUTE
, ctlname
,
13552 HDA_COMPOSE_AMP_VAL(nid
, 2, idx
, HDA_OUTPUT
));
13558 /* add playback controls from the parsed DAC table */
13559 static int alc268_auto_create_multi_out_ctls(struct alc_spec
*spec
,
13560 const struct auto_pin_cfg
*cfg
)
13565 spec
->multiout
.dac_nids
= spec
->private_dac_nids
;
13567 nid
= cfg
->line_out_pins
[0];
13570 if (cfg
->line_out_type
== AUTO_PIN_SPEAKER_OUT
)
13574 err
= alc268_new_analog_output(spec
, nid
, name
, 0);
13579 nid
= cfg
->speaker_pins
[0];
13581 err
= add_pb_vol_ctrl(spec
, ALC_CTL_WIDGET_VOL
, "Speaker",
13582 HDA_COMPOSE_AMP_VAL(nid
, 3, 0, HDA_INPUT
));
13586 err
= alc268_new_analog_output(spec
, nid
, "Speaker", 0);
13590 nid
= cfg
->hp_pins
[0];
13592 err
= alc268_new_analog_output(spec
, nid
, "Headphone", 0);
13597 nid
= cfg
->line_out_pins
[1] | cfg
->line_out_pins
[2];
13599 err
= add_pb_sw_ctrl(spec
, ALC_CTL_WIDGET_MUTE
, "Mono",
13600 HDA_COMPOSE_AMP_VAL(nid
, 2, 0, HDA_OUTPUT
));
13607 /* create playback/capture controls for input pins */
13608 static int alc268_auto_create_input_ctls(struct hda_codec
*codec
,
13609 const struct auto_pin_cfg
*cfg
)
13611 return alc_auto_create_input_ctls(codec
, cfg
, 0, 0x23, 0x24);
13614 static void alc268_auto_set_output_and_unmute(struct hda_codec
*codec
,
13615 hda_nid_t nid
, int pin_type
)
13619 alc_set_pin_output(codec
, nid
, pin_type
);
13620 if (nid
== 0x14 || nid
== 0x16)
13624 snd_hda_codec_write(codec
, nid
, 0, AC_VERB_SET_CONNECT_SEL
, idx
);
13627 static void alc268_auto_init_multi_out(struct hda_codec
*codec
)
13629 struct alc_spec
*spec
= codec
->spec
;
13632 for (i
= 0; i
< spec
->autocfg
.line_outs
; i
++) {
13633 hda_nid_t nid
= spec
->autocfg
.line_out_pins
[i
];
13634 int pin_type
= get_pin_type(spec
->autocfg
.line_out_type
);
13635 alc268_auto_set_output_and_unmute(codec
, nid
, pin_type
);
13639 static void alc268_auto_init_hp_out(struct hda_codec
*codec
)
13641 struct alc_spec
*spec
= codec
->spec
;
13645 for (i
= 0; i
< spec
->autocfg
.hp_outs
; i
++) {
13646 pin
= spec
->autocfg
.hp_pins
[i
];
13647 alc268_auto_set_output_and_unmute(codec
, pin
, PIN_HP
);
13649 for (i
= 0; i
< spec
->autocfg
.speaker_outs
; i
++) {
13650 pin
= spec
->autocfg
.speaker_pins
[i
];
13651 alc268_auto_set_output_and_unmute(codec
, pin
, PIN_OUT
);
13653 if (spec
->autocfg
.mono_out_pin
)
13654 snd_hda_codec_write(codec
, spec
->autocfg
.mono_out_pin
, 0,
13655 AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
);
13658 static void alc268_auto_init_mono_speaker_out(struct hda_codec
*codec
)
13660 struct alc_spec
*spec
= codec
->spec
;
13661 hda_nid_t speaker_nid
= spec
->autocfg
.speaker_pins
[0];
13662 hda_nid_t hp_nid
= spec
->autocfg
.hp_pins
[0];
13663 hda_nid_t line_nid
= spec
->autocfg
.line_out_pins
[0];
13664 unsigned int dac_vol1
, dac_vol2
;
13666 if (line_nid
== 0x1d || speaker_nid
== 0x1d) {
13667 snd_hda_codec_write(codec
, speaker_nid
, 0,
13668 AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
);
13669 /* mute mixer inputs from 0x1d */
13670 snd_hda_codec_write(codec
, 0x0f, 0,
13671 AC_VERB_SET_AMP_GAIN_MUTE
,
13673 snd_hda_codec_write(codec
, 0x10, 0,
13674 AC_VERB_SET_AMP_GAIN_MUTE
,
13677 /* unmute mixer inputs from 0x1d */
13678 snd_hda_codec_write(codec
, 0x0f, 0,
13679 AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1));
13680 snd_hda_codec_write(codec
, 0x10, 0,
13681 AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1));
13684 dac_vol1
= dac_vol2
= 0xb000 | 0x40; /* set max volume */
13685 if (line_nid
== 0x14)
13686 dac_vol2
= AMP_OUT_ZERO
;
13687 else if (line_nid
== 0x15)
13688 dac_vol1
= AMP_OUT_ZERO
;
13689 if (hp_nid
== 0x14)
13690 dac_vol2
= AMP_OUT_ZERO
;
13691 else if (hp_nid
== 0x15)
13692 dac_vol1
= AMP_OUT_ZERO
;
13693 if (line_nid
!= 0x16 || hp_nid
!= 0x16 ||
13694 spec
->autocfg
.line_out_pins
[1] != 0x16 ||
13695 spec
->autocfg
.line_out_pins
[2] != 0x16)
13696 dac_vol1
= dac_vol2
= AMP_OUT_ZERO
;
13698 snd_hda_codec_write(codec
, 0x02, 0,
13699 AC_VERB_SET_AMP_GAIN_MUTE
, dac_vol1
);
13700 snd_hda_codec_write(codec
, 0x03, 0,
13701 AC_VERB_SET_AMP_GAIN_MUTE
, dac_vol2
);
13704 /* pcm configuration: identical with ALC880 */
13705 #define alc268_pcm_analog_playback alc880_pcm_analog_playback
13706 #define alc268_pcm_analog_capture alc880_pcm_analog_capture
13707 #define alc268_pcm_analog_alt_capture alc880_pcm_analog_alt_capture
13708 #define alc268_pcm_digital_playback alc880_pcm_digital_playback
13711 * BIOS auto configuration
13713 static int alc268_parse_auto_config(struct hda_codec
*codec
)
13715 struct alc_spec
*spec
= codec
->spec
;
13717 static hda_nid_t alc268_ignore
[] = { 0 };
13719 err
= snd_hda_parse_pin_def_config(codec
, &spec
->autocfg
,
13723 if (!spec
->autocfg
.line_outs
) {
13724 if (spec
->autocfg
.dig_outs
|| spec
->autocfg
.dig_in_pin
) {
13725 spec
->multiout
.max_channels
= 2;
13726 spec
->no_analog
= 1;
13729 return 0; /* can't find valid BIOS pin config */
13731 err
= alc268_auto_create_multi_out_ctls(spec
, &spec
->autocfg
);
13734 err
= alc268_auto_create_input_ctls(codec
, &spec
->autocfg
);
13738 spec
->multiout
.max_channels
= 2;
13741 /* digital only support output */
13742 alc_auto_parse_digital(codec
);
13743 if (spec
->kctls
.list
)
13744 add_mixer(spec
, spec
->kctls
.list
);
13746 if (!spec
->no_analog
&& spec
->autocfg
.speaker_pins
[0] != 0x1d)
13747 add_mixer(spec
, alc268_beep_mixer
);
13749 add_verb(spec
, alc268_volume_init_verbs
);
13750 spec
->num_mux_defs
= 2;
13751 spec
->input_mux
= &spec
->private_imux
[0];
13753 err
= alc_auto_add_mic_boost(codec
);
13757 alc_ssid_check(codec
, 0x15, 0x1b, 0x14, 0);
13762 #define alc268_auto_init_analog_input alc882_auto_init_analog_input
13763 #define alc268_auto_init_input_src alc882_auto_init_input_src
13765 /* init callback for auto-configuration model -- overriding the default init */
13766 static void alc268_auto_init(struct hda_codec
*codec
)
13768 struct alc_spec
*spec
= codec
->spec
;
13769 alc268_auto_init_multi_out(codec
);
13770 alc268_auto_init_hp_out(codec
);
13771 alc268_auto_init_mono_speaker_out(codec
);
13772 alc268_auto_init_analog_input(codec
);
13773 alc268_auto_init_input_src(codec
);
13774 alc_auto_init_digital(codec
);
13775 if (spec
->unsol_event
)
13776 alc_inithook(codec
);
13780 * configuration and preset
13782 static const char * const alc268_models
[ALC268_MODEL_LAST
] = {
13783 [ALC267_QUANTA_IL1
] = "quanta-il1",
13784 [ALC268_3ST
] = "3stack",
13785 [ALC268_TOSHIBA
] = "toshiba",
13786 [ALC268_ACER
] = "acer",
13787 [ALC268_ACER_DMIC
] = "acer-dmic",
13788 [ALC268_ACER_ASPIRE_ONE
] = "acer-aspire",
13789 [ALC268_DELL
] = "dell",
13790 [ALC268_ZEPTO
] = "zepto",
13791 #ifdef CONFIG_SND_DEBUG
13792 [ALC268_TEST
] = "test",
13794 [ALC268_AUTO
] = "auto",
13797 static struct snd_pci_quirk alc268_cfg_tbl
[] = {
13798 SND_PCI_QUIRK(0x1025, 0x011e, "Acer Aspire 5720z", ALC268_ACER
),
13799 SND_PCI_QUIRK(0x1025, 0x0126, "Acer", ALC268_ACER
),
13800 SND_PCI_QUIRK(0x1025, 0x012e, "Acer Aspire 5310", ALC268_ACER
),
13801 SND_PCI_QUIRK(0x1025, 0x0130, "Acer Extensa 5210", ALC268_ACER
),
13802 SND_PCI_QUIRK(0x1025, 0x0136, "Acer Aspire 5315", ALC268_ACER
),
13803 SND_PCI_QUIRK(0x1025, 0x015b, "Acer Aspire One",
13804 ALC268_ACER_ASPIRE_ONE
),
13805 SND_PCI_QUIRK(0x1028, 0x0253, "Dell OEM", ALC268_DELL
),
13806 SND_PCI_QUIRK(0x1028, 0x02b0, "Dell Inspiron 910", ALC268_AUTO
),
13807 SND_PCI_QUIRK_MASK(0x1028, 0xfff0, 0x02b0,
13808 "Dell Inspiron Mini9/Vostro A90", ALC268_DELL
),
13809 /* almost compatible with toshiba but with optional digital outs;
13810 * auto-probing seems working fine
13812 SND_PCI_QUIRK_MASK(0x103c, 0xff00, 0x3000, "HP TX25xx series",
13814 SND_PCI_QUIRK(0x1043, 0x1205, "ASUS W7J", ALC268_3ST
),
13815 SND_PCI_QUIRK(0x1170, 0x0040, "ZEPTO", ALC268_ZEPTO
),
13816 SND_PCI_QUIRK(0x14c0, 0x0025, "COMPAL IFL90/JFL-92", ALC268_TOSHIBA
),
13817 SND_PCI_QUIRK(0x152d, 0x0763, "Diverse (CPR2000)", ALC268_ACER
),
13818 SND_PCI_QUIRK(0x152d, 0x0771, "Quanta IL1", ALC267_QUANTA_IL1
),
13822 /* Toshiba laptops have no unique PCI SSID but only codec SSID */
13823 static struct snd_pci_quirk alc268_ssid_cfg_tbl
[] = {
13824 SND_PCI_QUIRK(0x1179, 0xff0a, "TOSHIBA X-200", ALC268_AUTO
),
13825 SND_PCI_QUIRK(0x1179, 0xff0e, "TOSHIBA X-200 HDMI", ALC268_AUTO
),
13826 SND_PCI_QUIRK_MASK(0x1179, 0xff00, 0xff00, "TOSHIBA A/Lx05",
13831 static struct alc_config_preset alc268_presets
[] = {
13832 [ALC267_QUANTA_IL1
] = {
13833 .mixers
= { alc267_quanta_il1_mixer
, alc268_beep_mixer
,
13834 alc268_capture_nosrc_mixer
},
13835 .init_verbs
= { alc268_base_init_verbs
, alc268_eapd_verbs
,
13836 alc267_quanta_il1_verbs
},
13837 .num_dacs
= ARRAY_SIZE(alc268_dac_nids
),
13838 .dac_nids
= alc268_dac_nids
,
13839 .num_adc_nids
= ARRAY_SIZE(alc268_adc_nids_alt
),
13840 .adc_nids
= alc268_adc_nids_alt
,
13842 .num_channel_mode
= ARRAY_SIZE(alc268_modes
),
13843 .channel_mode
= alc268_modes
,
13844 .unsol_event
= alc_sku_unsol_event
,
13845 .setup
= alc267_quanta_il1_setup
,
13846 .init_hook
= alc_inithook
,
13849 .mixers
= { alc268_base_mixer
, alc268_capture_alt_mixer
,
13850 alc268_beep_mixer
},
13851 .init_verbs
= { alc268_base_init_verbs
},
13852 .num_dacs
= ARRAY_SIZE(alc268_dac_nids
),
13853 .dac_nids
= alc268_dac_nids
,
13854 .num_adc_nids
= ARRAY_SIZE(alc268_adc_nids_alt
),
13855 .adc_nids
= alc268_adc_nids_alt
,
13856 .capsrc_nids
= alc268_capsrc_nids
,
13858 .dig_out_nid
= ALC268_DIGOUT_NID
,
13859 .num_channel_mode
= ARRAY_SIZE(alc268_modes
),
13860 .channel_mode
= alc268_modes
,
13861 .input_mux
= &alc268_capture_source
,
13863 [ALC268_TOSHIBA
] = {
13864 .mixers
= { alc268_toshiba_mixer
, alc268_capture_alt_mixer
,
13865 alc268_beep_mixer
},
13866 .init_verbs
= { alc268_base_init_verbs
, alc268_eapd_verbs
,
13867 alc268_toshiba_verbs
},
13868 .num_dacs
= ARRAY_SIZE(alc268_dac_nids
),
13869 .dac_nids
= alc268_dac_nids
,
13870 .num_adc_nids
= ARRAY_SIZE(alc268_adc_nids_alt
),
13871 .adc_nids
= alc268_adc_nids_alt
,
13872 .capsrc_nids
= alc268_capsrc_nids
,
13874 .num_channel_mode
= ARRAY_SIZE(alc268_modes
),
13875 .channel_mode
= alc268_modes
,
13876 .input_mux
= &alc268_capture_source
,
13877 .unsol_event
= alc268_toshiba_unsol_event
,
13878 .setup
= alc268_toshiba_setup
,
13879 .init_hook
= alc268_toshiba_automute
,
13882 .mixers
= { alc268_acer_mixer
, alc268_capture_alt_mixer
,
13883 alc268_beep_mixer
},
13884 .init_verbs
= { alc268_base_init_verbs
, alc268_eapd_verbs
,
13885 alc268_acer_verbs
},
13886 .num_dacs
= ARRAY_SIZE(alc268_dac_nids
),
13887 .dac_nids
= alc268_dac_nids
,
13888 .num_adc_nids
= ARRAY_SIZE(alc268_adc_nids_alt
),
13889 .adc_nids
= alc268_adc_nids_alt
,
13890 .capsrc_nids
= alc268_capsrc_nids
,
13892 .num_channel_mode
= ARRAY_SIZE(alc268_modes
),
13893 .channel_mode
= alc268_modes
,
13894 .input_mux
= &alc268_acer_capture_source
,
13895 .unsol_event
= alc268_acer_unsol_event
,
13896 .init_hook
= alc268_acer_init_hook
,
13898 [ALC268_ACER_DMIC
] = {
13899 .mixers
= { alc268_acer_dmic_mixer
, alc268_capture_alt_mixer
,
13900 alc268_beep_mixer
},
13901 .init_verbs
= { alc268_base_init_verbs
, alc268_eapd_verbs
,
13902 alc268_acer_verbs
},
13903 .num_dacs
= ARRAY_SIZE(alc268_dac_nids
),
13904 .dac_nids
= alc268_dac_nids
,
13905 .num_adc_nids
= ARRAY_SIZE(alc268_adc_nids_alt
),
13906 .adc_nids
= alc268_adc_nids_alt
,
13907 .capsrc_nids
= alc268_capsrc_nids
,
13909 .num_channel_mode
= ARRAY_SIZE(alc268_modes
),
13910 .channel_mode
= alc268_modes
,
13911 .input_mux
= &alc268_acer_dmic_capture_source
,
13912 .unsol_event
= alc268_acer_unsol_event
,
13913 .init_hook
= alc268_acer_init_hook
,
13915 [ALC268_ACER_ASPIRE_ONE
] = {
13916 .mixers
= { alc268_acer_aspire_one_mixer
,
13918 alc268_capture_nosrc_mixer
},
13919 .init_verbs
= { alc268_base_init_verbs
, alc268_eapd_verbs
,
13920 alc268_acer_aspire_one_verbs
},
13921 .num_dacs
= ARRAY_SIZE(alc268_dac_nids
),
13922 .dac_nids
= alc268_dac_nids
,
13923 .num_adc_nids
= ARRAY_SIZE(alc268_adc_nids_alt
),
13924 .adc_nids
= alc268_adc_nids_alt
,
13925 .capsrc_nids
= alc268_capsrc_nids
,
13927 .num_channel_mode
= ARRAY_SIZE(alc268_modes
),
13928 .channel_mode
= alc268_modes
,
13929 .unsol_event
= alc268_acer_lc_unsol_event
,
13930 .setup
= alc268_acer_lc_setup
,
13931 .init_hook
= alc268_acer_lc_init_hook
,
13934 .mixers
= { alc268_dell_mixer
, alc268_beep_mixer
,
13935 alc268_capture_nosrc_mixer
},
13936 .init_verbs
= { alc268_base_init_verbs
, alc268_eapd_verbs
,
13937 alc268_dell_verbs
},
13938 .num_dacs
= ARRAY_SIZE(alc268_dac_nids
),
13939 .dac_nids
= alc268_dac_nids
,
13940 .num_adc_nids
= ARRAY_SIZE(alc268_adc_nids_alt
),
13941 .adc_nids
= alc268_adc_nids_alt
,
13942 .capsrc_nids
= alc268_capsrc_nids
,
13944 .num_channel_mode
= ARRAY_SIZE(alc268_modes
),
13945 .channel_mode
= alc268_modes
,
13946 .unsol_event
= alc_sku_unsol_event
,
13947 .setup
= alc268_dell_setup
,
13948 .init_hook
= alc_inithook
,
13951 .mixers
= { alc268_base_mixer
, alc268_capture_alt_mixer
,
13952 alc268_beep_mixer
},
13953 .init_verbs
= { alc268_base_init_verbs
, alc268_eapd_verbs
,
13954 alc268_toshiba_verbs
},
13955 .num_dacs
= ARRAY_SIZE(alc268_dac_nids
),
13956 .dac_nids
= alc268_dac_nids
,
13957 .num_adc_nids
= ARRAY_SIZE(alc268_adc_nids_alt
),
13958 .adc_nids
= alc268_adc_nids_alt
,
13959 .capsrc_nids
= alc268_capsrc_nids
,
13961 .dig_out_nid
= ALC268_DIGOUT_NID
,
13962 .num_channel_mode
= ARRAY_SIZE(alc268_modes
),
13963 .channel_mode
= alc268_modes
,
13964 .input_mux
= &alc268_capture_source
,
13965 .setup
= alc268_toshiba_setup
,
13966 .init_hook
= alc268_toshiba_automute
,
13968 #ifdef CONFIG_SND_DEBUG
13970 .mixers
= { alc268_test_mixer
, alc268_capture_mixer
},
13971 .init_verbs
= { alc268_base_init_verbs
, alc268_eapd_verbs
,
13972 alc268_volume_init_verbs
},
13973 .num_dacs
= ARRAY_SIZE(alc268_dac_nids
),
13974 .dac_nids
= alc268_dac_nids
,
13975 .num_adc_nids
= ARRAY_SIZE(alc268_adc_nids_alt
),
13976 .adc_nids
= alc268_adc_nids_alt
,
13977 .capsrc_nids
= alc268_capsrc_nids
,
13979 .dig_out_nid
= ALC268_DIGOUT_NID
,
13980 .num_channel_mode
= ARRAY_SIZE(alc268_modes
),
13981 .channel_mode
= alc268_modes
,
13982 .input_mux
= &alc268_capture_source
,
13987 static int patch_alc268(struct hda_codec
*codec
)
13989 struct alc_spec
*spec
;
13991 int i
, has_beep
, err
;
13993 spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
13997 codec
->spec
= spec
;
13999 board_config
= snd_hda_check_board_config(codec
, ALC268_MODEL_LAST
,
14003 if (board_config
< 0 || board_config
>= ALC268_MODEL_LAST
)
14004 board_config
= snd_hda_check_board_codec_sid_config(codec
,
14005 ALC268_MODEL_LAST
, alc268_models
, alc268_ssid_cfg_tbl
);
14007 if (board_config
< 0 || board_config
>= ALC268_MODEL_LAST
) {
14008 printk(KERN_INFO
"hda_codec: %s: BIOS auto-probing.\n",
14010 board_config
= ALC268_AUTO
;
14013 if (board_config
== ALC268_AUTO
) {
14014 /* automatic parse from the BIOS config */
14015 err
= alc268_parse_auto_config(codec
);
14021 "hda_codec: Cannot set up configuration "
14022 "from BIOS. Using base mode...\n");
14023 board_config
= ALC268_3ST
;
14027 if (board_config
!= ALC268_AUTO
)
14028 setup_preset(codec
, &alc268_presets
[board_config
]);
14030 spec
->stream_analog_playback
= &alc268_pcm_analog_playback
;
14031 spec
->stream_analog_capture
= &alc268_pcm_analog_capture
;
14032 spec
->stream_analog_alt_capture
= &alc268_pcm_analog_alt_capture
;
14034 spec
->stream_digital_playback
= &alc268_pcm_digital_playback
;
14037 for (i
= 0; i
< spec
->num_mixers
; i
++) {
14038 if (spec
->mixers
[i
] == alc268_beep_mixer
) {
14045 err
= snd_hda_attach_beep_device(codec
, 0x1);
14050 if (!query_amp_caps(codec
, 0x1d, HDA_INPUT
))
14051 /* override the amp caps for beep generator */
14052 snd_hda_override_amp_caps(codec
, 0x1d, HDA_INPUT
,
14053 (0x0c << AC_AMPCAP_OFFSET_SHIFT
) |
14054 (0x0c << AC_AMPCAP_NUM_STEPS_SHIFT
) |
14055 (0x07 << AC_AMPCAP_STEP_SIZE_SHIFT
) |
14056 (0 << AC_AMPCAP_MUTE_SHIFT
));
14059 if (!spec
->no_analog
&& !spec
->adc_nids
&& spec
->input_mux
) {
14060 /* check whether NID 0x07 is valid */
14061 unsigned int wcap
= get_wcaps(codec
, 0x07);
14063 spec
->capsrc_nids
= alc268_capsrc_nids
;
14065 wcap
= get_wcaps_type(wcap
);
14066 if (spec
->auto_mic
||
14067 wcap
!= AC_WID_AUD_IN
|| spec
->input_mux
->num_items
== 1) {
14068 spec
->adc_nids
= alc268_adc_nids_alt
;
14069 spec
->num_adc_nids
= ARRAY_SIZE(alc268_adc_nids_alt
);
14070 if (spec
->auto_mic
)
14071 fixup_automic_adc(codec
);
14072 if (spec
->auto_mic
|| spec
->input_mux
->num_items
== 1)
14073 add_mixer(spec
, alc268_capture_nosrc_mixer
);
14075 add_mixer(spec
, alc268_capture_alt_mixer
);
14077 spec
->adc_nids
= alc268_adc_nids
;
14078 spec
->num_adc_nids
= ARRAY_SIZE(alc268_adc_nids
);
14079 add_mixer(spec
, alc268_capture_mixer
);
14083 spec
->vmaster_nid
= 0x02;
14085 codec
->patch_ops
= alc_patch_ops
;
14086 if (board_config
== ALC268_AUTO
)
14087 spec
->init_hook
= alc268_auto_init
;
14089 alc_init_jacks(codec
);
14095 * ALC269 channel source setting (2 channel)
14097 #define ALC269_DIGOUT_NID ALC880_DIGOUT_NID
14099 #define alc269_dac_nids alc260_dac_nids
14101 static hda_nid_t alc269_adc_nids
[1] = {
14106 static hda_nid_t alc269_capsrc_nids
[1] = {
14110 static hda_nid_t alc269vb_adc_nids
[1] = {
14115 static hda_nid_t alc269vb_capsrc_nids
[1] = {
14119 static hda_nid_t alc269_adc_candidates
[] = {
14120 0x08, 0x09, 0x07, 0x11,
14123 #define alc269_modes alc260_modes
14124 #define alc269_capture_source alc880_lg_lw_capture_source
14126 static struct snd_kcontrol_new alc269_base_mixer
[] = {
14127 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
14128 HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
14129 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
14130 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
14131 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
14132 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
14133 HDA_CODEC_VOLUME("Mic Boost Volume", 0x18, 0, HDA_INPUT
),
14134 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x01, HDA_INPUT
),
14135 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x01, HDA_INPUT
),
14136 HDA_CODEC_VOLUME("Front Mic Boost Volume", 0x19, 0, HDA_INPUT
),
14137 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
14138 HDA_CODEC_MUTE_MONO("Mono Playback Switch", 0x16, 2, 0x0, HDA_OUTPUT
),
14142 static struct snd_kcontrol_new alc269_quanta_fl1_mixer
[] = {
14143 /* output mixer control */
14144 HDA_BIND_VOL("Master Playback Volume", &alc268_acer_bind_master_vol
),
14146 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
14147 .name
= "Master Playback Switch",
14148 .subdevice
= HDA_SUBDEV_AMP_FLAG
,
14149 .info
= snd_hda_mixer_amp_switch_info
,
14150 .get
= snd_hda_mixer_amp_switch_get
,
14151 .put
= alc268_acer_master_sw_put
,
14152 .private_value
= HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT
),
14154 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
14155 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
14156 HDA_CODEC_VOLUME("Mic Boost Volume", 0x18, 0, HDA_INPUT
),
14157 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x0b, 0x01, HDA_INPUT
),
14158 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x0b, 0x01, HDA_INPUT
),
14159 HDA_CODEC_VOLUME("Internal Mic Boost Volume", 0x19, 0, HDA_INPUT
),
14163 static struct snd_kcontrol_new alc269_lifebook_mixer
[] = {
14164 /* output mixer control */
14165 HDA_BIND_VOL("Master Playback Volume", &alc268_acer_bind_master_vol
),
14167 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
14168 .name
= "Master Playback Switch",
14169 .subdevice
= HDA_SUBDEV_AMP_FLAG
,
14170 .info
= snd_hda_mixer_amp_switch_info
,
14171 .get
= snd_hda_mixer_amp_switch_get
,
14172 .put
= alc268_acer_master_sw_put
,
14173 .private_value
= HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT
),
14175 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
14176 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
14177 HDA_CODEC_VOLUME("Mic Boost Volume", 0x18, 0, HDA_INPUT
),
14178 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x0b, 0x01, HDA_INPUT
),
14179 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x0b, 0x01, HDA_INPUT
),
14180 HDA_CODEC_VOLUME("Internal Mic Boost Volume", 0x19, 0, HDA_INPUT
),
14181 HDA_CODEC_VOLUME("Dock Mic Playback Volume", 0x0b, 0x03, HDA_INPUT
),
14182 HDA_CODEC_MUTE("Dock Mic Playback Switch", 0x0b, 0x03, HDA_INPUT
),
14183 HDA_CODEC_VOLUME("Dock Mic Boost Volume", 0x1b, 0, HDA_INPUT
),
14187 static struct snd_kcontrol_new alc269_laptop_mixer
[] = {
14188 HDA_CODEC_MUTE("Speaker Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
14189 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
14190 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
14191 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x03, 0x0, HDA_OUTPUT
),
14195 static struct snd_kcontrol_new alc269vb_laptop_mixer
[] = {
14196 HDA_CODEC_MUTE("Speaker Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
14197 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
14198 HDA_CODEC_MUTE("Headphone Playback Switch", 0x21, 0x0, HDA_OUTPUT
),
14199 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x03, 0x0, HDA_OUTPUT
),
14203 static struct snd_kcontrol_new alc269_asus_mixer
[] = {
14204 HDA_CODEC_VOLUME("Master Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
14205 HDA_CODEC_MUTE("Master Playback Switch", 0x0c, 0x0, HDA_INPUT
),
14209 /* capture mixer elements */
14210 static struct snd_kcontrol_new alc269_laptop_analog_capture_mixer
[] = {
14211 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT
),
14212 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT
),
14213 HDA_CODEC_VOLUME("Mic Boost Volume", 0x18, 0, HDA_INPUT
),
14214 HDA_CODEC_VOLUME("Internal Mic Boost Volume", 0x19, 0, HDA_INPUT
),
14218 static struct snd_kcontrol_new alc269_laptop_digital_capture_mixer
[] = {
14219 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT
),
14220 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT
),
14221 HDA_CODEC_VOLUME("Mic Boost Volume", 0x18, 0, HDA_INPUT
),
14225 static struct snd_kcontrol_new alc269vb_laptop_analog_capture_mixer
[] = {
14226 HDA_CODEC_VOLUME("Capture Volume", 0x09, 0x0, HDA_INPUT
),
14227 HDA_CODEC_MUTE("Capture Switch", 0x09, 0x0, HDA_INPUT
),
14228 HDA_CODEC_VOLUME("Mic Boost Volume", 0x18, 0, HDA_INPUT
),
14229 HDA_CODEC_VOLUME("Internal Mic Boost Volume", 0x19, 0, HDA_INPUT
),
14233 static struct snd_kcontrol_new alc269vb_laptop_digital_capture_mixer
[] = {
14234 HDA_CODEC_VOLUME("Capture Volume", 0x09, 0x0, HDA_INPUT
),
14235 HDA_CODEC_MUTE("Capture Switch", 0x09, 0x0, HDA_INPUT
),
14236 HDA_CODEC_VOLUME("Mic Boost Volume", 0x18, 0, HDA_INPUT
),
14241 #define alc269_fujitsu_mixer alc269_laptop_mixer
14243 static struct hda_verb alc269_quanta_fl1_verbs
[] = {
14244 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x01},
14245 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
14246 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
14247 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
14248 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
14249 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
14253 static struct hda_verb alc269_lifebook_verbs
[] = {
14254 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x01},
14255 {0x1a, AC_VERB_SET_CONNECT_SEL
, 0x01},
14256 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
14257 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
14258 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
14259 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
14260 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
14261 {0x1a, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
14262 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
14263 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
14267 /* toggle speaker-output according to the hp-jack state */
14268 static void alc269_quanta_fl1_speaker_automute(struct hda_codec
*codec
)
14270 unsigned int present
;
14271 unsigned char bits
;
14273 present
= snd_hda_jack_detect(codec
, 0x15);
14274 bits
= present
? HDA_AMP_MUTE
: 0;
14275 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 0,
14276 HDA_AMP_MUTE
, bits
);
14277 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 1,
14278 HDA_AMP_MUTE
, bits
);
14280 snd_hda_codec_write(codec
, 0x20, 0,
14281 AC_VERB_SET_COEF_INDEX
, 0x0c);
14282 snd_hda_codec_write(codec
, 0x20, 0,
14283 AC_VERB_SET_PROC_COEF
, 0x680);
14285 snd_hda_codec_write(codec
, 0x20, 0,
14286 AC_VERB_SET_COEF_INDEX
, 0x0c);
14287 snd_hda_codec_write(codec
, 0x20, 0,
14288 AC_VERB_SET_PROC_COEF
, 0x480);
14291 /* toggle speaker-output according to the hp-jacks state */
14292 static void alc269_lifebook_speaker_automute(struct hda_codec
*codec
)
14294 unsigned int present
;
14295 unsigned char bits
;
14297 /* Check laptop headphone socket */
14298 present
= snd_hda_jack_detect(codec
, 0x15);
14300 /* Check port replicator headphone socket */
14301 present
|= snd_hda_jack_detect(codec
, 0x1a);
14303 bits
= present
? HDA_AMP_MUTE
: 0;
14304 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 0,
14305 HDA_AMP_MUTE
, bits
);
14306 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 1,
14307 HDA_AMP_MUTE
, bits
);
14309 snd_hda_codec_write(codec
, 0x20, 0,
14310 AC_VERB_SET_COEF_INDEX
, 0x0c);
14311 snd_hda_codec_write(codec
, 0x20, 0,
14312 AC_VERB_SET_PROC_COEF
, 0x680);
14314 snd_hda_codec_write(codec
, 0x20, 0,
14315 AC_VERB_SET_COEF_INDEX
, 0x0c);
14316 snd_hda_codec_write(codec
, 0x20, 0,
14317 AC_VERB_SET_PROC_COEF
, 0x480);
14320 static void alc269_lifebook_mic_autoswitch(struct hda_codec
*codec
)
14322 unsigned int present_laptop
;
14323 unsigned int present_dock
;
14325 present_laptop
= snd_hda_jack_detect(codec
, 0x18);
14326 present_dock
= snd_hda_jack_detect(codec
, 0x1b);
14328 /* Laptop mic port overrides dock mic port, design decision */
14330 snd_hda_codec_write(codec
, 0x23, 0,
14331 AC_VERB_SET_CONNECT_SEL
, 0x3);
14332 if (present_laptop
)
14333 snd_hda_codec_write(codec
, 0x23, 0,
14334 AC_VERB_SET_CONNECT_SEL
, 0x0);
14335 if (!present_dock
&& !present_laptop
)
14336 snd_hda_codec_write(codec
, 0x23, 0,
14337 AC_VERB_SET_CONNECT_SEL
, 0x1);
14340 static void alc269_quanta_fl1_unsol_event(struct hda_codec
*codec
,
14343 switch (res
>> 26) {
14344 case ALC880_HP_EVENT
:
14345 alc269_quanta_fl1_speaker_automute(codec
);
14347 case ALC880_MIC_EVENT
:
14348 alc_mic_automute(codec
);
14353 static void alc269_lifebook_unsol_event(struct hda_codec
*codec
,
14356 if ((res
>> 26) == ALC880_HP_EVENT
)
14357 alc269_lifebook_speaker_automute(codec
);
14358 if ((res
>> 26) == ALC880_MIC_EVENT
)
14359 alc269_lifebook_mic_autoswitch(codec
);
14362 static void alc269_quanta_fl1_setup(struct hda_codec
*codec
)
14364 struct alc_spec
*spec
= codec
->spec
;
14365 spec
->autocfg
.hp_pins
[0] = 0x15;
14366 spec
->autocfg
.speaker_pins
[0] = 0x14;
14367 spec
->ext_mic
.pin
= 0x18;
14368 spec
->ext_mic
.mux_idx
= 0;
14369 spec
->int_mic
.pin
= 0x19;
14370 spec
->int_mic
.mux_idx
= 1;
14371 spec
->auto_mic
= 1;
14374 static void alc269_quanta_fl1_init_hook(struct hda_codec
*codec
)
14376 alc269_quanta_fl1_speaker_automute(codec
);
14377 alc_mic_automute(codec
);
14380 static void alc269_lifebook_init_hook(struct hda_codec
*codec
)
14382 alc269_lifebook_speaker_automute(codec
);
14383 alc269_lifebook_mic_autoswitch(codec
);
14386 static struct hda_verb alc269_laptop_dmic_init_verbs
[] = {
14387 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x01},
14388 {0x23, AC_VERB_SET_CONNECT_SEL
, 0x05},
14389 {0x02, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb026 },
14390 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7019 | (0x00 << 8))},
14391 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
14392 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
14393 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
14397 static struct hda_verb alc269_laptop_amic_init_verbs
[] = {
14398 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x01},
14399 {0x23, AC_VERB_SET_CONNECT_SEL
, 0x01},
14400 {0x02, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb026 },
14401 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, (0x701b | (0x00 << 8))},
14402 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
14403 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
14407 static struct hda_verb alc269vb_laptop_dmic_init_verbs
[] = {
14408 {0x21, AC_VERB_SET_CONNECT_SEL
, 0x01},
14409 {0x22, AC_VERB_SET_CONNECT_SEL
, 0x06},
14410 {0x02, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb026 },
14411 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7019 | (0x00 << 8))},
14412 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
14413 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
14414 {0x21, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
14418 static struct hda_verb alc269vb_laptop_amic_init_verbs
[] = {
14419 {0x21, AC_VERB_SET_CONNECT_SEL
, 0x01},
14420 {0x22, AC_VERB_SET_CONNECT_SEL
, 0x01},
14421 {0x02, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb026 },
14422 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7019 | (0x00 << 8))},
14423 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
14424 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
14425 {0x21, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
14429 static struct hda_verb alc271_acer_dmic_verbs
[] = {
14430 {0x20, AC_VERB_SET_COEF_INDEX
, 0x0d},
14431 {0x20, AC_VERB_SET_PROC_COEF
, 0x4000},
14432 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
14433 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
14434 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
14435 {0x21, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
14436 {0x21, AC_VERB_SET_CONNECT_SEL
, 0x00},
14437 {0x21, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
14438 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
14439 {0x22, AC_VERB_SET_CONNECT_SEL
, 6},
14443 /* toggle speaker-output according to the hp-jack state */
14444 static void alc269_speaker_automute(struct hda_codec
*codec
)
14446 struct alc_spec
*spec
= codec
->spec
;
14447 unsigned int nid
= spec
->autocfg
.hp_pins
[0];
14448 unsigned int present
;
14449 unsigned char bits
;
14451 present
= snd_hda_jack_detect(codec
, nid
);
14452 bits
= present
? HDA_AMP_MUTE
: 0;
14453 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 0,
14454 HDA_AMP_MUTE
, bits
);
14455 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 1,
14456 HDA_AMP_MUTE
, bits
);
14457 snd_hda_input_jack_report(codec
, nid
);
14460 /* unsolicited event for HP jack sensing */
14461 static void alc269_laptop_unsol_event(struct hda_codec
*codec
,
14464 switch (res
>> 26) {
14465 case ALC880_HP_EVENT
:
14466 alc269_speaker_automute(codec
);
14468 case ALC880_MIC_EVENT
:
14469 alc_mic_automute(codec
);
14474 static void alc269_laptop_amic_setup(struct hda_codec
*codec
)
14476 struct alc_spec
*spec
= codec
->spec
;
14477 spec
->autocfg
.hp_pins
[0] = 0x15;
14478 spec
->autocfg
.speaker_pins
[0] = 0x14;
14479 spec
->ext_mic
.pin
= 0x18;
14480 spec
->ext_mic
.mux_idx
= 0;
14481 spec
->int_mic
.pin
= 0x19;
14482 spec
->int_mic
.mux_idx
= 1;
14483 spec
->auto_mic
= 1;
14486 static void alc269_laptop_dmic_setup(struct hda_codec
*codec
)
14488 struct alc_spec
*spec
= codec
->spec
;
14489 spec
->autocfg
.hp_pins
[0] = 0x15;
14490 spec
->autocfg
.speaker_pins
[0] = 0x14;
14491 spec
->ext_mic
.pin
= 0x18;
14492 spec
->ext_mic
.mux_idx
= 0;
14493 spec
->int_mic
.pin
= 0x12;
14494 spec
->int_mic
.mux_idx
= 5;
14495 spec
->auto_mic
= 1;
14498 static void alc269vb_laptop_amic_setup(struct hda_codec
*codec
)
14500 struct alc_spec
*spec
= codec
->spec
;
14501 spec
->autocfg
.hp_pins
[0] = 0x21;
14502 spec
->autocfg
.speaker_pins
[0] = 0x14;
14503 spec
->ext_mic
.pin
= 0x18;
14504 spec
->ext_mic
.mux_idx
= 0;
14505 spec
->int_mic
.pin
= 0x19;
14506 spec
->int_mic
.mux_idx
= 1;
14507 spec
->auto_mic
= 1;
14510 static void alc269vb_laptop_dmic_setup(struct hda_codec
*codec
)
14512 struct alc_spec
*spec
= codec
->spec
;
14513 spec
->autocfg
.hp_pins
[0] = 0x21;
14514 spec
->autocfg
.speaker_pins
[0] = 0x14;
14515 spec
->ext_mic
.pin
= 0x18;
14516 spec
->ext_mic
.mux_idx
= 0;
14517 spec
->int_mic
.pin
= 0x12;
14518 spec
->int_mic
.mux_idx
= 6;
14519 spec
->auto_mic
= 1;
14522 static void alc269_laptop_inithook(struct hda_codec
*codec
)
14524 alc269_speaker_automute(codec
);
14525 alc_mic_automute(codec
);
14529 * generic initialization of ADC, input mixers and output mixers
14531 static struct hda_verb alc269_init_verbs
[] = {
14533 * Unmute ADC0 and set the default input to mic-in
14535 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14538 * Set up output mixers (0x02 - 0x03)
14540 /* set vol=0 to output mixers */
14541 {0x02, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
14542 {0x03, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
14544 /* set up input amps for analog loopback */
14545 /* Amp Indices: DAC = 0, mixer = 1 */
14546 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14547 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14548 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14549 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14550 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14551 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14553 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
14554 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
14555 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
14556 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
14557 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
14558 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
14559 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
14561 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
14562 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
14564 /* FIXME: use Mux-type input source selection */
14565 /* Mixer elements: 0x18, 19, 1a, 1b, 1d, 0b */
14566 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
14567 {0x23, AC_VERB_SET_CONNECT_SEL
, 0x00},
14570 {0x14, AC_VERB_SET_EAPD_BTLENABLE
, 2},
14574 static struct hda_verb alc269vb_init_verbs
[] = {
14576 * Unmute ADC0 and set the default input to mic-in
14578 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14581 * Set up output mixers (0x02 - 0x03)
14583 /* set vol=0 to output mixers */
14584 {0x02, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
14585 {0x03, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
14587 /* set up input amps for analog loopback */
14588 /* Amp Indices: DAC = 0, mixer = 1 */
14589 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14590 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14591 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14592 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14593 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14594 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14596 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
14597 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
14598 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
14599 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
14600 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
14601 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
14602 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
14604 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
14605 {0x21, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
14607 /* FIXME: use Mux-type input source selection */
14608 /* Mixer elements: 0x18, 19, 1a, 1b, 1d, 0b */
14609 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
14610 {0x22, AC_VERB_SET_CONNECT_SEL
, 0x00},
14613 {0x14, AC_VERB_SET_EAPD_BTLENABLE
, 2},
14617 #define alc269_auto_create_multi_out_ctls \
14618 alc268_auto_create_multi_out_ctls
14619 #define alc269_auto_create_input_ctls \
14620 alc268_auto_create_input_ctls
14622 #ifdef CONFIG_SND_HDA_POWER_SAVE
14623 #define alc269_loopbacks alc880_loopbacks
14626 /* pcm configuration: identical with ALC880 */
14627 #define alc269_pcm_analog_playback alc880_pcm_analog_playback
14628 #define alc269_pcm_analog_capture alc880_pcm_analog_capture
14629 #define alc269_pcm_digital_playback alc880_pcm_digital_playback
14630 #define alc269_pcm_digital_capture alc880_pcm_digital_capture
14632 static struct hda_pcm_stream alc269_44k_pcm_analog_playback
= {
14636 .rates
= SNDRV_PCM_RATE_44100
, /* fixed rate */
14637 /* NID is set in alc_build_pcms */
14639 .open
= alc880_playback_pcm_open
,
14640 .prepare
= alc880_playback_pcm_prepare
,
14641 .cleanup
= alc880_playback_pcm_cleanup
14645 static struct hda_pcm_stream alc269_44k_pcm_analog_capture
= {
14649 .rates
= SNDRV_PCM_RATE_44100
, /* fixed rate */
14650 /* NID is set in alc_build_pcms */
14653 #ifdef CONFIG_SND_HDA_POWER_SAVE
14654 static int alc269_mic2_for_mute_led(struct hda_codec
*codec
)
14656 switch (codec
->subsystem_id
) {
14663 static int alc269_mic2_mute_check_ps(struct hda_codec
*codec
, hda_nid_t nid
)
14665 /* update mute-LED according to the speaker mute state */
14666 if (nid
== 0x01 || nid
== 0x14) {
14668 if (snd_hda_codec_amp_read(codec
, 0x14, 0, HDA_OUTPUT
, 0) &
14673 /* mic2 vref pin is used for mute LED control */
14674 snd_hda_codec_update_cache(codec
, 0x19, 0,
14675 AC_VERB_SET_PIN_WIDGET_CONTROL
,
14678 return alc_check_power_status(codec
, nid
);
14680 #endif /* CONFIG_SND_HDA_POWER_SAVE */
14682 static int alc275_setup_dual_adc(struct hda_codec
*codec
)
14684 struct alc_spec
*spec
= codec
->spec
;
14686 if (codec
->vendor_id
!= 0x10ec0275 || !spec
->auto_mic
)
14688 if ((spec
->ext_mic
.pin
>= 0x18 && spec
->int_mic
.pin
<= 0x13) ||
14689 (spec
->ext_mic
.pin
<= 0x12 && spec
->int_mic
.pin
>= 0x18)) {
14690 if (spec
->ext_mic
.pin
<= 0x12) {
14691 spec
->private_adc_nids
[0] = 0x08;
14692 spec
->private_adc_nids
[1] = 0x11;
14693 spec
->private_capsrc_nids
[0] = 0x23;
14694 spec
->private_capsrc_nids
[1] = 0x22;
14696 spec
->private_adc_nids
[0] = 0x11;
14697 spec
->private_adc_nids
[1] = 0x08;
14698 spec
->private_capsrc_nids
[0] = 0x22;
14699 spec
->private_capsrc_nids
[1] = 0x23;
14701 spec
->adc_nids
= spec
->private_adc_nids
;
14702 spec
->capsrc_nids
= spec
->private_capsrc_nids
;
14703 spec
->num_adc_nids
= 2;
14704 spec
->dual_adc_switch
= 1;
14705 snd_printdd("realtek: enabling dual ADC switchg (%02x:%02x)\n",
14706 spec
->adc_nids
[0], spec
->adc_nids
[1]);
14712 /* different alc269-variants */
14714 ALC269_TYPE_NORMAL
,
14715 ALC269_TYPE_ALC258
,
14716 ALC269_TYPE_ALC259
,
14717 ALC269_TYPE_ALC269VB
,
14718 ALC269_TYPE_ALC270
,
14719 ALC269_TYPE_ALC271X
,
14723 * BIOS auto configuration
14725 static int alc269_parse_auto_config(struct hda_codec
*codec
)
14727 struct alc_spec
*spec
= codec
->spec
;
14729 static hda_nid_t alc269_ignore
[] = { 0x1d, 0 };
14731 err
= snd_hda_parse_pin_def_config(codec
, &spec
->autocfg
,
14736 err
= alc269_auto_create_multi_out_ctls(spec
, &spec
->autocfg
);
14739 if (spec
->codec_variant
== ALC269_TYPE_NORMAL
)
14740 err
= alc269_auto_create_input_ctls(codec
, &spec
->autocfg
);
14742 err
= alc_auto_create_input_ctls(codec
, &spec
->autocfg
, 0,
14747 spec
->multiout
.max_channels
= spec
->multiout
.num_dacs
* 2;
14749 alc_auto_parse_digital(codec
);
14751 if (spec
->kctls
.list
)
14752 add_mixer(spec
, spec
->kctls
.list
);
14754 if (spec
->codec_variant
!= ALC269_TYPE_NORMAL
) {
14755 add_verb(spec
, alc269vb_init_verbs
);
14756 alc_ssid_check(codec
, 0, 0x1b, 0x14, 0x21);
14758 add_verb(spec
, alc269_init_verbs
);
14759 alc_ssid_check(codec
, 0x15, 0x1b, 0x14, 0);
14762 spec
->num_mux_defs
= 1;
14763 spec
->input_mux
= &spec
->private_imux
[0];
14765 if (!alc275_setup_dual_adc(codec
))
14766 fillup_priv_adc_nids(codec
, alc269_adc_candidates
,
14767 sizeof(alc269_adc_candidates
));
14769 err
= alc_auto_add_mic_boost(codec
);
14773 if (!spec
->cap_mixer
&& !spec
->no_analog
)
14774 set_capture_mixer(codec
);
14779 #define alc269_auto_init_multi_out alc268_auto_init_multi_out
14780 #define alc269_auto_init_hp_out alc268_auto_init_hp_out
14781 #define alc269_auto_init_analog_input alc882_auto_init_analog_input
14782 #define alc269_auto_init_input_src alc882_auto_init_input_src
14785 /* init callback for auto-configuration model -- overriding the default init */
14786 static void alc269_auto_init(struct hda_codec
*codec
)
14788 struct alc_spec
*spec
= codec
->spec
;
14789 alc269_auto_init_multi_out(codec
);
14790 alc269_auto_init_hp_out(codec
);
14791 alc269_auto_init_analog_input(codec
);
14792 if (!spec
->dual_adc_switch
)
14793 alc269_auto_init_input_src(codec
);
14794 alc_auto_init_digital(codec
);
14795 if (spec
->unsol_event
)
14796 alc_inithook(codec
);
14799 #ifdef SND_HDA_NEEDS_RESUME
14800 static void alc269_toggle_power_output(struct hda_codec
*codec
, int power_up
)
14802 int val
= alc_read_coef_idx(codec
, 0x04);
14807 alc_write_coef_idx(codec
, 0x04, val
);
14810 #ifdef CONFIG_SND_HDA_POWER_SAVE
14811 static int alc269_suspend(struct hda_codec
*codec
, pm_message_t state
)
14813 struct alc_spec
*spec
= codec
->spec
;
14815 if ((alc_read_coef_idx(codec
, 0) & 0x00ff) == 0x017)
14816 alc269_toggle_power_output(codec
, 0);
14817 if ((alc_read_coef_idx(codec
, 0) & 0x00ff) == 0x018) {
14818 alc269_toggle_power_output(codec
, 0);
14823 if (spec
&& spec
->power_hook
)
14824 spec
->power_hook(codec
);
14827 #endif /* CONFIG_SND_HDA_POWER_SAVE */
14829 static int alc269_resume(struct hda_codec
*codec
)
14831 if ((alc_read_coef_idx(codec
, 0) & 0x00ff) == 0x018) {
14832 alc269_toggle_power_output(codec
, 0);
14836 codec
->patch_ops
.init(codec
);
14838 if ((alc_read_coef_idx(codec
, 0) & 0x00ff) == 0x017) {
14839 alc269_toggle_power_output(codec
, 1);
14843 if ((alc_read_coef_idx(codec
, 0) & 0x00ff) == 0x018)
14844 alc269_toggle_power_output(codec
, 1);
14846 snd_hda_codec_resume_amp(codec
);
14847 snd_hda_codec_resume_cache(codec
);
14848 hda_call_check_power_status(codec
, 0x01);
14851 #endif /* SND_HDA_NEEDS_RESUME */
14853 static void alc269_fixup_hweq(struct hda_codec
*codec
,
14854 const struct alc_fixup
*fix
, int action
)
14858 if (action
!= ALC_FIXUP_ACT_INIT
)
14860 coef
= alc_read_coef_idx(codec
, 0x1e);
14861 alc_write_coef_idx(codec
, 0x1e, coef
| 0x80);
14864 static void alc271_fixup_dmic(struct hda_codec
*codec
,
14865 const struct alc_fixup
*fix
, int action
)
14867 static struct hda_verb verbs
[] = {
14868 {0x20, AC_VERB_SET_COEF_INDEX
, 0x0d},
14869 {0x20, AC_VERB_SET_PROC_COEF
, 0x4000},
14874 if (strcmp(codec
->chip_name
, "ALC271X"))
14876 cfg
= snd_hda_codec_get_pincfg(codec
, 0x12);
14877 if (get_defcfg_connect(cfg
) == AC_JACK_PORT_FIXED
)
14878 snd_hda_sequence_write(codec
, verbs
);
14882 ALC269_FIXUP_SONY_VAIO
,
14883 ALC275_FIXUP_SONY_VAIO_GPIO2
,
14884 ALC269_FIXUP_DELL_M101Z
,
14885 ALC269_FIXUP_SKU_IGNORE
,
14886 ALC269_FIXUP_ASUS_G73JW
,
14887 ALC269_FIXUP_LENOVO_EAPD
,
14888 ALC275_FIXUP_SONY_HWEQ
,
14892 static const struct alc_fixup alc269_fixups
[] = {
14893 [ALC269_FIXUP_SONY_VAIO
] = {
14894 .type
= ALC_FIXUP_VERBS
,
14895 .v
.verbs
= (const struct hda_verb
[]) {
14896 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREFGRD
},
14900 [ALC275_FIXUP_SONY_VAIO_GPIO2
] = {
14901 .type
= ALC_FIXUP_VERBS
,
14902 .v
.verbs
= (const struct hda_verb
[]) {
14903 {0x01, AC_VERB_SET_GPIO_MASK
, 0x04},
14904 {0x01, AC_VERB_SET_GPIO_DIRECTION
, 0x04},
14905 {0x01, AC_VERB_SET_GPIO_DATA
, 0x00},
14909 .chain_id
= ALC269_FIXUP_SONY_VAIO
14911 [ALC269_FIXUP_DELL_M101Z
] = {
14912 .type
= ALC_FIXUP_VERBS
,
14913 .v
.verbs
= (const struct hda_verb
[]) {
14914 /* Enables internal speaker */
14915 {0x20, AC_VERB_SET_COEF_INDEX
, 13},
14916 {0x20, AC_VERB_SET_PROC_COEF
, 0x4040},
14920 [ALC269_FIXUP_SKU_IGNORE
] = {
14921 .type
= ALC_FIXUP_SKU
,
14922 .v
.sku
= ALC_FIXUP_SKU_IGNORE
,
14924 [ALC269_FIXUP_ASUS_G73JW
] = {
14925 .type
= ALC_FIXUP_PINS
,
14926 .v
.pins
= (const struct alc_pincfg
[]) {
14927 { 0x17, 0x99130111 }, /* subwoofer */
14931 [ALC269_FIXUP_LENOVO_EAPD
] = {
14932 .type
= ALC_FIXUP_VERBS
,
14933 .v
.verbs
= (const struct hda_verb
[]) {
14934 {0x14, AC_VERB_SET_EAPD_BTLENABLE
, 0},
14938 [ALC275_FIXUP_SONY_HWEQ
] = {
14939 .type
= ALC_FIXUP_FUNC
,
14940 .v
.func
= alc269_fixup_hweq
,
14942 .chain_id
= ALC275_FIXUP_SONY_VAIO_GPIO2
14944 [ALC271_FIXUP_DMIC
] = {
14945 .type
= ALC_FIXUP_FUNC
,
14946 .v
.func
= alc271_fixup_dmic
,
14950 static struct snd_pci_quirk alc269_fixup_tbl
[] = {
14951 SND_PCI_QUIRK(0x104d, 0x9073, "Sony VAIO", ALC275_FIXUP_SONY_VAIO_GPIO2
),
14952 SND_PCI_QUIRK(0x104d, 0x907b, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ
),
14953 SND_PCI_QUIRK(0x104d, 0x9084, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ
),
14954 SND_PCI_QUIRK_VENDOR(0x104d, "Sony VAIO", ALC269_FIXUP_SONY_VAIO
),
14955 SND_PCI_QUIRK(0x1028, 0x0470, "Dell M101z", ALC269_FIXUP_DELL_M101Z
),
14956 SND_PCI_QUIRK_VENDOR(0x1025, "Acer Aspire", ALC271_FIXUP_DMIC
),
14957 SND_PCI_QUIRK(0x17aa, 0x20f2, "Thinkpad SL410/510", ALC269_FIXUP_SKU_IGNORE
),
14958 SND_PCI_QUIRK(0x17aa, 0x215e, "Thinkpad L512", ALC269_FIXUP_SKU_IGNORE
),
14959 SND_PCI_QUIRK(0x17aa, 0x21b8, "Thinkpad Edge 14", ALC269_FIXUP_SKU_IGNORE
),
14960 SND_PCI_QUIRK(0x17aa, 0x21ca, "Thinkpad L412", ALC269_FIXUP_SKU_IGNORE
),
14961 SND_PCI_QUIRK(0x17aa, 0x21e9, "Thinkpad Edge 15", ALC269_FIXUP_SKU_IGNORE
),
14962 SND_PCI_QUIRK(0x1043, 0x1a13, "Asus G73Jw", ALC269_FIXUP_ASUS_G73JW
),
14963 SND_PCI_QUIRK(0x17aa, 0x9e54, "LENOVO NB", ALC269_FIXUP_LENOVO_EAPD
),
14969 * configuration and preset
14971 static const char * const alc269_models
[ALC269_MODEL_LAST
] = {
14972 [ALC269_BASIC
] = "basic",
14973 [ALC269_QUANTA_FL1
] = "quanta",
14974 [ALC269_AMIC
] = "laptop-amic",
14975 [ALC269_DMIC
] = "laptop-dmic",
14976 [ALC269_FUJITSU
] = "fujitsu",
14977 [ALC269_LIFEBOOK
] = "lifebook",
14978 [ALC269_AUTO
] = "auto",
14981 static struct snd_pci_quirk alc269_cfg_tbl
[] = {
14982 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_QUANTA_FL1
),
14983 SND_PCI_QUIRK(0x1025, 0x047c, "ACER ZGA", ALC271_ACER
),
14984 SND_PCI_QUIRK(0x1043, 0x8330, "ASUS Eeepc P703 P900A",
14986 SND_PCI_QUIRK(0x1043, 0x1013, "ASUS N61Da", ALC269VB_AMIC
),
14987 SND_PCI_QUIRK(0x1043, 0x1113, "ASUS N63Jn", ALC269VB_AMIC
),
14988 SND_PCI_QUIRK(0x1043, 0x1143, "ASUS B53f", ALC269VB_AMIC
),
14989 SND_PCI_QUIRK(0x1043, 0x1133, "ASUS UJ20ft", ALC269_AMIC
),
14990 SND_PCI_QUIRK(0x1043, 0x1183, "ASUS K72DR", ALC269VB_AMIC
),
14991 SND_PCI_QUIRK(0x1043, 0x11b3, "ASUS K52DR", ALC269VB_AMIC
),
14992 SND_PCI_QUIRK(0x1043, 0x11e3, "ASUS U33Jc", ALC269VB_AMIC
),
14993 SND_PCI_QUIRK(0x1043, 0x1273, "ASUS UL80Jt", ALC269VB_AMIC
),
14994 SND_PCI_QUIRK(0x1043, 0x1283, "ASUS U53Jc", ALC269_AMIC
),
14995 SND_PCI_QUIRK(0x1043, 0x12b3, "ASUS N82JV", ALC269VB_AMIC
),
14996 SND_PCI_QUIRK(0x1043, 0x12d3, "ASUS N61Jv", ALC269_AMIC
),
14997 SND_PCI_QUIRK(0x1043, 0x13a3, "ASUS UL30Vt", ALC269_AMIC
),
14998 SND_PCI_QUIRK(0x1043, 0x1373, "ASUS G73JX", ALC269_AMIC
),
14999 SND_PCI_QUIRK(0x1043, 0x1383, "ASUS UJ30Jc", ALC269_AMIC
),
15000 SND_PCI_QUIRK(0x1043, 0x13d3, "ASUS N61JA", ALC269_AMIC
),
15001 SND_PCI_QUIRK(0x1043, 0x1413, "ASUS UL50", ALC269_AMIC
),
15002 SND_PCI_QUIRK(0x1043, 0x1443, "ASUS UL30", ALC269_AMIC
),
15003 SND_PCI_QUIRK(0x1043, 0x1453, "ASUS M60Jv", ALC269_AMIC
),
15004 SND_PCI_QUIRK(0x1043, 0x1483, "ASUS UL80", ALC269_AMIC
),
15005 SND_PCI_QUIRK(0x1043, 0x14f3, "ASUS F83Vf", ALC269_AMIC
),
15006 SND_PCI_QUIRK(0x1043, 0x14e3, "ASUS UL20", ALC269_AMIC
),
15007 SND_PCI_QUIRK(0x1043, 0x1513, "ASUS UX30", ALC269_AMIC
),
15008 SND_PCI_QUIRK(0x1043, 0x1593, "ASUS N51Vn", ALC269_AMIC
),
15009 SND_PCI_QUIRK(0x1043, 0x15a3, "ASUS N60Jv", ALC269_AMIC
),
15010 SND_PCI_QUIRK(0x1043, 0x15b3, "ASUS N60Dp", ALC269_AMIC
),
15011 SND_PCI_QUIRK(0x1043, 0x15c3, "ASUS N70De", ALC269_AMIC
),
15012 SND_PCI_QUIRK(0x1043, 0x15e3, "ASUS F83T", ALC269_AMIC
),
15013 SND_PCI_QUIRK(0x1043, 0x1643, "ASUS M60J", ALC269_AMIC
),
15014 SND_PCI_QUIRK(0x1043, 0x1653, "ASUS U50", ALC269_AMIC
),
15015 SND_PCI_QUIRK(0x1043, 0x1693, "ASUS F50N", ALC269_AMIC
),
15016 SND_PCI_QUIRK(0x1043, 0x16a3, "ASUS F5Q", ALC269_AMIC
),
15017 SND_PCI_QUIRK(0x1043, 0x16e3, "ASUS UX50", ALC269_DMIC
),
15018 SND_PCI_QUIRK(0x1043, 0x1723, "ASUS P80", ALC269_AMIC
),
15019 SND_PCI_QUIRK(0x1043, 0x1743, "ASUS U80", ALC269_AMIC
),
15020 SND_PCI_QUIRK(0x1043, 0x1773, "ASUS U20A", ALC269_AMIC
),
15021 SND_PCI_QUIRK(0x1043, 0x1883, "ASUS F81Se", ALC269_AMIC
),
15022 SND_PCI_QUIRK(0x1043, 0x831a, "ASUS Eeepc P901",
15024 SND_PCI_QUIRK(0x1043, 0x834a, "ASUS Eeepc S101",
15026 SND_PCI_QUIRK(0x1043, 0x8398, "ASUS P1005HA", ALC269_DMIC
),
15027 SND_PCI_QUIRK(0x1043, 0x83ce, "ASUS P1005HA", ALC269_DMIC
),
15028 SND_PCI_QUIRK(0x104d, 0x9071, "Sony VAIO", ALC269_AUTO
),
15029 SND_PCI_QUIRK(0x10cf, 0x1475, "Lifebook ICH9M-based", ALC269_LIFEBOOK
),
15030 SND_PCI_QUIRK(0x152d, 0x1778, "Quanta ON1", ALC269_DMIC
),
15031 SND_PCI_QUIRK(0x1734, 0x115d, "FSC Amilo", ALC269_FUJITSU
),
15032 SND_PCI_QUIRK(0x17aa, 0x3be9, "Quanta Wistron", ALC269_AMIC
),
15033 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_AMIC
),
15034 SND_PCI_QUIRK(0x17ff, 0x059a, "Quanta EL3", ALC269_DMIC
),
15035 SND_PCI_QUIRK(0x17ff, 0x059b, "Quanta JR1", ALC269_DMIC
),
15039 static struct alc_config_preset alc269_presets
[] = {
15041 .mixers
= { alc269_base_mixer
},
15042 .init_verbs
= { alc269_init_verbs
},
15043 .num_dacs
= ARRAY_SIZE(alc269_dac_nids
),
15044 .dac_nids
= alc269_dac_nids
,
15046 .num_channel_mode
= ARRAY_SIZE(alc269_modes
),
15047 .channel_mode
= alc269_modes
,
15048 .input_mux
= &alc269_capture_source
,
15050 [ALC269_QUANTA_FL1
] = {
15051 .mixers
= { alc269_quanta_fl1_mixer
},
15052 .init_verbs
= { alc269_init_verbs
, alc269_quanta_fl1_verbs
},
15053 .num_dacs
= ARRAY_SIZE(alc269_dac_nids
),
15054 .dac_nids
= alc269_dac_nids
,
15056 .num_channel_mode
= ARRAY_SIZE(alc269_modes
),
15057 .channel_mode
= alc269_modes
,
15058 .input_mux
= &alc269_capture_source
,
15059 .unsol_event
= alc269_quanta_fl1_unsol_event
,
15060 .setup
= alc269_quanta_fl1_setup
,
15061 .init_hook
= alc269_quanta_fl1_init_hook
,
15064 .mixers
= { alc269_laptop_mixer
},
15065 .cap_mixer
= alc269_laptop_analog_capture_mixer
,
15066 .init_verbs
= { alc269_init_verbs
,
15067 alc269_laptop_amic_init_verbs
},
15068 .num_dacs
= ARRAY_SIZE(alc269_dac_nids
),
15069 .dac_nids
= alc269_dac_nids
,
15071 .num_channel_mode
= ARRAY_SIZE(alc269_modes
),
15072 .channel_mode
= alc269_modes
,
15073 .unsol_event
= alc269_laptop_unsol_event
,
15074 .setup
= alc269_laptop_amic_setup
,
15075 .init_hook
= alc269_laptop_inithook
,
15078 .mixers
= { alc269_laptop_mixer
},
15079 .cap_mixer
= alc269_laptop_digital_capture_mixer
,
15080 .init_verbs
= { alc269_init_verbs
,
15081 alc269_laptop_dmic_init_verbs
},
15082 .num_dacs
= ARRAY_SIZE(alc269_dac_nids
),
15083 .dac_nids
= alc269_dac_nids
,
15085 .num_channel_mode
= ARRAY_SIZE(alc269_modes
),
15086 .channel_mode
= alc269_modes
,
15087 .unsol_event
= alc269_laptop_unsol_event
,
15088 .setup
= alc269_laptop_dmic_setup
,
15089 .init_hook
= alc269_laptop_inithook
,
15091 [ALC269VB_AMIC
] = {
15092 .mixers
= { alc269vb_laptop_mixer
},
15093 .cap_mixer
= alc269vb_laptop_analog_capture_mixer
,
15094 .init_verbs
= { alc269vb_init_verbs
,
15095 alc269vb_laptop_amic_init_verbs
},
15096 .num_dacs
= ARRAY_SIZE(alc269_dac_nids
),
15097 .dac_nids
= alc269_dac_nids
,
15099 .num_channel_mode
= ARRAY_SIZE(alc269_modes
),
15100 .channel_mode
= alc269_modes
,
15101 .unsol_event
= alc269_laptop_unsol_event
,
15102 .setup
= alc269vb_laptop_amic_setup
,
15103 .init_hook
= alc269_laptop_inithook
,
15105 [ALC269VB_DMIC
] = {
15106 .mixers
= { alc269vb_laptop_mixer
},
15107 .cap_mixer
= alc269vb_laptop_digital_capture_mixer
,
15108 .init_verbs
= { alc269vb_init_verbs
,
15109 alc269vb_laptop_dmic_init_verbs
},
15110 .num_dacs
= ARRAY_SIZE(alc269_dac_nids
),
15111 .dac_nids
= alc269_dac_nids
,
15113 .num_channel_mode
= ARRAY_SIZE(alc269_modes
),
15114 .channel_mode
= alc269_modes
,
15115 .unsol_event
= alc269_laptop_unsol_event
,
15116 .setup
= alc269vb_laptop_dmic_setup
,
15117 .init_hook
= alc269_laptop_inithook
,
15119 [ALC269_FUJITSU
] = {
15120 .mixers
= { alc269_fujitsu_mixer
},
15121 .cap_mixer
= alc269_laptop_digital_capture_mixer
,
15122 .init_verbs
= { alc269_init_verbs
,
15123 alc269_laptop_dmic_init_verbs
},
15124 .num_dacs
= ARRAY_SIZE(alc269_dac_nids
),
15125 .dac_nids
= alc269_dac_nids
,
15127 .num_channel_mode
= ARRAY_SIZE(alc269_modes
),
15128 .channel_mode
= alc269_modes
,
15129 .unsol_event
= alc269_laptop_unsol_event
,
15130 .setup
= alc269_laptop_dmic_setup
,
15131 .init_hook
= alc269_laptop_inithook
,
15133 [ALC269_LIFEBOOK
] = {
15134 .mixers
= { alc269_lifebook_mixer
},
15135 .init_verbs
= { alc269_init_verbs
, alc269_lifebook_verbs
},
15136 .num_dacs
= ARRAY_SIZE(alc269_dac_nids
),
15137 .dac_nids
= alc269_dac_nids
,
15139 .num_channel_mode
= ARRAY_SIZE(alc269_modes
),
15140 .channel_mode
= alc269_modes
,
15141 .input_mux
= &alc269_capture_source
,
15142 .unsol_event
= alc269_lifebook_unsol_event
,
15143 .init_hook
= alc269_lifebook_init_hook
,
15146 .mixers
= { alc269_asus_mixer
},
15147 .cap_mixer
= alc269vb_laptop_digital_capture_mixer
,
15148 .init_verbs
= { alc269_init_verbs
, alc271_acer_dmic_verbs
},
15149 .num_dacs
= ARRAY_SIZE(alc269_dac_nids
),
15150 .dac_nids
= alc269_dac_nids
,
15151 .adc_nids
= alc262_dmic_adc_nids
,
15152 .num_adc_nids
= ARRAY_SIZE(alc262_dmic_adc_nids
),
15153 .capsrc_nids
= alc262_dmic_capsrc_nids
,
15154 .num_channel_mode
= ARRAY_SIZE(alc269_modes
),
15155 .channel_mode
= alc269_modes
,
15156 .input_mux
= &alc269_capture_source
,
15157 .dig_out_nid
= ALC880_DIGOUT_NID
,
15158 .unsol_event
= alc_sku_unsol_event
,
15159 .setup
= alc269vb_laptop_dmic_setup
,
15160 .init_hook
= alc_inithook
,
15164 static int alc269_fill_coef(struct hda_codec
*codec
)
15168 if ((alc_read_coef_idx(codec
, 0) & 0x00ff) < 0x015) {
15169 alc_write_coef_idx(codec
, 0xf, 0x960b);
15170 alc_write_coef_idx(codec
, 0xe, 0x8817);
15173 if ((alc_read_coef_idx(codec
, 0) & 0x00ff) == 0x016) {
15174 alc_write_coef_idx(codec
, 0xf, 0x960b);
15175 alc_write_coef_idx(codec
, 0xe, 0x8814);
15178 if ((alc_read_coef_idx(codec
, 0) & 0x00ff) == 0x017) {
15179 val
= alc_read_coef_idx(codec
, 0x04);
15180 /* Power up output pin */
15181 alc_write_coef_idx(codec
, 0x04, val
| (1<<11));
15184 if ((alc_read_coef_idx(codec
, 0) & 0x00ff) == 0x018) {
15185 val
= alc_read_coef_idx(codec
, 0xd);
15186 if ((val
& 0x0c00) >> 10 != 0x1) {
15187 /* Capless ramp up clock control */
15188 alc_write_coef_idx(codec
, 0xd, val
| 1<<10);
15190 val
= alc_read_coef_idx(codec
, 0x17);
15191 if ((val
& 0x01c0) >> 6 != 0x4) {
15192 /* Class D power on reset */
15193 alc_write_coef_idx(codec
, 0x17, val
| 1<<7);
15199 static int patch_alc269(struct hda_codec
*codec
)
15201 struct alc_spec
*spec
;
15202 int board_config
, coef
;
15205 spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
15209 codec
->spec
= spec
;
15211 alc_auto_parse_customize_define(codec
);
15213 if (codec
->vendor_id
== 0x10ec0269) {
15214 coef
= alc_read_coef_idx(codec
, 0);
15215 if ((coef
& 0x00f0) == 0x0010) {
15216 if (codec
->bus
->pci
->subsystem_vendor
== 0x1025 &&
15217 spec
->cdefine
.platform_type
== 1) {
15218 alc_codec_rename(codec
, "ALC271X");
15219 spec
->codec_variant
= ALC269_TYPE_ALC271X
;
15220 } else if ((coef
& 0xf000) == 0x1000) {
15221 spec
->codec_variant
= ALC269_TYPE_ALC270
;
15222 } else if ((coef
& 0xf000) == 0x2000) {
15223 alc_codec_rename(codec
, "ALC259");
15224 spec
->codec_variant
= ALC269_TYPE_ALC259
;
15225 } else if ((coef
& 0xf000) == 0x3000) {
15226 alc_codec_rename(codec
, "ALC258");
15227 spec
->codec_variant
= ALC269_TYPE_ALC258
;
15229 alc_codec_rename(codec
, "ALC269VB");
15230 spec
->codec_variant
= ALC269_TYPE_ALC269VB
;
15233 alc_fix_pll_init(codec
, 0x20, 0x04, 15);
15234 alc269_fill_coef(codec
);
15237 board_config
= snd_hda_check_board_config(codec
, ALC269_MODEL_LAST
,
15241 if (board_config
< 0) {
15242 printk(KERN_INFO
"hda_codec: %s: BIOS auto-probing.\n",
15244 board_config
= ALC269_AUTO
;
15247 if (board_config
== ALC269_AUTO
) {
15248 alc_pick_fixup(codec
, NULL
, alc269_fixup_tbl
, alc269_fixups
);
15249 alc_apply_fixup(codec
, ALC_FIXUP_ACT_PRE_PROBE
);
15252 if (board_config
== ALC269_AUTO
) {
15253 /* automatic parse from the BIOS config */
15254 err
= alc269_parse_auto_config(codec
);
15260 "hda_codec: Cannot set up configuration "
15261 "from BIOS. Using base mode...\n");
15262 board_config
= ALC269_BASIC
;
15266 if (has_cdefine_beep(codec
)) {
15267 err
= snd_hda_attach_beep_device(codec
, 0x1);
15274 if (board_config
!= ALC269_AUTO
)
15275 setup_preset(codec
, &alc269_presets
[board_config
]);
15277 if (board_config
== ALC269_QUANTA_FL1
) {
15278 /* Due to a hardware problem on Lenovo Ideadpad, we need to
15279 * fix the sample rate of analog I/O to 44.1kHz
15281 spec
->stream_analog_playback
= &alc269_44k_pcm_analog_playback
;
15282 spec
->stream_analog_capture
= &alc269_44k_pcm_analog_capture
;
15283 } else if (spec
->dual_adc_switch
) {
15284 spec
->stream_analog_playback
= &alc269_pcm_analog_playback
;
15285 /* switch ADC dynamically */
15286 spec
->stream_analog_capture
= &dualmic_pcm_analog_capture
;
15288 spec
->stream_analog_playback
= &alc269_pcm_analog_playback
;
15289 spec
->stream_analog_capture
= &alc269_pcm_analog_capture
;
15291 spec
->stream_digital_playback
= &alc269_pcm_digital_playback
;
15292 spec
->stream_digital_capture
= &alc269_pcm_digital_capture
;
15294 if (!spec
->adc_nids
) { /* wasn't filled automatically? use default */
15295 if (spec
->codec_variant
== ALC269_TYPE_NORMAL
) {
15296 spec
->adc_nids
= alc269_adc_nids
;
15297 spec
->num_adc_nids
= ARRAY_SIZE(alc269_adc_nids
);
15298 spec
->capsrc_nids
= alc269_capsrc_nids
;
15300 spec
->adc_nids
= alc269vb_adc_nids
;
15301 spec
->num_adc_nids
= ARRAY_SIZE(alc269vb_adc_nids
);
15302 spec
->capsrc_nids
= alc269vb_capsrc_nids
;
15306 if (!spec
->cap_mixer
)
15307 set_capture_mixer(codec
);
15308 if (has_cdefine_beep(codec
))
15309 set_beep_amp(spec
, 0x0b, 0x04, HDA_INPUT
);
15311 alc_apply_fixup(codec
, ALC_FIXUP_ACT_PROBE
);
15313 spec
->vmaster_nid
= 0x02;
15315 codec
->patch_ops
= alc_patch_ops
;
15316 #ifdef CONFIG_SND_HDA_POWER_SAVE
15317 codec
->patch_ops
.suspend
= alc269_suspend
;
15319 #ifdef SND_HDA_NEEDS_RESUME
15320 codec
->patch_ops
.resume
= alc269_resume
;
15322 if (board_config
== ALC269_AUTO
)
15323 spec
->init_hook
= alc269_auto_init
;
15325 alc_init_jacks(codec
);
15326 #ifdef CONFIG_SND_HDA_POWER_SAVE
15327 if (!spec
->loopback
.amplist
)
15328 spec
->loopback
.amplist
= alc269_loopbacks
;
15329 if (alc269_mic2_for_mute_led(codec
))
15330 codec
->patch_ops
.check_power_status
= alc269_mic2_mute_check_ps
;
15337 * ALC861 channel source setting (2/6 channel selection for 3-stack)
15341 * set the path ways for 2 channel output
15342 * need to set the codec line out and mic 1 pin widgets to inputs
15344 static struct hda_verb alc861_threestack_ch2_init
[] = {
15345 /* set pin widget 1Ah (line in) for input */
15346 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20 },
15347 /* set pin widget 18h (mic1/2) for input, for mic also enable
15350 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24 },
15352 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb00c },
15354 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x01 << 8)) }, /*mic*/
15355 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x02 << 8)) }, /*line-in*/
15361 * need to set the codec line out and mic 1 pin widgets to outputs
15363 static struct hda_verb alc861_threestack_ch6_init
[] = {
15364 /* set pin widget 1Ah (line in) for output (Back Surround)*/
15365 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40 },
15366 /* set pin widget 18h (mic1) for output (CLFE)*/
15367 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40 },
15369 { 0x0c, AC_VERB_SET_CONNECT_SEL
, 0x00 },
15370 { 0x0d, AC_VERB_SET_CONNECT_SEL
, 0x00 },
15372 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb080 },
15374 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x01 << 8)) }, /*mic*/
15375 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x02 << 8)) }, /*line in*/
15380 static struct hda_channel_mode alc861_threestack_modes
[2] = {
15381 { 2, alc861_threestack_ch2_init
},
15382 { 6, alc861_threestack_ch6_init
},
15384 /* Set mic1 as input and unmute the mixer */
15385 static struct hda_verb alc861_uniwill_m31_ch2_init
[] = {
15386 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24 },
15387 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x01 << 8)) }, /*mic*/
15390 /* Set mic1 as output and mute mixer */
15391 static struct hda_verb alc861_uniwill_m31_ch4_init
[] = {
15392 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40 },
15393 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x01 << 8)) }, /*mic*/
15397 static struct hda_channel_mode alc861_uniwill_m31_modes
[2] = {
15398 { 2, alc861_uniwill_m31_ch2_init
},
15399 { 4, alc861_uniwill_m31_ch4_init
},
15402 /* Set mic1 and line-in as input and unmute the mixer */
15403 static struct hda_verb alc861_asus_ch2_init
[] = {
15404 /* set pin widget 1Ah (line in) for input */
15405 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20 },
15406 /* set pin widget 18h (mic1/2) for input, for mic also enable
15409 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24 },
15411 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb00c },
15413 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x01 << 8)) }, /*mic*/
15414 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x02 << 8)) }, /*line-in*/
15418 /* Set mic1 nad line-in as output and mute mixer */
15419 static struct hda_verb alc861_asus_ch6_init
[] = {
15420 /* set pin widget 1Ah (line in) for output (Back Surround)*/
15421 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40 },
15422 /* { 0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE }, */
15423 /* set pin widget 18h (mic1) for output (CLFE)*/
15424 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40 },
15425 /* { 0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE }, */
15426 { 0x0c, AC_VERB_SET_CONNECT_SEL
, 0x00 },
15427 { 0x0d, AC_VERB_SET_CONNECT_SEL
, 0x00 },
15429 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb080 },
15431 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x01 << 8)) }, /*mic*/
15432 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x02 << 8)) }, /*line in*/
15437 static struct hda_channel_mode alc861_asus_modes
[2] = {
15438 { 2, alc861_asus_ch2_init
},
15439 { 6, alc861_asus_ch6_init
},
15444 static struct snd_kcontrol_new alc861_base_mixer
[] = {
15445 /* output mixer control */
15446 HDA_CODEC_MUTE("Front Playback Switch", 0x03, 0x0, HDA_OUTPUT
),
15447 HDA_CODEC_MUTE("Surround Playback Switch", 0x06, 0x0, HDA_OUTPUT
),
15448 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x05, 1, 0x0, HDA_OUTPUT
),
15449 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x05, 2, 0x0, HDA_OUTPUT
),
15450 HDA_CODEC_MUTE("Side Playback Switch", 0x04, 0x0, HDA_OUTPUT
),
15452 /*Input mixer control */
15453 /* HDA_CODEC_VOLUME("Input Playback Volume", 0x15, 0x0, HDA_OUTPUT),
15454 HDA_CODEC_MUTE("Input Playback Switch", 0x15, 0x0, HDA_OUTPUT), */
15455 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT
),
15456 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT
),
15457 HDA_CODEC_VOLUME("Line Playback Volume", 0x15, 0x02, HDA_INPUT
),
15458 HDA_CODEC_MUTE("Line Playback Switch", 0x15, 0x02, HDA_INPUT
),
15459 HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT
),
15460 HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT
),
15461 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x10, 0x01, HDA_OUTPUT
),
15462 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x03, HDA_INPUT
),
15467 static struct snd_kcontrol_new alc861_3ST_mixer
[] = {
15468 /* output mixer control */
15469 HDA_CODEC_MUTE("Front Playback Switch", 0x03, 0x0, HDA_OUTPUT
),
15470 HDA_CODEC_MUTE("Surround Playback Switch", 0x06, 0x0, HDA_OUTPUT
),
15471 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x05, 1, 0x0, HDA_OUTPUT
),
15472 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x05, 2, 0x0, HDA_OUTPUT
),
15473 /*HDA_CODEC_MUTE("Side Playback Switch", 0x04, 0x0, HDA_OUTPUT), */
15475 /* Input mixer control */
15476 /* HDA_CODEC_VOLUME("Input Playback Volume", 0x15, 0x0, HDA_OUTPUT),
15477 HDA_CODEC_MUTE("Input Playback Switch", 0x15, 0x0, HDA_OUTPUT), */
15478 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT
),
15479 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT
),
15480 HDA_CODEC_VOLUME("Line Playback Volume", 0x15, 0x02, HDA_INPUT
),
15481 HDA_CODEC_MUTE("Line Playback Switch", 0x15, 0x02, HDA_INPUT
),
15482 HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT
),
15483 HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT
),
15484 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x10, 0x01, HDA_OUTPUT
),
15485 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x03, HDA_INPUT
),
15488 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
15489 .name
= "Channel Mode",
15490 .info
= alc_ch_mode_info
,
15491 .get
= alc_ch_mode_get
,
15492 .put
= alc_ch_mode_put
,
15493 .private_value
= ARRAY_SIZE(alc861_threestack_modes
),
15498 static struct snd_kcontrol_new alc861_toshiba_mixer
[] = {
15499 /* output mixer control */
15500 HDA_CODEC_MUTE("Master Playback Switch", 0x03, 0x0, HDA_OUTPUT
),
15501 HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT
),
15502 HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT
),
15507 static struct snd_kcontrol_new alc861_uniwill_m31_mixer
[] = {
15508 /* output mixer control */
15509 HDA_CODEC_MUTE("Front Playback Switch", 0x03, 0x0, HDA_OUTPUT
),
15510 HDA_CODEC_MUTE("Surround Playback Switch", 0x06, 0x0, HDA_OUTPUT
),
15511 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x05, 1, 0x0, HDA_OUTPUT
),
15512 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x05, 2, 0x0, HDA_OUTPUT
),
15513 /*HDA_CODEC_MUTE("Side Playback Switch", 0x04, 0x0, HDA_OUTPUT), */
15515 /* Input mixer control */
15516 /* HDA_CODEC_VOLUME("Input Playback Volume", 0x15, 0x0, HDA_OUTPUT),
15517 HDA_CODEC_MUTE("Input Playback Switch", 0x15, 0x0, HDA_OUTPUT), */
15518 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT
),
15519 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT
),
15520 HDA_CODEC_VOLUME("Line Playback Volume", 0x15, 0x02, HDA_INPUT
),
15521 HDA_CODEC_MUTE("Line Playback Switch", 0x15, 0x02, HDA_INPUT
),
15522 HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT
),
15523 HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT
),
15524 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x10, 0x01, HDA_OUTPUT
),
15525 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x03, HDA_INPUT
),
15528 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
15529 .name
= "Channel Mode",
15530 .info
= alc_ch_mode_info
,
15531 .get
= alc_ch_mode_get
,
15532 .put
= alc_ch_mode_put
,
15533 .private_value
= ARRAY_SIZE(alc861_uniwill_m31_modes
),
15538 static struct snd_kcontrol_new alc861_asus_mixer
[] = {
15539 /* output mixer control */
15540 HDA_CODEC_MUTE("Front Playback Switch", 0x03, 0x0, HDA_OUTPUT
),
15541 HDA_CODEC_MUTE("Surround Playback Switch", 0x06, 0x0, HDA_OUTPUT
),
15542 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x05, 1, 0x0, HDA_OUTPUT
),
15543 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x05, 2, 0x0, HDA_OUTPUT
),
15544 HDA_CODEC_MUTE("Side Playback Switch", 0x04, 0x0, HDA_OUTPUT
),
15546 /* Input mixer control */
15547 HDA_CODEC_VOLUME("Input Playback Volume", 0x15, 0x0, HDA_OUTPUT
),
15548 HDA_CODEC_MUTE("Input Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
15549 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT
),
15550 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT
),
15551 HDA_CODEC_VOLUME("Line Playback Volume", 0x15, 0x02, HDA_INPUT
),
15552 HDA_CODEC_MUTE("Line Playback Switch", 0x15, 0x02, HDA_INPUT
),
15553 HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT
),
15554 HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT
),
15555 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x10, 0x01, HDA_OUTPUT
),
15556 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x03, HDA_OUTPUT
),
15559 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
15560 .name
= "Channel Mode",
15561 .info
= alc_ch_mode_info
,
15562 .get
= alc_ch_mode_get
,
15563 .put
= alc_ch_mode_put
,
15564 .private_value
= ARRAY_SIZE(alc861_asus_modes
),
15569 /* additional mixer */
15570 static struct snd_kcontrol_new alc861_asus_laptop_mixer
[] = {
15571 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT
),
15572 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT
),
15577 * generic initialization of ADC, input mixers and output mixers
15579 static struct hda_verb alc861_base_init_verbs
[] = {
15581 * Unmute ADC0 and set the default input to mic-in
15583 /* port-A for surround (rear panel) */
15584 { 0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40 },
15585 { 0x0e, AC_VERB_SET_CONNECT_SEL
, 0x00 },
15586 /* port-B for mic-in (rear panel) with vref */
15587 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24 },
15588 /* port-C for line-in (rear panel) */
15589 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20 },
15590 /* port-D for Front */
15591 { 0x0b, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40 },
15592 { 0x0b, AC_VERB_SET_CONNECT_SEL
, 0x00 },
15593 /* port-E for HP out (front panel) */
15594 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0xc0 },
15595 /* route front PCM to HP */
15596 { 0x0f, AC_VERB_SET_CONNECT_SEL
, 0x00 },
15597 /* port-F for mic-in (front panel) with vref */
15598 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24 },
15599 /* port-G for CLFE (rear panel) */
15600 { 0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40 },
15601 { 0x1f, AC_VERB_SET_CONNECT_SEL
, 0x00 },
15602 /* port-H for side (rear panel) */
15603 { 0x20, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40 },
15604 { 0x20, AC_VERB_SET_CONNECT_SEL
, 0x00 },
15606 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20 },
15607 /* route front mic to ADC1*/
15608 {0x08, AC_VERB_SET_CONNECT_SEL
, 0x00},
15609 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15611 /* Unmute DAC0~3 & spdif out*/
15612 {0x03, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
15613 {0x04, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
15614 {0x05, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
15615 {0x06, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
15616 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
15618 /* Unmute Mixer 14 (mic) 1c (Line in)*/
15619 {0x014, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15620 {0x014, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15621 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15622 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15624 /* Unmute Stereo Mixer 15 */
15625 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15626 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15627 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(2)},
15628 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb00c}, /* Output 0~12 step */
15630 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15631 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15632 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15633 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15634 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15635 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15636 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15637 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15638 /* hp used DAC 3 (Front) */
15639 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(3)},
15640 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(2)},
15645 static struct hda_verb alc861_threestack_init_verbs
[] = {
15647 * Unmute ADC0 and set the default input to mic-in
15649 /* port-A for surround (rear panel) */
15650 { 0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x00 },
15651 /* port-B for mic-in (rear panel) with vref */
15652 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24 },
15653 /* port-C for line-in (rear panel) */
15654 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20 },
15655 /* port-D for Front */
15656 { 0x0b, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40 },
15657 { 0x0b, AC_VERB_SET_CONNECT_SEL
, 0x00 },
15658 /* port-E for HP out (front panel) */
15659 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0xc0 },
15660 /* route front PCM to HP */
15661 { 0x0f, AC_VERB_SET_CONNECT_SEL
, 0x00 },
15662 /* port-F for mic-in (front panel) with vref */
15663 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24 },
15664 /* port-G for CLFE (rear panel) */
15665 { 0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x00 },
15666 /* port-H for side (rear panel) */
15667 { 0x20, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x00 },
15669 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20 },
15670 /* route front mic to ADC1*/
15671 {0x08, AC_VERB_SET_CONNECT_SEL
, 0x00},
15672 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15673 /* Unmute DAC0~3 & spdif out*/
15674 {0x03, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
15675 {0x04, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
15676 {0x05, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
15677 {0x06, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
15678 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
15680 /* Unmute Mixer 14 (mic) 1c (Line in)*/
15681 {0x014, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15682 {0x014, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15683 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15684 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15686 /* Unmute Stereo Mixer 15 */
15687 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15688 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15689 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(2)},
15690 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb00c}, /* Output 0~12 step */
15692 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15693 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15694 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15695 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15696 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15697 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15698 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15699 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15700 /* hp used DAC 3 (Front) */
15701 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(3)},
15702 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(2)},
15706 static struct hda_verb alc861_uniwill_m31_init_verbs
[] = {
15708 * Unmute ADC0 and set the default input to mic-in
15710 /* port-A for surround (rear panel) */
15711 { 0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x00 },
15712 /* port-B for mic-in (rear panel) with vref */
15713 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24 },
15714 /* port-C for line-in (rear panel) */
15715 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20 },
15716 /* port-D for Front */
15717 { 0x0b, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40 },
15718 { 0x0b, AC_VERB_SET_CONNECT_SEL
, 0x00 },
15719 /* port-E for HP out (front panel) */
15720 /* this has to be set to VREF80 */
15721 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24 },
15722 /* route front PCM to HP */
15723 { 0x0f, AC_VERB_SET_CONNECT_SEL
, 0x00 },
15724 /* port-F for mic-in (front panel) with vref */
15725 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24 },
15726 /* port-G for CLFE (rear panel) */
15727 { 0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x00 },
15728 /* port-H for side (rear panel) */
15729 { 0x20, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x00 },
15731 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20 },
15732 /* route front mic to ADC1*/
15733 {0x08, AC_VERB_SET_CONNECT_SEL
, 0x00},
15734 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15735 /* Unmute DAC0~3 & spdif out*/
15736 {0x03, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
15737 {0x04, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
15738 {0x05, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
15739 {0x06, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
15740 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
15742 /* Unmute Mixer 14 (mic) 1c (Line in)*/
15743 {0x014, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15744 {0x014, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15745 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15746 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15748 /* Unmute Stereo Mixer 15 */
15749 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15750 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15751 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(2)},
15752 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb00c}, /* Output 0~12 step */
15754 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15755 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15756 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15757 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15758 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15759 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15760 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15761 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15762 /* hp used DAC 3 (Front) */
15763 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(3)},
15764 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(2)},
15768 static struct hda_verb alc861_asus_init_verbs
[] = {
15770 * Unmute ADC0 and set the default input to mic-in
15772 /* port-A for surround (rear panel)
15773 * according to codec#0 this is the HP jack
15775 { 0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0xc0 }, /* was 0x00 */
15776 /* route front PCM to HP */
15777 { 0x0e, AC_VERB_SET_CONNECT_SEL
, 0x01 },
15778 /* port-B for mic-in (rear panel) with vref */
15779 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24 },
15780 /* port-C for line-in (rear panel) */
15781 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20 },
15782 /* port-D for Front */
15783 { 0x0b, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40 },
15784 { 0x0b, AC_VERB_SET_CONNECT_SEL
, 0x00 },
15785 /* port-E for HP out (front panel) */
15786 /* this has to be set to VREF80 */
15787 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24 },
15788 /* route front PCM to HP */
15789 { 0x0f, AC_VERB_SET_CONNECT_SEL
, 0x00 },
15790 /* port-F for mic-in (front panel) with vref */
15791 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24 },
15792 /* port-G for CLFE (rear panel) */
15793 { 0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40 },
15794 /* port-H for side (rear panel) */
15795 { 0x20, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40 },
15797 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20 },
15798 /* route front mic to ADC1*/
15799 {0x08, AC_VERB_SET_CONNECT_SEL
, 0x00},
15800 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15801 /* Unmute DAC0~3 & spdif out*/
15802 {0x03, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
15803 {0x04, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
15804 {0x05, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
15805 {0x06, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
15806 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
15807 /* Unmute Mixer 14 (mic) 1c (Line in)*/
15808 {0x014, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15809 {0x014, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15810 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15811 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15813 /* Unmute Stereo Mixer 15 */
15814 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15815 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15816 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(2)},
15817 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb00c}, /* Output 0~12 step */
15819 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15820 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15821 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15822 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15823 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15824 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15825 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15826 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15827 /* hp used DAC 3 (Front) */
15828 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(3)},
15829 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(2)},
15833 /* additional init verbs for ASUS laptops */
15834 static struct hda_verb alc861_asus_laptop_init_verbs
[] = {
15835 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x45 }, /* HP-out */
15836 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2) }, /* mute line-in */
15841 * generic initialization of ADC, input mixers and output mixers
15843 static struct hda_verb alc861_auto_init_verbs
[] = {
15845 * Unmute ADC0 and set the default input to mic-in
15847 /* {0x08, AC_VERB_SET_CONNECT_SEL, 0x00}, */
15848 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15850 /* Unmute DAC0~3 & spdif out*/
15851 {0x03, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
15852 {0x04, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
15853 {0x05, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
15854 {0x06, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
15855 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
15857 /* Unmute Mixer 14 (mic) 1c (Line in)*/
15858 {0x014, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15859 {0x014, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15860 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15861 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15863 /* Unmute Stereo Mixer 15 */
15864 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15865 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15866 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(2)},
15867 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb00c},
15869 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
15870 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
15871 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
15872 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
15873 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
15874 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
15875 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
15876 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
15878 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
15879 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
15880 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
15881 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
15882 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
15883 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
15884 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
15885 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
15887 {0x08, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* set Mic 1 */
15892 static struct hda_verb alc861_toshiba_init_verbs
[] = {
15893 {0x0f, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
15898 /* toggle speaker-output according to the hp-jack state */
15899 static void alc861_toshiba_automute(struct hda_codec
*codec
)
15901 unsigned int present
= snd_hda_jack_detect(codec
, 0x0f);
15903 snd_hda_codec_amp_stereo(codec
, 0x16, HDA_INPUT
, 0,
15904 HDA_AMP_MUTE
, present
? HDA_AMP_MUTE
: 0);
15905 snd_hda_codec_amp_stereo(codec
, 0x1a, HDA_INPUT
, 3,
15906 HDA_AMP_MUTE
, present
? 0 : HDA_AMP_MUTE
);
15909 static void alc861_toshiba_unsol_event(struct hda_codec
*codec
,
15912 if ((res
>> 26) == ALC880_HP_EVENT
)
15913 alc861_toshiba_automute(codec
);
15916 /* pcm configuration: identical with ALC880 */
15917 #define alc861_pcm_analog_playback alc880_pcm_analog_playback
15918 #define alc861_pcm_analog_capture alc880_pcm_analog_capture
15919 #define alc861_pcm_digital_playback alc880_pcm_digital_playback
15920 #define alc861_pcm_digital_capture alc880_pcm_digital_capture
15923 #define ALC861_DIGOUT_NID 0x07
15925 static struct hda_channel_mode alc861_8ch_modes
[1] = {
15929 static hda_nid_t alc861_dac_nids
[4] = {
15930 /* front, surround, clfe, side */
15931 0x03, 0x06, 0x05, 0x04
15934 static hda_nid_t alc660_dac_nids
[3] = {
15935 /* front, clfe, surround */
15939 static hda_nid_t alc861_adc_nids
[1] = {
15944 static struct hda_input_mux alc861_capture_source
= {
15948 { "Front Mic", 0x3 },
15955 static hda_nid_t
alc861_look_for_dac(struct hda_codec
*codec
, hda_nid_t pin
)
15957 struct alc_spec
*spec
= codec
->spec
;
15958 hda_nid_t mix
, srcs
[5];
15961 if (snd_hda_get_connections(codec
, pin
, &mix
, 1) != 1)
15963 num
= snd_hda_get_connections(codec
, mix
, srcs
, ARRAY_SIZE(srcs
));
15966 for (i
= 0; i
< num
; i
++) {
15968 type
= get_wcaps_type(get_wcaps(codec
, srcs
[i
]));
15969 if (type
!= AC_WID_AUD_OUT
)
15971 for (j
= 0; j
< spec
->multiout
.num_dacs
; j
++)
15972 if (spec
->multiout
.dac_nids
[j
] == srcs
[i
])
15974 if (j
>= spec
->multiout
.num_dacs
)
15980 /* fill in the dac_nids table from the parsed pin configuration */
15981 static int alc861_auto_fill_dac_nids(struct hda_codec
*codec
,
15982 const struct auto_pin_cfg
*cfg
)
15984 struct alc_spec
*spec
= codec
->spec
;
15986 hda_nid_t nid
, dac
;
15988 spec
->multiout
.dac_nids
= spec
->private_dac_nids
;
15989 for (i
= 0; i
< cfg
->line_outs
; i
++) {
15990 nid
= cfg
->line_out_pins
[i
];
15991 dac
= alc861_look_for_dac(codec
, nid
);
15994 spec
->multiout
.dac_nids
[spec
->multiout
.num_dacs
++] = dac
;
15999 static int __alc861_create_out_sw(struct hda_codec
*codec
, const char *pfx
,
16000 hda_nid_t nid
, int idx
, unsigned int chs
)
16002 return __add_pb_sw_ctrl(codec
->spec
, ALC_CTL_WIDGET_MUTE
, pfx
, idx
,
16003 HDA_COMPOSE_AMP_VAL(nid
, chs
, 0, HDA_OUTPUT
));
16006 #define alc861_create_out_sw(codec, pfx, nid, chs) \
16007 __alc861_create_out_sw(codec, pfx, nid, 0, chs)
16009 /* add playback controls from the parsed DAC table */
16010 static int alc861_auto_create_multi_out_ctls(struct hda_codec
*codec
,
16011 const struct auto_pin_cfg
*cfg
)
16013 struct alc_spec
*spec
= codec
->spec
;
16014 static const char * const chname
[4] = {
16015 "Front", "Surround", NULL
/*CLFE*/, "Side"
16017 const char *pfx
= alc_get_line_out_pfx(cfg
, true);
16021 for (i
= 0; i
< cfg
->line_outs
; i
++) {
16022 nid
= spec
->multiout
.dac_nids
[i
];
16025 if (!pfx
&& i
== 2) {
16027 err
= alc861_create_out_sw(codec
, "Center", nid
, 1);
16030 err
= alc861_create_out_sw(codec
, "LFE", nid
, 2);
16034 const char *name
= pfx
;
16040 err
= __alc861_create_out_sw(codec
, name
, nid
, index
, 3);
16048 static int alc861_auto_create_hp_ctls(struct hda_codec
*codec
, hda_nid_t pin
)
16050 struct alc_spec
*spec
= codec
->spec
;
16057 if ((pin
>= 0x0b && pin
<= 0x10) || pin
== 0x1f || pin
== 0x20) {
16058 nid
= alc861_look_for_dac(codec
, pin
);
16060 err
= alc861_create_out_sw(codec
, "Headphone", nid
, 3);
16063 spec
->multiout
.hp_nid
= nid
;
16069 /* create playback/capture controls for input pins */
16070 static int alc861_auto_create_input_ctls(struct hda_codec
*codec
,
16071 const struct auto_pin_cfg
*cfg
)
16073 return alc_auto_create_input_ctls(codec
, cfg
, 0x15, 0x08, 0);
16076 static void alc861_auto_set_output_and_unmute(struct hda_codec
*codec
,
16078 int pin_type
, hda_nid_t dac
)
16080 hda_nid_t mix
, srcs
[5];
16083 snd_hda_codec_write(codec
, nid
, 0, AC_VERB_SET_PIN_WIDGET_CONTROL
,
16085 snd_hda_codec_write(codec
, dac
, 0, AC_VERB_SET_AMP_GAIN_MUTE
,
16087 if (snd_hda_get_connections(codec
, nid
, &mix
, 1) != 1)
16089 num
= snd_hda_get_connections(codec
, mix
, srcs
, ARRAY_SIZE(srcs
));
16092 for (i
= 0; i
< num
; i
++) {
16094 if (srcs
[i
] == dac
|| srcs
[i
] == 0x15)
16095 mute
= AMP_IN_UNMUTE(i
);
16097 mute
= AMP_IN_MUTE(i
);
16098 snd_hda_codec_write(codec
, mix
, 0, AC_VERB_SET_AMP_GAIN_MUTE
,
16103 static void alc861_auto_init_multi_out(struct hda_codec
*codec
)
16105 struct alc_spec
*spec
= codec
->spec
;
16108 for (i
= 0; i
< spec
->autocfg
.line_outs
; i
++) {
16109 hda_nid_t nid
= spec
->autocfg
.line_out_pins
[i
];
16110 int pin_type
= get_pin_type(spec
->autocfg
.line_out_type
);
16112 alc861_auto_set_output_and_unmute(codec
, nid
, pin_type
,
16113 spec
->multiout
.dac_nids
[i
]);
16117 static void alc861_auto_init_hp_out(struct hda_codec
*codec
)
16119 struct alc_spec
*spec
= codec
->spec
;
16121 if (spec
->autocfg
.hp_outs
)
16122 alc861_auto_set_output_and_unmute(codec
,
16123 spec
->autocfg
.hp_pins
[0],
16125 spec
->multiout
.hp_nid
);
16126 if (spec
->autocfg
.speaker_outs
)
16127 alc861_auto_set_output_and_unmute(codec
,
16128 spec
->autocfg
.speaker_pins
[0],
16130 spec
->multiout
.dac_nids
[0]);
16133 static void alc861_auto_init_analog_input(struct hda_codec
*codec
)
16135 struct alc_spec
*spec
= codec
->spec
;
16136 struct auto_pin_cfg
*cfg
= &spec
->autocfg
;
16139 for (i
= 0; i
< cfg
->num_inputs
; i
++) {
16140 hda_nid_t nid
= cfg
->inputs
[i
].pin
;
16141 if (nid
>= 0x0c && nid
<= 0x11)
16142 alc_set_input_pin(codec
, nid
, cfg
->inputs
[i
].type
);
16146 /* parse the BIOS configuration and set up the alc_spec */
16147 /* return 1 if successful, 0 if the proper config is not found,
16148 * or a negative error code
16150 static int alc861_parse_auto_config(struct hda_codec
*codec
)
16152 struct alc_spec
*spec
= codec
->spec
;
16154 static hda_nid_t alc861_ignore
[] = { 0x1d, 0 };
16156 err
= snd_hda_parse_pin_def_config(codec
, &spec
->autocfg
,
16160 if (!spec
->autocfg
.line_outs
)
16161 return 0; /* can't find valid BIOS pin config */
16163 err
= alc861_auto_fill_dac_nids(codec
, &spec
->autocfg
);
16166 err
= alc861_auto_create_multi_out_ctls(codec
, &spec
->autocfg
);
16169 err
= alc861_auto_create_hp_ctls(codec
, spec
->autocfg
.hp_pins
[0]);
16172 err
= alc861_auto_create_input_ctls(codec
, &spec
->autocfg
);
16176 spec
->multiout
.max_channels
= spec
->multiout
.num_dacs
* 2;
16178 alc_auto_parse_digital(codec
);
16180 if (spec
->kctls
.list
)
16181 add_mixer(spec
, spec
->kctls
.list
);
16183 add_verb(spec
, alc861_auto_init_verbs
);
16185 spec
->num_mux_defs
= 1;
16186 spec
->input_mux
= &spec
->private_imux
[0];
16188 spec
->adc_nids
= alc861_adc_nids
;
16189 spec
->num_adc_nids
= ARRAY_SIZE(alc861_adc_nids
);
16190 set_capture_mixer(codec
);
16192 alc_ssid_check(codec
, 0x0e, 0x0f, 0x0b, 0);
16197 /* additional initialization for auto-configuration model */
16198 static void alc861_auto_init(struct hda_codec
*codec
)
16200 struct alc_spec
*spec
= codec
->spec
;
16201 alc861_auto_init_multi_out(codec
);
16202 alc861_auto_init_hp_out(codec
);
16203 alc861_auto_init_analog_input(codec
);
16204 alc_auto_init_digital(codec
);
16205 if (spec
->unsol_event
)
16206 alc_inithook(codec
);
16209 #ifdef CONFIG_SND_HDA_POWER_SAVE
16210 static struct hda_amp_list alc861_loopbacks
[] = {
16211 { 0x15, HDA_INPUT
, 0 },
16212 { 0x15, HDA_INPUT
, 1 },
16213 { 0x15, HDA_INPUT
, 2 },
16214 { 0x15, HDA_INPUT
, 3 },
16221 * configuration and preset
16223 static const char * const alc861_models
[ALC861_MODEL_LAST
] = {
16224 [ALC861_3ST
] = "3stack",
16225 [ALC660_3ST
] = "3stack-660",
16226 [ALC861_3ST_DIG
] = "3stack-dig",
16227 [ALC861_6ST_DIG
] = "6stack-dig",
16228 [ALC861_UNIWILL_M31
] = "uniwill-m31",
16229 [ALC861_TOSHIBA
] = "toshiba",
16230 [ALC861_ASUS
] = "asus",
16231 [ALC861_ASUS_LAPTOP
] = "asus-laptop",
16232 [ALC861_AUTO
] = "auto",
16235 static struct snd_pci_quirk alc861_cfg_tbl
[] = {
16236 SND_PCI_QUIRK(0x1043, 0x1205, "ASUS W7J", ALC861_3ST
),
16237 SND_PCI_QUIRK(0x1043, 0x1335, "ASUS F2/3", ALC861_ASUS_LAPTOP
),
16238 SND_PCI_QUIRK(0x1043, 0x1338, "ASUS F2/3", ALC861_ASUS_LAPTOP
),
16239 SND_PCI_QUIRK(0x1043, 0x1393, "ASUS", ALC861_ASUS
),
16240 SND_PCI_QUIRK(0x1043, 0x13d7, "ASUS A9rp", ALC861_ASUS_LAPTOP
),
16241 SND_PCI_QUIRK(0x1043, 0x81cb, "ASUS P1-AH2", ALC861_3ST_DIG
),
16242 SND_PCI_QUIRK(0x1179, 0xff00, "Toshiba", ALC861_TOSHIBA
),
16243 /* FIXME: the entry below breaks Toshiba A100 (model=auto works!)
16244 * Any other models that need this preset?
16246 /* SND_PCI_QUIRK(0x1179, 0xff10, "Toshiba", ALC861_TOSHIBA), */
16247 SND_PCI_QUIRK(0x1462, 0x7254, "HP dx2200 (MSI MS-7254)", ALC861_3ST
),
16248 SND_PCI_QUIRK(0x1462, 0x7297, "HP dx2250 (MSI MS-7297)", ALC861_3ST
),
16249 SND_PCI_QUIRK(0x1584, 0x2b01, "Uniwill X40AIx", ALC861_UNIWILL_M31
),
16250 SND_PCI_QUIRK(0x1584, 0x9072, "Uniwill m31", ALC861_UNIWILL_M31
),
16251 SND_PCI_QUIRK(0x1584, 0x9075, "Airis Praxis N1212", ALC861_ASUS_LAPTOP
),
16252 /* FIXME: the below seems conflict */
16253 /* SND_PCI_QUIRK(0x1584, 0x9075, "Uniwill", ALC861_UNIWILL_M31), */
16254 SND_PCI_QUIRK(0x1849, 0x0660, "Asrock 939SLI32", ALC660_3ST
),
16255 SND_PCI_QUIRK(0x8086, 0xd600, "Intel", ALC861_3ST
),
16259 static struct alc_config_preset alc861_presets
[] = {
16261 .mixers
= { alc861_3ST_mixer
},
16262 .init_verbs
= { alc861_threestack_init_verbs
},
16263 .num_dacs
= ARRAY_SIZE(alc861_dac_nids
),
16264 .dac_nids
= alc861_dac_nids
,
16265 .num_channel_mode
= ARRAY_SIZE(alc861_threestack_modes
),
16266 .channel_mode
= alc861_threestack_modes
,
16268 .num_adc_nids
= ARRAY_SIZE(alc861_adc_nids
),
16269 .adc_nids
= alc861_adc_nids
,
16270 .input_mux
= &alc861_capture_source
,
16272 [ALC861_3ST_DIG
] = {
16273 .mixers
= { alc861_base_mixer
},
16274 .init_verbs
= { alc861_threestack_init_verbs
},
16275 .num_dacs
= ARRAY_SIZE(alc861_dac_nids
),
16276 .dac_nids
= alc861_dac_nids
,
16277 .dig_out_nid
= ALC861_DIGOUT_NID
,
16278 .num_channel_mode
= ARRAY_SIZE(alc861_threestack_modes
),
16279 .channel_mode
= alc861_threestack_modes
,
16281 .num_adc_nids
= ARRAY_SIZE(alc861_adc_nids
),
16282 .adc_nids
= alc861_adc_nids
,
16283 .input_mux
= &alc861_capture_source
,
16285 [ALC861_6ST_DIG
] = {
16286 .mixers
= { alc861_base_mixer
},
16287 .init_verbs
= { alc861_base_init_verbs
},
16288 .num_dacs
= ARRAY_SIZE(alc861_dac_nids
),
16289 .dac_nids
= alc861_dac_nids
,
16290 .dig_out_nid
= ALC861_DIGOUT_NID
,
16291 .num_channel_mode
= ARRAY_SIZE(alc861_8ch_modes
),
16292 .channel_mode
= alc861_8ch_modes
,
16293 .num_adc_nids
= ARRAY_SIZE(alc861_adc_nids
),
16294 .adc_nids
= alc861_adc_nids
,
16295 .input_mux
= &alc861_capture_source
,
16298 .mixers
= { alc861_3ST_mixer
},
16299 .init_verbs
= { alc861_threestack_init_verbs
},
16300 .num_dacs
= ARRAY_SIZE(alc660_dac_nids
),
16301 .dac_nids
= alc660_dac_nids
,
16302 .num_channel_mode
= ARRAY_SIZE(alc861_threestack_modes
),
16303 .channel_mode
= alc861_threestack_modes
,
16305 .num_adc_nids
= ARRAY_SIZE(alc861_adc_nids
),
16306 .adc_nids
= alc861_adc_nids
,
16307 .input_mux
= &alc861_capture_source
,
16309 [ALC861_UNIWILL_M31
] = {
16310 .mixers
= { alc861_uniwill_m31_mixer
},
16311 .init_verbs
= { alc861_uniwill_m31_init_verbs
},
16312 .num_dacs
= ARRAY_SIZE(alc861_dac_nids
),
16313 .dac_nids
= alc861_dac_nids
,
16314 .dig_out_nid
= ALC861_DIGOUT_NID
,
16315 .num_channel_mode
= ARRAY_SIZE(alc861_uniwill_m31_modes
),
16316 .channel_mode
= alc861_uniwill_m31_modes
,
16318 .num_adc_nids
= ARRAY_SIZE(alc861_adc_nids
),
16319 .adc_nids
= alc861_adc_nids
,
16320 .input_mux
= &alc861_capture_source
,
16322 [ALC861_TOSHIBA
] = {
16323 .mixers
= { alc861_toshiba_mixer
},
16324 .init_verbs
= { alc861_base_init_verbs
,
16325 alc861_toshiba_init_verbs
},
16326 .num_dacs
= ARRAY_SIZE(alc861_dac_nids
),
16327 .dac_nids
= alc861_dac_nids
,
16328 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_2ch_modes
),
16329 .channel_mode
= alc883_3ST_2ch_modes
,
16330 .num_adc_nids
= ARRAY_SIZE(alc861_adc_nids
),
16331 .adc_nids
= alc861_adc_nids
,
16332 .input_mux
= &alc861_capture_source
,
16333 .unsol_event
= alc861_toshiba_unsol_event
,
16334 .init_hook
= alc861_toshiba_automute
,
16337 .mixers
= { alc861_asus_mixer
},
16338 .init_verbs
= { alc861_asus_init_verbs
},
16339 .num_dacs
= ARRAY_SIZE(alc861_dac_nids
),
16340 .dac_nids
= alc861_dac_nids
,
16341 .dig_out_nid
= ALC861_DIGOUT_NID
,
16342 .num_channel_mode
= ARRAY_SIZE(alc861_asus_modes
),
16343 .channel_mode
= alc861_asus_modes
,
16346 .num_adc_nids
= ARRAY_SIZE(alc861_adc_nids
),
16347 .adc_nids
= alc861_adc_nids
,
16348 .input_mux
= &alc861_capture_source
,
16350 [ALC861_ASUS_LAPTOP
] = {
16351 .mixers
= { alc861_toshiba_mixer
, alc861_asus_laptop_mixer
},
16352 .init_verbs
= { alc861_asus_init_verbs
,
16353 alc861_asus_laptop_init_verbs
},
16354 .num_dacs
= ARRAY_SIZE(alc861_dac_nids
),
16355 .dac_nids
= alc861_dac_nids
,
16356 .dig_out_nid
= ALC861_DIGOUT_NID
,
16357 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_2ch_modes
),
16358 .channel_mode
= alc883_3ST_2ch_modes
,
16360 .num_adc_nids
= ARRAY_SIZE(alc861_adc_nids
),
16361 .adc_nids
= alc861_adc_nids
,
16362 .input_mux
= &alc861_capture_source
,
16366 /* Pin config fixes */
16368 PINFIX_FSC_AMILO_PI1505
,
16371 static const struct alc_fixup alc861_fixups
[] = {
16372 [PINFIX_FSC_AMILO_PI1505
] = {
16373 .type
= ALC_FIXUP_PINS
,
16374 .v
.pins
= (const struct alc_pincfg
[]) {
16375 { 0x0b, 0x0221101f }, /* HP */
16376 { 0x0f, 0x90170310 }, /* speaker */
16382 static struct snd_pci_quirk alc861_fixup_tbl
[] = {
16383 SND_PCI_QUIRK(0x1734, 0x10c7, "FSC Amilo Pi1505", PINFIX_FSC_AMILO_PI1505
),
16387 static int patch_alc861(struct hda_codec
*codec
)
16389 struct alc_spec
*spec
;
16393 spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
16397 codec
->spec
= spec
;
16399 board_config
= snd_hda_check_board_config(codec
, ALC861_MODEL_LAST
,
16403 if (board_config
< 0) {
16404 printk(KERN_INFO
"hda_codec: %s: BIOS auto-probing.\n",
16406 board_config
= ALC861_AUTO
;
16409 if (board_config
== ALC861_AUTO
) {
16410 alc_pick_fixup(codec
, NULL
, alc861_fixup_tbl
, alc861_fixups
);
16411 alc_apply_fixup(codec
, ALC_FIXUP_ACT_PRE_PROBE
);
16414 if (board_config
== ALC861_AUTO
) {
16415 /* automatic parse from the BIOS config */
16416 err
= alc861_parse_auto_config(codec
);
16422 "hda_codec: Cannot set up configuration "
16423 "from BIOS. Using base mode...\n");
16424 board_config
= ALC861_3ST_DIG
;
16428 err
= snd_hda_attach_beep_device(codec
, 0x23);
16434 if (board_config
!= ALC861_AUTO
)
16435 setup_preset(codec
, &alc861_presets
[board_config
]);
16437 spec
->stream_analog_playback
= &alc861_pcm_analog_playback
;
16438 spec
->stream_analog_capture
= &alc861_pcm_analog_capture
;
16440 spec
->stream_digital_playback
= &alc861_pcm_digital_playback
;
16441 spec
->stream_digital_capture
= &alc861_pcm_digital_capture
;
16443 if (!spec
->cap_mixer
)
16444 set_capture_mixer(codec
);
16445 set_beep_amp(spec
, 0x23, 0, HDA_OUTPUT
);
16447 spec
->vmaster_nid
= 0x03;
16449 alc_apply_fixup(codec
, ALC_FIXUP_ACT_PROBE
);
16451 codec
->patch_ops
= alc_patch_ops
;
16452 if (board_config
== ALC861_AUTO
) {
16453 spec
->init_hook
= alc861_auto_init
;
16454 #ifdef CONFIG_SND_HDA_POWER_SAVE
16455 spec
->power_hook
= alc_power_eapd
;
16458 #ifdef CONFIG_SND_HDA_POWER_SAVE
16459 if (!spec
->loopback
.amplist
)
16460 spec
->loopback
.amplist
= alc861_loopbacks
;
16467 * ALC861-VD support
16471 * In addition, an independent DAC
16473 #define ALC861VD_DIGOUT_NID 0x06
16475 static hda_nid_t alc861vd_dac_nids
[4] = {
16476 /* front, surr, clfe, side surr */
16477 0x02, 0x03, 0x04, 0x05
16480 /* dac_nids for ALC660vd are in a different order - according to
16481 * Realtek's driver.
16482 * This should probably result in a different mixer for 6stack models
16483 * of ALC660vd codecs, but for now there is only 3stack mixer
16484 * - and it is the same as in 861vd.
16485 * adc_nids in ALC660vd are (is) the same as in 861vd
16487 static hda_nid_t alc660vd_dac_nids
[3] = {
16488 /* front, rear, clfe, rear_surr */
16492 static hda_nid_t alc861vd_adc_nids
[1] = {
16497 static hda_nid_t alc861vd_capsrc_nids
[1] = { 0x22 };
16500 /* FIXME: should be a matrix-type input source selection */
16501 static struct hda_input_mux alc861vd_capture_source
= {
16505 { "Front Mic", 0x1 },
16511 static struct hda_input_mux alc861vd_dallas_capture_source
= {
16515 { "Internal Mic", 0x1 },
16519 static struct hda_input_mux alc861vd_hp_capture_source
= {
16522 { "Front Mic", 0x0 },
16523 { "ATAPI Mic", 0x1 },
16530 static struct hda_channel_mode alc861vd_3stack_2ch_modes
[1] = {
16537 static struct hda_verb alc861vd_6stack_ch6_init
[] = {
16538 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x00 },
16539 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
16540 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
16541 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
16548 static struct hda_verb alc861vd_6stack_ch8_init
[] = {
16549 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
16550 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
16551 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
16552 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
16556 static struct hda_channel_mode alc861vd_6stack_modes
[2] = {
16557 { 6, alc861vd_6stack_ch6_init
},
16558 { 8, alc861vd_6stack_ch8_init
},
16561 static struct snd_kcontrol_new alc861vd_chmode_mixer
[] = {
16563 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
16564 .name
= "Channel Mode",
16565 .info
= alc_ch_mode_info
,
16566 .get
= alc_ch_mode_get
,
16567 .put
= alc_ch_mode_put
,
16572 /* Pin assignment: Front=0x14, Rear=0x15, CLFE=0x16, Side=0x17
16573 * Mic=0x18, Front Mic=0x19, Line-In=0x1a, HP=0x1b
16575 static struct snd_kcontrol_new alc861vd_6st_mixer
[] = {
16576 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
16577 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
16579 HDA_CODEC_VOLUME("Surround Playback Volume", 0x03, 0x0, HDA_OUTPUT
),
16580 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT
),
16582 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x04, 1, 0x0,
16584 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x04, 2, 0x0,
16586 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT
),
16587 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT
),
16589 HDA_CODEC_VOLUME("Side Playback Volume", 0x05, 0x0, HDA_OUTPUT
),
16590 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT
),
16592 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
16594 HDA_CODEC_VOLUME("Mic Boost Volume", 0x18, 0, HDA_INPUT
),
16595 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
16596 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
16598 HDA_CODEC_VOLUME("Front Mic Boost Volume", 0x19, 0, HDA_INPUT
),
16599 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
16600 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
16602 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
16603 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
16605 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
16606 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
16611 static struct snd_kcontrol_new alc861vd_3st_mixer
[] = {
16612 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
16613 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
16615 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
16617 HDA_CODEC_VOLUME("Mic Boost Volume", 0x18, 0, HDA_INPUT
),
16618 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
16619 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
16621 HDA_CODEC_VOLUME("Front Mic Boost Volume", 0x19, 0, HDA_INPUT
),
16622 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
16623 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
16625 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
16626 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
16628 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
16629 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
16634 static struct snd_kcontrol_new alc861vd_lenovo_mixer
[] = {
16635 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
16636 /*HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),*/
16637 HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
16639 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
16641 HDA_CODEC_VOLUME("Mic Boost Volume", 0x18, 0, HDA_INPUT
),
16642 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
16643 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
16645 HDA_CODEC_VOLUME("Front Mic Boost Volume", 0x19, 0, HDA_INPUT
),
16646 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
16647 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
16649 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
16650 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
16655 /* Pin assignment: Speaker=0x14, HP = 0x15,
16656 * Mic=0x18, Internal Mic = 0x19, CD = 0x1c, PC Beep = 0x1d
16658 static struct snd_kcontrol_new alc861vd_dallas_mixer
[] = {
16659 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
16660 HDA_BIND_MUTE("Speaker Playback Switch", 0x0c, 2, HDA_INPUT
),
16661 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x03, 0x0, HDA_OUTPUT
),
16662 HDA_BIND_MUTE("Headphone Playback Switch", 0x0d, 2, HDA_INPUT
),
16663 HDA_CODEC_VOLUME("Mic Boost Volume", 0x18, 0, HDA_INPUT
),
16664 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
16665 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
16666 HDA_CODEC_VOLUME("Internal Mic Boost Volume", 0x19, 0, HDA_INPUT
),
16667 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
16668 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
16672 /* Pin assignment: Speaker=0x14, Line-out = 0x15,
16673 * Front Mic=0x18, ATAPI Mic = 0x19,
16675 static struct snd_kcontrol_new alc861vd_hp_mixer
[] = {
16676 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
16677 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
16678 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x03, 0x0, HDA_OUTPUT
),
16679 HDA_BIND_MUTE("Headphone Playback Switch", 0x0d, 2, HDA_INPUT
),
16680 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
16681 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
16682 HDA_CODEC_VOLUME("ATAPI Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
16683 HDA_CODEC_MUTE("ATAPI Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
16689 * generic initialization of ADC, input mixers and output mixers
16691 static struct hda_verb alc861vd_volume_init_verbs
[] = {
16693 * Unmute ADC0 and set the default input to mic-in
16695 {0x09, AC_VERB_SET_CONNECT_SEL
, 0x00},
16696 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
16698 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of
16699 * the analog-loopback mixer widget
16701 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
16702 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
16703 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
16704 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
16705 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
16706 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
16708 /* Capture mixer: unmute Mic, F-Mic, Line, CD inputs */
16709 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
16710 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
16711 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(2)},
16712 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(4)},
16715 * Set up output mixers (0x02 - 0x05)
16717 /* set vol=0 to output mixers */
16718 {0x02, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
16719 {0x03, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
16720 {0x04, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
16721 {0x05, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
16723 /* set up input amps for analog loopback */
16724 /* Amp Indices: DAC = 0, mixer = 1 */
16725 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
16726 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
16727 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
16728 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
16729 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
16730 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
16731 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
16732 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
16738 * 3-stack pin configuration:
16739 * front = 0x14, mic/clfe = 0x18, HP = 0x19, line/surr = 0x1a, f-mic = 0x1b
16741 static struct hda_verb alc861vd_3stack_init_verbs
[] = {
16743 * Set pin mode and muting
16745 /* set front pin widgets 0x14 for output */
16746 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
16747 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
16748 {0x14, AC_VERB_SET_CONNECT_SEL
, 0x00},
16750 /* Mic (rear) pin: input vref at 80% */
16751 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
16752 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
16753 /* Front Mic pin: input vref at 80% */
16754 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
16755 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
16756 /* Line In pin: input */
16757 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
16758 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
16759 /* Line-2 In: Headphone output (output 0 - 0x0c) */
16760 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
16761 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
16762 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0x00},
16763 /* CD pin widget for input */
16764 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
16770 * 6-stack pin configuration:
16772 static struct hda_verb alc861vd_6stack_init_verbs
[] = {
16774 * Set pin mode and muting
16776 /* set front pin widgets 0x14 for output */
16777 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
16778 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
16779 {0x14, AC_VERB_SET_CONNECT_SEL
, 0x00},
16781 /* Rear Pin: output 1 (0x0d) */
16782 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
16783 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
16784 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x01},
16785 /* CLFE Pin: output 2 (0x0e) */
16786 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
16787 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
16788 {0x16, AC_VERB_SET_CONNECT_SEL
, 0x02},
16789 /* Side Pin: output 3 (0x0f) */
16790 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
16791 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
16792 {0x17, AC_VERB_SET_CONNECT_SEL
, 0x03},
16794 /* Mic (rear) pin: input vref at 80% */
16795 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
16796 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
16797 /* Front Mic pin: input vref at 80% */
16798 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
16799 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
16800 /* Line In pin: input */
16801 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
16802 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
16803 /* Line-2 In: Headphone output (output 0 - 0x0c) */
16804 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
16805 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
16806 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0x00},
16807 /* CD pin widget for input */
16808 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
16813 static struct hda_verb alc861vd_eapd_verbs
[] = {
16814 {0x14, AC_VERB_SET_EAPD_BTLENABLE
, 2},
16818 static struct hda_verb alc660vd_eapd_verbs
[] = {
16819 {0x14, AC_VERB_SET_EAPD_BTLENABLE
, 2},
16820 {0x15, AC_VERB_SET_EAPD_BTLENABLE
, 2},
16824 static struct hda_verb alc861vd_lenovo_unsol_verbs
[] = {
16825 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
16826 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
16827 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(5)},
16828 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
16829 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
16833 static void alc861vd_lenovo_setup(struct hda_codec
*codec
)
16835 struct alc_spec
*spec
= codec
->spec
;
16836 spec
->autocfg
.hp_pins
[0] = 0x1b;
16837 spec
->autocfg
.speaker_pins
[0] = 0x14;
16840 static void alc861vd_lenovo_init_hook(struct hda_codec
*codec
)
16842 alc_automute_amp(codec
);
16843 alc88x_simple_mic_automute(codec
);
16846 static void alc861vd_lenovo_unsol_event(struct hda_codec
*codec
,
16849 switch (res
>> 26) {
16850 case ALC880_MIC_EVENT
:
16851 alc88x_simple_mic_automute(codec
);
16854 alc_automute_amp_unsol_event(codec
, res
);
16859 static struct hda_verb alc861vd_dallas_verbs
[] = {
16860 {0x02, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
16861 {0x03, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
16862 {0x04, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
16863 {0x05, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
16865 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
16866 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
16867 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
16868 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
16869 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
16870 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
16871 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
16872 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
16874 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
16875 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
16876 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
16877 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
16878 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
16879 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
16880 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
16881 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
16883 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF50
},
16884 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
16885 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF50
},
16886 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
16887 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
16888 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
16889 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
16890 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
16892 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
16893 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
16894 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
16895 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
16897 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
16898 {0x09, AC_VERB_SET_CONNECT_SEL
, 0x00},
16899 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
16904 /* toggle speaker-output according to the hp-jack state */
16905 static void alc861vd_dallas_setup(struct hda_codec
*codec
)
16907 struct alc_spec
*spec
= codec
->spec
;
16909 spec
->autocfg
.hp_pins
[0] = 0x15;
16910 spec
->autocfg
.speaker_pins
[0] = 0x14;
16913 #ifdef CONFIG_SND_HDA_POWER_SAVE
16914 #define alc861vd_loopbacks alc880_loopbacks
16917 /* pcm configuration: identical with ALC880 */
16918 #define alc861vd_pcm_analog_playback alc880_pcm_analog_playback
16919 #define alc861vd_pcm_analog_capture alc880_pcm_analog_capture
16920 #define alc861vd_pcm_digital_playback alc880_pcm_digital_playback
16921 #define alc861vd_pcm_digital_capture alc880_pcm_digital_capture
16924 * configuration and preset
16926 static const char * const alc861vd_models
[ALC861VD_MODEL_LAST
] = {
16927 [ALC660VD_3ST
] = "3stack-660",
16928 [ALC660VD_3ST_DIG
] = "3stack-660-digout",
16929 [ALC660VD_ASUS_V1S
] = "asus-v1s",
16930 [ALC861VD_3ST
] = "3stack",
16931 [ALC861VD_3ST_DIG
] = "3stack-digout",
16932 [ALC861VD_6ST_DIG
] = "6stack-digout",
16933 [ALC861VD_LENOVO
] = "lenovo",
16934 [ALC861VD_DALLAS
] = "dallas",
16935 [ALC861VD_HP
] = "hp",
16936 [ALC861VD_AUTO
] = "auto",
16939 static struct snd_pci_quirk alc861vd_cfg_tbl
[] = {
16940 SND_PCI_QUIRK(0x1019, 0xa88d, "Realtek ALC660 demo", ALC660VD_3ST
),
16941 SND_PCI_QUIRK(0x103c, 0x30bf, "HP TX1000", ALC861VD_HP
),
16942 SND_PCI_QUIRK(0x1043, 0x12e2, "Asus z35m", ALC660VD_3ST
),
16943 /*SND_PCI_QUIRK(0x1043, 0x1339, "Asus G1", ALC660VD_3ST),*/ /* auto */
16944 SND_PCI_QUIRK(0x1043, 0x1633, "Asus V1Sn", ALC660VD_ASUS_V1S
),
16945 SND_PCI_QUIRK(0x1043, 0x81e7, "ASUS", ALC660VD_3ST_DIG
),
16946 SND_PCI_QUIRK(0x10de, 0x03f0, "Realtek ALC660 demo", ALC660VD_3ST
),
16947 SND_PCI_QUIRK(0x1179, 0xff00, "Toshiba A135", ALC861VD_LENOVO
),
16948 /*SND_PCI_QUIRK(0x1179, 0xff00, "DALLAS", ALC861VD_DALLAS),*/ /*lenovo*/
16949 SND_PCI_QUIRK(0x1179, 0xff01, "Toshiba A135", ALC861VD_LENOVO
),
16950 SND_PCI_QUIRK(0x1179, 0xff03, "Toshiba P205", ALC861VD_LENOVO
),
16951 SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba L30-149", ALC861VD_DALLAS
),
16952 SND_PCI_QUIRK(0x1565, 0x820d, "Biostar NF61S SE", ALC861VD_6ST_DIG
),
16953 SND_PCI_QUIRK_VENDOR(0x17aa, "Lenovo", ALC861VD_LENOVO
),
16954 SND_PCI_QUIRK(0x1849, 0x0862, "ASRock K8NF6G-VSTA", ALC861VD_6ST_DIG
),
16958 static struct alc_config_preset alc861vd_presets
[] = {
16960 .mixers
= { alc861vd_3st_mixer
},
16961 .init_verbs
= { alc861vd_volume_init_verbs
,
16962 alc861vd_3stack_init_verbs
},
16963 .num_dacs
= ARRAY_SIZE(alc660vd_dac_nids
),
16964 .dac_nids
= alc660vd_dac_nids
,
16965 .num_channel_mode
= ARRAY_SIZE(alc861vd_3stack_2ch_modes
),
16966 .channel_mode
= alc861vd_3stack_2ch_modes
,
16967 .input_mux
= &alc861vd_capture_source
,
16969 [ALC660VD_3ST_DIG
] = {
16970 .mixers
= { alc861vd_3st_mixer
},
16971 .init_verbs
= { alc861vd_volume_init_verbs
,
16972 alc861vd_3stack_init_verbs
},
16973 .num_dacs
= ARRAY_SIZE(alc660vd_dac_nids
),
16974 .dac_nids
= alc660vd_dac_nids
,
16975 .dig_out_nid
= ALC861VD_DIGOUT_NID
,
16976 .num_channel_mode
= ARRAY_SIZE(alc861vd_3stack_2ch_modes
),
16977 .channel_mode
= alc861vd_3stack_2ch_modes
,
16978 .input_mux
= &alc861vd_capture_source
,
16981 .mixers
= { alc861vd_3st_mixer
},
16982 .init_verbs
= { alc861vd_volume_init_verbs
,
16983 alc861vd_3stack_init_verbs
},
16984 .num_dacs
= ARRAY_SIZE(alc861vd_dac_nids
),
16985 .dac_nids
= alc861vd_dac_nids
,
16986 .num_channel_mode
= ARRAY_SIZE(alc861vd_3stack_2ch_modes
),
16987 .channel_mode
= alc861vd_3stack_2ch_modes
,
16988 .input_mux
= &alc861vd_capture_source
,
16990 [ALC861VD_3ST_DIG
] = {
16991 .mixers
= { alc861vd_3st_mixer
},
16992 .init_verbs
= { alc861vd_volume_init_verbs
,
16993 alc861vd_3stack_init_verbs
},
16994 .num_dacs
= ARRAY_SIZE(alc861vd_dac_nids
),
16995 .dac_nids
= alc861vd_dac_nids
,
16996 .dig_out_nid
= ALC861VD_DIGOUT_NID
,
16997 .num_channel_mode
= ARRAY_SIZE(alc861vd_3stack_2ch_modes
),
16998 .channel_mode
= alc861vd_3stack_2ch_modes
,
16999 .input_mux
= &alc861vd_capture_source
,
17001 [ALC861VD_6ST_DIG
] = {
17002 .mixers
= { alc861vd_6st_mixer
, alc861vd_chmode_mixer
},
17003 .init_verbs
= { alc861vd_volume_init_verbs
,
17004 alc861vd_6stack_init_verbs
},
17005 .num_dacs
= ARRAY_SIZE(alc861vd_dac_nids
),
17006 .dac_nids
= alc861vd_dac_nids
,
17007 .dig_out_nid
= ALC861VD_DIGOUT_NID
,
17008 .num_channel_mode
= ARRAY_SIZE(alc861vd_6stack_modes
),
17009 .channel_mode
= alc861vd_6stack_modes
,
17010 .input_mux
= &alc861vd_capture_source
,
17012 [ALC861VD_LENOVO
] = {
17013 .mixers
= { alc861vd_lenovo_mixer
},
17014 .init_verbs
= { alc861vd_volume_init_verbs
,
17015 alc861vd_3stack_init_verbs
,
17016 alc861vd_eapd_verbs
,
17017 alc861vd_lenovo_unsol_verbs
},
17018 .num_dacs
= ARRAY_SIZE(alc660vd_dac_nids
),
17019 .dac_nids
= alc660vd_dac_nids
,
17020 .num_channel_mode
= ARRAY_SIZE(alc861vd_3stack_2ch_modes
),
17021 .channel_mode
= alc861vd_3stack_2ch_modes
,
17022 .input_mux
= &alc861vd_capture_source
,
17023 .unsol_event
= alc861vd_lenovo_unsol_event
,
17024 .setup
= alc861vd_lenovo_setup
,
17025 .init_hook
= alc861vd_lenovo_init_hook
,
17027 [ALC861VD_DALLAS
] = {
17028 .mixers
= { alc861vd_dallas_mixer
},
17029 .init_verbs
= { alc861vd_dallas_verbs
},
17030 .num_dacs
= ARRAY_SIZE(alc861vd_dac_nids
),
17031 .dac_nids
= alc861vd_dac_nids
,
17032 .num_channel_mode
= ARRAY_SIZE(alc861vd_3stack_2ch_modes
),
17033 .channel_mode
= alc861vd_3stack_2ch_modes
,
17034 .input_mux
= &alc861vd_dallas_capture_source
,
17035 .unsol_event
= alc_automute_amp_unsol_event
,
17036 .setup
= alc861vd_dallas_setup
,
17037 .init_hook
= alc_automute_amp
,
17040 .mixers
= { alc861vd_hp_mixer
},
17041 .init_verbs
= { alc861vd_dallas_verbs
, alc861vd_eapd_verbs
},
17042 .num_dacs
= ARRAY_SIZE(alc861vd_dac_nids
),
17043 .dac_nids
= alc861vd_dac_nids
,
17044 .dig_out_nid
= ALC861VD_DIGOUT_NID
,
17045 .num_channel_mode
= ARRAY_SIZE(alc861vd_3stack_2ch_modes
),
17046 .channel_mode
= alc861vd_3stack_2ch_modes
,
17047 .input_mux
= &alc861vd_hp_capture_source
,
17048 .unsol_event
= alc_automute_amp_unsol_event
,
17049 .setup
= alc861vd_dallas_setup
,
17050 .init_hook
= alc_automute_amp
,
17052 [ALC660VD_ASUS_V1S
] = {
17053 .mixers
= { alc861vd_lenovo_mixer
},
17054 .init_verbs
= { alc861vd_volume_init_verbs
,
17055 alc861vd_3stack_init_verbs
,
17056 alc861vd_eapd_verbs
,
17057 alc861vd_lenovo_unsol_verbs
},
17058 .num_dacs
= ARRAY_SIZE(alc660vd_dac_nids
),
17059 .dac_nids
= alc660vd_dac_nids
,
17060 .dig_out_nid
= ALC861VD_DIGOUT_NID
,
17061 .num_channel_mode
= ARRAY_SIZE(alc861vd_3stack_2ch_modes
),
17062 .channel_mode
= alc861vd_3stack_2ch_modes
,
17063 .input_mux
= &alc861vd_capture_source
,
17064 .unsol_event
= alc861vd_lenovo_unsol_event
,
17065 .setup
= alc861vd_lenovo_setup
,
17066 .init_hook
= alc861vd_lenovo_init_hook
,
17071 * BIOS auto configuration
17073 static int alc861vd_auto_create_input_ctls(struct hda_codec
*codec
,
17074 const struct auto_pin_cfg
*cfg
)
17076 return alc_auto_create_input_ctls(codec
, cfg
, 0x0b, 0x22, 0);
17080 static void alc861vd_auto_set_output_and_unmute(struct hda_codec
*codec
,
17081 hda_nid_t nid
, int pin_type
, int dac_idx
)
17083 alc_set_pin_output(codec
, nid
, pin_type
);
17086 static void alc861vd_auto_init_multi_out(struct hda_codec
*codec
)
17088 struct alc_spec
*spec
= codec
->spec
;
17091 for (i
= 0; i
<= HDA_SIDE
; i
++) {
17092 hda_nid_t nid
= spec
->autocfg
.line_out_pins
[i
];
17093 int pin_type
= get_pin_type(spec
->autocfg
.line_out_type
);
17095 alc861vd_auto_set_output_and_unmute(codec
, nid
,
17101 static void alc861vd_auto_init_hp_out(struct hda_codec
*codec
)
17103 struct alc_spec
*spec
= codec
->spec
;
17106 pin
= spec
->autocfg
.hp_pins
[0];
17107 if (pin
) /* connect to front and use dac 0 */
17108 alc861vd_auto_set_output_and_unmute(codec
, pin
, PIN_HP
, 0);
17109 pin
= spec
->autocfg
.speaker_pins
[0];
17111 alc861vd_auto_set_output_and_unmute(codec
, pin
, PIN_OUT
, 0);
17114 #define ALC861VD_PIN_CD_NID ALC880_PIN_CD_NID
17116 static void alc861vd_auto_init_analog_input(struct hda_codec
*codec
)
17118 struct alc_spec
*spec
= codec
->spec
;
17119 struct auto_pin_cfg
*cfg
= &spec
->autocfg
;
17122 for (i
= 0; i
< cfg
->num_inputs
; i
++) {
17123 hda_nid_t nid
= cfg
->inputs
[i
].pin
;
17124 if (alc_is_input_pin(codec
, nid
)) {
17125 alc_set_input_pin(codec
, nid
, cfg
->inputs
[i
].type
);
17126 if (nid
!= ALC861VD_PIN_CD_NID
&&
17127 (get_wcaps(codec
, nid
) & AC_WCAP_OUT_AMP
))
17128 snd_hda_codec_write(codec
, nid
, 0,
17129 AC_VERB_SET_AMP_GAIN_MUTE
,
17135 #define alc861vd_auto_init_input_src alc882_auto_init_input_src
17137 #define alc861vd_idx_to_mixer_vol(nid) ((nid) + 0x02)
17138 #define alc861vd_idx_to_mixer_switch(nid) ((nid) + 0x0c)
17140 /* add playback controls from the parsed DAC table */
17141 /* Based on ALC880 version. But ALC861VD has separate,
17142 * different NIDs for mute/unmute switch and volume control */
17143 static int alc861vd_auto_create_multi_out_ctls(struct alc_spec
*spec
,
17144 const struct auto_pin_cfg
*cfg
)
17146 static const char * const chname
[4] = {
17147 "Front", "Surround", "CLFE", "Side"
17149 const char *pfx
= alc_get_line_out_pfx(cfg
, true);
17150 hda_nid_t nid_v
, nid_s
;
17153 for (i
= 0; i
< cfg
->line_outs
; i
++) {
17154 if (!spec
->multiout
.dac_nids
[i
])
17156 nid_v
= alc861vd_idx_to_mixer_vol(
17158 spec
->multiout
.dac_nids
[i
]));
17159 nid_s
= alc861vd_idx_to_mixer_switch(
17161 spec
->multiout
.dac_nids
[i
]));
17163 if (!pfx
&& i
== 2) {
17165 err
= add_pb_vol_ctrl(spec
, ALC_CTL_WIDGET_VOL
,
17167 HDA_COMPOSE_AMP_VAL(nid_v
, 1, 0,
17171 err
= add_pb_vol_ctrl(spec
, ALC_CTL_WIDGET_VOL
,
17173 HDA_COMPOSE_AMP_VAL(nid_v
, 2, 0,
17177 err
= add_pb_sw_ctrl(spec
, ALC_CTL_BIND_MUTE
,
17179 HDA_COMPOSE_AMP_VAL(nid_s
, 1, 2,
17183 err
= add_pb_sw_ctrl(spec
, ALC_CTL_BIND_MUTE
,
17185 HDA_COMPOSE_AMP_VAL(nid_s
, 2, 2,
17190 const char *name
= pfx
;
17196 err
= __add_pb_vol_ctrl(spec
, ALC_CTL_WIDGET_VOL
,
17198 HDA_COMPOSE_AMP_VAL(nid_v
, 3, 0,
17202 err
= __add_pb_sw_ctrl(spec
, ALC_CTL_BIND_MUTE
,
17204 HDA_COMPOSE_AMP_VAL(nid_s
, 3, 2,
17213 /* add playback controls for speaker and HP outputs */
17214 /* Based on ALC880 version. But ALC861VD has separate,
17215 * different NIDs for mute/unmute switch and volume control */
17216 static int alc861vd_auto_create_extra_out(struct alc_spec
*spec
,
17217 hda_nid_t pin
, const char *pfx
)
17219 hda_nid_t nid_v
, nid_s
;
17225 if (alc880_is_fixed_pin(pin
)) {
17226 nid_v
= alc880_idx_to_dac(alc880_fixed_pin_idx(pin
));
17227 /* specify the DAC as the extra output */
17228 if (!spec
->multiout
.hp_nid
)
17229 spec
->multiout
.hp_nid
= nid_v
;
17231 spec
->multiout
.extra_out_nid
[0] = nid_v
;
17232 /* control HP volume/switch on the output mixer amp */
17233 nid_v
= alc861vd_idx_to_mixer_vol(
17234 alc880_fixed_pin_idx(pin
));
17235 nid_s
= alc861vd_idx_to_mixer_switch(
17236 alc880_fixed_pin_idx(pin
));
17238 err
= add_pb_vol_ctrl(spec
, ALC_CTL_WIDGET_VOL
, pfx
,
17239 HDA_COMPOSE_AMP_VAL(nid_v
, 3, 0, HDA_OUTPUT
));
17242 err
= add_pb_sw_ctrl(spec
, ALC_CTL_BIND_MUTE
, pfx
,
17243 HDA_COMPOSE_AMP_VAL(nid_s
, 3, 2, HDA_INPUT
));
17246 } else if (alc880_is_multi_pin(pin
)) {
17247 /* set manual connection */
17248 /* we have only a switch on HP-out PIN */
17249 err
= add_pb_sw_ctrl(spec
, ALC_CTL_WIDGET_MUTE
, pfx
,
17250 HDA_COMPOSE_AMP_VAL(pin
, 3, 0, HDA_OUTPUT
));
17257 /* parse the BIOS configuration and set up the alc_spec
17258 * return 1 if successful, 0 if the proper config is not found,
17259 * or a negative error code
17260 * Based on ALC880 version - had to change it to override
17261 * alc880_auto_create_extra_out and alc880_auto_create_multi_out_ctls */
17262 static int alc861vd_parse_auto_config(struct hda_codec
*codec
)
17264 struct alc_spec
*spec
= codec
->spec
;
17266 static hda_nid_t alc861vd_ignore
[] = { 0x1d, 0 };
17268 err
= snd_hda_parse_pin_def_config(codec
, &spec
->autocfg
,
17272 if (!spec
->autocfg
.line_outs
)
17273 return 0; /* can't find valid BIOS pin config */
17275 err
= alc880_auto_fill_dac_nids(spec
, &spec
->autocfg
);
17278 err
= alc861vd_auto_create_multi_out_ctls(spec
, &spec
->autocfg
);
17281 err
= alc861vd_auto_create_extra_out(spec
,
17282 spec
->autocfg
.speaker_pins
[0],
17286 err
= alc861vd_auto_create_extra_out(spec
,
17287 spec
->autocfg
.hp_pins
[0],
17291 err
= alc861vd_auto_create_input_ctls(codec
, &spec
->autocfg
);
17295 spec
->multiout
.max_channels
= spec
->multiout
.num_dacs
* 2;
17297 alc_auto_parse_digital(codec
);
17299 if (spec
->kctls
.list
)
17300 add_mixer(spec
, spec
->kctls
.list
);
17302 add_verb(spec
, alc861vd_volume_init_verbs
);
17304 spec
->num_mux_defs
= 1;
17305 spec
->input_mux
= &spec
->private_imux
[0];
17307 err
= alc_auto_add_mic_boost(codec
);
17311 alc_ssid_check(codec
, 0x15, 0x1b, 0x14, 0);
17316 /* additional initialization for auto-configuration model */
17317 static void alc861vd_auto_init(struct hda_codec
*codec
)
17319 struct alc_spec
*spec
= codec
->spec
;
17320 alc861vd_auto_init_multi_out(codec
);
17321 alc861vd_auto_init_hp_out(codec
);
17322 alc861vd_auto_init_analog_input(codec
);
17323 alc861vd_auto_init_input_src(codec
);
17324 alc_auto_init_digital(codec
);
17325 if (spec
->unsol_event
)
17326 alc_inithook(codec
);
17330 ALC660VD_FIX_ASUS_GPIO1
17334 static const struct alc_fixup alc861vd_fixups
[] = {
17335 [ALC660VD_FIX_ASUS_GPIO1
] = {
17336 .type
= ALC_FIXUP_VERBS
,
17337 .v
.verbs
= (const struct hda_verb
[]) {
17338 {0x01, AC_VERB_SET_GPIO_MASK
, 0x03},
17339 {0x01, AC_VERB_SET_GPIO_DIRECTION
, 0x01},
17340 {0x01, AC_VERB_SET_GPIO_DATA
, 0x01},
17346 static struct snd_pci_quirk alc861vd_fixup_tbl
[] = {
17347 SND_PCI_QUIRK(0x1043, 0x1339, "ASUS A7-K", ALC660VD_FIX_ASUS_GPIO1
),
17351 static int patch_alc861vd(struct hda_codec
*codec
)
17353 struct alc_spec
*spec
;
17354 int err
, board_config
;
17356 spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
17360 codec
->spec
= spec
;
17362 board_config
= snd_hda_check_board_config(codec
, ALC861VD_MODEL_LAST
,
17366 if (board_config
< 0 || board_config
>= ALC861VD_MODEL_LAST
) {
17367 printk(KERN_INFO
"hda_codec: %s: BIOS auto-probing.\n",
17369 board_config
= ALC861VD_AUTO
;
17372 if (board_config
== ALC861VD_AUTO
) {
17373 alc_pick_fixup(codec
, NULL
, alc861vd_fixup_tbl
, alc861vd_fixups
);
17374 alc_apply_fixup(codec
, ALC_FIXUP_ACT_PRE_PROBE
);
17377 if (board_config
== ALC861VD_AUTO
) {
17378 /* automatic parse from the BIOS config */
17379 err
= alc861vd_parse_auto_config(codec
);
17385 "hda_codec: Cannot set up configuration "
17386 "from BIOS. Using base mode...\n");
17387 board_config
= ALC861VD_3ST
;
17391 err
= snd_hda_attach_beep_device(codec
, 0x23);
17397 if (board_config
!= ALC861VD_AUTO
)
17398 setup_preset(codec
, &alc861vd_presets
[board_config
]);
17400 if (codec
->vendor_id
== 0x10ec0660) {
17401 /* always turn on EAPD */
17402 add_verb(spec
, alc660vd_eapd_verbs
);
17405 spec
->stream_analog_playback
= &alc861vd_pcm_analog_playback
;
17406 spec
->stream_analog_capture
= &alc861vd_pcm_analog_capture
;
17408 spec
->stream_digital_playback
= &alc861vd_pcm_digital_playback
;
17409 spec
->stream_digital_capture
= &alc861vd_pcm_digital_capture
;
17411 if (!spec
->adc_nids
) {
17412 spec
->adc_nids
= alc861vd_adc_nids
;
17413 spec
->num_adc_nids
= ARRAY_SIZE(alc861vd_adc_nids
);
17415 if (!spec
->capsrc_nids
)
17416 spec
->capsrc_nids
= alc861vd_capsrc_nids
;
17418 set_capture_mixer(codec
);
17419 set_beep_amp(spec
, 0x0b, 0x05, HDA_INPUT
);
17421 spec
->vmaster_nid
= 0x02;
17423 alc_apply_fixup(codec
, ALC_FIXUP_ACT_PROBE
);
17425 codec
->patch_ops
= alc_patch_ops
;
17427 if (board_config
== ALC861VD_AUTO
)
17428 spec
->init_hook
= alc861vd_auto_init
;
17429 #ifdef CONFIG_SND_HDA_POWER_SAVE
17430 if (!spec
->loopback
.amplist
)
17431 spec
->loopback
.amplist
= alc861vd_loopbacks
;
17440 * ALC662 is almost identical with ALC880 but has cleaner and more flexible
17441 * configuration. Each pin widget can choose any input DACs and a mixer.
17442 * Each ADC is connected from a mixer of all inputs. This makes possible
17443 * 6-channel independent captures.
17445 * In addition, an independent DAC for the multi-playback (not used in this
17448 #define ALC662_DIGOUT_NID 0x06
17449 #define ALC662_DIGIN_NID 0x0a
17451 static hda_nid_t alc662_dac_nids
[4] = {
17452 /* front, rear, clfe, rear_surr */
17456 static hda_nid_t alc272_dac_nids
[2] = {
17460 static hda_nid_t alc662_adc_nids
[2] = {
17465 static hda_nid_t alc272_adc_nids
[1] = {
17470 static hda_nid_t alc662_capsrc_nids
[2] = { 0x22, 0x23 };
17471 static hda_nid_t alc272_capsrc_nids
[1] = { 0x23 };
17475 /* FIXME: should be a matrix-type input source selection */
17476 static struct hda_input_mux alc662_capture_source
= {
17480 { "Front Mic", 0x1 },
17486 static struct hda_input_mux alc662_lenovo_101e_capture_source
= {
17494 static struct hda_input_mux alc663_capture_source
= {
17498 { "Front Mic", 0x1 },
17503 #if 0 /* set to 1 for testing other input sources below */
17504 static struct hda_input_mux alc272_nc10_capture_source
= {
17507 { "Autoselect Mic", 0x0 },
17508 { "Internal Mic", 0x1 },
17509 { "In-0x02", 0x2 },
17510 { "In-0x03", 0x3 },
17511 { "In-0x04", 0x4 },
17512 { "In-0x05", 0x5 },
17513 { "In-0x06", 0x6 },
17514 { "In-0x07", 0x7 },
17515 { "In-0x08", 0x8 },
17516 { "In-0x09", 0x9 },
17517 { "In-0x0a", 0x0a },
17518 { "In-0x0b", 0x0b },
17519 { "In-0x0c", 0x0c },
17520 { "In-0x0d", 0x0d },
17521 { "In-0x0e", 0x0e },
17522 { "In-0x0f", 0x0f },
17530 static struct hda_channel_mode alc662_3ST_2ch_modes
[1] = {
17537 static struct hda_verb alc662_3ST_ch2_init
[] = {
17538 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
17539 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
17540 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
17541 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
17548 static struct hda_verb alc662_3ST_ch6_init
[] = {
17549 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
17550 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17551 { 0x18, AC_VERB_SET_CONNECT_SEL
, 0x02 },
17552 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
17553 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17554 { 0x1a, AC_VERB_SET_CONNECT_SEL
, 0x01 },
17558 static struct hda_channel_mode alc662_3ST_6ch_modes
[2] = {
17559 { 2, alc662_3ST_ch2_init
},
17560 { 6, alc662_3ST_ch6_init
},
17566 static struct hda_verb alc662_sixstack_ch6_init
[] = {
17567 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x00 },
17568 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x00 },
17569 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
17576 static struct hda_verb alc662_sixstack_ch8_init
[] = {
17577 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
17578 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
17579 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
17583 static struct hda_channel_mode alc662_5stack_modes
[2] = {
17584 { 2, alc662_sixstack_ch6_init
},
17585 { 6, alc662_sixstack_ch8_init
},
17588 /* Pin assignment: Front=0x14, Rear=0x15, CLFE=0x16, Side=0x17
17589 * Mic=0x18, Front Mic=0x19, Line-In=0x1a, HP=0x1b
17592 static struct snd_kcontrol_new alc662_base_mixer
[] = {
17593 /* output mixer control */
17594 HDA_CODEC_VOLUME("Front Playback Volume", 0x2, 0x0, HDA_OUTPUT
),
17595 HDA_CODEC_MUTE("Front Playback Switch", 0x0c, 0x0, HDA_INPUT
),
17596 HDA_CODEC_VOLUME("Surround Playback Volume", 0x3, 0x0, HDA_OUTPUT
),
17597 HDA_CODEC_MUTE("Surround Playback Switch", 0x0d, 0x0, HDA_INPUT
),
17598 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x04, 1, 0x0, HDA_OUTPUT
),
17599 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x04, 2, 0x0, HDA_OUTPUT
),
17600 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x0e, 1, 0x0, HDA_INPUT
),
17601 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 0x0, HDA_INPUT
),
17602 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
17604 /*Input mixer control */
17605 HDA_CODEC_VOLUME("CD Playback Volume", 0xb, 0x4, HDA_INPUT
),
17606 HDA_CODEC_MUTE("CD Playback Switch", 0xb, 0x4, HDA_INPUT
),
17607 HDA_CODEC_VOLUME("Line Playback Volume", 0xb, 0x02, HDA_INPUT
),
17608 HDA_CODEC_MUTE("Line Playback Switch", 0xb, 0x02, HDA_INPUT
),
17609 HDA_CODEC_VOLUME("Mic Playback Volume", 0xb, 0x0, HDA_INPUT
),
17610 HDA_CODEC_MUTE("Mic Playback Switch", 0xb, 0x0, HDA_INPUT
),
17611 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0xb, 0x01, HDA_INPUT
),
17612 HDA_CODEC_MUTE("Front Mic Playback Switch", 0xb, 0x01, HDA_INPUT
),
17616 static struct snd_kcontrol_new alc662_3ST_2ch_mixer
[] = {
17617 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
17618 HDA_CODEC_MUTE("Front Playback Switch", 0x0c, 0x0, HDA_INPUT
),
17619 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
17620 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
17621 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
17622 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
17623 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
17624 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
17625 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
17626 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
17627 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
17631 static struct snd_kcontrol_new alc662_3ST_6ch_mixer
[] = {
17632 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
17633 HDA_CODEC_MUTE("Front Playback Switch", 0x0c, 0x0, HDA_INPUT
),
17634 HDA_CODEC_VOLUME("Surround Playback Volume", 0x03, 0x0, HDA_OUTPUT
),
17635 HDA_CODEC_MUTE("Surround Playback Switch", 0x0d, 0x0, HDA_INPUT
),
17636 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x04, 1, 0x0, HDA_OUTPUT
),
17637 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x04, 2, 0x0, HDA_OUTPUT
),
17638 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x0e, 1, 0x0, HDA_INPUT
),
17639 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 0x0, HDA_INPUT
),
17640 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
17641 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
17642 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
17643 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
17644 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
17645 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
17646 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
17647 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
17648 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
17652 static struct snd_kcontrol_new alc662_lenovo_101e_mixer
[] = {
17653 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
17654 HDA_BIND_MUTE("Front Playback Switch", 0x02, 2, HDA_INPUT
),
17655 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x03, 0x0, HDA_OUTPUT
),
17656 HDA_BIND_MUTE("Speaker Playback Switch", 0x03, 2, HDA_INPUT
),
17657 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
17658 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
17659 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
17660 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
17661 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
17665 static struct snd_kcontrol_new alc662_eeepc_p701_mixer
[] = {
17666 HDA_CODEC_VOLUME("Master Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
17667 ALC262_HIPPO_MASTER_SWITCH
,
17669 HDA_CODEC_VOLUME("Mic Boost Volume", 0x18, 0, HDA_INPUT
),
17670 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
17671 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
17673 HDA_CODEC_VOLUME("Internal Mic Boost Volume", 0x19, 0, HDA_INPUT
),
17674 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
17675 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
17679 static struct snd_kcontrol_new alc662_eeepc_ep20_mixer
[] = {
17680 ALC262_HIPPO_MASTER_SWITCH
,
17681 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
17682 HDA_CODEC_VOLUME("Surround Playback Volume", 0x03, 0x0, HDA_OUTPUT
),
17683 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x04, 1, 0x0, HDA_OUTPUT
),
17684 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x04, 2, 0x0, HDA_OUTPUT
),
17685 HDA_BIND_MUTE("MuteCtrl Playback Switch", 0x0c, 2, HDA_INPUT
),
17686 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
17687 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
17688 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
17689 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
17693 static struct hda_bind_ctls alc663_asus_bind_master_vol
= {
17694 .ops
= &snd_hda_bind_vol
,
17696 HDA_COMPOSE_AMP_VAL(0x02, 3, 0, HDA_OUTPUT
),
17697 HDA_COMPOSE_AMP_VAL(0x03, 3, 0, HDA_OUTPUT
),
17702 static struct hda_bind_ctls alc663_asus_one_bind_switch
= {
17703 .ops
= &snd_hda_bind_sw
,
17705 HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT
),
17706 HDA_COMPOSE_AMP_VAL(0x21, 3, 0, HDA_OUTPUT
),
17711 static struct snd_kcontrol_new alc663_m51va_mixer
[] = {
17712 HDA_BIND_VOL("Master Playback Volume", &alc663_asus_bind_master_vol
),
17713 HDA_BIND_SW("Master Playback Switch", &alc663_asus_one_bind_switch
),
17714 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
17715 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
17719 static struct hda_bind_ctls alc663_asus_tree_bind_switch
= {
17720 .ops
= &snd_hda_bind_sw
,
17722 HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT
),
17723 HDA_COMPOSE_AMP_VAL(0x15, 3, 0, HDA_OUTPUT
),
17724 HDA_COMPOSE_AMP_VAL(0x21, 3, 0, HDA_OUTPUT
),
17729 static struct snd_kcontrol_new alc663_two_hp_m1_mixer
[] = {
17730 HDA_BIND_VOL("Master Playback Volume", &alc663_asus_bind_master_vol
),
17731 HDA_BIND_SW("Master Playback Switch", &alc663_asus_tree_bind_switch
),
17732 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
17733 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
17734 HDA_CODEC_VOLUME("F-Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
17735 HDA_CODEC_MUTE("F-Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
17740 static struct hda_bind_ctls alc663_asus_four_bind_switch
= {
17741 .ops
= &snd_hda_bind_sw
,
17743 HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT
),
17744 HDA_COMPOSE_AMP_VAL(0x15, 3, 0, HDA_OUTPUT
),
17745 HDA_COMPOSE_AMP_VAL(0x1b, 3, 0, HDA_OUTPUT
),
17750 static struct snd_kcontrol_new alc663_two_hp_m2_mixer
[] = {
17751 HDA_BIND_VOL("Master Playback Volume", &alc663_asus_bind_master_vol
),
17752 HDA_BIND_SW("Master Playback Switch", &alc663_asus_four_bind_switch
),
17753 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
17754 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
17755 HDA_CODEC_VOLUME("F-Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
17756 HDA_CODEC_MUTE("F-Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
17760 static struct snd_kcontrol_new alc662_1bjd_mixer
[] = {
17761 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
17762 HDA_CODEC_MUTE("Speaker Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
17763 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
17764 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
17765 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
17766 HDA_CODEC_VOLUME("F-Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
17767 HDA_CODEC_MUTE("F-Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
17771 static struct hda_bind_ctls alc663_asus_two_bind_master_vol
= {
17772 .ops
= &snd_hda_bind_vol
,
17774 HDA_COMPOSE_AMP_VAL(0x02, 3, 0, HDA_OUTPUT
),
17775 HDA_COMPOSE_AMP_VAL(0x04, 3, 0, HDA_OUTPUT
),
17780 static struct hda_bind_ctls alc663_asus_two_bind_switch
= {
17781 .ops
= &snd_hda_bind_sw
,
17783 HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT
),
17784 HDA_COMPOSE_AMP_VAL(0x16, 3, 0, HDA_OUTPUT
),
17789 static struct snd_kcontrol_new alc663_asus_21jd_clfe_mixer
[] = {
17790 HDA_BIND_VOL("Master Playback Volume",
17791 &alc663_asus_two_bind_master_vol
),
17792 HDA_BIND_SW("Master Playback Switch", &alc663_asus_two_bind_switch
),
17793 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x03, 0x0, HDA_OUTPUT
),
17794 HDA_CODEC_MUTE("Headphone Playback Switch", 0x21, 0x0, HDA_OUTPUT
),
17795 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
17796 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
17800 static struct snd_kcontrol_new alc663_asus_15jd_clfe_mixer
[] = {
17801 HDA_BIND_VOL("Master Playback Volume", &alc663_asus_bind_master_vol
),
17802 HDA_BIND_SW("Master Playback Switch", &alc663_asus_two_bind_switch
),
17803 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x03, 0x0, HDA_OUTPUT
),
17804 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
17805 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
17806 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
17810 static struct snd_kcontrol_new alc663_g71v_mixer
[] = {
17811 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
17812 HDA_CODEC_MUTE("Speaker Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
17813 HDA_CODEC_VOLUME("Front Playback Volume", 0x03, 0x0, HDA_OUTPUT
),
17814 HDA_CODEC_MUTE("Front Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
17815 HDA_CODEC_MUTE("Headphone Playback Switch", 0x21, 0x0, HDA_OUTPUT
),
17817 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
17818 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
17819 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
17820 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
17824 static struct snd_kcontrol_new alc663_g50v_mixer
[] = {
17825 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
17826 HDA_CODEC_MUTE("Speaker Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
17827 HDA_CODEC_MUTE("Headphone Playback Switch", 0x21, 0x0, HDA_OUTPUT
),
17829 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
17830 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
17831 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
17832 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
17833 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
17834 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
17838 static struct hda_bind_ctls alc663_asus_mode7_8_all_bind_switch
= {
17839 .ops
= &snd_hda_bind_sw
,
17841 HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT
),
17842 HDA_COMPOSE_AMP_VAL(0x15, 3, 0, HDA_OUTPUT
),
17843 HDA_COMPOSE_AMP_VAL(0x17, 3, 0, HDA_OUTPUT
),
17844 HDA_COMPOSE_AMP_VAL(0x1b, 3, 0, HDA_OUTPUT
),
17845 HDA_COMPOSE_AMP_VAL(0x21, 3, 0, HDA_OUTPUT
),
17850 static struct hda_bind_ctls alc663_asus_mode7_8_sp_bind_switch
= {
17851 .ops
= &snd_hda_bind_sw
,
17853 HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT
),
17854 HDA_COMPOSE_AMP_VAL(0x17, 3, 0, HDA_OUTPUT
),
17859 static struct snd_kcontrol_new alc663_mode7_mixer
[] = {
17860 HDA_BIND_SW("Master Playback Switch", &alc663_asus_mode7_8_all_bind_switch
),
17861 HDA_BIND_VOL("Speaker Playback Volume", &alc663_asus_bind_master_vol
),
17862 HDA_BIND_SW("Speaker Playback Switch", &alc663_asus_mode7_8_sp_bind_switch
),
17863 HDA_CODEC_MUTE("Headphone1 Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
17864 HDA_CODEC_MUTE("Headphone2 Playback Switch", 0x21, 0x0, HDA_OUTPUT
),
17865 HDA_CODEC_VOLUME("IntMic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
17866 HDA_CODEC_MUTE("IntMic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
17867 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
17868 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
17872 static struct snd_kcontrol_new alc663_mode8_mixer
[] = {
17873 HDA_BIND_SW("Master Playback Switch", &alc663_asus_mode7_8_all_bind_switch
),
17874 HDA_BIND_VOL("Speaker Playback Volume", &alc663_asus_bind_master_vol
),
17875 HDA_BIND_SW("Speaker Playback Switch", &alc663_asus_mode7_8_sp_bind_switch
),
17876 HDA_CODEC_MUTE("Headphone1 Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
17877 HDA_CODEC_MUTE("Headphone2 Playback Switch", 0x21, 0x0, HDA_OUTPUT
),
17878 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
17879 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
17884 static struct snd_kcontrol_new alc662_chmode_mixer
[] = {
17886 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
17887 .name
= "Channel Mode",
17888 .info
= alc_ch_mode_info
,
17889 .get
= alc_ch_mode_get
,
17890 .put
= alc_ch_mode_put
,
17895 static struct hda_verb alc662_init_verbs
[] = {
17896 /* ADC: mute amp left and right */
17897 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
17898 {0x09, AC_VERB_SET_CONNECT_SEL
, 0x00},
17900 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
17901 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
17902 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
17903 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
17904 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
17905 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
17907 /* Front Pin: output 0 (0x0c) */
17908 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
17909 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17911 /* Rear Pin: output 1 (0x0d) */
17912 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
17913 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17915 /* CLFE Pin: output 2 (0x0e) */
17916 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
17917 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17919 /* Mic (rear) pin: input vref at 80% */
17920 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
17921 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
17922 /* Front Mic pin: input vref at 80% */
17923 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
17924 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
17925 /* Line In pin: input */
17926 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
17927 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
17928 /* Line-2 In: Headphone output (output 0 - 0x0c) */
17929 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
17930 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17931 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0x00},
17932 /* CD pin widget for input */
17933 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
17935 /* FIXME: use matrix-type input source selection */
17936 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
17938 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
17939 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
17941 /* always trun on EAPD */
17942 {0x14, AC_VERB_SET_EAPD_BTLENABLE
, 2},
17943 {0x15, AC_VERB_SET_EAPD_BTLENABLE
, 2},
17948 static struct hda_verb alc663_init_verbs
[] = {
17949 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
17950 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17951 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
17952 {0x21, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17953 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
17954 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
17958 static struct hda_verb alc272_init_verbs
[] = {
17959 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
17960 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
17961 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
17962 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17963 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
17964 {0x21, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17965 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
17966 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
17970 static struct hda_verb alc662_sue_init_verbs
[] = {
17971 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
|ALC880_FRONT_EVENT
},
17972 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
|ALC880_HP_EVENT
},
17976 static struct hda_verb alc662_eeepc_sue_init_verbs
[] = {
17977 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
17978 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
17982 /* Set Unsolicited Event*/
17983 static struct hda_verb alc662_eeepc_ep20_sue_init_verbs
[] = {
17984 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
17985 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
17989 static struct hda_verb alc663_m51va_init_verbs
[] = {
17990 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
17991 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
17992 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
17993 {0x21, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17994 {0x21, AC_VERB_SET_CONNECT_SEL
, 0x01}, /* Headphone */
17995 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
17996 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(9)},
17997 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
17998 {0x21, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
18002 static struct hda_verb alc663_21jd_amic_init_verbs
[] = {
18003 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
18004 {0x21, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
18005 {0x21, AC_VERB_SET_CONNECT_SEL
, 0x01}, /* Headphone */
18006 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
18007 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
18008 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
18009 {0x21, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
18013 static struct hda_verb alc662_1bjd_amic_init_verbs
[] = {
18014 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
18015 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
18016 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
18017 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* Headphone */
18018 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
18019 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
18020 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
18021 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
18025 static struct hda_verb alc663_15jd_amic_init_verbs
[] = {
18026 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
18027 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
18028 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x01}, /* Headphone */
18029 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
18030 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
18031 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
18032 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
18036 static struct hda_verb alc663_two_hp_amic_m1_init_verbs
[] = {
18037 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
18038 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
18039 {0x21, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
18040 {0x21, AC_VERB_SET_CONNECT_SEL
, 0x0}, /* Headphone */
18041 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
18042 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
18043 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x0}, /* Headphone */
18044 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
18045 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
18046 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
18047 {0x21, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
18048 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
18052 static struct hda_verb alc663_two_hp_amic_m2_init_verbs
[] = {
18053 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
18054 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
18055 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
18056 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0x01}, /* Headphone */
18057 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
18058 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
18059 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x01}, /* Headphone */
18060 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
18061 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
18062 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
18063 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
18064 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
18068 static struct hda_verb alc663_g71v_init_verbs
[] = {
18069 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
18070 /* {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, */
18071 /* {0x15, AC_VERB_SET_CONNECT_SEL, 0x01}, */ /* Headphone */
18073 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
18074 {0x21, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
18075 {0x21, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* Headphone */
18077 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
|ALC880_FRONT_EVENT
},
18078 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
|ALC880_MIC_EVENT
},
18079 {0x21, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
|ALC880_HP_EVENT
},
18083 static struct hda_verb alc663_g50v_init_verbs
[] = {
18084 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
18085 {0x21, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
18086 {0x21, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* Headphone */
18088 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
18089 {0x21, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
18093 static struct hda_verb alc662_ecs_init_verbs
[] = {
18094 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, 0x701f},
18095 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
18096 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
18097 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
18101 static struct hda_verb alc272_dell_zm1_init_verbs
[] = {
18102 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
18103 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
18104 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
18105 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
18106 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
18107 {0x21, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
18108 {0x21, AC_VERB_SET_CONNECT_SEL
, 0x01}, /* Headphone */
18109 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
18110 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(9)},
18111 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
18112 {0x21, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
18116 static struct hda_verb alc272_dell_init_verbs
[] = {
18117 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
18118 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
18119 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
18120 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
18121 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
18122 {0x21, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
18123 {0x21, AC_VERB_SET_CONNECT_SEL
, 0x01}, /* Headphone */
18124 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
18125 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(9)},
18126 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
18127 {0x21, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
18131 static struct hda_verb alc663_mode7_init_verbs
[] = {
18132 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
18133 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
18134 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
18135 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
18136 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
18137 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
18138 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0x01},
18139 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
18140 {0x21, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
18141 {0x21, AC_VERB_SET_CONNECT_SEL
, 0x01}, /* Headphone */
18142 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
18143 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(9)},
18144 {0x19, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
18145 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
18146 {0x21, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
18150 static struct hda_verb alc663_mode8_init_verbs
[] = {
18151 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
18152 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
18153 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
18154 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x01},
18155 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
18156 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
18157 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
18158 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
18159 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
18160 {0x21, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
18161 {0x21, AC_VERB_SET_CONNECT_SEL
, 0x01}, /* Headphone */
18162 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
18163 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(9)},
18164 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
18165 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
18166 {0x21, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
18170 static struct snd_kcontrol_new alc662_auto_capture_mixer
[] = {
18171 HDA_CODEC_VOLUME("Capture Volume", 0x09, 0x0, HDA_INPUT
),
18172 HDA_CODEC_MUTE("Capture Switch", 0x09, 0x0, HDA_INPUT
),
18176 static struct snd_kcontrol_new alc272_auto_capture_mixer
[] = {
18177 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT
),
18178 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT
),
18182 static void alc662_lenovo_101e_ispeaker_automute(struct hda_codec
*codec
)
18184 unsigned int present
;
18185 unsigned char bits
;
18187 present
= snd_hda_jack_detect(codec
, 0x14);
18188 bits
= present
? HDA_AMP_MUTE
: 0;
18190 snd_hda_codec_amp_stereo(codec
, 0x15, HDA_OUTPUT
, 0,
18191 HDA_AMP_MUTE
, bits
);
18194 static void alc662_lenovo_101e_all_automute(struct hda_codec
*codec
)
18196 unsigned int present
;
18197 unsigned char bits
;
18199 present
= snd_hda_jack_detect(codec
, 0x1b);
18200 bits
= present
? HDA_AMP_MUTE
: 0;
18202 snd_hda_codec_amp_stereo(codec
, 0x15, HDA_OUTPUT
, 0,
18203 HDA_AMP_MUTE
, bits
);
18204 snd_hda_codec_amp_stereo(codec
, 0x14, HDA_OUTPUT
, 0,
18205 HDA_AMP_MUTE
, bits
);
18208 static void alc662_lenovo_101e_unsol_event(struct hda_codec
*codec
,
18211 if ((res
>> 26) == ALC880_HP_EVENT
)
18212 alc662_lenovo_101e_all_automute(codec
);
18213 if ((res
>> 26) == ALC880_FRONT_EVENT
)
18214 alc662_lenovo_101e_ispeaker_automute(codec
);
18217 /* unsolicited event for HP jack sensing */
18218 static void alc662_eeepc_unsol_event(struct hda_codec
*codec
,
18221 if ((res
>> 26) == ALC880_MIC_EVENT
)
18222 alc_mic_automute(codec
);
18224 alc262_hippo_unsol_event(codec
, res
);
18227 static void alc662_eeepc_setup(struct hda_codec
*codec
)
18229 struct alc_spec
*spec
= codec
->spec
;
18231 alc262_hippo1_setup(codec
);
18232 spec
->ext_mic
.pin
= 0x18;
18233 spec
->ext_mic
.mux_idx
= 0;
18234 spec
->int_mic
.pin
= 0x19;
18235 spec
->int_mic
.mux_idx
= 1;
18236 spec
->auto_mic
= 1;
18239 static void alc662_eeepc_inithook(struct hda_codec
*codec
)
18241 alc262_hippo_automute(codec
);
18242 alc_mic_automute(codec
);
18245 static void alc662_eeepc_ep20_setup(struct hda_codec
*codec
)
18247 struct alc_spec
*spec
= codec
->spec
;
18249 spec
->autocfg
.hp_pins
[0] = 0x14;
18250 spec
->autocfg
.speaker_pins
[0] = 0x1b;
18253 #define alc662_eeepc_ep20_inithook alc262_hippo_master_update
18255 static void alc663_m51va_speaker_automute(struct hda_codec
*codec
)
18257 unsigned int present
;
18258 unsigned char bits
;
18260 present
= snd_hda_jack_detect(codec
, 0x21);
18261 bits
= present
? HDA_AMP_MUTE
: 0;
18262 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 0,
18263 HDA_AMP_MUTE
, bits
);
18264 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 1,
18265 HDA_AMP_MUTE
, bits
);
18268 static void alc663_21jd_two_speaker_automute(struct hda_codec
*codec
)
18270 unsigned int present
;
18271 unsigned char bits
;
18273 present
= snd_hda_jack_detect(codec
, 0x21);
18274 bits
= present
? HDA_AMP_MUTE
: 0;
18275 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 0,
18276 HDA_AMP_MUTE
, bits
);
18277 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 1,
18278 HDA_AMP_MUTE
, bits
);
18279 snd_hda_codec_amp_stereo(codec
, 0x0e, HDA_INPUT
, 0,
18280 HDA_AMP_MUTE
, bits
);
18281 snd_hda_codec_amp_stereo(codec
, 0x0e, HDA_INPUT
, 1,
18282 HDA_AMP_MUTE
, bits
);
18285 static void alc663_15jd_two_speaker_automute(struct hda_codec
*codec
)
18287 unsigned int present
;
18288 unsigned char bits
;
18290 present
= snd_hda_jack_detect(codec
, 0x15);
18291 bits
= present
? HDA_AMP_MUTE
: 0;
18292 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 0,
18293 HDA_AMP_MUTE
, bits
);
18294 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 1,
18295 HDA_AMP_MUTE
, bits
);
18296 snd_hda_codec_amp_stereo(codec
, 0x0e, HDA_INPUT
, 0,
18297 HDA_AMP_MUTE
, bits
);
18298 snd_hda_codec_amp_stereo(codec
, 0x0e, HDA_INPUT
, 1,
18299 HDA_AMP_MUTE
, bits
);
18302 static void alc662_f5z_speaker_automute(struct hda_codec
*codec
)
18304 unsigned int present
;
18305 unsigned char bits
;
18307 present
= snd_hda_jack_detect(codec
, 0x1b);
18308 bits
= present
? 0 : PIN_OUT
;
18309 snd_hda_codec_write(codec
, 0x14, 0,
18310 AC_VERB_SET_PIN_WIDGET_CONTROL
, bits
);
18313 static void alc663_two_hp_m1_speaker_automute(struct hda_codec
*codec
)
18315 unsigned int present1
, present2
;
18317 present1
= snd_hda_jack_detect(codec
, 0x21);
18318 present2
= snd_hda_jack_detect(codec
, 0x15);
18320 if (present1
|| present2
) {
18321 snd_hda_codec_write_cache(codec
, 0x14, 0,
18322 AC_VERB_SET_PIN_WIDGET_CONTROL
, 0);
18324 snd_hda_codec_write_cache(codec
, 0x14, 0,
18325 AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
);
18329 static void alc663_two_hp_m2_speaker_automute(struct hda_codec
*codec
)
18331 unsigned int present1
, present2
;
18333 present1
= snd_hda_jack_detect(codec
, 0x1b);
18334 present2
= snd_hda_jack_detect(codec
, 0x15);
18336 if (present1
|| present2
) {
18337 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 0,
18338 HDA_AMP_MUTE
, HDA_AMP_MUTE
);
18339 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 1,
18340 HDA_AMP_MUTE
, HDA_AMP_MUTE
);
18342 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 0,
18344 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 1,
18349 static void alc663_two_hp_m7_speaker_automute(struct hda_codec
*codec
)
18351 unsigned int present1
, present2
;
18353 present1
= snd_hda_codec_read(codec
, 0x1b, 0,
18354 AC_VERB_GET_PIN_SENSE
, 0)
18355 & AC_PINSENSE_PRESENCE
;
18356 present2
= snd_hda_codec_read(codec
, 0x21, 0,
18357 AC_VERB_GET_PIN_SENSE
, 0)
18358 & AC_PINSENSE_PRESENCE
;
18360 if (present1
|| present2
) {
18361 snd_hda_codec_write_cache(codec
, 0x14, 0,
18362 AC_VERB_SET_PIN_WIDGET_CONTROL
, 0);
18363 snd_hda_codec_write_cache(codec
, 0x17, 0,
18364 AC_VERB_SET_PIN_WIDGET_CONTROL
, 0);
18366 snd_hda_codec_write_cache(codec
, 0x14, 0,
18367 AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
);
18368 snd_hda_codec_write_cache(codec
, 0x17, 0,
18369 AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
);
18373 static void alc663_two_hp_m8_speaker_automute(struct hda_codec
*codec
)
18375 unsigned int present1
, present2
;
18377 present1
= snd_hda_codec_read(codec
, 0x21, 0,
18378 AC_VERB_GET_PIN_SENSE
, 0)
18379 & AC_PINSENSE_PRESENCE
;
18380 present2
= snd_hda_codec_read(codec
, 0x15, 0,
18381 AC_VERB_GET_PIN_SENSE
, 0)
18382 & AC_PINSENSE_PRESENCE
;
18384 if (present1
|| present2
) {
18385 snd_hda_codec_write_cache(codec
, 0x14, 0,
18386 AC_VERB_SET_PIN_WIDGET_CONTROL
, 0);
18387 snd_hda_codec_write_cache(codec
, 0x17, 0,
18388 AC_VERB_SET_PIN_WIDGET_CONTROL
, 0);
18390 snd_hda_codec_write_cache(codec
, 0x14, 0,
18391 AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
);
18392 snd_hda_codec_write_cache(codec
, 0x17, 0,
18393 AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
);
18397 static void alc663_m51va_unsol_event(struct hda_codec
*codec
,
18400 switch (res
>> 26) {
18401 case ALC880_HP_EVENT
:
18402 alc663_m51va_speaker_automute(codec
);
18404 case ALC880_MIC_EVENT
:
18405 alc_mic_automute(codec
);
18410 static void alc663_m51va_setup(struct hda_codec
*codec
)
18412 struct alc_spec
*spec
= codec
->spec
;
18413 spec
->ext_mic
.pin
= 0x18;
18414 spec
->ext_mic
.mux_idx
= 0;
18415 spec
->int_mic
.pin
= 0x12;
18416 spec
->int_mic
.mux_idx
= 9;
18417 spec
->auto_mic
= 1;
18420 static void alc663_m51va_inithook(struct hda_codec
*codec
)
18422 alc663_m51va_speaker_automute(codec
);
18423 alc_mic_automute(codec
);
18426 /* ***************** Mode1 ******************************/
18427 #define alc663_mode1_unsol_event alc663_m51va_unsol_event
18429 static void alc663_mode1_setup(struct hda_codec
*codec
)
18431 struct alc_spec
*spec
= codec
->spec
;
18432 spec
->ext_mic
.pin
= 0x18;
18433 spec
->ext_mic
.mux_idx
= 0;
18434 spec
->int_mic
.pin
= 0x19;
18435 spec
->int_mic
.mux_idx
= 1;
18436 spec
->auto_mic
= 1;
18439 #define alc663_mode1_inithook alc663_m51va_inithook
18441 /* ***************** Mode2 ******************************/
18442 static void alc662_mode2_unsol_event(struct hda_codec
*codec
,
18445 switch (res
>> 26) {
18446 case ALC880_HP_EVENT
:
18447 alc662_f5z_speaker_automute(codec
);
18449 case ALC880_MIC_EVENT
:
18450 alc_mic_automute(codec
);
18455 #define alc662_mode2_setup alc663_mode1_setup
18457 static void alc662_mode2_inithook(struct hda_codec
*codec
)
18459 alc662_f5z_speaker_automute(codec
);
18460 alc_mic_automute(codec
);
18462 /* ***************** Mode3 ******************************/
18463 static void alc663_mode3_unsol_event(struct hda_codec
*codec
,
18466 switch (res
>> 26) {
18467 case ALC880_HP_EVENT
:
18468 alc663_two_hp_m1_speaker_automute(codec
);
18470 case ALC880_MIC_EVENT
:
18471 alc_mic_automute(codec
);
18476 #define alc663_mode3_setup alc663_mode1_setup
18478 static void alc663_mode3_inithook(struct hda_codec
*codec
)
18480 alc663_two_hp_m1_speaker_automute(codec
);
18481 alc_mic_automute(codec
);
18483 /* ***************** Mode4 ******************************/
18484 static void alc663_mode4_unsol_event(struct hda_codec
*codec
,
18487 switch (res
>> 26) {
18488 case ALC880_HP_EVENT
:
18489 alc663_21jd_two_speaker_automute(codec
);
18491 case ALC880_MIC_EVENT
:
18492 alc_mic_automute(codec
);
18497 #define alc663_mode4_setup alc663_mode1_setup
18499 static void alc663_mode4_inithook(struct hda_codec
*codec
)
18501 alc663_21jd_two_speaker_automute(codec
);
18502 alc_mic_automute(codec
);
18504 /* ***************** Mode5 ******************************/
18505 static void alc663_mode5_unsol_event(struct hda_codec
*codec
,
18508 switch (res
>> 26) {
18509 case ALC880_HP_EVENT
:
18510 alc663_15jd_two_speaker_automute(codec
);
18512 case ALC880_MIC_EVENT
:
18513 alc_mic_automute(codec
);
18518 #define alc663_mode5_setup alc663_mode1_setup
18520 static void alc663_mode5_inithook(struct hda_codec
*codec
)
18522 alc663_15jd_two_speaker_automute(codec
);
18523 alc_mic_automute(codec
);
18525 /* ***************** Mode6 ******************************/
18526 static void alc663_mode6_unsol_event(struct hda_codec
*codec
,
18529 switch (res
>> 26) {
18530 case ALC880_HP_EVENT
:
18531 alc663_two_hp_m2_speaker_automute(codec
);
18533 case ALC880_MIC_EVENT
:
18534 alc_mic_automute(codec
);
18539 #define alc663_mode6_setup alc663_mode1_setup
18541 static void alc663_mode6_inithook(struct hda_codec
*codec
)
18543 alc663_two_hp_m2_speaker_automute(codec
);
18544 alc_mic_automute(codec
);
18547 /* ***************** Mode7 ******************************/
18548 static void alc663_mode7_unsol_event(struct hda_codec
*codec
,
18551 switch (res
>> 26) {
18552 case ALC880_HP_EVENT
:
18553 alc663_two_hp_m7_speaker_automute(codec
);
18555 case ALC880_MIC_EVENT
:
18556 alc_mic_automute(codec
);
18561 #define alc663_mode7_setup alc663_mode1_setup
18563 static void alc663_mode7_inithook(struct hda_codec
*codec
)
18565 alc663_two_hp_m7_speaker_automute(codec
);
18566 alc_mic_automute(codec
);
18569 /* ***************** Mode8 ******************************/
18570 static void alc663_mode8_unsol_event(struct hda_codec
*codec
,
18573 switch (res
>> 26) {
18574 case ALC880_HP_EVENT
:
18575 alc663_two_hp_m8_speaker_automute(codec
);
18577 case ALC880_MIC_EVENT
:
18578 alc_mic_automute(codec
);
18583 #define alc663_mode8_setup alc663_m51va_setup
18585 static void alc663_mode8_inithook(struct hda_codec
*codec
)
18587 alc663_two_hp_m8_speaker_automute(codec
);
18588 alc_mic_automute(codec
);
18591 static void alc663_g71v_hp_automute(struct hda_codec
*codec
)
18593 unsigned int present
;
18594 unsigned char bits
;
18596 present
= snd_hda_jack_detect(codec
, 0x21);
18597 bits
= present
? HDA_AMP_MUTE
: 0;
18598 snd_hda_codec_amp_stereo(codec
, 0x15, HDA_OUTPUT
, 0,
18599 HDA_AMP_MUTE
, bits
);
18600 snd_hda_codec_amp_stereo(codec
, 0x14, HDA_OUTPUT
, 0,
18601 HDA_AMP_MUTE
, bits
);
18604 static void alc663_g71v_front_automute(struct hda_codec
*codec
)
18606 unsigned int present
;
18607 unsigned char bits
;
18609 present
= snd_hda_jack_detect(codec
, 0x15);
18610 bits
= present
? HDA_AMP_MUTE
: 0;
18611 snd_hda_codec_amp_stereo(codec
, 0x14, HDA_OUTPUT
, 0,
18612 HDA_AMP_MUTE
, bits
);
18615 static void alc663_g71v_unsol_event(struct hda_codec
*codec
,
18618 switch (res
>> 26) {
18619 case ALC880_HP_EVENT
:
18620 alc663_g71v_hp_automute(codec
);
18622 case ALC880_FRONT_EVENT
:
18623 alc663_g71v_front_automute(codec
);
18625 case ALC880_MIC_EVENT
:
18626 alc_mic_automute(codec
);
18631 #define alc663_g71v_setup alc663_m51va_setup
18633 static void alc663_g71v_inithook(struct hda_codec
*codec
)
18635 alc663_g71v_front_automute(codec
);
18636 alc663_g71v_hp_automute(codec
);
18637 alc_mic_automute(codec
);
18640 static void alc663_g50v_unsol_event(struct hda_codec
*codec
,
18643 switch (res
>> 26) {
18644 case ALC880_HP_EVENT
:
18645 alc663_m51va_speaker_automute(codec
);
18647 case ALC880_MIC_EVENT
:
18648 alc_mic_automute(codec
);
18653 #define alc663_g50v_setup alc663_m51va_setup
18655 static void alc663_g50v_inithook(struct hda_codec
*codec
)
18657 alc663_m51va_speaker_automute(codec
);
18658 alc_mic_automute(codec
);
18661 static struct snd_kcontrol_new alc662_ecs_mixer
[] = {
18662 HDA_CODEC_VOLUME("Master Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
18663 ALC262_HIPPO_MASTER_SWITCH
,
18665 HDA_CODEC_VOLUME("Mic/LineIn Boost Volume", 0x18, 0, HDA_INPUT
),
18666 HDA_CODEC_VOLUME("Mic/LineIn Playback Volume", 0x0b, 0x0, HDA_INPUT
),
18667 HDA_CODEC_MUTE("Mic/LineIn Playback Switch", 0x0b, 0x0, HDA_INPUT
),
18669 HDA_CODEC_VOLUME("Internal Mic Boost Volume", 0x19, 0, HDA_INPUT
),
18670 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
18671 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
18675 static struct snd_kcontrol_new alc272_nc10_mixer
[] = {
18676 /* Master Playback automatically created from Speaker and Headphone */
18677 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
18678 HDA_CODEC_MUTE("Speaker Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
18679 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x03, 0x0, HDA_OUTPUT
),
18680 HDA_CODEC_MUTE("Headphone Playback Switch", 0x21, 0x0, HDA_OUTPUT
),
18682 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
18683 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
18684 HDA_CODEC_VOLUME("Mic Boost Volume", 0x18, 0, HDA_INPUT
),
18686 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
18687 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
18688 HDA_CODEC_VOLUME("Internal Mic Boost Volume", 0x19, 0, HDA_INPUT
),
18692 #ifdef CONFIG_SND_HDA_POWER_SAVE
18693 #define alc662_loopbacks alc880_loopbacks
18697 /* pcm configuration: identical with ALC880 */
18698 #define alc662_pcm_analog_playback alc880_pcm_analog_playback
18699 #define alc662_pcm_analog_capture alc880_pcm_analog_capture
18700 #define alc662_pcm_digital_playback alc880_pcm_digital_playback
18701 #define alc662_pcm_digital_capture alc880_pcm_digital_capture
18704 * configuration and preset
18706 static const char * const alc662_models
[ALC662_MODEL_LAST
] = {
18707 [ALC662_3ST_2ch_DIG
] = "3stack-dig",
18708 [ALC662_3ST_6ch_DIG
] = "3stack-6ch-dig",
18709 [ALC662_3ST_6ch
] = "3stack-6ch",
18710 [ALC662_5ST_DIG
] = "6stack-dig",
18711 [ALC662_LENOVO_101E
] = "lenovo-101e",
18712 [ALC662_ASUS_EEEPC_P701
] = "eeepc-p701",
18713 [ALC662_ASUS_EEEPC_EP20
] = "eeepc-ep20",
18714 [ALC662_ECS
] = "ecs",
18715 [ALC663_ASUS_M51VA
] = "m51va",
18716 [ALC663_ASUS_G71V
] = "g71v",
18717 [ALC663_ASUS_H13
] = "h13",
18718 [ALC663_ASUS_G50V
] = "g50v",
18719 [ALC663_ASUS_MODE1
] = "asus-mode1",
18720 [ALC662_ASUS_MODE2
] = "asus-mode2",
18721 [ALC663_ASUS_MODE3
] = "asus-mode3",
18722 [ALC663_ASUS_MODE4
] = "asus-mode4",
18723 [ALC663_ASUS_MODE5
] = "asus-mode5",
18724 [ALC663_ASUS_MODE6
] = "asus-mode6",
18725 [ALC663_ASUS_MODE7
] = "asus-mode7",
18726 [ALC663_ASUS_MODE8
] = "asus-mode8",
18727 [ALC272_DELL
] = "dell",
18728 [ALC272_DELL_ZM1
] = "dell-zm1",
18729 [ALC272_SAMSUNG_NC10
] = "samsung-nc10",
18730 [ALC662_AUTO
] = "auto",
18733 static struct snd_pci_quirk alc662_cfg_tbl
[] = {
18734 SND_PCI_QUIRK(0x1019, 0x9087, "ECS", ALC662_ECS
),
18735 SND_PCI_QUIRK(0x1028, 0x02d6, "DELL", ALC272_DELL
),
18736 SND_PCI_QUIRK(0x1028, 0x02f4, "DELL ZM1", ALC272_DELL_ZM1
),
18737 SND_PCI_QUIRK(0x1043, 0x1000, "ASUS N50Vm", ALC663_ASUS_MODE1
),
18738 SND_PCI_QUIRK(0x1043, 0x1092, "ASUS NB", ALC663_ASUS_MODE3
),
18739 SND_PCI_QUIRK(0x1043, 0x1173, "ASUS K73Jn", ALC663_ASUS_MODE1
),
18740 SND_PCI_QUIRK(0x1043, 0x11c3, "ASUS M70V", ALC663_ASUS_MODE3
),
18741 SND_PCI_QUIRK(0x1043, 0x11d3, "ASUS NB", ALC663_ASUS_MODE1
),
18742 SND_PCI_QUIRK(0x1043, 0x11f3, "ASUS NB", ALC662_ASUS_MODE2
),
18743 SND_PCI_QUIRK(0x1043, 0x1203, "ASUS NB", ALC663_ASUS_MODE1
),
18744 SND_PCI_QUIRK(0x1043, 0x1303, "ASUS G60J", ALC663_ASUS_MODE1
),
18745 SND_PCI_QUIRK(0x1043, 0x1333, "ASUS G60Jx", ALC663_ASUS_MODE1
),
18746 SND_PCI_QUIRK(0x1043, 0x1339, "ASUS NB", ALC662_ASUS_MODE2
),
18747 SND_PCI_QUIRK(0x1043, 0x13e3, "ASUS N71JA", ALC663_ASUS_MODE7
),
18748 SND_PCI_QUIRK(0x1043, 0x1463, "ASUS N71", ALC663_ASUS_MODE7
),
18749 SND_PCI_QUIRK(0x1043, 0x14d3, "ASUS G72", ALC663_ASUS_MODE8
),
18750 SND_PCI_QUIRK(0x1043, 0x1563, "ASUS N90", ALC663_ASUS_MODE3
),
18751 SND_PCI_QUIRK(0x1043, 0x15d3, "ASUS N50SF F50SF", ALC663_ASUS_MODE1
),
18752 SND_PCI_QUIRK(0x1043, 0x16c3, "ASUS NB", ALC662_ASUS_MODE2
),
18753 SND_PCI_QUIRK(0x1043, 0x16f3, "ASUS K40C K50C", ALC662_ASUS_MODE2
),
18754 SND_PCI_QUIRK(0x1043, 0x1733, "ASUS N81De", ALC663_ASUS_MODE1
),
18755 SND_PCI_QUIRK(0x1043, 0x1753, "ASUS NB", ALC662_ASUS_MODE2
),
18756 SND_PCI_QUIRK(0x1043, 0x1763, "ASUS NB", ALC663_ASUS_MODE6
),
18757 SND_PCI_QUIRK(0x1043, 0x1765, "ASUS NB", ALC663_ASUS_MODE6
),
18758 SND_PCI_QUIRK(0x1043, 0x1783, "ASUS NB", ALC662_ASUS_MODE2
),
18759 SND_PCI_QUIRK(0x1043, 0x1793, "ASUS F50GX", ALC663_ASUS_MODE1
),
18760 SND_PCI_QUIRK(0x1043, 0x17b3, "ASUS F70SL", ALC663_ASUS_MODE3
),
18761 SND_PCI_QUIRK(0x1043, 0x17c3, "ASUS UX20", ALC663_ASUS_M51VA
),
18762 SND_PCI_QUIRK(0x1043, 0x17f3, "ASUS X58LE", ALC662_ASUS_MODE2
),
18763 SND_PCI_QUIRK(0x1043, 0x1813, "ASUS NB", ALC662_ASUS_MODE2
),
18764 SND_PCI_QUIRK(0x1043, 0x1823, "ASUS NB", ALC663_ASUS_MODE5
),
18765 SND_PCI_QUIRK(0x1043, 0x1833, "ASUS NB", ALC663_ASUS_MODE6
),
18766 SND_PCI_QUIRK(0x1043, 0x1843, "ASUS NB", ALC662_ASUS_MODE2
),
18767 SND_PCI_QUIRK(0x1043, 0x1853, "ASUS F50Z", ALC663_ASUS_MODE1
),
18768 SND_PCI_QUIRK(0x1043, 0x1864, "ASUS NB", ALC662_ASUS_MODE2
),
18769 SND_PCI_QUIRK(0x1043, 0x1876, "ASUS NB", ALC662_ASUS_MODE2
),
18770 SND_PCI_QUIRK(0x1043, 0x1878, "ASUS M51VA", ALC663_ASUS_M51VA
),
18771 /*SND_PCI_QUIRK(0x1043, 0x1878, "ASUS M50Vr", ALC663_ASUS_MODE1),*/
18772 SND_PCI_QUIRK(0x1043, 0x1893, "ASUS M50Vm", ALC663_ASUS_MODE3
),
18773 SND_PCI_QUIRK(0x1043, 0x1894, "ASUS X55", ALC663_ASUS_MODE3
),
18774 SND_PCI_QUIRK(0x1043, 0x18b3, "ASUS N80Vc", ALC663_ASUS_MODE1
),
18775 SND_PCI_QUIRK(0x1043, 0x18c3, "ASUS VX5", ALC663_ASUS_MODE1
),
18776 SND_PCI_QUIRK(0x1043, 0x18d3, "ASUS N81Te", ALC663_ASUS_MODE1
),
18777 SND_PCI_QUIRK(0x1043, 0x18f3, "ASUS N505Tp", ALC663_ASUS_MODE1
),
18778 SND_PCI_QUIRK(0x1043, 0x1903, "ASUS F5GL", ALC663_ASUS_MODE1
),
18779 SND_PCI_QUIRK(0x1043, 0x1913, "ASUS NB", ALC662_ASUS_MODE2
),
18780 SND_PCI_QUIRK(0x1043, 0x1933, "ASUS F80Q", ALC662_ASUS_MODE2
),
18781 SND_PCI_QUIRK(0x1043, 0x1943, "ASUS Vx3V", ALC663_ASUS_MODE1
),
18782 SND_PCI_QUIRK(0x1043, 0x1953, "ASUS NB", ALC663_ASUS_MODE1
),
18783 SND_PCI_QUIRK(0x1043, 0x1963, "ASUS X71C", ALC663_ASUS_MODE3
),
18784 SND_PCI_QUIRK(0x1043, 0x1983, "ASUS N5051A", ALC663_ASUS_MODE1
),
18785 SND_PCI_QUIRK(0x1043, 0x1993, "ASUS N20", ALC663_ASUS_MODE1
),
18786 SND_PCI_QUIRK(0x1043, 0x19a3, "ASUS G50V", ALC663_ASUS_G50V
),
18787 /*SND_PCI_QUIRK(0x1043, 0x19a3, "ASUS NB", ALC663_ASUS_MODE1),*/
18788 SND_PCI_QUIRK(0x1043, 0x19b3, "ASUS F7Z", ALC663_ASUS_MODE1
),
18789 SND_PCI_QUIRK(0x1043, 0x19c3, "ASUS F5Z/F6x", ALC662_ASUS_MODE2
),
18790 SND_PCI_QUIRK(0x1043, 0x19d3, "ASUS NB", ALC663_ASUS_M51VA
),
18791 SND_PCI_QUIRK(0x1043, 0x19e3, "ASUS NB", ALC663_ASUS_MODE1
),
18792 SND_PCI_QUIRK(0x1043, 0x19f3, "ASUS NB", ALC663_ASUS_MODE4
),
18793 SND_PCI_QUIRK(0x1043, 0x8290, "ASUS P5GC-MX", ALC662_3ST_6ch_DIG
),
18794 SND_PCI_QUIRK(0x1043, 0x82a1, "ASUS Eeepc", ALC662_ASUS_EEEPC_P701
),
18795 SND_PCI_QUIRK(0x1043, 0x82d1, "ASUS Eeepc EP20", ALC662_ASUS_EEEPC_EP20
),
18796 SND_PCI_QUIRK(0x105b, 0x0cd6, "Foxconn", ALC662_ECS
),
18797 SND_PCI_QUIRK(0x105b, 0x0d47, "Foxconn 45CMX/45GMX/45CMX-K",
18798 ALC662_3ST_6ch_DIG
),
18799 SND_PCI_QUIRK(0x1179, 0xff6e, "Toshiba NB20x", ALC662_AUTO
),
18800 SND_PCI_QUIRK(0x144d, 0xca00, "Samsung NC10", ALC272_SAMSUNG_NC10
),
18801 SND_PCI_QUIRK(0x1458, 0xa002, "Gigabyte 945GCM-S2L",
18802 ALC662_3ST_6ch_DIG
),
18803 SND_PCI_QUIRK(0x152d, 0x2304, "Quanta WH1", ALC663_ASUS_H13
),
18804 SND_PCI_QUIRK(0x1565, 0x820f, "Biostar TA780G M2+", ALC662_3ST_6ch_DIG
),
18805 SND_PCI_QUIRK(0x1631, 0xc10c, "PB RS65", ALC663_ASUS_M51VA
),
18806 SND_PCI_QUIRK(0x17aa, 0x101e, "Lenovo", ALC662_LENOVO_101E
),
18807 SND_PCI_QUIRK(0x1849, 0x3662, "ASROCK K10N78FullHD-hSLI R3.0",
18808 ALC662_3ST_6ch_DIG
),
18809 SND_PCI_QUIRK_MASK(0x1854, 0xf000, 0x2000, "ASUS H13-200x",
18811 SND_PCI_QUIRK(0x1991, 0x5628, "Ordissimo EVE", ALC662_LENOVO_101E
),
18815 static struct alc_config_preset alc662_presets
[] = {
18816 [ALC662_3ST_2ch_DIG
] = {
18817 .mixers
= { alc662_3ST_2ch_mixer
},
18818 .init_verbs
= { alc662_init_verbs
},
18819 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
18820 .dac_nids
= alc662_dac_nids
,
18821 .dig_out_nid
= ALC662_DIGOUT_NID
,
18822 .dig_in_nid
= ALC662_DIGIN_NID
,
18823 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
18824 .channel_mode
= alc662_3ST_2ch_modes
,
18825 .input_mux
= &alc662_capture_source
,
18827 [ALC662_3ST_6ch_DIG
] = {
18828 .mixers
= { alc662_3ST_6ch_mixer
, alc662_chmode_mixer
},
18829 .init_verbs
= { alc662_init_verbs
},
18830 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
18831 .dac_nids
= alc662_dac_nids
,
18832 .dig_out_nid
= ALC662_DIGOUT_NID
,
18833 .dig_in_nid
= ALC662_DIGIN_NID
,
18834 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_6ch_modes
),
18835 .channel_mode
= alc662_3ST_6ch_modes
,
18837 .input_mux
= &alc662_capture_source
,
18839 [ALC662_3ST_6ch
] = {
18840 .mixers
= { alc662_3ST_6ch_mixer
, alc662_chmode_mixer
},
18841 .init_verbs
= { alc662_init_verbs
},
18842 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
18843 .dac_nids
= alc662_dac_nids
,
18844 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_6ch_modes
),
18845 .channel_mode
= alc662_3ST_6ch_modes
,
18847 .input_mux
= &alc662_capture_source
,
18849 [ALC662_5ST_DIG
] = {
18850 .mixers
= { alc662_base_mixer
, alc662_chmode_mixer
},
18851 .init_verbs
= { alc662_init_verbs
},
18852 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
18853 .dac_nids
= alc662_dac_nids
,
18854 .dig_out_nid
= ALC662_DIGOUT_NID
,
18855 .dig_in_nid
= ALC662_DIGIN_NID
,
18856 .num_channel_mode
= ARRAY_SIZE(alc662_5stack_modes
),
18857 .channel_mode
= alc662_5stack_modes
,
18858 .input_mux
= &alc662_capture_source
,
18860 [ALC662_LENOVO_101E
] = {
18861 .mixers
= { alc662_lenovo_101e_mixer
},
18862 .init_verbs
= { alc662_init_verbs
, alc662_sue_init_verbs
},
18863 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
18864 .dac_nids
= alc662_dac_nids
,
18865 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
18866 .channel_mode
= alc662_3ST_2ch_modes
,
18867 .input_mux
= &alc662_lenovo_101e_capture_source
,
18868 .unsol_event
= alc662_lenovo_101e_unsol_event
,
18869 .init_hook
= alc662_lenovo_101e_all_automute
,
18871 [ALC662_ASUS_EEEPC_P701
] = {
18872 .mixers
= { alc662_eeepc_p701_mixer
},
18873 .init_verbs
= { alc662_init_verbs
,
18874 alc662_eeepc_sue_init_verbs
},
18875 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
18876 .dac_nids
= alc662_dac_nids
,
18877 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
18878 .channel_mode
= alc662_3ST_2ch_modes
,
18879 .unsol_event
= alc662_eeepc_unsol_event
,
18880 .setup
= alc662_eeepc_setup
,
18881 .init_hook
= alc662_eeepc_inithook
,
18883 [ALC662_ASUS_EEEPC_EP20
] = {
18884 .mixers
= { alc662_eeepc_ep20_mixer
,
18885 alc662_chmode_mixer
},
18886 .init_verbs
= { alc662_init_verbs
,
18887 alc662_eeepc_ep20_sue_init_verbs
},
18888 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
18889 .dac_nids
= alc662_dac_nids
,
18890 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_6ch_modes
),
18891 .channel_mode
= alc662_3ST_6ch_modes
,
18892 .input_mux
= &alc662_lenovo_101e_capture_source
,
18893 .unsol_event
= alc662_eeepc_unsol_event
,
18894 .setup
= alc662_eeepc_ep20_setup
,
18895 .init_hook
= alc662_eeepc_ep20_inithook
,
18898 .mixers
= { alc662_ecs_mixer
},
18899 .init_verbs
= { alc662_init_verbs
,
18900 alc662_ecs_init_verbs
},
18901 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
18902 .dac_nids
= alc662_dac_nids
,
18903 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
18904 .channel_mode
= alc662_3ST_2ch_modes
,
18905 .unsol_event
= alc662_eeepc_unsol_event
,
18906 .setup
= alc662_eeepc_setup
,
18907 .init_hook
= alc662_eeepc_inithook
,
18909 [ALC663_ASUS_M51VA
] = {
18910 .mixers
= { alc663_m51va_mixer
},
18911 .init_verbs
= { alc662_init_verbs
, alc663_m51va_init_verbs
},
18912 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
18913 .dac_nids
= alc662_dac_nids
,
18914 .dig_out_nid
= ALC662_DIGOUT_NID
,
18915 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
18916 .channel_mode
= alc662_3ST_2ch_modes
,
18917 .unsol_event
= alc663_m51va_unsol_event
,
18918 .setup
= alc663_m51va_setup
,
18919 .init_hook
= alc663_m51va_inithook
,
18921 [ALC663_ASUS_G71V
] = {
18922 .mixers
= { alc663_g71v_mixer
},
18923 .init_verbs
= { alc662_init_verbs
, alc663_g71v_init_verbs
},
18924 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
18925 .dac_nids
= alc662_dac_nids
,
18926 .dig_out_nid
= ALC662_DIGOUT_NID
,
18927 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
18928 .channel_mode
= alc662_3ST_2ch_modes
,
18929 .unsol_event
= alc663_g71v_unsol_event
,
18930 .setup
= alc663_g71v_setup
,
18931 .init_hook
= alc663_g71v_inithook
,
18933 [ALC663_ASUS_H13
] = {
18934 .mixers
= { alc663_m51va_mixer
},
18935 .init_verbs
= { alc662_init_verbs
, alc663_m51va_init_verbs
},
18936 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
18937 .dac_nids
= alc662_dac_nids
,
18938 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
18939 .channel_mode
= alc662_3ST_2ch_modes
,
18940 .unsol_event
= alc663_m51va_unsol_event
,
18941 .init_hook
= alc663_m51va_inithook
,
18943 [ALC663_ASUS_G50V
] = {
18944 .mixers
= { alc663_g50v_mixer
},
18945 .init_verbs
= { alc662_init_verbs
, alc663_g50v_init_verbs
},
18946 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
18947 .dac_nids
= alc662_dac_nids
,
18948 .dig_out_nid
= ALC662_DIGOUT_NID
,
18949 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_6ch_modes
),
18950 .channel_mode
= alc662_3ST_6ch_modes
,
18951 .input_mux
= &alc663_capture_source
,
18952 .unsol_event
= alc663_g50v_unsol_event
,
18953 .setup
= alc663_g50v_setup
,
18954 .init_hook
= alc663_g50v_inithook
,
18956 [ALC663_ASUS_MODE1
] = {
18957 .mixers
= { alc663_m51va_mixer
},
18958 .cap_mixer
= alc662_auto_capture_mixer
,
18959 .init_verbs
= { alc662_init_verbs
,
18960 alc663_21jd_amic_init_verbs
},
18961 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
18963 .dac_nids
= alc662_dac_nids
,
18964 .dig_out_nid
= ALC662_DIGOUT_NID
,
18965 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
18966 .channel_mode
= alc662_3ST_2ch_modes
,
18967 .unsol_event
= alc663_mode1_unsol_event
,
18968 .setup
= alc663_mode1_setup
,
18969 .init_hook
= alc663_mode1_inithook
,
18971 [ALC662_ASUS_MODE2
] = {
18972 .mixers
= { alc662_1bjd_mixer
},
18973 .cap_mixer
= alc662_auto_capture_mixer
,
18974 .init_verbs
= { alc662_init_verbs
,
18975 alc662_1bjd_amic_init_verbs
},
18976 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
18977 .dac_nids
= alc662_dac_nids
,
18978 .dig_out_nid
= ALC662_DIGOUT_NID
,
18979 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
18980 .channel_mode
= alc662_3ST_2ch_modes
,
18981 .unsol_event
= alc662_mode2_unsol_event
,
18982 .setup
= alc662_mode2_setup
,
18983 .init_hook
= alc662_mode2_inithook
,
18985 [ALC663_ASUS_MODE3
] = {
18986 .mixers
= { alc663_two_hp_m1_mixer
},
18987 .cap_mixer
= alc662_auto_capture_mixer
,
18988 .init_verbs
= { alc662_init_verbs
,
18989 alc663_two_hp_amic_m1_init_verbs
},
18990 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
18992 .dac_nids
= alc662_dac_nids
,
18993 .dig_out_nid
= ALC662_DIGOUT_NID
,
18994 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
18995 .channel_mode
= alc662_3ST_2ch_modes
,
18996 .unsol_event
= alc663_mode3_unsol_event
,
18997 .setup
= alc663_mode3_setup
,
18998 .init_hook
= alc663_mode3_inithook
,
19000 [ALC663_ASUS_MODE4
] = {
19001 .mixers
= { alc663_asus_21jd_clfe_mixer
},
19002 .cap_mixer
= alc662_auto_capture_mixer
,
19003 .init_verbs
= { alc662_init_verbs
,
19004 alc663_21jd_amic_init_verbs
},
19005 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
19007 .dac_nids
= alc662_dac_nids
,
19008 .dig_out_nid
= ALC662_DIGOUT_NID
,
19009 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
19010 .channel_mode
= alc662_3ST_2ch_modes
,
19011 .unsol_event
= alc663_mode4_unsol_event
,
19012 .setup
= alc663_mode4_setup
,
19013 .init_hook
= alc663_mode4_inithook
,
19015 [ALC663_ASUS_MODE5
] = {
19016 .mixers
= { alc663_asus_15jd_clfe_mixer
},
19017 .cap_mixer
= alc662_auto_capture_mixer
,
19018 .init_verbs
= { alc662_init_verbs
,
19019 alc663_15jd_amic_init_verbs
},
19020 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
19022 .dac_nids
= alc662_dac_nids
,
19023 .dig_out_nid
= ALC662_DIGOUT_NID
,
19024 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
19025 .channel_mode
= alc662_3ST_2ch_modes
,
19026 .unsol_event
= alc663_mode5_unsol_event
,
19027 .setup
= alc663_mode5_setup
,
19028 .init_hook
= alc663_mode5_inithook
,
19030 [ALC663_ASUS_MODE6
] = {
19031 .mixers
= { alc663_two_hp_m2_mixer
},
19032 .cap_mixer
= alc662_auto_capture_mixer
,
19033 .init_verbs
= { alc662_init_verbs
,
19034 alc663_two_hp_amic_m2_init_verbs
},
19035 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
19037 .dac_nids
= alc662_dac_nids
,
19038 .dig_out_nid
= ALC662_DIGOUT_NID
,
19039 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
19040 .channel_mode
= alc662_3ST_2ch_modes
,
19041 .unsol_event
= alc663_mode6_unsol_event
,
19042 .setup
= alc663_mode6_setup
,
19043 .init_hook
= alc663_mode6_inithook
,
19045 [ALC663_ASUS_MODE7
] = {
19046 .mixers
= { alc663_mode7_mixer
},
19047 .cap_mixer
= alc662_auto_capture_mixer
,
19048 .init_verbs
= { alc662_init_verbs
,
19049 alc663_mode7_init_verbs
},
19050 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
19052 .dac_nids
= alc662_dac_nids
,
19053 .dig_out_nid
= ALC662_DIGOUT_NID
,
19054 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
19055 .channel_mode
= alc662_3ST_2ch_modes
,
19056 .unsol_event
= alc663_mode7_unsol_event
,
19057 .setup
= alc663_mode7_setup
,
19058 .init_hook
= alc663_mode7_inithook
,
19060 [ALC663_ASUS_MODE8
] = {
19061 .mixers
= { alc663_mode8_mixer
},
19062 .cap_mixer
= alc662_auto_capture_mixer
,
19063 .init_verbs
= { alc662_init_verbs
,
19064 alc663_mode8_init_verbs
},
19065 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
19067 .dac_nids
= alc662_dac_nids
,
19068 .dig_out_nid
= ALC662_DIGOUT_NID
,
19069 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
19070 .channel_mode
= alc662_3ST_2ch_modes
,
19071 .unsol_event
= alc663_mode8_unsol_event
,
19072 .setup
= alc663_mode8_setup
,
19073 .init_hook
= alc663_mode8_inithook
,
19076 .mixers
= { alc663_m51va_mixer
},
19077 .cap_mixer
= alc272_auto_capture_mixer
,
19078 .init_verbs
= { alc662_init_verbs
, alc272_dell_init_verbs
},
19079 .num_dacs
= ARRAY_SIZE(alc272_dac_nids
),
19080 .dac_nids
= alc662_dac_nids
,
19081 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
19082 .adc_nids
= alc272_adc_nids
,
19083 .num_adc_nids
= ARRAY_SIZE(alc272_adc_nids
),
19084 .capsrc_nids
= alc272_capsrc_nids
,
19085 .channel_mode
= alc662_3ST_2ch_modes
,
19086 .unsol_event
= alc663_m51va_unsol_event
,
19087 .setup
= alc663_m51va_setup
,
19088 .init_hook
= alc663_m51va_inithook
,
19090 [ALC272_DELL_ZM1
] = {
19091 .mixers
= { alc663_m51va_mixer
},
19092 .cap_mixer
= alc662_auto_capture_mixer
,
19093 .init_verbs
= { alc662_init_verbs
, alc272_dell_zm1_init_verbs
},
19094 .num_dacs
= ARRAY_SIZE(alc272_dac_nids
),
19095 .dac_nids
= alc662_dac_nids
,
19096 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
19097 .adc_nids
= alc662_adc_nids
,
19099 .capsrc_nids
= alc662_capsrc_nids
,
19100 .channel_mode
= alc662_3ST_2ch_modes
,
19101 .unsol_event
= alc663_m51va_unsol_event
,
19102 .setup
= alc663_m51va_setup
,
19103 .init_hook
= alc663_m51va_inithook
,
19105 [ALC272_SAMSUNG_NC10
] = {
19106 .mixers
= { alc272_nc10_mixer
},
19107 .init_verbs
= { alc662_init_verbs
,
19108 alc663_21jd_amic_init_verbs
},
19109 .num_dacs
= ARRAY_SIZE(alc272_dac_nids
),
19110 .dac_nids
= alc272_dac_nids
,
19111 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
19112 .channel_mode
= alc662_3ST_2ch_modes
,
19113 /*.input_mux = &alc272_nc10_capture_source,*/
19114 .unsol_event
= alc663_mode4_unsol_event
,
19115 .setup
= alc663_mode4_setup
,
19116 .init_hook
= alc663_mode4_inithook
,
19122 * BIOS auto configuration
19125 /* convert from MIX nid to DAC */
19126 static inline hda_nid_t
alc662_mix_to_dac(hda_nid_t nid
)
19130 else if (nid
>= 0x0c && nid
<= 0x0e)
19131 return nid
- 0x0c + 0x02;
19132 else if (nid
== 0x26) /* ALC887-VD has this DAC too */
19138 /* get MIX nid connected to the given pin targeted to DAC */
19139 static hda_nid_t
alc662_dac_to_mix(struct hda_codec
*codec
, hda_nid_t pin
,
19145 num
= snd_hda_get_connections(codec
, pin
, mix
, ARRAY_SIZE(mix
));
19146 for (i
= 0; i
< num
; i
++) {
19147 if (alc662_mix_to_dac(mix
[i
]) == dac
)
19153 /* look for an empty DAC slot */
19154 static hda_nid_t
alc662_look_for_dac(struct hda_codec
*codec
, hda_nid_t pin
)
19156 struct alc_spec
*spec
= codec
->spec
;
19160 num
= snd_hda_get_connections(codec
, pin
, srcs
, ARRAY_SIZE(srcs
));
19163 for (i
= 0; i
< num
; i
++) {
19164 hda_nid_t nid
= alc662_mix_to_dac(srcs
[i
]);
19167 for (j
= 0; j
< spec
->multiout
.num_dacs
; j
++)
19168 if (spec
->multiout
.dac_nids
[j
] == nid
)
19170 if (j
>= spec
->multiout
.num_dacs
)
19176 /* fill in the dac_nids table from the parsed pin configuration */
19177 static int alc662_auto_fill_dac_nids(struct hda_codec
*codec
,
19178 const struct auto_pin_cfg
*cfg
)
19180 struct alc_spec
*spec
= codec
->spec
;
19184 spec
->multiout
.dac_nids
= spec
->private_dac_nids
;
19185 for (i
= 0; i
< cfg
->line_outs
; i
++) {
19186 dac
= alc662_look_for_dac(codec
, cfg
->line_out_pins
[i
]);
19189 spec
->multiout
.dac_nids
[spec
->multiout
.num_dacs
++] = dac
;
19194 static inline int __alc662_add_vol_ctl(struct alc_spec
*spec
, const char *pfx
,
19195 hda_nid_t nid
, int idx
, unsigned int chs
)
19197 return __add_pb_vol_ctrl(spec
, ALC_CTL_WIDGET_VOL
, pfx
, idx
,
19198 HDA_COMPOSE_AMP_VAL(nid
, chs
, 0, HDA_OUTPUT
));
19201 static inline int __alc662_add_sw_ctl(struct alc_spec
*spec
, const char *pfx
,
19202 hda_nid_t nid
, int idx
, unsigned int chs
)
19204 return __add_pb_sw_ctrl(spec
, ALC_CTL_WIDGET_MUTE
, pfx
, idx
,
19205 HDA_COMPOSE_AMP_VAL(nid
, chs
, 0, HDA_INPUT
));
19208 #define alc662_add_vol_ctl(spec, pfx, nid, chs) \
19209 __alc662_add_vol_ctl(spec, pfx, nid, 0, chs)
19210 #define alc662_add_sw_ctl(spec, pfx, nid, chs) \
19211 __alc662_add_sw_ctl(spec, pfx, nid, 0, chs)
19212 #define alc662_add_stereo_vol(spec, pfx, nid) \
19213 alc662_add_vol_ctl(spec, pfx, nid, 3)
19214 #define alc662_add_stereo_sw(spec, pfx, nid) \
19215 alc662_add_sw_ctl(spec, pfx, nid, 3)
19217 /* add playback controls from the parsed DAC table */
19218 static int alc662_auto_create_multi_out_ctls(struct hda_codec
*codec
,
19219 const struct auto_pin_cfg
*cfg
)
19221 struct alc_spec
*spec
= codec
->spec
;
19222 static const char * const chname
[4] = {
19223 "Front", "Surround", NULL
/*CLFE*/, "Side"
19225 const char *pfx
= alc_get_line_out_pfx(cfg
, true);
19226 hda_nid_t nid
, mix
;
19229 for (i
= 0; i
< cfg
->line_outs
; i
++) {
19230 nid
= spec
->multiout
.dac_nids
[i
];
19233 mix
= alc662_dac_to_mix(codec
, cfg
->line_out_pins
[i
], nid
);
19236 if (!pfx
&& i
== 2) {
19238 err
= alc662_add_vol_ctl(spec
, "Center", nid
, 1);
19241 err
= alc662_add_vol_ctl(spec
, "LFE", nid
, 2);
19244 err
= alc662_add_sw_ctl(spec
, "Center", mix
, 1);
19247 err
= alc662_add_sw_ctl(spec
, "LFE", mix
, 2);
19251 const char *name
= pfx
;
19257 err
= __alc662_add_vol_ctl(spec
, name
, nid
, index
, 3);
19260 err
= __alc662_add_sw_ctl(spec
, name
, mix
, index
, 3);
19268 /* add playback controls for speaker and HP outputs */
19269 /* return DAC nid if any new DAC is assigned */
19270 static int alc662_auto_create_extra_out(struct hda_codec
*codec
, hda_nid_t pin
,
19273 struct alc_spec
*spec
= codec
->spec
;
19274 hda_nid_t nid
, mix
;
19279 nid
= alc662_look_for_dac(codec
, pin
);
19281 /* the corresponding DAC is already occupied */
19282 if (!(get_wcaps(codec
, pin
) & AC_WCAP_OUT_AMP
))
19283 return 0; /* no way */
19284 /* create a switch only */
19285 return add_pb_sw_ctrl(spec
, ALC_CTL_WIDGET_MUTE
, pfx
,
19286 HDA_COMPOSE_AMP_VAL(pin
, 3, 0, HDA_OUTPUT
));
19289 mix
= alc662_dac_to_mix(codec
, pin
, nid
);
19292 err
= alc662_add_vol_ctl(spec
, pfx
, nid
, 3);
19295 err
= alc662_add_sw_ctl(spec
, pfx
, mix
, 3);
19301 /* create playback/capture controls for input pins */
19302 #define alc662_auto_create_input_ctls \
19303 alc882_auto_create_input_ctls
19305 static void alc662_auto_set_output_and_unmute(struct hda_codec
*codec
,
19306 hda_nid_t nid
, int pin_type
,
19310 hda_nid_t srcs
[HDA_MAX_CONNECTIONS
];
19312 alc_set_pin_output(codec
, nid
, pin_type
);
19313 /* need the manual connection? */
19314 num
= snd_hda_get_connections(codec
, nid
, srcs
, ARRAY_SIZE(srcs
));
19317 for (i
= 0; i
< num
; i
++) {
19318 if (alc662_mix_to_dac(srcs
[i
]) != dac
)
19320 snd_hda_codec_write(codec
, nid
, 0, AC_VERB_SET_CONNECT_SEL
, i
);
19325 static void alc662_auto_init_multi_out(struct hda_codec
*codec
)
19327 struct alc_spec
*spec
= codec
->spec
;
19328 int pin_type
= get_pin_type(spec
->autocfg
.line_out_type
);
19331 for (i
= 0; i
<= HDA_SIDE
; i
++) {
19332 hda_nid_t nid
= spec
->autocfg
.line_out_pins
[i
];
19334 alc662_auto_set_output_and_unmute(codec
, nid
, pin_type
,
19335 spec
->multiout
.dac_nids
[i
]);
19339 static void alc662_auto_init_hp_out(struct hda_codec
*codec
)
19341 struct alc_spec
*spec
= codec
->spec
;
19344 pin
= spec
->autocfg
.hp_pins
[0];
19346 alc662_auto_set_output_and_unmute(codec
, pin
, PIN_HP
,
19347 spec
->multiout
.hp_nid
);
19348 pin
= spec
->autocfg
.speaker_pins
[0];
19350 alc662_auto_set_output_and_unmute(codec
, pin
, PIN_OUT
,
19351 spec
->multiout
.extra_out_nid
[0]);
19354 #define ALC662_PIN_CD_NID ALC880_PIN_CD_NID
19356 static void alc662_auto_init_analog_input(struct hda_codec
*codec
)
19358 struct alc_spec
*spec
= codec
->spec
;
19359 struct auto_pin_cfg
*cfg
= &spec
->autocfg
;
19362 for (i
= 0; i
< cfg
->num_inputs
; i
++) {
19363 hda_nid_t nid
= cfg
->inputs
[i
].pin
;
19364 if (alc_is_input_pin(codec
, nid
)) {
19365 alc_set_input_pin(codec
, nid
, cfg
->inputs
[i
].type
);
19366 if (nid
!= ALC662_PIN_CD_NID
&&
19367 (get_wcaps(codec
, nid
) & AC_WCAP_OUT_AMP
))
19368 snd_hda_codec_write(codec
, nid
, 0,
19369 AC_VERB_SET_AMP_GAIN_MUTE
,
19375 #define alc662_auto_init_input_src alc882_auto_init_input_src
19377 static int alc662_parse_auto_config(struct hda_codec
*codec
)
19379 struct alc_spec
*spec
= codec
->spec
;
19381 static hda_nid_t alc662_ignore
[] = { 0x1d, 0 };
19383 err
= snd_hda_parse_pin_def_config(codec
, &spec
->autocfg
,
19387 if (!spec
->autocfg
.line_outs
)
19388 return 0; /* can't find valid BIOS pin config */
19390 err
= alc662_auto_fill_dac_nids(codec
, &spec
->autocfg
);
19393 err
= alc662_auto_create_multi_out_ctls(codec
, &spec
->autocfg
);
19396 err
= alc662_auto_create_extra_out(codec
,
19397 spec
->autocfg
.speaker_pins
[0],
19402 spec
->multiout
.extra_out_nid
[0] = err
;
19403 err
= alc662_auto_create_extra_out(codec
, spec
->autocfg
.hp_pins
[0],
19408 spec
->multiout
.hp_nid
= err
;
19409 err
= alc662_auto_create_input_ctls(codec
, &spec
->autocfg
);
19413 spec
->multiout
.max_channels
= spec
->multiout
.num_dacs
* 2;
19415 alc_auto_parse_digital(codec
);
19417 if (spec
->kctls
.list
)
19418 add_mixer(spec
, spec
->kctls
.list
);
19420 spec
->num_mux_defs
= 1;
19421 spec
->input_mux
= &spec
->private_imux
[0];
19423 add_verb(spec
, alc662_init_verbs
);
19424 if (codec
->vendor_id
== 0x10ec0272 || codec
->vendor_id
== 0x10ec0663 ||
19425 codec
->vendor_id
== 0x10ec0665 || codec
->vendor_id
== 0x10ec0670)
19426 add_verb(spec
, alc663_init_verbs
);
19428 if (codec
->vendor_id
== 0x10ec0272)
19429 add_verb(spec
, alc272_init_verbs
);
19431 err
= alc_auto_add_mic_boost(codec
);
19435 if (codec
->vendor_id
== 0x10ec0272 || codec
->vendor_id
== 0x10ec0663 ||
19436 codec
->vendor_id
== 0x10ec0665 || codec
->vendor_id
== 0x10ec0670)
19437 alc_ssid_check(codec
, 0x15, 0x1b, 0x14, 0x21);
19439 alc_ssid_check(codec
, 0x15, 0x1b, 0x14, 0);
19444 /* additional initialization for auto-configuration model */
19445 static void alc662_auto_init(struct hda_codec
*codec
)
19447 struct alc_spec
*spec
= codec
->spec
;
19448 alc662_auto_init_multi_out(codec
);
19449 alc662_auto_init_hp_out(codec
);
19450 alc662_auto_init_analog_input(codec
);
19451 alc662_auto_init_input_src(codec
);
19452 alc_auto_init_digital(codec
);
19453 if (spec
->unsol_event
)
19454 alc_inithook(codec
);
19457 static void alc272_fixup_mario(struct hda_codec
*codec
,
19458 const struct alc_fixup
*fix
, int action
)
19460 if (action
!= ALC_FIXUP_ACT_PROBE
)
19462 if (snd_hda_override_amp_caps(codec
, 0x2, HDA_OUTPUT
,
19463 (0x3b << AC_AMPCAP_OFFSET_SHIFT
) |
19464 (0x3b << AC_AMPCAP_NUM_STEPS_SHIFT
) |
19465 (0x03 << AC_AMPCAP_STEP_SIZE_SHIFT
) |
19466 (0 << AC_AMPCAP_MUTE_SHIFT
)))
19467 printk(KERN_WARNING
19468 "hda_codec: failed to override amp caps for NID 0x2\n");
19472 ALC662_FIXUP_ASPIRE
,
19473 ALC662_FIXUP_IDEAPAD
,
19474 ALC272_FIXUP_MARIO
,
19475 ALC662_FIXUP_CZC_P10T
,
19476 ALC662_FIXUP_SKU_IGNORE
,
19479 static const struct alc_fixup alc662_fixups
[] = {
19480 [ALC662_FIXUP_ASPIRE
] = {
19481 .type
= ALC_FIXUP_PINS
,
19482 .v
.pins
= (const struct alc_pincfg
[]) {
19483 { 0x15, 0x99130112 }, /* subwoofer */
19487 [ALC662_FIXUP_IDEAPAD
] = {
19488 .type
= ALC_FIXUP_PINS
,
19489 .v
.pins
= (const struct alc_pincfg
[]) {
19490 { 0x17, 0x99130112 }, /* subwoofer */
19494 [ALC272_FIXUP_MARIO
] = {
19495 .type
= ALC_FIXUP_FUNC
,
19496 .v
.func
= alc272_fixup_mario
,
19498 [ALC662_FIXUP_CZC_P10T
] = {
19499 .type
= ALC_FIXUP_VERBS
,
19500 .v
.verbs
= (const struct hda_verb
[]) {
19501 {0x14, AC_VERB_SET_EAPD_BTLENABLE
, 0},
19505 [ALC662_FIXUP_SKU_IGNORE
] = {
19506 .type
= ALC_FIXUP_SKU
,
19507 .v
.sku
= ALC_FIXUP_SKU_IGNORE
,
19511 static struct snd_pci_quirk alc662_fixup_tbl
[] = {
19512 SND_PCI_QUIRK(0x1025, 0x0308, "Acer Aspire 8942G", ALC662_FIXUP_ASPIRE
),
19513 SND_PCI_QUIRK(0x1025, 0x031c, "Gateway NV79", ALC662_FIXUP_SKU_IGNORE
),
19514 SND_PCI_QUIRK(0x1025, 0x038b, "Acer Aspire 8943G", ALC662_FIXUP_ASPIRE
),
19515 SND_PCI_QUIRK(0x144d, 0xc051, "Samsung R720", ALC662_FIXUP_IDEAPAD
),
19516 SND_PCI_QUIRK(0x17aa, 0x38af, "Lenovo Ideapad Y550P", ALC662_FIXUP_IDEAPAD
),
19517 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Ideapad Y550", ALC662_FIXUP_IDEAPAD
),
19518 SND_PCI_QUIRK(0x1b35, 0x2206, "CZC P10T", ALC662_FIXUP_CZC_P10T
),
19522 static const struct alc_model_fixup alc662_fixup_models
[] = {
19523 {.id
= ALC272_FIXUP_MARIO
, .name
= "mario"},
19528 static int patch_alc662(struct hda_codec
*codec
)
19530 struct alc_spec
*spec
;
19531 int err
, board_config
;
19534 spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
19538 codec
->spec
= spec
;
19540 alc_auto_parse_customize_define(codec
);
19542 alc_fix_pll_init(codec
, 0x20, 0x04, 15);
19544 coef
= alc_read_coef_idx(codec
, 0);
19545 if (coef
== 0x8020 || coef
== 0x8011)
19546 alc_codec_rename(codec
, "ALC661");
19547 else if (coef
& (1 << 14) &&
19548 codec
->bus
->pci
->subsystem_vendor
== 0x1025 &&
19549 spec
->cdefine
.platform_type
== 1)
19550 alc_codec_rename(codec
, "ALC272X");
19551 else if (coef
== 0x4011)
19552 alc_codec_rename(codec
, "ALC656");
19554 board_config
= snd_hda_check_board_config(codec
, ALC662_MODEL_LAST
,
19557 if (board_config
< 0) {
19558 printk(KERN_INFO
"hda_codec: %s: BIOS auto-probing.\n",
19560 board_config
= ALC662_AUTO
;
19563 if (board_config
== ALC662_AUTO
) {
19564 alc_pick_fixup(codec
, alc662_fixup_models
,
19565 alc662_fixup_tbl
, alc662_fixups
);
19566 alc_apply_fixup(codec
, ALC_FIXUP_ACT_PRE_PROBE
);
19567 /* automatic parse from the BIOS config */
19568 err
= alc662_parse_auto_config(codec
);
19574 "hda_codec: Cannot set up configuration "
19575 "from BIOS. Using base mode...\n");
19576 board_config
= ALC662_3ST_2ch_DIG
;
19580 if (has_cdefine_beep(codec
)) {
19581 err
= snd_hda_attach_beep_device(codec
, 0x1);
19588 if (board_config
!= ALC662_AUTO
)
19589 setup_preset(codec
, &alc662_presets
[board_config
]);
19591 spec
->stream_analog_playback
= &alc662_pcm_analog_playback
;
19592 spec
->stream_analog_capture
= &alc662_pcm_analog_capture
;
19594 spec
->stream_digital_playback
= &alc662_pcm_digital_playback
;
19595 spec
->stream_digital_capture
= &alc662_pcm_digital_capture
;
19597 if (!spec
->adc_nids
) {
19598 spec
->adc_nids
= alc662_adc_nids
;
19599 spec
->num_adc_nids
= ARRAY_SIZE(alc662_adc_nids
);
19601 if (!spec
->capsrc_nids
)
19602 spec
->capsrc_nids
= alc662_capsrc_nids
;
19604 if (!spec
->cap_mixer
)
19605 set_capture_mixer(codec
);
19607 if (has_cdefine_beep(codec
)) {
19608 switch (codec
->vendor_id
) {
19610 set_beep_amp(spec
, 0x0b, 0x05, HDA_INPUT
);
19615 set_beep_amp(spec
, 0x0b, 0x04, HDA_INPUT
);
19618 set_beep_amp(spec
, 0x0b, 0x03, HDA_INPUT
);
19622 spec
->vmaster_nid
= 0x02;
19624 alc_apply_fixup(codec
, ALC_FIXUP_ACT_PROBE
);
19626 codec
->patch_ops
= alc_patch_ops
;
19627 if (board_config
== ALC662_AUTO
)
19628 spec
->init_hook
= alc662_auto_init
;
19630 alc_init_jacks(codec
);
19632 #ifdef CONFIG_SND_HDA_POWER_SAVE
19633 if (!spec
->loopback
.amplist
)
19634 spec
->loopback
.amplist
= alc662_loopbacks
;
19640 static int patch_alc888(struct hda_codec
*codec
)
19642 if ((alc_read_coef_idx(codec
, 0) & 0x00f0)==0x0030){
19643 kfree(codec
->chip_name
);
19644 if (codec
->vendor_id
== 0x10ec0887)
19645 codec
->chip_name
= kstrdup("ALC887-VD", GFP_KERNEL
);
19647 codec
->chip_name
= kstrdup("ALC888-VD", GFP_KERNEL
);
19648 if (!codec
->chip_name
) {
19652 return patch_alc662(codec
);
19654 return patch_alc882(codec
);
19660 #define ALC680_DIGIN_NID ALC880_DIGIN_NID
19661 #define ALC680_DIGOUT_NID ALC880_DIGOUT_NID
19662 #define alc680_modes alc260_modes
19664 static hda_nid_t alc680_dac_nids
[3] = {
19665 /* Lout1, Lout2, hp */
19669 static hda_nid_t alc680_adc_nids
[3] = {
19671 /* DMIC, MIC, Line-in*/
19676 * Analog capture ADC cgange
19678 static void alc680_rec_autoswitch(struct hda_codec
*codec
)
19680 struct alc_spec
*spec
= codec
->spec
;
19681 struct auto_pin_cfg
*cfg
= &spec
->autocfg
;
19683 int type_found
= AUTO_PIN_LAST
;
19687 for (i
= 0; i
< cfg
->num_inputs
; i
++) {
19688 nid
= cfg
->inputs
[i
].pin
;
19689 if (!(snd_hda_query_pin_caps(codec
, nid
) &
19690 AC_PINCAP_PRES_DETECT
))
19692 if (snd_hda_jack_detect(codec
, nid
)) {
19693 if (cfg
->inputs
[i
].type
< type_found
) {
19694 type_found
= cfg
->inputs
[i
].type
;
19702 snd_hda_get_connections(codec
, pin_found
, &nid
, 1);
19704 if (nid
!= spec
->cur_adc
)
19705 __snd_hda_codec_cleanup_stream(codec
, spec
->cur_adc
, 1);
19706 spec
->cur_adc
= nid
;
19707 snd_hda_codec_setup_stream(codec
, nid
, spec
->cur_adc_stream_tag
, 0,
19708 spec
->cur_adc_format
);
19711 static int alc680_capture_pcm_prepare(struct hda_pcm_stream
*hinfo
,
19712 struct hda_codec
*codec
,
19713 unsigned int stream_tag
,
19714 unsigned int format
,
19715 struct snd_pcm_substream
*substream
)
19717 struct alc_spec
*spec
= codec
->spec
;
19719 spec
->cur_adc
= 0x07;
19720 spec
->cur_adc_stream_tag
= stream_tag
;
19721 spec
->cur_adc_format
= format
;
19723 alc680_rec_autoswitch(codec
);
19727 static int alc680_capture_pcm_cleanup(struct hda_pcm_stream
*hinfo
,
19728 struct hda_codec
*codec
,
19729 struct snd_pcm_substream
*substream
)
19731 snd_hda_codec_cleanup_stream(codec
, 0x07);
19732 snd_hda_codec_cleanup_stream(codec
, 0x08);
19733 snd_hda_codec_cleanup_stream(codec
, 0x09);
19737 static struct hda_pcm_stream alc680_pcm_analog_auto_capture
= {
19738 .substreams
= 1, /* can be overridden */
19741 /* NID is set in alc_build_pcms */
19743 .prepare
= alc680_capture_pcm_prepare
,
19744 .cleanup
= alc680_capture_pcm_cleanup
19748 static struct snd_kcontrol_new alc680_base_mixer
[] = {
19749 /* output mixer control */
19750 HDA_CODEC_VOLUME("Front Playback Volume", 0x2, 0x0, HDA_OUTPUT
),
19751 HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
19752 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x4, 0x0, HDA_OUTPUT
),
19753 HDA_CODEC_MUTE("Headphone Playback Switch", 0x16, 0x0, HDA_OUTPUT
),
19754 HDA_CODEC_VOLUME("Internal Mic Boost Volume", 0x12, 0, HDA_INPUT
),
19755 HDA_CODEC_VOLUME("Mic Boost Volume", 0x18, 0, HDA_INPUT
),
19756 HDA_CODEC_VOLUME("Line In Boost Volume", 0x19, 0, HDA_INPUT
),
19760 static struct hda_bind_ctls alc680_bind_cap_vol
= {
19761 .ops
= &snd_hda_bind_vol
,
19763 HDA_COMPOSE_AMP_VAL(0x07, 3, 0, HDA_INPUT
),
19764 HDA_COMPOSE_AMP_VAL(0x08, 3, 0, HDA_INPUT
),
19765 HDA_COMPOSE_AMP_VAL(0x09, 3, 0, HDA_INPUT
),
19770 static struct hda_bind_ctls alc680_bind_cap_switch
= {
19771 .ops
= &snd_hda_bind_sw
,
19773 HDA_COMPOSE_AMP_VAL(0x07, 3, 0, HDA_INPUT
),
19774 HDA_COMPOSE_AMP_VAL(0x08, 3, 0, HDA_INPUT
),
19775 HDA_COMPOSE_AMP_VAL(0x09, 3, 0, HDA_INPUT
),
19780 static struct snd_kcontrol_new alc680_master_capture_mixer
[] = {
19781 HDA_BIND_VOL("Capture Volume", &alc680_bind_cap_vol
),
19782 HDA_BIND_SW("Capture Switch", &alc680_bind_cap_switch
),
19787 * generic initialization of ADC, input mixers and output mixers
19789 static struct hda_verb alc680_init_verbs
[] = {
19790 {0x02, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
19791 {0x03, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
19792 {0x04, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
19794 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
19795 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
19796 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
19797 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
19798 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
19799 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
19801 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
19802 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
19803 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
19804 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
19805 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
19807 {0x16, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
19808 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_MIC_EVENT
| AC_USRSP_EN
},
19809 {0x19, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_MIC_EVENT
| AC_USRSP_EN
},
19814 /* toggle speaker-output according to the hp-jack state */
19815 static void alc680_base_setup(struct hda_codec
*codec
)
19817 struct alc_spec
*spec
= codec
->spec
;
19819 spec
->autocfg
.hp_pins
[0] = 0x16;
19820 spec
->autocfg
.speaker_pins
[0] = 0x14;
19821 spec
->autocfg
.speaker_pins
[1] = 0x15;
19822 spec
->autocfg
.num_inputs
= 2;
19823 spec
->autocfg
.inputs
[0].pin
= 0x18;
19824 spec
->autocfg
.inputs
[0].type
= AUTO_PIN_MIC
;
19825 spec
->autocfg
.inputs
[1].pin
= 0x19;
19826 spec
->autocfg
.inputs
[1].type
= AUTO_PIN_LINE_IN
;
19829 static void alc680_unsol_event(struct hda_codec
*codec
,
19832 if ((res
>> 26) == ALC880_HP_EVENT
)
19833 alc_automute_amp(codec
);
19834 if ((res
>> 26) == ALC880_MIC_EVENT
)
19835 alc680_rec_autoswitch(codec
);
19838 static void alc680_inithook(struct hda_codec
*codec
)
19840 alc_automute_amp(codec
);
19841 alc680_rec_autoswitch(codec
);
19844 /* create input playback/capture controls for the given pin */
19845 static int alc680_new_analog_output(struct alc_spec
*spec
, hda_nid_t nid
,
19846 const char *ctlname
, int idx
)
19864 if (spec
->multiout
.dac_nids
[0] != dac
&&
19865 spec
->multiout
.dac_nids
[1] != dac
) {
19866 err
= add_pb_vol_ctrl(spec
, ALC_CTL_WIDGET_VOL
, ctlname
,
19867 HDA_COMPOSE_AMP_VAL(dac
, 3, idx
,
19872 err
= add_pb_sw_ctrl(spec
, ALC_CTL_WIDGET_MUTE
, ctlname
,
19873 HDA_COMPOSE_AMP_VAL(nid
, 3, idx
, HDA_OUTPUT
));
19877 spec
->multiout
.dac_nids
[spec
->multiout
.num_dacs
++] = dac
;
19883 /* add playback controls from the parsed DAC table */
19884 static int alc680_auto_create_multi_out_ctls(struct alc_spec
*spec
,
19885 const struct auto_pin_cfg
*cfg
)
19890 spec
->multiout
.dac_nids
= spec
->private_dac_nids
;
19892 nid
= cfg
->line_out_pins
[0];
19895 if (cfg
->line_out_type
== AUTO_PIN_SPEAKER_OUT
)
19899 err
= alc680_new_analog_output(spec
, nid
, name
, 0);
19904 nid
= cfg
->speaker_pins
[0];
19906 err
= alc680_new_analog_output(spec
, nid
, "Speaker", 0);
19910 nid
= cfg
->hp_pins
[0];
19912 err
= alc680_new_analog_output(spec
, nid
, "Headphone", 0);
19920 static void alc680_auto_set_output_and_unmute(struct hda_codec
*codec
,
19921 hda_nid_t nid
, int pin_type
)
19923 alc_set_pin_output(codec
, nid
, pin_type
);
19926 static void alc680_auto_init_multi_out(struct hda_codec
*codec
)
19928 struct alc_spec
*spec
= codec
->spec
;
19929 hda_nid_t nid
= spec
->autocfg
.line_out_pins
[0];
19931 int pin_type
= get_pin_type(spec
->autocfg
.line_out_type
);
19932 alc680_auto_set_output_and_unmute(codec
, nid
, pin_type
);
19936 static void alc680_auto_init_hp_out(struct hda_codec
*codec
)
19938 struct alc_spec
*spec
= codec
->spec
;
19941 pin
= spec
->autocfg
.hp_pins
[0];
19943 alc680_auto_set_output_and_unmute(codec
, pin
, PIN_HP
);
19944 pin
= spec
->autocfg
.speaker_pins
[0];
19946 alc680_auto_set_output_and_unmute(codec
, pin
, PIN_OUT
);
19949 /* pcm configuration: identical with ALC880 */
19950 #define alc680_pcm_analog_playback alc880_pcm_analog_playback
19951 #define alc680_pcm_analog_capture alc880_pcm_analog_capture
19952 #define alc680_pcm_analog_alt_capture alc880_pcm_analog_alt_capture
19953 #define alc680_pcm_digital_playback alc880_pcm_digital_playback
19954 #define alc680_pcm_digital_capture alc880_pcm_digital_capture
19957 * BIOS auto configuration
19959 static int alc680_parse_auto_config(struct hda_codec
*codec
)
19961 struct alc_spec
*spec
= codec
->spec
;
19963 static hda_nid_t alc680_ignore
[] = { 0 };
19965 err
= snd_hda_parse_pin_def_config(codec
, &spec
->autocfg
,
19970 if (!spec
->autocfg
.line_outs
) {
19971 if (spec
->autocfg
.dig_outs
|| spec
->autocfg
.dig_in_pin
) {
19972 spec
->multiout
.max_channels
= 2;
19973 spec
->no_analog
= 1;
19976 return 0; /* can't find valid BIOS pin config */
19978 err
= alc680_auto_create_multi_out_ctls(spec
, &spec
->autocfg
);
19982 spec
->multiout
.max_channels
= 2;
19985 /* digital only support output */
19986 alc_auto_parse_digital(codec
);
19987 if (spec
->kctls
.list
)
19988 add_mixer(spec
, spec
->kctls
.list
);
19990 add_verb(spec
, alc680_init_verbs
);
19992 err
= alc_auto_add_mic_boost(codec
);
19999 #define alc680_auto_init_analog_input alc882_auto_init_analog_input
20001 /* init callback for auto-configuration model -- overriding the default init */
20002 static void alc680_auto_init(struct hda_codec
*codec
)
20004 struct alc_spec
*spec
= codec
->spec
;
20005 alc680_auto_init_multi_out(codec
);
20006 alc680_auto_init_hp_out(codec
);
20007 alc680_auto_init_analog_input(codec
);
20008 alc_auto_init_digital(codec
);
20009 if (spec
->unsol_event
)
20010 alc_inithook(codec
);
20014 * configuration and preset
20016 static const char * const alc680_models
[ALC680_MODEL_LAST
] = {
20017 [ALC680_BASE
] = "base",
20018 [ALC680_AUTO
] = "auto",
20021 static struct snd_pci_quirk alc680_cfg_tbl
[] = {
20022 SND_PCI_QUIRK(0x1043, 0x12f3, "ASUS NX90", ALC680_BASE
),
20026 static struct alc_config_preset alc680_presets
[] = {
20028 .mixers
= { alc680_base_mixer
},
20029 .cap_mixer
= alc680_master_capture_mixer
,
20030 .init_verbs
= { alc680_init_verbs
},
20031 .num_dacs
= ARRAY_SIZE(alc680_dac_nids
),
20032 .dac_nids
= alc680_dac_nids
,
20033 .dig_out_nid
= ALC680_DIGOUT_NID
,
20034 .num_channel_mode
= ARRAY_SIZE(alc680_modes
),
20035 .channel_mode
= alc680_modes
,
20036 .unsol_event
= alc680_unsol_event
,
20037 .setup
= alc680_base_setup
,
20038 .init_hook
= alc680_inithook
,
20043 static int patch_alc680(struct hda_codec
*codec
)
20045 struct alc_spec
*spec
;
20049 spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
20053 codec
->spec
= spec
;
20055 board_config
= snd_hda_check_board_config(codec
, ALC680_MODEL_LAST
,
20059 if (board_config
< 0 || board_config
>= ALC680_MODEL_LAST
) {
20060 printk(KERN_INFO
"hda_codec: %s: BIOS auto-probing.\n",
20062 board_config
= ALC680_AUTO
;
20065 if (board_config
== ALC680_AUTO
) {
20066 /* automatic parse from the BIOS config */
20067 err
= alc680_parse_auto_config(codec
);
20073 "hda_codec: Cannot set up configuration "
20074 "from BIOS. Using base mode...\n");
20075 board_config
= ALC680_BASE
;
20079 if (board_config
!= ALC680_AUTO
)
20080 setup_preset(codec
, &alc680_presets
[board_config
]);
20082 spec
->stream_analog_playback
= &alc680_pcm_analog_playback
;
20083 spec
->stream_analog_capture
= &alc680_pcm_analog_auto_capture
;
20084 spec
->stream_digital_playback
= &alc680_pcm_digital_playback
;
20085 spec
->stream_digital_capture
= &alc680_pcm_digital_capture
;
20087 if (!spec
->adc_nids
) {
20088 spec
->adc_nids
= alc680_adc_nids
;
20089 spec
->num_adc_nids
= ARRAY_SIZE(alc680_adc_nids
);
20092 if (!spec
->cap_mixer
)
20093 set_capture_mixer(codec
);
20095 spec
->vmaster_nid
= 0x02;
20097 codec
->patch_ops
= alc_patch_ops
;
20098 if (board_config
== ALC680_AUTO
)
20099 spec
->init_hook
= alc680_auto_init
;
20107 static struct hda_codec_preset snd_hda_preset_realtek
[] = {
20108 { .id
= 0x10ec0260, .name
= "ALC260", .patch
= patch_alc260
},
20109 { .id
= 0x10ec0262, .name
= "ALC262", .patch
= patch_alc262
},
20110 { .id
= 0x10ec0267, .name
= "ALC267", .patch
= patch_alc268
},
20111 { .id
= 0x10ec0268, .name
= "ALC268", .patch
= patch_alc268
},
20112 { .id
= 0x10ec0269, .name
= "ALC269", .patch
= patch_alc269
},
20113 { .id
= 0x10ec0270, .name
= "ALC270", .patch
= patch_alc269
},
20114 { .id
= 0x10ec0272, .name
= "ALC272", .patch
= patch_alc662
},
20115 { .id
= 0x10ec0275, .name
= "ALC275", .patch
= patch_alc269
},
20116 { .id
= 0x10ec0861, .rev
= 0x100340, .name
= "ALC660",
20117 .patch
= patch_alc861
},
20118 { .id
= 0x10ec0660, .name
= "ALC660-VD", .patch
= patch_alc861vd
},
20119 { .id
= 0x10ec0861, .name
= "ALC861", .patch
= patch_alc861
},
20120 { .id
= 0x10ec0862, .name
= "ALC861-VD", .patch
= patch_alc861vd
},
20121 { .id
= 0x10ec0662, .rev
= 0x100002, .name
= "ALC662 rev2",
20122 .patch
= patch_alc882
},
20123 { .id
= 0x10ec0662, .rev
= 0x100101, .name
= "ALC662 rev1",
20124 .patch
= patch_alc662
},
20125 { .id
= 0x10ec0663, .name
= "ALC663", .patch
= patch_alc662
},
20126 { .id
= 0x10ec0665, .name
= "ALC665", .patch
= patch_alc662
},
20127 { .id
= 0x10ec0670, .name
= "ALC670", .patch
= patch_alc662
},
20128 { .id
= 0x10ec0680, .name
= "ALC680", .patch
= patch_alc680
},
20129 { .id
= 0x10ec0880, .name
= "ALC880", .patch
= patch_alc880
},
20130 { .id
= 0x10ec0882, .name
= "ALC882", .patch
= patch_alc882
},
20131 { .id
= 0x10ec0883, .name
= "ALC883", .patch
= patch_alc882
},
20132 { .id
= 0x10ec0885, .rev
= 0x100101, .name
= "ALC889A",
20133 .patch
= patch_alc882
},
20134 { .id
= 0x10ec0885, .rev
= 0x100103, .name
= "ALC889A",
20135 .patch
= patch_alc882
},
20136 { .id
= 0x10ec0885, .name
= "ALC885", .patch
= patch_alc882
},
20137 { .id
= 0x10ec0887, .name
= "ALC887", .patch
= patch_alc888
},
20138 { .id
= 0x10ec0888, .rev
= 0x100101, .name
= "ALC1200",
20139 .patch
= patch_alc882
},
20140 { .id
= 0x10ec0888, .name
= "ALC888", .patch
= patch_alc888
},
20141 { .id
= 0x10ec0889, .name
= "ALC889", .patch
= patch_alc882
},
20142 { .id
= 0x10ec0892, .name
= "ALC892", .patch
= patch_alc662
},
20143 {} /* terminator */
20146 MODULE_ALIAS("snd-hda-codec-id:10ec*");
20148 MODULE_LICENSE("GPL");
20149 MODULE_DESCRIPTION("Realtek HD-audio codec");
20151 static struct hda_codec_preset_list realtek_list
= {
20152 .preset
= snd_hda_preset_realtek
,
20153 .owner
= THIS_MODULE
,
20156 static int __init
patch_realtek_init(void)
20158 return snd_hda_add_codec_preset(&realtek_list
);
20161 static void __exit
patch_realtek_exit(void)
20163 snd_hda_delete_codec_preset(&realtek_list
);
20166 module_init(patch_realtek_init
)
20167 module_exit(patch_realtek_exit
)