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 accidently 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
,
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
);
1707 if (!fix
[id
].chained
)
1711 id
= fix
[id
].chain_id
;
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(0x103c, 0x2a09, "HP", ALC880_5ST
),
4611 SND_PCI_QUIRK(0x1043, 0x10b3, "ASUS W1V", ALC880_ASUS_W1V
),
4612 SND_PCI_QUIRK(0x1043, 0x10c2, "ASUS W6A", ALC880_ASUS_DIG
),
4613 SND_PCI_QUIRK(0x1043, 0x10c3, "ASUS Wxx", ALC880_ASUS_DIG
),
4614 SND_PCI_QUIRK(0x1043, 0x1113, "ASUS", ALC880_ASUS_DIG
),
4615 SND_PCI_QUIRK(0x1043, 0x1123, "ASUS", ALC880_ASUS_DIG
),
4616 SND_PCI_QUIRK(0x1043, 0x1173, "ASUS", ALC880_ASUS_DIG
),
4617 SND_PCI_QUIRK(0x1043, 0x1964, "ASUS Z71V", ALC880_Z71V
),
4618 /* SND_PCI_QUIRK(0x1043, 0x1964, "ASUS", ALC880_ASUS_DIG), */
4619 SND_PCI_QUIRK(0x1043, 0x1973, "ASUS", ALC880_ASUS_DIG
),
4620 SND_PCI_QUIRK(0x1043, 0x19b3, "ASUS", ALC880_ASUS_DIG
),
4621 SND_PCI_QUIRK(0x1043, 0x814e, "ASUS P5GD1 w/SPDIF", ALC880_6ST_DIG
),
4622 SND_PCI_QUIRK(0x1043, 0x8181, "ASUS P4GPL", ALC880_ASUS_DIG
),
4623 SND_PCI_QUIRK(0x1043, 0x8196, "ASUS P5GD1", ALC880_6ST
),
4624 SND_PCI_QUIRK(0x1043, 0x81b4, "ASUS", ALC880_6ST
),
4625 SND_PCI_QUIRK_VENDOR(0x1043, "ASUS", ALC880_ASUS
), /* default ASUS */
4626 SND_PCI_QUIRK(0x104d, 0x81a0, "Sony", ALC880_3ST
),
4627 SND_PCI_QUIRK(0x104d, 0x81d6, "Sony", ALC880_3ST
),
4628 SND_PCI_QUIRK(0x107b, 0x3032, "Gateway", ALC880_5ST
),
4629 SND_PCI_QUIRK(0x107b, 0x3033, "Gateway", ALC880_5ST
),
4630 SND_PCI_QUIRK(0x107b, 0x4039, "Gateway", ALC880_5ST
),
4631 SND_PCI_QUIRK(0x1297, 0xc790, "Shuttle ST20G5", ALC880_6ST_DIG
),
4632 SND_PCI_QUIRK(0x1458, 0xa102, "Gigabyte K8", ALC880_6ST_DIG
),
4633 SND_PCI_QUIRK(0x1462, 0x1150, "MSI", ALC880_6ST_DIG
),
4634 SND_PCI_QUIRK(0x1509, 0x925d, "FIC P4M", ALC880_6ST_DIG
),
4635 SND_PCI_QUIRK(0x1558, 0x0520, "Clevo m520G", ALC880_CLEVO
),
4636 SND_PCI_QUIRK(0x1558, 0x0660, "Clevo m655n", ALC880_CLEVO
),
4637 SND_PCI_QUIRK(0x1558, 0x5401, "ASUS", ALC880_ASUS_DIG2
),
4638 SND_PCI_QUIRK(0x1565, 0x8202, "Biostar", ALC880_5ST_DIG
),
4639 SND_PCI_QUIRK(0x1584, 0x9050, "Uniwill", ALC880_UNIWILL_DIG
),
4640 SND_PCI_QUIRK(0x1584, 0x9054, "Uniwill", ALC880_F1734
),
4641 SND_PCI_QUIRK(0x1584, 0x9070, "Uniwill", ALC880_UNIWILL
),
4642 SND_PCI_QUIRK(0x1584, 0x9077, "Uniwill P53", ALC880_UNIWILL_P53
),
4643 SND_PCI_QUIRK(0x161f, 0x203d, "W810", ALC880_W810
),
4644 SND_PCI_QUIRK(0x161f, 0x205d, "Medion Rim 2150", ALC880_MEDION_RIM
),
4645 SND_PCI_QUIRK(0x1695, 0x400d, "EPoX", ALC880_5ST_DIG
),
4646 SND_PCI_QUIRK(0x1695, 0x4012, "EPox EP-5LDA", ALC880_5ST_DIG
),
4647 SND_PCI_QUIRK(0x1734, 0x107c, "FSC F1734", ALC880_F1734
),
4648 SND_PCI_QUIRK(0x1734, 0x1094, "FSC Amilo M1451G", ALC880_FUJITSU
),
4649 SND_PCI_QUIRK(0x1734, 0x10ac, "FSC AMILO Xi 1526", ALC880_F1734
),
4650 SND_PCI_QUIRK(0x1734, 0x10b0, "Fujitsu", ALC880_FUJITSU
),
4651 SND_PCI_QUIRK(0x1854, 0x0018, "LG LW20", ALC880_LG_LW
),
4652 SND_PCI_QUIRK(0x1854, 0x003b, "LG", ALC880_LG
),
4653 SND_PCI_QUIRK(0x1854, 0x005f, "LG P1 Express", ALC880_LG
),
4654 SND_PCI_QUIRK(0x1854, 0x0068, "LG w1", ALC880_LG
),
4655 SND_PCI_QUIRK(0x1854, 0x0077, "LG LW25", ALC880_LG_LW
),
4656 SND_PCI_QUIRK(0x19db, 0x4188, "TCL S700", ALC880_TCL_S700
),
4657 SND_PCI_QUIRK(0x2668, 0x8086, NULL
, ALC880_6ST_DIG
), /* broken BIOS */
4658 SND_PCI_QUIRK(0x8086, 0x2668, NULL
, ALC880_6ST_DIG
),
4659 SND_PCI_QUIRK(0x8086, 0xa100, "Intel mobo", ALC880_5ST_DIG
),
4660 SND_PCI_QUIRK(0x8086, 0xd400, "Intel mobo", ALC880_5ST_DIG
),
4661 SND_PCI_QUIRK(0x8086, 0xd401, "Intel mobo", ALC880_5ST_DIG
),
4662 SND_PCI_QUIRK(0x8086, 0xd402, "Intel mobo", ALC880_3ST_DIG
),
4663 SND_PCI_QUIRK(0x8086, 0xe224, "Intel mobo", ALC880_5ST_DIG
),
4664 SND_PCI_QUIRK(0x8086, 0xe305, "Intel mobo", ALC880_3ST_DIG
),
4665 SND_PCI_QUIRK(0x8086, 0xe308, "Intel mobo", ALC880_3ST_DIG
),
4666 SND_PCI_QUIRK(0x8086, 0xe400, "Intel mobo", ALC880_5ST_DIG
),
4667 SND_PCI_QUIRK(0x8086, 0xe401, "Intel mobo", ALC880_5ST_DIG
),
4668 SND_PCI_QUIRK(0x8086, 0xe402, "Intel mobo", ALC880_5ST_DIG
),
4670 SND_PCI_QUIRK_VENDOR(0x8086, "Intel mobo", ALC880_3ST
),
4671 SND_PCI_QUIRK(0xa0a0, 0x0560, "AOpen i915GMm-HFS", ALC880_5ST_DIG
),
4672 SND_PCI_QUIRK(0xe803, 0x1019, NULL
, ALC880_6ST_DIG
),
4677 * ALC880 codec presets
4679 static struct alc_config_preset alc880_presets
[] = {
4681 .mixers
= { alc880_three_stack_mixer
},
4682 .init_verbs
= { alc880_volume_init_verbs
,
4683 alc880_pin_3stack_init_verbs
},
4684 .num_dacs
= ARRAY_SIZE(alc880_dac_nids
),
4685 .dac_nids
= alc880_dac_nids
,
4686 .num_channel_mode
= ARRAY_SIZE(alc880_threestack_modes
),
4687 .channel_mode
= alc880_threestack_modes
,
4689 .input_mux
= &alc880_capture_source
,
4691 [ALC880_3ST_DIG
] = {
4692 .mixers
= { alc880_three_stack_mixer
},
4693 .init_verbs
= { alc880_volume_init_verbs
,
4694 alc880_pin_3stack_init_verbs
},
4695 .num_dacs
= ARRAY_SIZE(alc880_dac_nids
),
4696 .dac_nids
= alc880_dac_nids
,
4697 .dig_out_nid
= ALC880_DIGOUT_NID
,
4698 .num_channel_mode
= ARRAY_SIZE(alc880_threestack_modes
),
4699 .channel_mode
= alc880_threestack_modes
,
4701 .input_mux
= &alc880_capture_source
,
4703 [ALC880_TCL_S700
] = {
4704 .mixers
= { alc880_tcl_s700_mixer
},
4705 .init_verbs
= { alc880_volume_init_verbs
,
4706 alc880_pin_tcl_S700_init_verbs
,
4707 alc880_gpio2_init_verbs
},
4708 .num_dacs
= ARRAY_SIZE(alc880_dac_nids
),
4709 .dac_nids
= alc880_dac_nids
,
4710 .adc_nids
= alc880_adc_nids_alt
, /* FIXME: correct? */
4711 .num_adc_nids
= 1, /* single ADC */
4713 .num_channel_mode
= ARRAY_SIZE(alc880_2_jack_modes
),
4714 .channel_mode
= alc880_2_jack_modes
,
4715 .input_mux
= &alc880_capture_source
,
4718 .mixers
= { alc880_three_stack_mixer
,
4719 alc880_five_stack_mixer
},
4720 .init_verbs
= { alc880_volume_init_verbs
,
4721 alc880_pin_5stack_init_verbs
},
4722 .num_dacs
= ARRAY_SIZE(alc880_dac_nids
),
4723 .dac_nids
= alc880_dac_nids
,
4724 .num_channel_mode
= ARRAY_SIZE(alc880_fivestack_modes
),
4725 .channel_mode
= alc880_fivestack_modes
,
4726 .input_mux
= &alc880_capture_source
,
4728 [ALC880_5ST_DIG
] = {
4729 .mixers
= { alc880_three_stack_mixer
,
4730 alc880_five_stack_mixer
},
4731 .init_verbs
= { alc880_volume_init_verbs
,
4732 alc880_pin_5stack_init_verbs
},
4733 .num_dacs
= ARRAY_SIZE(alc880_dac_nids
),
4734 .dac_nids
= alc880_dac_nids
,
4735 .dig_out_nid
= ALC880_DIGOUT_NID
,
4736 .num_channel_mode
= ARRAY_SIZE(alc880_fivestack_modes
),
4737 .channel_mode
= alc880_fivestack_modes
,
4738 .input_mux
= &alc880_capture_source
,
4741 .mixers
= { alc880_six_stack_mixer
},
4742 .init_verbs
= { alc880_volume_init_verbs
,
4743 alc880_pin_6stack_init_verbs
},
4744 .num_dacs
= ARRAY_SIZE(alc880_6st_dac_nids
),
4745 .dac_nids
= alc880_6st_dac_nids
,
4746 .num_channel_mode
= ARRAY_SIZE(alc880_sixstack_modes
),
4747 .channel_mode
= alc880_sixstack_modes
,
4748 .input_mux
= &alc880_6stack_capture_source
,
4750 [ALC880_6ST_DIG
] = {
4751 .mixers
= { alc880_six_stack_mixer
},
4752 .init_verbs
= { alc880_volume_init_verbs
,
4753 alc880_pin_6stack_init_verbs
},
4754 .num_dacs
= ARRAY_SIZE(alc880_6st_dac_nids
),
4755 .dac_nids
= alc880_6st_dac_nids
,
4756 .dig_out_nid
= ALC880_DIGOUT_NID
,
4757 .num_channel_mode
= ARRAY_SIZE(alc880_sixstack_modes
),
4758 .channel_mode
= alc880_sixstack_modes
,
4759 .input_mux
= &alc880_6stack_capture_source
,
4762 .mixers
= { alc880_w810_base_mixer
},
4763 .init_verbs
= { alc880_volume_init_verbs
,
4764 alc880_pin_w810_init_verbs
,
4765 alc880_gpio2_init_verbs
},
4766 .num_dacs
= ARRAY_SIZE(alc880_w810_dac_nids
),
4767 .dac_nids
= alc880_w810_dac_nids
,
4768 .dig_out_nid
= ALC880_DIGOUT_NID
,
4769 .num_channel_mode
= ARRAY_SIZE(alc880_w810_modes
),
4770 .channel_mode
= alc880_w810_modes
,
4771 .input_mux
= &alc880_capture_source
,
4774 .mixers
= { alc880_z71v_mixer
},
4775 .init_verbs
= { alc880_volume_init_verbs
,
4776 alc880_pin_z71v_init_verbs
},
4777 .num_dacs
= ARRAY_SIZE(alc880_z71v_dac_nids
),
4778 .dac_nids
= alc880_z71v_dac_nids
,
4779 .dig_out_nid
= ALC880_DIGOUT_NID
,
4781 .num_channel_mode
= ARRAY_SIZE(alc880_2_jack_modes
),
4782 .channel_mode
= alc880_2_jack_modes
,
4783 .input_mux
= &alc880_capture_source
,
4786 .mixers
= { alc880_f1734_mixer
},
4787 .init_verbs
= { alc880_volume_init_verbs
,
4788 alc880_pin_f1734_init_verbs
},
4789 .num_dacs
= ARRAY_SIZE(alc880_f1734_dac_nids
),
4790 .dac_nids
= alc880_f1734_dac_nids
,
4792 .num_channel_mode
= ARRAY_SIZE(alc880_2_jack_modes
),
4793 .channel_mode
= alc880_2_jack_modes
,
4794 .input_mux
= &alc880_f1734_capture_source
,
4795 .unsol_event
= alc880_uniwill_p53_unsol_event
,
4796 .setup
= alc880_uniwill_p53_setup
,
4797 .init_hook
= alc_automute_amp
,
4800 .mixers
= { alc880_asus_mixer
},
4801 .init_verbs
= { alc880_volume_init_verbs
,
4802 alc880_pin_asus_init_verbs
,
4803 alc880_gpio1_init_verbs
},
4804 .num_dacs
= ARRAY_SIZE(alc880_asus_dac_nids
),
4805 .dac_nids
= alc880_asus_dac_nids
,
4806 .num_channel_mode
= ARRAY_SIZE(alc880_asus_modes
),
4807 .channel_mode
= alc880_asus_modes
,
4809 .input_mux
= &alc880_capture_source
,
4811 [ALC880_ASUS_DIG
] = {
4812 .mixers
= { alc880_asus_mixer
},
4813 .init_verbs
= { alc880_volume_init_verbs
,
4814 alc880_pin_asus_init_verbs
,
4815 alc880_gpio1_init_verbs
},
4816 .num_dacs
= ARRAY_SIZE(alc880_asus_dac_nids
),
4817 .dac_nids
= alc880_asus_dac_nids
,
4818 .dig_out_nid
= ALC880_DIGOUT_NID
,
4819 .num_channel_mode
= ARRAY_SIZE(alc880_asus_modes
),
4820 .channel_mode
= alc880_asus_modes
,
4822 .input_mux
= &alc880_capture_source
,
4824 [ALC880_ASUS_DIG2
] = {
4825 .mixers
= { alc880_asus_mixer
},
4826 .init_verbs
= { alc880_volume_init_verbs
,
4827 alc880_pin_asus_init_verbs
,
4828 alc880_gpio2_init_verbs
}, /* use GPIO2 */
4829 .num_dacs
= ARRAY_SIZE(alc880_asus_dac_nids
),
4830 .dac_nids
= alc880_asus_dac_nids
,
4831 .dig_out_nid
= ALC880_DIGOUT_NID
,
4832 .num_channel_mode
= ARRAY_SIZE(alc880_asus_modes
),
4833 .channel_mode
= alc880_asus_modes
,
4835 .input_mux
= &alc880_capture_source
,
4837 [ALC880_ASUS_W1V
] = {
4838 .mixers
= { alc880_asus_mixer
, alc880_asus_w1v_mixer
},
4839 .init_verbs
= { alc880_volume_init_verbs
,
4840 alc880_pin_asus_init_verbs
,
4841 alc880_gpio1_init_verbs
},
4842 .num_dacs
= ARRAY_SIZE(alc880_asus_dac_nids
),
4843 .dac_nids
= alc880_asus_dac_nids
,
4844 .dig_out_nid
= ALC880_DIGOUT_NID
,
4845 .num_channel_mode
= ARRAY_SIZE(alc880_asus_modes
),
4846 .channel_mode
= alc880_asus_modes
,
4848 .input_mux
= &alc880_capture_source
,
4850 [ALC880_UNIWILL_DIG
] = {
4851 .mixers
= { alc880_asus_mixer
},
4852 .init_verbs
= { alc880_volume_init_verbs
,
4853 alc880_pin_asus_init_verbs
},
4854 .num_dacs
= ARRAY_SIZE(alc880_asus_dac_nids
),
4855 .dac_nids
= alc880_asus_dac_nids
,
4856 .dig_out_nid
= ALC880_DIGOUT_NID
,
4857 .num_channel_mode
= ARRAY_SIZE(alc880_asus_modes
),
4858 .channel_mode
= alc880_asus_modes
,
4860 .input_mux
= &alc880_capture_source
,
4862 [ALC880_UNIWILL
] = {
4863 .mixers
= { alc880_uniwill_mixer
},
4864 .init_verbs
= { alc880_volume_init_verbs
,
4865 alc880_uniwill_init_verbs
},
4866 .num_dacs
= ARRAY_SIZE(alc880_asus_dac_nids
),
4867 .dac_nids
= alc880_asus_dac_nids
,
4868 .dig_out_nid
= ALC880_DIGOUT_NID
,
4869 .num_channel_mode
= ARRAY_SIZE(alc880_threestack_modes
),
4870 .channel_mode
= alc880_threestack_modes
,
4872 .input_mux
= &alc880_capture_source
,
4873 .unsol_event
= alc880_uniwill_unsol_event
,
4874 .setup
= alc880_uniwill_setup
,
4875 .init_hook
= alc880_uniwill_init_hook
,
4877 [ALC880_UNIWILL_P53
] = {
4878 .mixers
= { alc880_uniwill_p53_mixer
},
4879 .init_verbs
= { alc880_volume_init_verbs
,
4880 alc880_uniwill_p53_init_verbs
},
4881 .num_dacs
= ARRAY_SIZE(alc880_asus_dac_nids
),
4882 .dac_nids
= alc880_asus_dac_nids
,
4883 .num_channel_mode
= ARRAY_SIZE(alc880_w810_modes
),
4884 .channel_mode
= alc880_threestack_modes
,
4885 .input_mux
= &alc880_capture_source
,
4886 .unsol_event
= alc880_uniwill_p53_unsol_event
,
4887 .setup
= alc880_uniwill_p53_setup
,
4888 .init_hook
= alc_automute_amp
,
4890 [ALC880_FUJITSU
] = {
4891 .mixers
= { alc880_fujitsu_mixer
},
4892 .init_verbs
= { alc880_volume_init_verbs
,
4893 alc880_uniwill_p53_init_verbs
,
4894 alc880_beep_init_verbs
},
4895 .num_dacs
= ARRAY_SIZE(alc880_dac_nids
),
4896 .dac_nids
= alc880_dac_nids
,
4897 .dig_out_nid
= ALC880_DIGOUT_NID
,
4898 .num_channel_mode
= ARRAY_SIZE(alc880_2_jack_modes
),
4899 .channel_mode
= alc880_2_jack_modes
,
4900 .input_mux
= &alc880_capture_source
,
4901 .unsol_event
= alc880_uniwill_p53_unsol_event
,
4902 .setup
= alc880_uniwill_p53_setup
,
4903 .init_hook
= alc_automute_amp
,
4906 .mixers
= { alc880_three_stack_mixer
},
4907 .init_verbs
= { alc880_volume_init_verbs
,
4908 alc880_pin_clevo_init_verbs
},
4909 .num_dacs
= ARRAY_SIZE(alc880_dac_nids
),
4910 .dac_nids
= alc880_dac_nids
,
4912 .num_channel_mode
= ARRAY_SIZE(alc880_threestack_modes
),
4913 .channel_mode
= alc880_threestack_modes
,
4915 .input_mux
= &alc880_capture_source
,
4918 .mixers
= { alc880_lg_mixer
},
4919 .init_verbs
= { alc880_volume_init_verbs
,
4920 alc880_lg_init_verbs
},
4921 .num_dacs
= ARRAY_SIZE(alc880_lg_dac_nids
),
4922 .dac_nids
= alc880_lg_dac_nids
,
4923 .dig_out_nid
= ALC880_DIGOUT_NID
,
4924 .num_channel_mode
= ARRAY_SIZE(alc880_lg_ch_modes
),
4925 .channel_mode
= alc880_lg_ch_modes
,
4927 .input_mux
= &alc880_lg_capture_source
,
4928 .unsol_event
= alc_automute_amp_unsol_event
,
4929 .setup
= alc880_lg_setup
,
4930 .init_hook
= alc_automute_amp
,
4931 #ifdef CONFIG_SND_HDA_POWER_SAVE
4932 .loopbacks
= alc880_lg_loopbacks
,
4936 .mixers
= { alc880_lg_lw_mixer
},
4937 .init_verbs
= { alc880_volume_init_verbs
,
4938 alc880_lg_lw_init_verbs
},
4939 .num_dacs
= ARRAY_SIZE(alc880_dac_nids
),
4940 .dac_nids
= alc880_dac_nids
,
4941 .dig_out_nid
= ALC880_DIGOUT_NID
,
4942 .num_channel_mode
= ARRAY_SIZE(alc880_lg_lw_modes
),
4943 .channel_mode
= alc880_lg_lw_modes
,
4944 .input_mux
= &alc880_lg_lw_capture_source
,
4945 .unsol_event
= alc_automute_amp_unsol_event
,
4946 .setup
= alc880_lg_lw_setup
,
4947 .init_hook
= alc_automute_amp
,
4949 [ALC880_MEDION_RIM
] = {
4950 .mixers
= { alc880_medion_rim_mixer
},
4951 .init_verbs
= { alc880_volume_init_verbs
,
4952 alc880_medion_rim_init_verbs
,
4953 alc_gpio2_init_verbs
},
4954 .num_dacs
= ARRAY_SIZE(alc880_dac_nids
),
4955 .dac_nids
= alc880_dac_nids
,
4956 .dig_out_nid
= ALC880_DIGOUT_NID
,
4957 .num_channel_mode
= ARRAY_SIZE(alc880_2_jack_modes
),
4958 .channel_mode
= alc880_2_jack_modes
,
4959 .input_mux
= &alc880_medion_rim_capture_source
,
4960 .unsol_event
= alc880_medion_rim_unsol_event
,
4961 .setup
= alc880_medion_rim_setup
,
4962 .init_hook
= alc880_medion_rim_automute
,
4964 #ifdef CONFIG_SND_DEBUG
4966 .mixers
= { alc880_test_mixer
},
4967 .init_verbs
= { alc880_test_init_verbs
},
4968 .num_dacs
= ARRAY_SIZE(alc880_test_dac_nids
),
4969 .dac_nids
= alc880_test_dac_nids
,
4970 .dig_out_nid
= ALC880_DIGOUT_NID
,
4971 .num_channel_mode
= ARRAY_SIZE(alc880_test_modes
),
4972 .channel_mode
= alc880_test_modes
,
4973 .input_mux
= &alc880_test_capture_source
,
4979 * Automatic parse of I/O pins from the BIOS configuration
4984 ALC_CTL_WIDGET_MUTE
,
4987 static struct snd_kcontrol_new alc880_control_templates
[] = {
4988 HDA_CODEC_VOLUME(NULL
, 0, 0, 0),
4989 HDA_CODEC_MUTE(NULL
, 0, 0, 0),
4990 HDA_BIND_MUTE(NULL
, 0, 0, 0),
4993 /* add dynamic controls */
4994 static int add_control(struct alc_spec
*spec
, int type
, const char *name
,
4995 int cidx
, unsigned long val
)
4997 struct snd_kcontrol_new
*knew
;
4999 snd_array_init(&spec
->kctls
, sizeof(*knew
), 32);
5000 knew
= snd_array_new(&spec
->kctls
);
5003 *knew
= alc880_control_templates
[type
];
5004 knew
->name
= kstrdup(name
, GFP_KERNEL
);
5008 if (get_amp_nid_(val
))
5009 knew
->subdevice
= HDA_SUBDEV_AMP_FLAG
;
5010 knew
->private_value
= val
;
5014 static int add_control_with_pfx(struct alc_spec
*spec
, int type
,
5015 const char *pfx
, const char *dir
,
5016 const char *sfx
, int cidx
, unsigned long val
)
5019 snprintf(name
, sizeof(name
), "%s %s %s", pfx
, dir
, sfx
);
5020 return add_control(spec
, type
, name
, cidx
, val
);
5023 #define add_pb_vol_ctrl(spec, type, pfx, val) \
5024 add_control_with_pfx(spec, type, pfx, "Playback", "Volume", 0, val)
5025 #define add_pb_sw_ctrl(spec, type, pfx, val) \
5026 add_control_with_pfx(spec, type, pfx, "Playback", "Switch", 0, val)
5027 #define __add_pb_vol_ctrl(spec, type, pfx, cidx, val) \
5028 add_control_with_pfx(spec, type, pfx, "Playback", "Volume", cidx, val)
5029 #define __add_pb_sw_ctrl(spec, type, pfx, cidx, val) \
5030 add_control_with_pfx(spec, type, pfx, "Playback", "Switch", cidx, val)
5032 #define alc880_is_fixed_pin(nid) ((nid) >= 0x14 && (nid) <= 0x17)
5033 #define alc880_fixed_pin_idx(nid) ((nid) - 0x14)
5034 #define alc880_is_multi_pin(nid) ((nid) >= 0x18)
5035 #define alc880_multi_pin_idx(nid) ((nid) - 0x18)
5036 #define alc880_idx_to_dac(nid) ((nid) + 0x02)
5037 #define alc880_dac_to_idx(nid) ((nid) - 0x02)
5038 #define alc880_idx_to_mixer(nid) ((nid) + 0x0c)
5039 #define alc880_idx_to_selector(nid) ((nid) + 0x10)
5040 #define ALC880_PIN_CD_NID 0x1c
5042 /* fill in the dac_nids table from the parsed pin configuration */
5043 static int alc880_auto_fill_dac_nids(struct alc_spec
*spec
,
5044 const struct auto_pin_cfg
*cfg
)
5050 memset(assigned
, 0, sizeof(assigned
));
5051 spec
->multiout
.dac_nids
= spec
->private_dac_nids
;
5053 /* check the pins hardwired to audio widget */
5054 for (i
= 0; i
< cfg
->line_outs
; i
++) {
5055 nid
= cfg
->line_out_pins
[i
];
5056 if (alc880_is_fixed_pin(nid
)) {
5057 int idx
= alc880_fixed_pin_idx(nid
);
5058 spec
->multiout
.dac_nids
[i
] = alc880_idx_to_dac(idx
);
5062 /* left pins can be connect to any audio widget */
5063 for (i
= 0; i
< cfg
->line_outs
; i
++) {
5064 nid
= cfg
->line_out_pins
[i
];
5065 if (alc880_is_fixed_pin(nid
))
5067 /* search for an empty channel */
5068 for (j
= 0; j
< cfg
->line_outs
; j
++) {
5070 spec
->multiout
.dac_nids
[i
] =
5071 alc880_idx_to_dac(j
);
5077 spec
->multiout
.num_dacs
= cfg
->line_outs
;
5081 static const char *alc_get_line_out_pfx(const struct auto_pin_cfg
*cfg
,
5084 if (!cfg
->hp_outs
&& !cfg
->speaker_outs
&& can_be_master
)
5087 switch (cfg
->line_out_type
) {
5088 case AUTO_PIN_SPEAKER_OUT
:
5089 if (cfg
->line_outs
== 1)
5092 case AUTO_PIN_HP_OUT
:
5095 if (cfg
->line_outs
== 1)
5102 /* add playback controls from the parsed DAC table */
5103 static int alc880_auto_create_multi_out_ctls(struct alc_spec
*spec
,
5104 const struct auto_pin_cfg
*cfg
)
5106 static const char * const chname
[4] = {
5107 "Front", "Surround", NULL
/*CLFE*/, "Side"
5109 const char *pfx
= alc_get_line_out_pfx(cfg
, false);
5113 for (i
= 0; i
< cfg
->line_outs
; i
++) {
5114 if (!spec
->multiout
.dac_nids
[i
])
5116 nid
= alc880_idx_to_mixer(alc880_dac_to_idx(spec
->multiout
.dac_nids
[i
]));
5117 if (!pfx
&& i
== 2) {
5119 err
= add_pb_vol_ctrl(spec
, ALC_CTL_WIDGET_VOL
,
5121 HDA_COMPOSE_AMP_VAL(nid
, 1, 0,
5125 err
= add_pb_vol_ctrl(spec
, ALC_CTL_WIDGET_VOL
,
5127 HDA_COMPOSE_AMP_VAL(nid
, 2, 0,
5131 err
= add_pb_sw_ctrl(spec
, ALC_CTL_BIND_MUTE
,
5133 HDA_COMPOSE_AMP_VAL(nid
, 1, 2,
5137 err
= add_pb_sw_ctrl(spec
, ALC_CTL_BIND_MUTE
,
5139 HDA_COMPOSE_AMP_VAL(nid
, 2, 2,
5144 const char *name
= pfx
;
5150 err
= __add_pb_vol_ctrl(spec
, ALC_CTL_WIDGET_VOL
,
5152 HDA_COMPOSE_AMP_VAL(nid
, 3, 0,
5156 err
= __add_pb_sw_ctrl(spec
, ALC_CTL_BIND_MUTE
,
5158 HDA_COMPOSE_AMP_VAL(nid
, 3, 2,
5167 /* add playback controls for speaker and HP outputs */
5168 static int alc880_auto_create_extra_out(struct alc_spec
*spec
, hda_nid_t pin
,
5177 if (alc880_is_fixed_pin(pin
)) {
5178 nid
= alc880_idx_to_dac(alc880_fixed_pin_idx(pin
));
5179 /* specify the DAC as the extra output */
5180 if (!spec
->multiout
.hp_nid
)
5181 spec
->multiout
.hp_nid
= nid
;
5183 spec
->multiout
.extra_out_nid
[0] = nid
;
5184 /* control HP volume/switch on the output mixer amp */
5185 nid
= alc880_idx_to_mixer(alc880_fixed_pin_idx(pin
));
5186 err
= add_pb_vol_ctrl(spec
, ALC_CTL_WIDGET_VOL
, pfx
,
5187 HDA_COMPOSE_AMP_VAL(nid
, 3, 0, HDA_OUTPUT
));
5190 err
= add_pb_sw_ctrl(spec
, ALC_CTL_BIND_MUTE
, pfx
,
5191 HDA_COMPOSE_AMP_VAL(nid
, 3, 2, HDA_INPUT
));
5194 } else if (alc880_is_multi_pin(pin
)) {
5195 /* set manual connection */
5196 /* we have only a switch on HP-out PIN */
5197 err
= add_pb_sw_ctrl(spec
, ALC_CTL_WIDGET_MUTE
, pfx
,
5198 HDA_COMPOSE_AMP_VAL(pin
, 3, 0, HDA_OUTPUT
));
5205 /* create input playback/capture controls for the given pin */
5206 static int new_analog_input(struct alc_spec
*spec
, hda_nid_t pin
,
5207 const char *ctlname
, int ctlidx
,
5208 int idx
, hda_nid_t mix_nid
)
5212 err
= __add_pb_vol_ctrl(spec
, ALC_CTL_WIDGET_VOL
, ctlname
, ctlidx
,
5213 HDA_COMPOSE_AMP_VAL(mix_nid
, 3, idx
, HDA_INPUT
));
5216 err
= __add_pb_sw_ctrl(spec
, ALC_CTL_WIDGET_MUTE
, ctlname
, ctlidx
,
5217 HDA_COMPOSE_AMP_VAL(mix_nid
, 3, idx
, HDA_INPUT
));
5223 static int alc_is_input_pin(struct hda_codec
*codec
, hda_nid_t nid
)
5225 unsigned int pincap
= snd_hda_query_pin_caps(codec
, nid
);
5226 return (pincap
& AC_PINCAP_IN
) != 0;
5229 /* create playback/capture controls for input pins */
5230 static int alc_auto_create_input_ctls(struct hda_codec
*codec
,
5231 const struct auto_pin_cfg
*cfg
,
5233 hda_nid_t cap1
, hda_nid_t cap2
)
5235 struct alc_spec
*spec
= codec
->spec
;
5236 struct hda_input_mux
*imux
= &spec
->private_imux
[0];
5237 int i
, err
, idx
, type_idx
= 0;
5238 const char *prev_label
= NULL
;
5240 for (i
= 0; i
< cfg
->num_inputs
; i
++) {
5244 pin
= cfg
->inputs
[i
].pin
;
5245 if (!alc_is_input_pin(codec
, pin
))
5248 label
= hda_get_autocfg_input_label(codec
, cfg
, i
);
5249 if (prev_label
&& !strcmp(label
, prev_label
))
5256 idx
= get_connection_index(codec
, mixer
, pin
);
5258 err
= new_analog_input(spec
, pin
,
5268 idx
= get_connection_index(codec
, cap1
, pin
);
5269 if (idx
< 0 && cap2
)
5270 idx
= get_connection_index(codec
, cap2
, pin
);
5272 snd_hda_add_imux_item(imux
, label
, idx
, NULL
);
5277 static int alc880_auto_create_input_ctls(struct hda_codec
*codec
,
5278 const struct auto_pin_cfg
*cfg
)
5280 return alc_auto_create_input_ctls(codec
, cfg
, 0x0b, 0x08, 0x09);
5283 static void alc_set_pin_output(struct hda_codec
*codec
, hda_nid_t nid
,
5284 unsigned int pin_type
)
5286 snd_hda_codec_write(codec
, nid
, 0, AC_VERB_SET_PIN_WIDGET_CONTROL
,
5289 snd_hda_codec_write(codec
, nid
, 0, AC_VERB_SET_AMP_GAIN_MUTE
,
5293 static void alc880_auto_set_output_and_unmute(struct hda_codec
*codec
,
5294 hda_nid_t nid
, int pin_type
,
5297 alc_set_pin_output(codec
, nid
, pin_type
);
5298 /* need the manual connection? */
5299 if (alc880_is_multi_pin(nid
)) {
5300 struct alc_spec
*spec
= codec
->spec
;
5301 int idx
= alc880_multi_pin_idx(nid
);
5302 snd_hda_codec_write(codec
, alc880_idx_to_selector(idx
), 0,
5303 AC_VERB_SET_CONNECT_SEL
,
5304 alc880_dac_to_idx(spec
->multiout
.dac_nids
[dac_idx
]));
5308 static int get_pin_type(int line_out_type
)
5310 if (line_out_type
== AUTO_PIN_HP_OUT
)
5316 static void alc880_auto_init_multi_out(struct hda_codec
*codec
)
5318 struct alc_spec
*spec
= codec
->spec
;
5321 for (i
= 0; i
< spec
->autocfg
.line_outs
; i
++) {
5322 hda_nid_t nid
= spec
->autocfg
.line_out_pins
[i
];
5323 int pin_type
= get_pin_type(spec
->autocfg
.line_out_type
);
5324 alc880_auto_set_output_and_unmute(codec
, nid
, pin_type
, i
);
5328 static void alc880_auto_init_extra_out(struct hda_codec
*codec
)
5330 struct alc_spec
*spec
= codec
->spec
;
5333 pin
= spec
->autocfg
.speaker_pins
[0];
5334 if (pin
) /* connect to front */
5335 alc880_auto_set_output_and_unmute(codec
, pin
, PIN_OUT
, 0);
5336 pin
= spec
->autocfg
.hp_pins
[0];
5337 if (pin
) /* connect to front */
5338 alc880_auto_set_output_and_unmute(codec
, pin
, PIN_HP
, 0);
5341 static void alc880_auto_init_analog_input(struct hda_codec
*codec
)
5343 struct alc_spec
*spec
= codec
->spec
;
5344 struct auto_pin_cfg
*cfg
= &spec
->autocfg
;
5347 for (i
= 0; i
< cfg
->num_inputs
; i
++) {
5348 hda_nid_t nid
= cfg
->inputs
[i
].pin
;
5349 if (alc_is_input_pin(codec
, nid
)) {
5350 alc_set_input_pin(codec
, nid
, cfg
->inputs
[i
].type
);
5351 if (nid
!= ALC880_PIN_CD_NID
&&
5352 (get_wcaps(codec
, nid
) & AC_WCAP_OUT_AMP
))
5353 snd_hda_codec_write(codec
, nid
, 0,
5354 AC_VERB_SET_AMP_GAIN_MUTE
,
5360 static void alc880_auto_init_input_src(struct hda_codec
*codec
)
5362 struct alc_spec
*spec
= codec
->spec
;
5365 for (c
= 0; c
< spec
->num_adc_nids
; c
++) {
5366 unsigned int mux_idx
;
5367 const struct hda_input_mux
*imux
;
5368 mux_idx
= c
>= spec
->num_mux_defs
? 0 : c
;
5369 imux
= &spec
->input_mux
[mux_idx
];
5370 if (!imux
->num_items
&& mux_idx
> 0)
5371 imux
= &spec
->input_mux
[0];
5373 snd_hda_codec_write(codec
, spec
->adc_nids
[c
], 0,
5374 AC_VERB_SET_CONNECT_SEL
,
5375 imux
->items
[0].index
);
5379 /* parse the BIOS configuration and set up the alc_spec */
5380 /* return 1 if successful, 0 if the proper config is not found,
5381 * or a negative error code
5383 static int alc880_parse_auto_config(struct hda_codec
*codec
)
5385 struct alc_spec
*spec
= codec
->spec
;
5387 static hda_nid_t alc880_ignore
[] = { 0x1d, 0 };
5389 err
= snd_hda_parse_pin_def_config(codec
, &spec
->autocfg
,
5393 if (!spec
->autocfg
.line_outs
)
5394 return 0; /* can't find valid BIOS pin config */
5396 err
= alc880_auto_fill_dac_nids(spec
, &spec
->autocfg
);
5399 err
= alc880_auto_create_multi_out_ctls(spec
, &spec
->autocfg
);
5402 err
= alc880_auto_create_extra_out(spec
,
5403 spec
->autocfg
.speaker_pins
[0],
5407 err
= alc880_auto_create_extra_out(spec
, spec
->autocfg
.hp_pins
[0],
5411 err
= alc880_auto_create_input_ctls(codec
, &spec
->autocfg
);
5415 spec
->multiout
.max_channels
= spec
->multiout
.num_dacs
* 2;
5417 alc_auto_parse_digital(codec
);
5419 if (spec
->kctls
.list
)
5420 add_mixer(spec
, spec
->kctls
.list
);
5422 add_verb(spec
, alc880_volume_init_verbs
);
5424 spec
->num_mux_defs
= 1;
5425 spec
->input_mux
= &spec
->private_imux
[0];
5427 alc_ssid_check(codec
, 0x15, 0x1b, 0x14, 0);
5432 /* additional initialization for auto-configuration model */
5433 static void alc880_auto_init(struct hda_codec
*codec
)
5435 struct alc_spec
*spec
= codec
->spec
;
5436 alc880_auto_init_multi_out(codec
);
5437 alc880_auto_init_extra_out(codec
);
5438 alc880_auto_init_analog_input(codec
);
5439 alc880_auto_init_input_src(codec
);
5440 alc_auto_init_digital(codec
);
5441 if (spec
->unsol_event
)
5442 alc_inithook(codec
);
5445 /* check the ADC/MUX contains all input pins; some ADC/MUX contains only
5446 * one of two digital mic pins, e.g. on ALC272
5448 static void fixup_automic_adc(struct hda_codec
*codec
)
5450 struct alc_spec
*spec
= codec
->spec
;
5453 for (i
= 0; i
< spec
->num_adc_nids
; i
++) {
5454 hda_nid_t cap
= spec
->capsrc_nids
?
5455 spec
->capsrc_nids
[i
] : spec
->adc_nids
[i
];
5458 iidx
= get_connection_index(codec
, cap
, spec
->int_mic
.pin
);
5461 eidx
= get_connection_index(codec
, cap
, spec
->ext_mic
.pin
);
5464 spec
->int_mic
.mux_idx
= iidx
;
5465 spec
->ext_mic
.mux_idx
= eidx
;
5466 if (spec
->capsrc_nids
)
5467 spec
->capsrc_nids
+= i
;
5468 spec
->adc_nids
+= i
;
5469 spec
->num_adc_nids
= 1;
5472 snd_printd(KERN_INFO
"hda_codec: %s: "
5473 "No ADC/MUX containing both 0x%x and 0x%x pins\n",
5474 codec
->chip_name
, spec
->int_mic
.pin
, spec
->ext_mic
.pin
);
5475 spec
->auto_mic
= 0; /* disable auto-mic to be sure */
5478 /* select or unmute the given capsrc route */
5479 static void select_or_unmute_capsrc(struct hda_codec
*codec
, hda_nid_t cap
,
5482 if (get_wcaps_type(get_wcaps(codec
, cap
)) == AC_WID_AUD_MIX
) {
5483 snd_hda_codec_amp_stereo(codec
, cap
, HDA_INPUT
, idx
,
5486 snd_hda_codec_write_cache(codec
, cap
, 0,
5487 AC_VERB_SET_CONNECT_SEL
, idx
);
5491 /* set the default connection to that pin */
5492 static int init_capsrc_for_pin(struct hda_codec
*codec
, hda_nid_t pin
)
5494 struct alc_spec
*spec
= codec
->spec
;
5497 for (i
= 0; i
< spec
->num_adc_nids
; i
++) {
5498 hda_nid_t cap
= spec
->capsrc_nids
?
5499 spec
->capsrc_nids
[i
] : spec
->adc_nids
[i
];
5502 idx
= get_connection_index(codec
, cap
, pin
);
5505 select_or_unmute_capsrc(codec
, cap
, idx
);
5506 return i
; /* return the found index */
5508 return -1; /* not found */
5511 /* choose the ADC/MUX containing the input pin and initialize the setup */
5512 static void fixup_single_adc(struct hda_codec
*codec
)
5514 struct alc_spec
*spec
= codec
->spec
;
5515 struct auto_pin_cfg
*cfg
= &spec
->autocfg
;
5518 /* search for the input pin; there must be only one */
5519 if (cfg
->num_inputs
!= 1)
5521 i
= init_capsrc_for_pin(codec
, cfg
->inputs
[0].pin
);
5523 /* use only this ADC */
5524 if (spec
->capsrc_nids
)
5525 spec
->capsrc_nids
+= i
;
5526 spec
->adc_nids
+= i
;
5527 spec
->num_adc_nids
= 1;
5528 spec
->single_input_src
= 1;
5532 /* initialize dual adcs */
5533 static void fixup_dual_adc_switch(struct hda_codec
*codec
)
5535 struct alc_spec
*spec
= codec
->spec
;
5536 init_capsrc_for_pin(codec
, spec
->ext_mic
.pin
);
5537 init_capsrc_for_pin(codec
, spec
->int_mic
.pin
);
5540 /* initialize some special cases for input sources */
5541 static void alc_init_special_input_src(struct hda_codec
*codec
)
5543 struct alc_spec
*spec
= codec
->spec
;
5544 if (spec
->dual_adc_switch
)
5545 fixup_dual_adc_switch(codec
);
5546 else if (spec
->single_input_src
)
5547 init_capsrc_for_pin(codec
, spec
->autocfg
.inputs
[0].pin
);
5550 static void set_capture_mixer(struct hda_codec
*codec
)
5552 struct alc_spec
*spec
= codec
->spec
;
5553 static struct snd_kcontrol_new
*caps
[2][3] = {
5554 { alc_capture_mixer_nosrc1
,
5555 alc_capture_mixer_nosrc2
,
5556 alc_capture_mixer_nosrc3
},
5557 { alc_capture_mixer1
,
5559 alc_capture_mixer3
},
5561 if (spec
->num_adc_nids
> 0 && spec
->num_adc_nids
<= 3) {
5563 int num_adcs
= spec
->num_adc_nids
;
5564 if (spec
->dual_adc_switch
)
5566 else if (spec
->auto_mic
)
5567 fixup_automic_adc(codec
);
5568 else if (spec
->input_mux
) {
5569 if (spec
->input_mux
->num_items
> 1)
5571 else if (spec
->input_mux
->num_items
== 1)
5572 fixup_single_adc(codec
);
5574 spec
->cap_mixer
= caps
[mux
][num_adcs
- 1];
5578 /* fill adc_nids (and capsrc_nids) containing all active input pins */
5579 static void fillup_priv_adc_nids(struct hda_codec
*codec
, hda_nid_t
*nids
,
5582 struct alc_spec
*spec
= codec
->spec
;
5583 struct auto_pin_cfg
*cfg
= &spec
->autocfg
;
5585 hda_nid_t fallback_adc
= 0, fallback_cap
= 0;
5587 for (n
= 0; n
< num_nids
; n
++) {
5589 hda_nid_t conn
[HDA_MAX_NUM_INPUTS
];
5593 if (get_wcaps_type(get_wcaps(codec
, adc
)) != AC_WID_AUD_IN
)
5596 nconns
= snd_hda_get_connections(codec
, cap
, conn
,
5600 nconns
= snd_hda_get_connections(codec
, cap
, conn
,
5605 if (!fallback_adc
) {
5609 for (i
= 0; i
< cfg
->num_inputs
; i
++) {
5610 hda_nid_t nid
= cfg
->inputs
[i
].pin
;
5611 for (j
= 0; j
< nconns
; j
++) {
5618 if (i
>= cfg
->num_inputs
) {
5619 int num_adcs
= spec
->num_adc_nids
;
5620 spec
->private_adc_nids
[num_adcs
] = adc
;
5621 spec
->private_capsrc_nids
[num_adcs
] = cap
;
5622 spec
->num_adc_nids
++;
5623 spec
->adc_nids
= spec
->private_adc_nids
;
5625 spec
->capsrc_nids
= spec
->private_capsrc_nids
;
5628 if (!spec
->num_adc_nids
) {
5629 printk(KERN_WARNING
"hda_codec: %s: no valid ADC found;"
5630 " using fallback 0x%x\n",
5631 codec
->chip_name
, fallback_adc
);
5632 spec
->private_adc_nids
[0] = fallback_adc
;
5633 spec
->adc_nids
= spec
->private_adc_nids
;
5634 if (fallback_adc
!= fallback_cap
) {
5635 spec
->private_capsrc_nids
[0] = fallback_cap
;
5636 spec
->capsrc_nids
= spec
->private_adc_nids
;
5641 #ifdef CONFIG_SND_HDA_INPUT_BEEP
5642 #define set_beep_amp(spec, nid, idx, dir) \
5643 ((spec)->beep_amp = HDA_COMPOSE_AMP_VAL(nid, 3, idx, dir))
5645 static struct snd_pci_quirk beep_white_list
[] = {
5646 SND_PCI_QUIRK(0x1043, 0x829f, "ASUS", 1),
5647 SND_PCI_QUIRK(0x1043, 0x83ce, "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 Pavillion", 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_MASK(0x1028, 0xfff0, 0x02b0,
13807 "Dell Inspiron Mini9/Vostro A90", ALC268_DELL
),
13808 /* almost compatible with toshiba but with optional digital outs;
13809 * auto-probing seems working fine
13811 SND_PCI_QUIRK_MASK(0x103c, 0xff00, 0x3000, "HP TX25xx series",
13813 SND_PCI_QUIRK(0x1043, 0x1205, "ASUS W7J", ALC268_3ST
),
13814 SND_PCI_QUIRK(0x1170, 0x0040, "ZEPTO", ALC268_ZEPTO
),
13815 SND_PCI_QUIRK(0x14c0, 0x0025, "COMPAL IFL90/JFL-92", ALC268_TOSHIBA
),
13816 SND_PCI_QUIRK(0x152d, 0x0763, "Diverse (CPR2000)", ALC268_ACER
),
13817 SND_PCI_QUIRK(0x152d, 0x0771, "Quanta IL1", ALC267_QUANTA_IL1
),
13821 /* Toshiba laptops have no unique PCI SSID but only codec SSID */
13822 static struct snd_pci_quirk alc268_ssid_cfg_tbl
[] = {
13823 SND_PCI_QUIRK(0x1179, 0xff0a, "TOSHIBA X-200", ALC268_AUTO
),
13824 SND_PCI_QUIRK(0x1179, 0xff0e, "TOSHIBA X-200 HDMI", ALC268_AUTO
),
13825 SND_PCI_QUIRK_MASK(0x1179, 0xff00, 0xff00, "TOSHIBA A/Lx05",
13830 static struct alc_config_preset alc268_presets
[] = {
13831 [ALC267_QUANTA_IL1
] = {
13832 .mixers
= { alc267_quanta_il1_mixer
, alc268_beep_mixer
,
13833 alc268_capture_nosrc_mixer
},
13834 .init_verbs
= { alc268_base_init_verbs
, alc268_eapd_verbs
,
13835 alc267_quanta_il1_verbs
},
13836 .num_dacs
= ARRAY_SIZE(alc268_dac_nids
),
13837 .dac_nids
= alc268_dac_nids
,
13838 .num_adc_nids
= ARRAY_SIZE(alc268_adc_nids_alt
),
13839 .adc_nids
= alc268_adc_nids_alt
,
13841 .num_channel_mode
= ARRAY_SIZE(alc268_modes
),
13842 .channel_mode
= alc268_modes
,
13843 .unsol_event
= alc_sku_unsol_event
,
13844 .setup
= alc267_quanta_il1_setup
,
13845 .init_hook
= alc_inithook
,
13848 .mixers
= { alc268_base_mixer
, alc268_capture_alt_mixer
,
13849 alc268_beep_mixer
},
13850 .init_verbs
= { alc268_base_init_verbs
},
13851 .num_dacs
= ARRAY_SIZE(alc268_dac_nids
),
13852 .dac_nids
= alc268_dac_nids
,
13853 .num_adc_nids
= ARRAY_SIZE(alc268_adc_nids_alt
),
13854 .adc_nids
= alc268_adc_nids_alt
,
13855 .capsrc_nids
= alc268_capsrc_nids
,
13857 .dig_out_nid
= ALC268_DIGOUT_NID
,
13858 .num_channel_mode
= ARRAY_SIZE(alc268_modes
),
13859 .channel_mode
= alc268_modes
,
13860 .input_mux
= &alc268_capture_source
,
13862 [ALC268_TOSHIBA
] = {
13863 .mixers
= { alc268_toshiba_mixer
, alc268_capture_alt_mixer
,
13864 alc268_beep_mixer
},
13865 .init_verbs
= { alc268_base_init_verbs
, alc268_eapd_verbs
,
13866 alc268_toshiba_verbs
},
13867 .num_dacs
= ARRAY_SIZE(alc268_dac_nids
),
13868 .dac_nids
= alc268_dac_nids
,
13869 .num_adc_nids
= ARRAY_SIZE(alc268_adc_nids_alt
),
13870 .adc_nids
= alc268_adc_nids_alt
,
13871 .capsrc_nids
= alc268_capsrc_nids
,
13873 .num_channel_mode
= ARRAY_SIZE(alc268_modes
),
13874 .channel_mode
= alc268_modes
,
13875 .input_mux
= &alc268_capture_source
,
13876 .unsol_event
= alc268_toshiba_unsol_event
,
13877 .setup
= alc268_toshiba_setup
,
13878 .init_hook
= alc268_toshiba_automute
,
13881 .mixers
= { alc268_acer_mixer
, alc268_capture_alt_mixer
,
13882 alc268_beep_mixer
},
13883 .init_verbs
= { alc268_base_init_verbs
, alc268_eapd_verbs
,
13884 alc268_acer_verbs
},
13885 .num_dacs
= ARRAY_SIZE(alc268_dac_nids
),
13886 .dac_nids
= alc268_dac_nids
,
13887 .num_adc_nids
= ARRAY_SIZE(alc268_adc_nids_alt
),
13888 .adc_nids
= alc268_adc_nids_alt
,
13889 .capsrc_nids
= alc268_capsrc_nids
,
13891 .num_channel_mode
= ARRAY_SIZE(alc268_modes
),
13892 .channel_mode
= alc268_modes
,
13893 .input_mux
= &alc268_acer_capture_source
,
13894 .unsol_event
= alc268_acer_unsol_event
,
13895 .init_hook
= alc268_acer_init_hook
,
13897 [ALC268_ACER_DMIC
] = {
13898 .mixers
= { alc268_acer_dmic_mixer
, alc268_capture_alt_mixer
,
13899 alc268_beep_mixer
},
13900 .init_verbs
= { alc268_base_init_verbs
, alc268_eapd_verbs
,
13901 alc268_acer_verbs
},
13902 .num_dacs
= ARRAY_SIZE(alc268_dac_nids
),
13903 .dac_nids
= alc268_dac_nids
,
13904 .num_adc_nids
= ARRAY_SIZE(alc268_adc_nids_alt
),
13905 .adc_nids
= alc268_adc_nids_alt
,
13906 .capsrc_nids
= alc268_capsrc_nids
,
13908 .num_channel_mode
= ARRAY_SIZE(alc268_modes
),
13909 .channel_mode
= alc268_modes
,
13910 .input_mux
= &alc268_acer_dmic_capture_source
,
13911 .unsol_event
= alc268_acer_unsol_event
,
13912 .init_hook
= alc268_acer_init_hook
,
13914 [ALC268_ACER_ASPIRE_ONE
] = {
13915 .mixers
= { alc268_acer_aspire_one_mixer
,
13917 alc268_capture_nosrc_mixer
},
13918 .init_verbs
= { alc268_base_init_verbs
, alc268_eapd_verbs
,
13919 alc268_acer_aspire_one_verbs
},
13920 .num_dacs
= ARRAY_SIZE(alc268_dac_nids
),
13921 .dac_nids
= alc268_dac_nids
,
13922 .num_adc_nids
= ARRAY_SIZE(alc268_adc_nids_alt
),
13923 .adc_nids
= alc268_adc_nids_alt
,
13924 .capsrc_nids
= alc268_capsrc_nids
,
13926 .num_channel_mode
= ARRAY_SIZE(alc268_modes
),
13927 .channel_mode
= alc268_modes
,
13928 .unsol_event
= alc268_acer_lc_unsol_event
,
13929 .setup
= alc268_acer_lc_setup
,
13930 .init_hook
= alc268_acer_lc_init_hook
,
13933 .mixers
= { alc268_dell_mixer
, alc268_beep_mixer
,
13934 alc268_capture_nosrc_mixer
},
13935 .init_verbs
= { alc268_base_init_verbs
, alc268_eapd_verbs
,
13936 alc268_dell_verbs
},
13937 .num_dacs
= ARRAY_SIZE(alc268_dac_nids
),
13938 .dac_nids
= alc268_dac_nids
,
13939 .num_adc_nids
= ARRAY_SIZE(alc268_adc_nids_alt
),
13940 .adc_nids
= alc268_adc_nids_alt
,
13941 .capsrc_nids
= alc268_capsrc_nids
,
13943 .num_channel_mode
= ARRAY_SIZE(alc268_modes
),
13944 .channel_mode
= alc268_modes
,
13945 .unsol_event
= alc_sku_unsol_event
,
13946 .setup
= alc268_dell_setup
,
13947 .init_hook
= alc_inithook
,
13950 .mixers
= { alc268_base_mixer
, alc268_capture_alt_mixer
,
13951 alc268_beep_mixer
},
13952 .init_verbs
= { alc268_base_init_verbs
, alc268_eapd_verbs
,
13953 alc268_toshiba_verbs
},
13954 .num_dacs
= ARRAY_SIZE(alc268_dac_nids
),
13955 .dac_nids
= alc268_dac_nids
,
13956 .num_adc_nids
= ARRAY_SIZE(alc268_adc_nids_alt
),
13957 .adc_nids
= alc268_adc_nids_alt
,
13958 .capsrc_nids
= alc268_capsrc_nids
,
13960 .dig_out_nid
= ALC268_DIGOUT_NID
,
13961 .num_channel_mode
= ARRAY_SIZE(alc268_modes
),
13962 .channel_mode
= alc268_modes
,
13963 .input_mux
= &alc268_capture_source
,
13964 .setup
= alc268_toshiba_setup
,
13965 .init_hook
= alc268_toshiba_automute
,
13967 #ifdef CONFIG_SND_DEBUG
13969 .mixers
= { alc268_test_mixer
, alc268_capture_mixer
},
13970 .init_verbs
= { alc268_base_init_verbs
, alc268_eapd_verbs
,
13971 alc268_volume_init_verbs
},
13972 .num_dacs
= ARRAY_SIZE(alc268_dac_nids
),
13973 .dac_nids
= alc268_dac_nids
,
13974 .num_adc_nids
= ARRAY_SIZE(alc268_adc_nids_alt
),
13975 .adc_nids
= alc268_adc_nids_alt
,
13976 .capsrc_nids
= alc268_capsrc_nids
,
13978 .dig_out_nid
= ALC268_DIGOUT_NID
,
13979 .num_channel_mode
= ARRAY_SIZE(alc268_modes
),
13980 .channel_mode
= alc268_modes
,
13981 .input_mux
= &alc268_capture_source
,
13986 static int patch_alc268(struct hda_codec
*codec
)
13988 struct alc_spec
*spec
;
13990 int i
, has_beep
, err
;
13992 spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
13996 codec
->spec
= spec
;
13998 board_config
= snd_hda_check_board_config(codec
, ALC268_MODEL_LAST
,
14002 if (board_config
< 0 || board_config
>= ALC268_MODEL_LAST
)
14003 board_config
= snd_hda_check_board_codec_sid_config(codec
,
14004 ALC268_MODEL_LAST
, alc268_models
, alc268_ssid_cfg_tbl
);
14006 if (board_config
< 0 || board_config
>= ALC268_MODEL_LAST
) {
14007 printk(KERN_INFO
"hda_codec: %s: BIOS auto-probing.\n",
14009 board_config
= ALC268_AUTO
;
14012 if (board_config
== ALC268_AUTO
) {
14013 /* automatic parse from the BIOS config */
14014 err
= alc268_parse_auto_config(codec
);
14020 "hda_codec: Cannot set up configuration "
14021 "from BIOS. Using base mode...\n");
14022 board_config
= ALC268_3ST
;
14026 if (board_config
!= ALC268_AUTO
)
14027 setup_preset(codec
, &alc268_presets
[board_config
]);
14029 spec
->stream_analog_playback
= &alc268_pcm_analog_playback
;
14030 spec
->stream_analog_capture
= &alc268_pcm_analog_capture
;
14031 spec
->stream_analog_alt_capture
= &alc268_pcm_analog_alt_capture
;
14033 spec
->stream_digital_playback
= &alc268_pcm_digital_playback
;
14036 for (i
= 0; i
< spec
->num_mixers
; i
++) {
14037 if (spec
->mixers
[i
] == alc268_beep_mixer
) {
14044 err
= snd_hda_attach_beep_device(codec
, 0x1);
14049 if (!query_amp_caps(codec
, 0x1d, HDA_INPUT
))
14050 /* override the amp caps for beep generator */
14051 snd_hda_override_amp_caps(codec
, 0x1d, HDA_INPUT
,
14052 (0x0c << AC_AMPCAP_OFFSET_SHIFT
) |
14053 (0x0c << AC_AMPCAP_NUM_STEPS_SHIFT
) |
14054 (0x07 << AC_AMPCAP_STEP_SIZE_SHIFT
) |
14055 (0 << AC_AMPCAP_MUTE_SHIFT
));
14058 if (!spec
->no_analog
&& !spec
->adc_nids
&& spec
->input_mux
) {
14059 /* check whether NID 0x07 is valid */
14060 unsigned int wcap
= get_wcaps(codec
, 0x07);
14062 spec
->capsrc_nids
= alc268_capsrc_nids
;
14064 wcap
= get_wcaps_type(wcap
);
14065 if (spec
->auto_mic
||
14066 wcap
!= AC_WID_AUD_IN
|| spec
->input_mux
->num_items
== 1) {
14067 spec
->adc_nids
= alc268_adc_nids_alt
;
14068 spec
->num_adc_nids
= ARRAY_SIZE(alc268_adc_nids_alt
);
14069 if (spec
->auto_mic
)
14070 fixup_automic_adc(codec
);
14071 if (spec
->auto_mic
|| spec
->input_mux
->num_items
== 1)
14072 add_mixer(spec
, alc268_capture_nosrc_mixer
);
14074 add_mixer(spec
, alc268_capture_alt_mixer
);
14076 spec
->adc_nids
= alc268_adc_nids
;
14077 spec
->num_adc_nids
= ARRAY_SIZE(alc268_adc_nids
);
14078 add_mixer(spec
, alc268_capture_mixer
);
14082 spec
->vmaster_nid
= 0x02;
14084 codec
->patch_ops
= alc_patch_ops
;
14085 if (board_config
== ALC268_AUTO
)
14086 spec
->init_hook
= alc268_auto_init
;
14088 alc_init_jacks(codec
);
14094 * ALC269 channel source setting (2 channel)
14096 #define ALC269_DIGOUT_NID ALC880_DIGOUT_NID
14098 #define alc269_dac_nids alc260_dac_nids
14100 static hda_nid_t alc269_adc_nids
[1] = {
14105 static hda_nid_t alc269_capsrc_nids
[1] = {
14109 static hda_nid_t alc269vb_adc_nids
[1] = {
14114 static hda_nid_t alc269vb_capsrc_nids
[1] = {
14118 static hda_nid_t alc269_adc_candidates
[] = {
14122 #define alc269_modes alc260_modes
14123 #define alc269_capture_source alc880_lg_lw_capture_source
14125 static struct snd_kcontrol_new alc269_base_mixer
[] = {
14126 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
14127 HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
14128 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
14129 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
14130 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
14131 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
14132 HDA_CODEC_VOLUME("Mic Boost Volume", 0x18, 0, HDA_INPUT
),
14133 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x01, HDA_INPUT
),
14134 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x01, HDA_INPUT
),
14135 HDA_CODEC_VOLUME("Front Mic Boost Volume", 0x19, 0, HDA_INPUT
),
14136 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
14137 HDA_CODEC_MUTE_MONO("Mono Playback Switch", 0x16, 2, 0x0, HDA_OUTPUT
),
14141 static struct snd_kcontrol_new alc269_quanta_fl1_mixer
[] = {
14142 /* output mixer control */
14143 HDA_BIND_VOL("Master Playback Volume", &alc268_acer_bind_master_vol
),
14145 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
14146 .name
= "Master Playback Switch",
14147 .subdevice
= HDA_SUBDEV_AMP_FLAG
,
14148 .info
= snd_hda_mixer_amp_switch_info
,
14149 .get
= snd_hda_mixer_amp_switch_get
,
14150 .put
= alc268_acer_master_sw_put
,
14151 .private_value
= HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT
),
14153 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
14154 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
14155 HDA_CODEC_VOLUME("Mic Boost Volume", 0x18, 0, HDA_INPUT
),
14156 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x0b, 0x01, HDA_INPUT
),
14157 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x0b, 0x01, HDA_INPUT
),
14158 HDA_CODEC_VOLUME("Internal Mic Boost Volume", 0x19, 0, HDA_INPUT
),
14162 static struct snd_kcontrol_new alc269_lifebook_mixer
[] = {
14163 /* output mixer control */
14164 HDA_BIND_VOL("Master Playback Volume", &alc268_acer_bind_master_vol
),
14166 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
14167 .name
= "Master Playback Switch",
14168 .subdevice
= HDA_SUBDEV_AMP_FLAG
,
14169 .info
= snd_hda_mixer_amp_switch_info
,
14170 .get
= snd_hda_mixer_amp_switch_get
,
14171 .put
= alc268_acer_master_sw_put
,
14172 .private_value
= HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT
),
14174 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
14175 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
14176 HDA_CODEC_VOLUME("Mic Boost Volume", 0x18, 0, HDA_INPUT
),
14177 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x0b, 0x01, HDA_INPUT
),
14178 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x0b, 0x01, HDA_INPUT
),
14179 HDA_CODEC_VOLUME("Internal Mic Boost Volume", 0x19, 0, HDA_INPUT
),
14180 HDA_CODEC_VOLUME("Dock Mic Playback Volume", 0x0b, 0x03, HDA_INPUT
),
14181 HDA_CODEC_MUTE("Dock Mic Playback Switch", 0x0b, 0x03, HDA_INPUT
),
14182 HDA_CODEC_VOLUME("Dock Mic Boost Volume", 0x1b, 0, HDA_INPUT
),
14186 static struct snd_kcontrol_new alc269_laptop_mixer
[] = {
14187 HDA_CODEC_MUTE("Speaker Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
14188 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
14189 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
14190 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x03, 0x0, HDA_OUTPUT
),
14194 static struct snd_kcontrol_new alc269vb_laptop_mixer
[] = {
14195 HDA_CODEC_MUTE("Speaker Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
14196 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
14197 HDA_CODEC_MUTE("Headphone Playback Switch", 0x21, 0x0, HDA_OUTPUT
),
14198 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x03, 0x0, HDA_OUTPUT
),
14202 static struct snd_kcontrol_new alc269_asus_mixer
[] = {
14203 HDA_CODEC_VOLUME("Master Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
14204 HDA_CODEC_MUTE("Master Playback Switch", 0x0c, 0x0, HDA_INPUT
),
14208 /* capture mixer elements */
14209 static struct snd_kcontrol_new alc269_laptop_analog_capture_mixer
[] = {
14210 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT
),
14211 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT
),
14212 HDA_CODEC_VOLUME("Mic Boost Volume", 0x18, 0, HDA_INPUT
),
14213 HDA_CODEC_VOLUME("Internal Mic Boost Volume", 0x19, 0, HDA_INPUT
),
14217 static struct snd_kcontrol_new alc269_laptop_digital_capture_mixer
[] = {
14218 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT
),
14219 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT
),
14220 HDA_CODEC_VOLUME("Mic Boost Volume", 0x18, 0, HDA_INPUT
),
14224 static struct snd_kcontrol_new alc269vb_laptop_analog_capture_mixer
[] = {
14225 HDA_CODEC_VOLUME("Capture Volume", 0x09, 0x0, HDA_INPUT
),
14226 HDA_CODEC_MUTE("Capture Switch", 0x09, 0x0, HDA_INPUT
),
14227 HDA_CODEC_VOLUME("Mic Boost Volume", 0x18, 0, HDA_INPUT
),
14228 HDA_CODEC_VOLUME("Internal Mic Boost Volume", 0x19, 0, HDA_INPUT
),
14232 static struct snd_kcontrol_new alc269vb_laptop_digital_capture_mixer
[] = {
14233 HDA_CODEC_VOLUME("Capture Volume", 0x09, 0x0, HDA_INPUT
),
14234 HDA_CODEC_MUTE("Capture Switch", 0x09, 0x0, HDA_INPUT
),
14235 HDA_CODEC_VOLUME("Mic Boost Volume", 0x18, 0, HDA_INPUT
),
14240 #define alc269_fujitsu_mixer alc269_laptop_mixer
14242 static struct hda_verb alc269_quanta_fl1_verbs
[] = {
14243 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x01},
14244 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
14245 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
14246 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
14247 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
14248 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
14252 static struct hda_verb alc269_lifebook_verbs
[] = {
14253 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x01},
14254 {0x1a, AC_VERB_SET_CONNECT_SEL
, 0x01},
14255 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
14256 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
14257 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
14258 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
14259 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
14260 {0x1a, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
14261 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
14262 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
14266 /* toggle speaker-output according to the hp-jack state */
14267 static void alc269_quanta_fl1_speaker_automute(struct hda_codec
*codec
)
14269 unsigned int present
;
14270 unsigned char bits
;
14272 present
= snd_hda_jack_detect(codec
, 0x15);
14273 bits
= present
? HDA_AMP_MUTE
: 0;
14274 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 0,
14275 HDA_AMP_MUTE
, bits
);
14276 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 1,
14277 HDA_AMP_MUTE
, bits
);
14279 snd_hda_codec_write(codec
, 0x20, 0,
14280 AC_VERB_SET_COEF_INDEX
, 0x0c);
14281 snd_hda_codec_write(codec
, 0x20, 0,
14282 AC_VERB_SET_PROC_COEF
, 0x680);
14284 snd_hda_codec_write(codec
, 0x20, 0,
14285 AC_VERB_SET_COEF_INDEX
, 0x0c);
14286 snd_hda_codec_write(codec
, 0x20, 0,
14287 AC_VERB_SET_PROC_COEF
, 0x480);
14290 /* toggle speaker-output according to the hp-jacks state */
14291 static void alc269_lifebook_speaker_automute(struct hda_codec
*codec
)
14293 unsigned int present
;
14294 unsigned char bits
;
14296 /* Check laptop headphone socket */
14297 present
= snd_hda_jack_detect(codec
, 0x15);
14299 /* Check port replicator headphone socket */
14300 present
|= snd_hda_jack_detect(codec
, 0x1a);
14302 bits
= present
? HDA_AMP_MUTE
: 0;
14303 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 0,
14304 HDA_AMP_MUTE
, bits
);
14305 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 1,
14306 HDA_AMP_MUTE
, bits
);
14308 snd_hda_codec_write(codec
, 0x20, 0,
14309 AC_VERB_SET_COEF_INDEX
, 0x0c);
14310 snd_hda_codec_write(codec
, 0x20, 0,
14311 AC_VERB_SET_PROC_COEF
, 0x680);
14313 snd_hda_codec_write(codec
, 0x20, 0,
14314 AC_VERB_SET_COEF_INDEX
, 0x0c);
14315 snd_hda_codec_write(codec
, 0x20, 0,
14316 AC_VERB_SET_PROC_COEF
, 0x480);
14319 static void alc269_lifebook_mic_autoswitch(struct hda_codec
*codec
)
14321 unsigned int present_laptop
;
14322 unsigned int present_dock
;
14324 present_laptop
= snd_hda_jack_detect(codec
, 0x18);
14325 present_dock
= snd_hda_jack_detect(codec
, 0x1b);
14327 /* Laptop mic port overrides dock mic port, design decision */
14329 snd_hda_codec_write(codec
, 0x23, 0,
14330 AC_VERB_SET_CONNECT_SEL
, 0x3);
14331 if (present_laptop
)
14332 snd_hda_codec_write(codec
, 0x23, 0,
14333 AC_VERB_SET_CONNECT_SEL
, 0x0);
14334 if (!present_dock
&& !present_laptop
)
14335 snd_hda_codec_write(codec
, 0x23, 0,
14336 AC_VERB_SET_CONNECT_SEL
, 0x1);
14339 static void alc269_quanta_fl1_unsol_event(struct hda_codec
*codec
,
14342 switch (res
>> 26) {
14343 case ALC880_HP_EVENT
:
14344 alc269_quanta_fl1_speaker_automute(codec
);
14346 case ALC880_MIC_EVENT
:
14347 alc_mic_automute(codec
);
14352 static void alc269_lifebook_unsol_event(struct hda_codec
*codec
,
14355 if ((res
>> 26) == ALC880_HP_EVENT
)
14356 alc269_lifebook_speaker_automute(codec
);
14357 if ((res
>> 26) == ALC880_MIC_EVENT
)
14358 alc269_lifebook_mic_autoswitch(codec
);
14361 static void alc269_quanta_fl1_setup(struct hda_codec
*codec
)
14363 struct alc_spec
*spec
= codec
->spec
;
14364 spec
->autocfg
.hp_pins
[0] = 0x15;
14365 spec
->autocfg
.speaker_pins
[0] = 0x14;
14366 spec
->ext_mic
.pin
= 0x18;
14367 spec
->ext_mic
.mux_idx
= 0;
14368 spec
->int_mic
.pin
= 0x19;
14369 spec
->int_mic
.mux_idx
= 1;
14370 spec
->auto_mic
= 1;
14373 static void alc269_quanta_fl1_init_hook(struct hda_codec
*codec
)
14375 alc269_quanta_fl1_speaker_automute(codec
);
14376 alc_mic_automute(codec
);
14379 static void alc269_lifebook_init_hook(struct hda_codec
*codec
)
14381 alc269_lifebook_speaker_automute(codec
);
14382 alc269_lifebook_mic_autoswitch(codec
);
14385 static struct hda_verb alc269_laptop_dmic_init_verbs
[] = {
14386 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x01},
14387 {0x23, AC_VERB_SET_CONNECT_SEL
, 0x05},
14388 {0x02, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb026 },
14389 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7019 | (0x00 << 8))},
14390 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
14391 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
14392 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
14396 static struct hda_verb alc269_laptop_amic_init_verbs
[] = {
14397 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x01},
14398 {0x23, AC_VERB_SET_CONNECT_SEL
, 0x01},
14399 {0x02, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb026 },
14400 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, (0x701b | (0x00 << 8))},
14401 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
14402 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
14406 static struct hda_verb alc269vb_laptop_dmic_init_verbs
[] = {
14407 {0x21, AC_VERB_SET_CONNECT_SEL
, 0x01},
14408 {0x22, AC_VERB_SET_CONNECT_SEL
, 0x06},
14409 {0x02, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb026 },
14410 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7019 | (0x00 << 8))},
14411 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
14412 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
14413 {0x21, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
14417 static struct hda_verb alc269vb_laptop_amic_init_verbs
[] = {
14418 {0x21, AC_VERB_SET_CONNECT_SEL
, 0x01},
14419 {0x22, AC_VERB_SET_CONNECT_SEL
, 0x01},
14420 {0x02, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb026 },
14421 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7019 | (0x00 << 8))},
14422 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
14423 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
14424 {0x21, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
14428 static struct hda_verb alc271_acer_dmic_verbs
[] = {
14429 {0x20, AC_VERB_SET_COEF_INDEX
, 0x0d},
14430 {0x20, AC_VERB_SET_PROC_COEF
, 0x4000},
14431 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
14432 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
14433 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
14434 {0x21, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
14435 {0x21, AC_VERB_SET_CONNECT_SEL
, 0x00},
14436 {0x21, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
14437 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
14438 {0x22, AC_VERB_SET_CONNECT_SEL
, 6},
14442 /* toggle speaker-output according to the hp-jack state */
14443 static void alc269_speaker_automute(struct hda_codec
*codec
)
14445 struct alc_spec
*spec
= codec
->spec
;
14446 unsigned int nid
= spec
->autocfg
.hp_pins
[0];
14447 unsigned int present
;
14448 unsigned char bits
;
14450 present
= snd_hda_jack_detect(codec
, nid
);
14451 bits
= present
? HDA_AMP_MUTE
: 0;
14452 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 0,
14453 HDA_AMP_MUTE
, bits
);
14454 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 1,
14455 HDA_AMP_MUTE
, bits
);
14456 snd_hda_input_jack_report(codec
, nid
);
14459 /* unsolicited event for HP jack sensing */
14460 static void alc269_laptop_unsol_event(struct hda_codec
*codec
,
14463 switch (res
>> 26) {
14464 case ALC880_HP_EVENT
:
14465 alc269_speaker_automute(codec
);
14467 case ALC880_MIC_EVENT
:
14468 alc_mic_automute(codec
);
14473 static void alc269_laptop_amic_setup(struct hda_codec
*codec
)
14475 struct alc_spec
*spec
= codec
->spec
;
14476 spec
->autocfg
.hp_pins
[0] = 0x15;
14477 spec
->autocfg
.speaker_pins
[0] = 0x14;
14478 spec
->ext_mic
.pin
= 0x18;
14479 spec
->ext_mic
.mux_idx
= 0;
14480 spec
->int_mic
.pin
= 0x19;
14481 spec
->int_mic
.mux_idx
= 1;
14482 spec
->auto_mic
= 1;
14485 static void alc269_laptop_dmic_setup(struct hda_codec
*codec
)
14487 struct alc_spec
*spec
= codec
->spec
;
14488 spec
->autocfg
.hp_pins
[0] = 0x15;
14489 spec
->autocfg
.speaker_pins
[0] = 0x14;
14490 spec
->ext_mic
.pin
= 0x18;
14491 spec
->ext_mic
.mux_idx
= 0;
14492 spec
->int_mic
.pin
= 0x12;
14493 spec
->int_mic
.mux_idx
= 5;
14494 spec
->auto_mic
= 1;
14497 static void alc269vb_laptop_amic_setup(struct hda_codec
*codec
)
14499 struct alc_spec
*spec
= codec
->spec
;
14500 spec
->autocfg
.hp_pins
[0] = 0x21;
14501 spec
->autocfg
.speaker_pins
[0] = 0x14;
14502 spec
->ext_mic
.pin
= 0x18;
14503 spec
->ext_mic
.mux_idx
= 0;
14504 spec
->int_mic
.pin
= 0x19;
14505 spec
->int_mic
.mux_idx
= 1;
14506 spec
->auto_mic
= 1;
14509 static void alc269vb_laptop_dmic_setup(struct hda_codec
*codec
)
14511 struct alc_spec
*spec
= codec
->spec
;
14512 spec
->autocfg
.hp_pins
[0] = 0x21;
14513 spec
->autocfg
.speaker_pins
[0] = 0x14;
14514 spec
->ext_mic
.pin
= 0x18;
14515 spec
->ext_mic
.mux_idx
= 0;
14516 spec
->int_mic
.pin
= 0x12;
14517 spec
->int_mic
.mux_idx
= 6;
14518 spec
->auto_mic
= 1;
14521 static void alc269_laptop_inithook(struct hda_codec
*codec
)
14523 alc269_speaker_automute(codec
);
14524 alc_mic_automute(codec
);
14528 * generic initialization of ADC, input mixers and output mixers
14530 static struct hda_verb alc269_init_verbs
[] = {
14532 * Unmute ADC0 and set the default input to mic-in
14534 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14537 * Set up output mixers (0x02 - 0x03)
14539 /* set vol=0 to output mixers */
14540 {0x02, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
14541 {0x03, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
14543 /* set up input amps for analog loopback */
14544 /* Amp Indices: DAC = 0, mixer = 1 */
14545 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14546 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14547 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14548 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14549 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14550 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14552 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
14553 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
14554 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
14555 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
14556 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
14557 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
14558 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
14560 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
14561 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
14563 /* FIXME: use Mux-type input source selection */
14564 /* Mixer elements: 0x18, 19, 1a, 1b, 1d, 0b */
14565 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
14566 {0x23, AC_VERB_SET_CONNECT_SEL
, 0x00},
14569 {0x14, AC_VERB_SET_EAPD_BTLENABLE
, 2},
14573 static struct hda_verb alc269vb_init_verbs
[] = {
14575 * Unmute ADC0 and set the default input to mic-in
14577 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14580 * Set up output mixers (0x02 - 0x03)
14582 /* set vol=0 to output mixers */
14583 {0x02, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
14584 {0x03, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
14586 /* set up input amps for analog loopback */
14587 /* Amp Indices: DAC = 0, mixer = 1 */
14588 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14589 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14590 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14591 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14592 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14593 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14595 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
14596 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
14597 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
14598 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
14599 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
14600 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
14601 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
14603 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
14604 {0x21, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
14606 /* FIXME: use Mux-type input source selection */
14607 /* Mixer elements: 0x18, 19, 1a, 1b, 1d, 0b */
14608 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
14609 {0x22, AC_VERB_SET_CONNECT_SEL
, 0x00},
14612 {0x14, AC_VERB_SET_EAPD_BTLENABLE
, 2},
14616 #define alc269_auto_create_multi_out_ctls \
14617 alc268_auto_create_multi_out_ctls
14618 #define alc269_auto_create_input_ctls \
14619 alc268_auto_create_input_ctls
14621 #ifdef CONFIG_SND_HDA_POWER_SAVE
14622 #define alc269_loopbacks alc880_loopbacks
14625 /* pcm configuration: identical with ALC880 */
14626 #define alc269_pcm_analog_playback alc880_pcm_analog_playback
14627 #define alc269_pcm_analog_capture alc880_pcm_analog_capture
14628 #define alc269_pcm_digital_playback alc880_pcm_digital_playback
14629 #define alc269_pcm_digital_capture alc880_pcm_digital_capture
14631 static struct hda_pcm_stream alc269_44k_pcm_analog_playback
= {
14635 .rates
= SNDRV_PCM_RATE_44100
, /* fixed rate */
14636 /* NID is set in alc_build_pcms */
14638 .open
= alc880_playback_pcm_open
,
14639 .prepare
= alc880_playback_pcm_prepare
,
14640 .cleanup
= alc880_playback_pcm_cleanup
14644 static struct hda_pcm_stream alc269_44k_pcm_analog_capture
= {
14648 .rates
= SNDRV_PCM_RATE_44100
, /* fixed rate */
14649 /* NID is set in alc_build_pcms */
14652 #ifdef CONFIG_SND_HDA_POWER_SAVE
14653 static int alc269_mic2_for_mute_led(struct hda_codec
*codec
)
14655 switch (codec
->subsystem_id
) {
14662 static int alc269_mic2_mute_check_ps(struct hda_codec
*codec
, hda_nid_t nid
)
14664 /* update mute-LED according to the speaker mute state */
14665 if (nid
== 0x01 || nid
== 0x14) {
14667 if (snd_hda_codec_amp_read(codec
, 0x14, 0, HDA_OUTPUT
, 0) &
14672 /* mic2 vref pin is used for mute LED control */
14673 snd_hda_codec_update_cache(codec
, 0x19, 0,
14674 AC_VERB_SET_PIN_WIDGET_CONTROL
,
14677 return alc_check_power_status(codec
, nid
);
14679 #endif /* CONFIG_SND_HDA_POWER_SAVE */
14681 static int alc275_setup_dual_adc(struct hda_codec
*codec
)
14683 struct alc_spec
*spec
= codec
->spec
;
14685 if (codec
->vendor_id
!= 0x10ec0275 || !spec
->auto_mic
)
14687 if ((spec
->ext_mic
.pin
>= 0x18 && spec
->int_mic
.pin
<= 0x13) ||
14688 (spec
->ext_mic
.pin
<= 0x12 && spec
->int_mic
.pin
>= 0x18)) {
14689 if (spec
->ext_mic
.pin
<= 0x12) {
14690 spec
->private_adc_nids
[0] = 0x08;
14691 spec
->private_adc_nids
[1] = 0x11;
14692 spec
->private_capsrc_nids
[0] = 0x23;
14693 spec
->private_capsrc_nids
[1] = 0x22;
14695 spec
->private_adc_nids
[0] = 0x11;
14696 spec
->private_adc_nids
[1] = 0x08;
14697 spec
->private_capsrc_nids
[0] = 0x22;
14698 spec
->private_capsrc_nids
[1] = 0x23;
14700 spec
->adc_nids
= spec
->private_adc_nids
;
14701 spec
->capsrc_nids
= spec
->private_capsrc_nids
;
14702 spec
->num_adc_nids
= 2;
14703 spec
->dual_adc_switch
= 1;
14704 snd_printdd("realtek: enabling dual ADC switchg (%02x:%02x)\n",
14705 spec
->adc_nids
[0], spec
->adc_nids
[1]);
14711 /* different alc269-variants */
14713 ALC269_TYPE_NORMAL
,
14714 ALC269_TYPE_ALC258
,
14715 ALC269_TYPE_ALC259
,
14716 ALC269_TYPE_ALC269VB
,
14717 ALC269_TYPE_ALC270
,
14718 ALC269_TYPE_ALC271X
,
14722 * BIOS auto configuration
14724 static int alc269_parse_auto_config(struct hda_codec
*codec
)
14726 struct alc_spec
*spec
= codec
->spec
;
14728 static hda_nid_t alc269_ignore
[] = { 0x1d, 0 };
14730 err
= snd_hda_parse_pin_def_config(codec
, &spec
->autocfg
,
14735 err
= alc269_auto_create_multi_out_ctls(spec
, &spec
->autocfg
);
14738 if (spec
->codec_variant
== ALC269_TYPE_NORMAL
)
14739 err
= alc269_auto_create_input_ctls(codec
, &spec
->autocfg
);
14741 err
= alc_auto_create_input_ctls(codec
, &spec
->autocfg
, 0,
14746 spec
->multiout
.max_channels
= spec
->multiout
.num_dacs
* 2;
14748 alc_auto_parse_digital(codec
);
14750 if (spec
->kctls
.list
)
14751 add_mixer(spec
, spec
->kctls
.list
);
14753 if (spec
->codec_variant
!= ALC269_TYPE_NORMAL
) {
14754 add_verb(spec
, alc269vb_init_verbs
);
14755 alc_ssid_check(codec
, 0, 0x1b, 0x14, 0x21);
14757 add_verb(spec
, alc269_init_verbs
);
14758 alc_ssid_check(codec
, 0x15, 0x1b, 0x14, 0);
14761 spec
->num_mux_defs
= 1;
14762 spec
->input_mux
= &spec
->private_imux
[0];
14764 if (!alc275_setup_dual_adc(codec
))
14765 fillup_priv_adc_nids(codec
, alc269_adc_candidates
,
14766 sizeof(alc269_adc_candidates
));
14768 err
= alc_auto_add_mic_boost(codec
);
14772 if (!spec
->cap_mixer
&& !spec
->no_analog
)
14773 set_capture_mixer(codec
);
14778 #define alc269_auto_init_multi_out alc268_auto_init_multi_out
14779 #define alc269_auto_init_hp_out alc268_auto_init_hp_out
14780 #define alc269_auto_init_analog_input alc882_auto_init_analog_input
14781 #define alc269_auto_init_input_src alc882_auto_init_input_src
14784 /* init callback for auto-configuration model -- overriding the default init */
14785 static void alc269_auto_init(struct hda_codec
*codec
)
14787 struct alc_spec
*spec
= codec
->spec
;
14788 alc269_auto_init_multi_out(codec
);
14789 alc269_auto_init_hp_out(codec
);
14790 alc269_auto_init_analog_input(codec
);
14791 if (!spec
->dual_adc_switch
)
14792 alc269_auto_init_input_src(codec
);
14793 alc_auto_init_digital(codec
);
14794 if (spec
->unsol_event
)
14795 alc_inithook(codec
);
14798 #ifdef SND_HDA_NEEDS_RESUME
14799 static void alc269_toggle_power_output(struct hda_codec
*codec
, int power_up
)
14801 int val
= alc_read_coef_idx(codec
, 0x04);
14806 alc_write_coef_idx(codec
, 0x04, val
);
14809 #ifdef CONFIG_SND_HDA_POWER_SAVE
14810 static int alc269_suspend(struct hda_codec
*codec
, pm_message_t state
)
14812 struct alc_spec
*spec
= codec
->spec
;
14814 if ((alc_read_coef_idx(codec
, 0) & 0x00ff) == 0x017)
14815 alc269_toggle_power_output(codec
, 0);
14816 if ((alc_read_coef_idx(codec
, 0) & 0x00ff) == 0x018) {
14817 alc269_toggle_power_output(codec
, 0);
14822 if (spec
&& spec
->power_hook
)
14823 spec
->power_hook(codec
);
14826 #endif /* CONFIG_SND_HDA_POWER_SAVE */
14828 static int alc269_resume(struct hda_codec
*codec
)
14830 if ((alc_read_coef_idx(codec
, 0) & 0x00ff) == 0x018) {
14831 alc269_toggle_power_output(codec
, 0);
14835 codec
->patch_ops
.init(codec
);
14837 if ((alc_read_coef_idx(codec
, 0) & 0x00ff) == 0x017) {
14838 alc269_toggle_power_output(codec
, 1);
14842 if ((alc_read_coef_idx(codec
, 0) & 0x00ff) == 0x018)
14843 alc269_toggle_power_output(codec
, 1);
14845 snd_hda_codec_resume_amp(codec
);
14846 snd_hda_codec_resume_cache(codec
);
14847 hda_call_check_power_status(codec
, 0x01);
14850 #endif /* SND_HDA_NEEDS_RESUME */
14852 static void alc269_fixup_hweq(struct hda_codec
*codec
,
14853 const struct alc_fixup
*fix
, int action
)
14857 if (action
!= ALC_FIXUP_ACT_INIT
)
14859 coef
= alc_read_coef_idx(codec
, 0x1e);
14860 alc_write_coef_idx(codec
, 0x1e, coef
| 0x80);
14864 ALC269_FIXUP_SONY_VAIO
,
14865 ALC275_FIXUP_SONY_VAIO_GPIO2
,
14866 ALC269_FIXUP_DELL_M101Z
,
14867 ALC269_FIXUP_SKU_IGNORE
,
14868 ALC269_FIXUP_ASUS_G73JW
,
14869 ALC269_FIXUP_LENOVO_EAPD
,
14870 ALC275_FIXUP_SONY_HWEQ
,
14873 static const struct alc_fixup alc269_fixups
[] = {
14874 [ALC269_FIXUP_SONY_VAIO
] = {
14875 .type
= ALC_FIXUP_VERBS
,
14876 .v
.verbs
= (const struct hda_verb
[]) {
14877 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREFGRD
},
14881 [ALC275_FIXUP_SONY_VAIO_GPIO2
] = {
14882 .type
= ALC_FIXUP_VERBS
,
14883 .v
.verbs
= (const struct hda_verb
[]) {
14884 {0x01, AC_VERB_SET_GPIO_MASK
, 0x04},
14885 {0x01, AC_VERB_SET_GPIO_DIRECTION
, 0x04},
14886 {0x01, AC_VERB_SET_GPIO_DATA
, 0x00},
14890 .chain_id
= ALC269_FIXUP_SONY_VAIO
14892 [ALC269_FIXUP_DELL_M101Z
] = {
14893 .type
= ALC_FIXUP_VERBS
,
14894 .v
.verbs
= (const struct hda_verb
[]) {
14895 /* Enables internal speaker */
14896 {0x20, AC_VERB_SET_COEF_INDEX
, 13},
14897 {0x20, AC_VERB_SET_PROC_COEF
, 0x4040},
14901 [ALC269_FIXUP_SKU_IGNORE
] = {
14902 .type
= ALC_FIXUP_SKU
,
14903 .v
.sku
= ALC_FIXUP_SKU_IGNORE
,
14905 [ALC269_FIXUP_ASUS_G73JW
] = {
14906 .type
= ALC_FIXUP_PINS
,
14907 .v
.pins
= (const struct alc_pincfg
[]) {
14908 { 0x17, 0x99130111 }, /* subwoofer */
14912 [ALC269_FIXUP_LENOVO_EAPD
] = {
14913 .type
= ALC_FIXUP_VERBS
,
14914 .v
.verbs
= (const struct hda_verb
[]) {
14915 {0x14, AC_VERB_SET_EAPD_BTLENABLE
, 0},
14919 [ALC275_FIXUP_SONY_HWEQ
] = {
14920 .type
= ALC_FIXUP_FUNC
,
14921 .v
.func
= alc269_fixup_hweq
,
14923 .chain_id
= ALC275_FIXUP_SONY_VAIO_GPIO2
14927 static struct snd_pci_quirk alc269_fixup_tbl
[] = {
14928 SND_PCI_QUIRK(0x104d, 0x9073, "Sony VAIO", ALC275_FIXUP_SONY_VAIO_GPIO2
),
14929 SND_PCI_QUIRK(0x104d, 0x907b, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ
),
14930 SND_PCI_QUIRK(0x104d, 0x9084, "Sony VAIO", ALC275_FIXUP_SONY_HWEQ
),
14931 SND_PCI_QUIRK_VENDOR(0x104d, "Sony VAIO", ALC269_FIXUP_SONY_VAIO
),
14932 SND_PCI_QUIRK(0x1028, 0x0470, "Dell M101z", ALC269_FIXUP_DELL_M101Z
),
14933 SND_PCI_QUIRK(0x17aa, 0x20f2, "Thinkpad SL410/510", ALC269_FIXUP_SKU_IGNORE
),
14934 SND_PCI_QUIRK(0x17aa, 0x215e, "Thinkpad L512", ALC269_FIXUP_SKU_IGNORE
),
14935 SND_PCI_QUIRK(0x17aa, 0x21b8, "Thinkpad Edge 14", ALC269_FIXUP_SKU_IGNORE
),
14936 SND_PCI_QUIRK(0x17aa, 0x21ca, "Thinkpad L412", ALC269_FIXUP_SKU_IGNORE
),
14937 SND_PCI_QUIRK(0x17aa, 0x21e9, "Thinkpad Edge 15", ALC269_FIXUP_SKU_IGNORE
),
14938 SND_PCI_QUIRK(0x1043, 0x1a13, "Asus G73Jw", ALC269_FIXUP_ASUS_G73JW
),
14939 SND_PCI_QUIRK(0x17aa, 0x9e54, "LENOVO NB", ALC269_FIXUP_LENOVO_EAPD
),
14945 * configuration and preset
14947 static const char * const alc269_models
[ALC269_MODEL_LAST
] = {
14948 [ALC269_BASIC
] = "basic",
14949 [ALC269_QUANTA_FL1
] = "quanta",
14950 [ALC269_AMIC
] = "laptop-amic",
14951 [ALC269_DMIC
] = "laptop-dmic",
14952 [ALC269_FUJITSU
] = "fujitsu",
14953 [ALC269_LIFEBOOK
] = "lifebook",
14954 [ALC269_AUTO
] = "auto",
14957 static struct snd_pci_quirk alc269_cfg_tbl
[] = {
14958 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_QUANTA_FL1
),
14959 SND_PCI_QUIRK(0x1025, 0x047c, "ACER ZGA", ALC271_ACER
),
14960 SND_PCI_QUIRK(0x1043, 0x8330, "ASUS Eeepc P703 P900A",
14962 SND_PCI_QUIRK(0x1043, 0x1013, "ASUS N61Da", ALC269VB_AMIC
),
14963 SND_PCI_QUIRK(0x1043, 0x1113, "ASUS N63Jn", ALC269VB_AMIC
),
14964 SND_PCI_QUIRK(0x1043, 0x1143, "ASUS B53f", ALC269VB_AMIC
),
14965 SND_PCI_QUIRK(0x1043, 0x1133, "ASUS UJ20ft", ALC269_AMIC
),
14966 SND_PCI_QUIRK(0x1043, 0x1183, "ASUS K72DR", ALC269VB_AMIC
),
14967 SND_PCI_QUIRK(0x1043, 0x11b3, "ASUS K52DR", ALC269VB_AMIC
),
14968 SND_PCI_QUIRK(0x1043, 0x11e3, "ASUS U33Jc", ALC269VB_AMIC
),
14969 SND_PCI_QUIRK(0x1043, 0x1273, "ASUS UL80Jt", ALC269VB_AMIC
),
14970 SND_PCI_QUIRK(0x1043, 0x1283, "ASUS U53Jc", ALC269_AMIC
),
14971 SND_PCI_QUIRK(0x1043, 0x12b3, "ASUS N82JV", ALC269VB_AMIC
),
14972 SND_PCI_QUIRK(0x1043, 0x12d3, "ASUS N61Jv", ALC269_AMIC
),
14973 SND_PCI_QUIRK(0x1043, 0x13a3, "ASUS UL30Vt", ALC269_AMIC
),
14974 SND_PCI_QUIRK(0x1043, 0x1373, "ASUS G73JX", ALC269_AMIC
),
14975 SND_PCI_QUIRK(0x1043, 0x1383, "ASUS UJ30Jc", ALC269_AMIC
),
14976 SND_PCI_QUIRK(0x1043, 0x13d3, "ASUS N61JA", ALC269_AMIC
),
14977 SND_PCI_QUIRK(0x1043, 0x1413, "ASUS UL50", ALC269_AMIC
),
14978 SND_PCI_QUIRK(0x1043, 0x1443, "ASUS UL30", ALC269_AMIC
),
14979 SND_PCI_QUIRK(0x1043, 0x1453, "ASUS M60Jv", ALC269_AMIC
),
14980 SND_PCI_QUIRK(0x1043, 0x1483, "ASUS UL80", ALC269_AMIC
),
14981 SND_PCI_QUIRK(0x1043, 0x14f3, "ASUS F83Vf", ALC269_AMIC
),
14982 SND_PCI_QUIRK(0x1043, 0x14e3, "ASUS UL20", ALC269_AMIC
),
14983 SND_PCI_QUIRK(0x1043, 0x1513, "ASUS UX30", ALC269_AMIC
),
14984 SND_PCI_QUIRK(0x1043, 0x1593, "ASUS N51Vn", ALC269_AMIC
),
14985 SND_PCI_QUIRK(0x1043, 0x15a3, "ASUS N60Jv", ALC269_AMIC
),
14986 SND_PCI_QUIRK(0x1043, 0x15b3, "ASUS N60Dp", ALC269_AMIC
),
14987 SND_PCI_QUIRK(0x1043, 0x15c3, "ASUS N70De", ALC269_AMIC
),
14988 SND_PCI_QUIRK(0x1043, 0x15e3, "ASUS F83T", ALC269_AMIC
),
14989 SND_PCI_QUIRK(0x1043, 0x1643, "ASUS M60J", ALC269_AMIC
),
14990 SND_PCI_QUIRK(0x1043, 0x1653, "ASUS U50", ALC269_AMIC
),
14991 SND_PCI_QUIRK(0x1043, 0x1693, "ASUS F50N", ALC269_AMIC
),
14992 SND_PCI_QUIRK(0x1043, 0x16a3, "ASUS F5Q", ALC269_AMIC
),
14993 SND_PCI_QUIRK(0x1043, 0x16e3, "ASUS UX50", ALC269_DMIC
),
14994 SND_PCI_QUIRK(0x1043, 0x1723, "ASUS P80", ALC269_AMIC
),
14995 SND_PCI_QUIRK(0x1043, 0x1743, "ASUS U80", ALC269_AMIC
),
14996 SND_PCI_QUIRK(0x1043, 0x1773, "ASUS U20A", ALC269_AMIC
),
14997 SND_PCI_QUIRK(0x1043, 0x1883, "ASUS F81Se", ALC269_AMIC
),
14998 SND_PCI_QUIRK(0x1043, 0x831a, "ASUS Eeepc P901",
15000 SND_PCI_QUIRK(0x1043, 0x834a, "ASUS Eeepc S101",
15002 SND_PCI_QUIRK(0x1043, 0x8398, "ASUS P1005HA", ALC269_DMIC
),
15003 SND_PCI_QUIRK(0x1043, 0x83ce, "ASUS P1005HA", ALC269_DMIC
),
15004 SND_PCI_QUIRK(0x104d, 0x9071, "Sony VAIO", ALC269_AUTO
),
15005 SND_PCI_QUIRK(0x10cf, 0x1475, "Lifebook ICH9M-based", ALC269_LIFEBOOK
),
15006 SND_PCI_QUIRK(0x152d, 0x1778, "Quanta ON1", ALC269_DMIC
),
15007 SND_PCI_QUIRK(0x1734, 0x115d, "FSC Amilo", ALC269_FUJITSU
),
15008 SND_PCI_QUIRK(0x17aa, 0x3be9, "Quanta Wistron", ALC269_AMIC
),
15009 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_AMIC
),
15010 SND_PCI_QUIRK(0x17ff, 0x059a, "Quanta EL3", ALC269_DMIC
),
15011 SND_PCI_QUIRK(0x17ff, 0x059b, "Quanta JR1", ALC269_DMIC
),
15015 static struct alc_config_preset alc269_presets
[] = {
15017 .mixers
= { alc269_base_mixer
},
15018 .init_verbs
= { alc269_init_verbs
},
15019 .num_dacs
= ARRAY_SIZE(alc269_dac_nids
),
15020 .dac_nids
= alc269_dac_nids
,
15022 .num_channel_mode
= ARRAY_SIZE(alc269_modes
),
15023 .channel_mode
= alc269_modes
,
15024 .input_mux
= &alc269_capture_source
,
15026 [ALC269_QUANTA_FL1
] = {
15027 .mixers
= { alc269_quanta_fl1_mixer
},
15028 .init_verbs
= { alc269_init_verbs
, alc269_quanta_fl1_verbs
},
15029 .num_dacs
= ARRAY_SIZE(alc269_dac_nids
),
15030 .dac_nids
= alc269_dac_nids
,
15032 .num_channel_mode
= ARRAY_SIZE(alc269_modes
),
15033 .channel_mode
= alc269_modes
,
15034 .input_mux
= &alc269_capture_source
,
15035 .unsol_event
= alc269_quanta_fl1_unsol_event
,
15036 .setup
= alc269_quanta_fl1_setup
,
15037 .init_hook
= alc269_quanta_fl1_init_hook
,
15040 .mixers
= { alc269_laptop_mixer
},
15041 .cap_mixer
= alc269_laptop_analog_capture_mixer
,
15042 .init_verbs
= { alc269_init_verbs
,
15043 alc269_laptop_amic_init_verbs
},
15044 .num_dacs
= ARRAY_SIZE(alc269_dac_nids
),
15045 .dac_nids
= alc269_dac_nids
,
15047 .num_channel_mode
= ARRAY_SIZE(alc269_modes
),
15048 .channel_mode
= alc269_modes
,
15049 .unsol_event
= alc269_laptop_unsol_event
,
15050 .setup
= alc269_laptop_amic_setup
,
15051 .init_hook
= alc269_laptop_inithook
,
15054 .mixers
= { alc269_laptop_mixer
},
15055 .cap_mixer
= alc269_laptop_digital_capture_mixer
,
15056 .init_verbs
= { alc269_init_verbs
,
15057 alc269_laptop_dmic_init_verbs
},
15058 .num_dacs
= ARRAY_SIZE(alc269_dac_nids
),
15059 .dac_nids
= alc269_dac_nids
,
15061 .num_channel_mode
= ARRAY_SIZE(alc269_modes
),
15062 .channel_mode
= alc269_modes
,
15063 .unsol_event
= alc269_laptop_unsol_event
,
15064 .setup
= alc269_laptop_dmic_setup
,
15065 .init_hook
= alc269_laptop_inithook
,
15067 [ALC269VB_AMIC
] = {
15068 .mixers
= { alc269vb_laptop_mixer
},
15069 .cap_mixer
= alc269vb_laptop_analog_capture_mixer
,
15070 .init_verbs
= { alc269vb_init_verbs
,
15071 alc269vb_laptop_amic_init_verbs
},
15072 .num_dacs
= ARRAY_SIZE(alc269_dac_nids
),
15073 .dac_nids
= alc269_dac_nids
,
15075 .num_channel_mode
= ARRAY_SIZE(alc269_modes
),
15076 .channel_mode
= alc269_modes
,
15077 .unsol_event
= alc269_laptop_unsol_event
,
15078 .setup
= alc269vb_laptop_amic_setup
,
15079 .init_hook
= alc269_laptop_inithook
,
15081 [ALC269VB_DMIC
] = {
15082 .mixers
= { alc269vb_laptop_mixer
},
15083 .cap_mixer
= alc269vb_laptop_digital_capture_mixer
,
15084 .init_verbs
= { alc269vb_init_verbs
,
15085 alc269vb_laptop_dmic_init_verbs
},
15086 .num_dacs
= ARRAY_SIZE(alc269_dac_nids
),
15087 .dac_nids
= alc269_dac_nids
,
15089 .num_channel_mode
= ARRAY_SIZE(alc269_modes
),
15090 .channel_mode
= alc269_modes
,
15091 .unsol_event
= alc269_laptop_unsol_event
,
15092 .setup
= alc269vb_laptop_dmic_setup
,
15093 .init_hook
= alc269_laptop_inithook
,
15095 [ALC269_FUJITSU
] = {
15096 .mixers
= { alc269_fujitsu_mixer
},
15097 .cap_mixer
= alc269_laptop_digital_capture_mixer
,
15098 .init_verbs
= { alc269_init_verbs
,
15099 alc269_laptop_dmic_init_verbs
},
15100 .num_dacs
= ARRAY_SIZE(alc269_dac_nids
),
15101 .dac_nids
= alc269_dac_nids
,
15103 .num_channel_mode
= ARRAY_SIZE(alc269_modes
),
15104 .channel_mode
= alc269_modes
,
15105 .unsol_event
= alc269_laptop_unsol_event
,
15106 .setup
= alc269_laptop_dmic_setup
,
15107 .init_hook
= alc269_laptop_inithook
,
15109 [ALC269_LIFEBOOK
] = {
15110 .mixers
= { alc269_lifebook_mixer
},
15111 .init_verbs
= { alc269_init_verbs
, alc269_lifebook_verbs
},
15112 .num_dacs
= ARRAY_SIZE(alc269_dac_nids
),
15113 .dac_nids
= alc269_dac_nids
,
15115 .num_channel_mode
= ARRAY_SIZE(alc269_modes
),
15116 .channel_mode
= alc269_modes
,
15117 .input_mux
= &alc269_capture_source
,
15118 .unsol_event
= alc269_lifebook_unsol_event
,
15119 .init_hook
= alc269_lifebook_init_hook
,
15122 .mixers
= { alc269_asus_mixer
},
15123 .cap_mixer
= alc269vb_laptop_digital_capture_mixer
,
15124 .init_verbs
= { alc269_init_verbs
, alc271_acer_dmic_verbs
},
15125 .num_dacs
= ARRAY_SIZE(alc269_dac_nids
),
15126 .dac_nids
= alc269_dac_nids
,
15127 .adc_nids
= alc262_dmic_adc_nids
,
15128 .num_adc_nids
= ARRAY_SIZE(alc262_dmic_adc_nids
),
15129 .capsrc_nids
= alc262_dmic_capsrc_nids
,
15130 .num_channel_mode
= ARRAY_SIZE(alc269_modes
),
15131 .channel_mode
= alc269_modes
,
15132 .input_mux
= &alc269_capture_source
,
15133 .dig_out_nid
= ALC880_DIGOUT_NID
,
15134 .unsol_event
= alc_sku_unsol_event
,
15135 .setup
= alc269vb_laptop_dmic_setup
,
15136 .init_hook
= alc_inithook
,
15140 static int alc269_fill_coef(struct hda_codec
*codec
)
15144 if ((alc_read_coef_idx(codec
, 0) & 0x00ff) < 0x015) {
15145 alc_write_coef_idx(codec
, 0xf, 0x960b);
15146 alc_write_coef_idx(codec
, 0xe, 0x8817);
15149 if ((alc_read_coef_idx(codec
, 0) & 0x00ff) == 0x016) {
15150 alc_write_coef_idx(codec
, 0xf, 0x960b);
15151 alc_write_coef_idx(codec
, 0xe, 0x8814);
15154 if ((alc_read_coef_idx(codec
, 0) & 0x00ff) == 0x017) {
15155 val
= alc_read_coef_idx(codec
, 0x04);
15156 /* Power up output pin */
15157 alc_write_coef_idx(codec
, 0x04, val
| (1<<11));
15160 if ((alc_read_coef_idx(codec
, 0) & 0x00ff) == 0x018) {
15161 val
= alc_read_coef_idx(codec
, 0xd);
15162 if ((val
& 0x0c00) >> 10 != 0x1) {
15163 /* Capless ramp up clock control */
15164 alc_write_coef_idx(codec
, 0xd, val
| 1<<10);
15166 val
= alc_read_coef_idx(codec
, 0x17);
15167 if ((val
& 0x01c0) >> 6 != 0x4) {
15168 /* Class D power on reset */
15169 alc_write_coef_idx(codec
, 0x17, val
| 1<<7);
15175 static int patch_alc269(struct hda_codec
*codec
)
15177 struct alc_spec
*spec
;
15178 int board_config
, coef
;
15181 spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
15185 codec
->spec
= spec
;
15187 alc_auto_parse_customize_define(codec
);
15189 if (codec
->vendor_id
== 0x10ec0269) {
15190 coef
= alc_read_coef_idx(codec
, 0);
15191 if ((coef
& 0x00f0) == 0x0010) {
15192 if (codec
->bus
->pci
->subsystem_vendor
== 0x1025 &&
15193 spec
->cdefine
.platform_type
== 1) {
15194 alc_codec_rename(codec
, "ALC271X");
15195 spec
->codec_variant
= ALC269_TYPE_ALC271X
;
15196 } else if ((coef
& 0xf000) == 0x1000) {
15197 spec
->codec_variant
= ALC269_TYPE_ALC270
;
15198 } else if ((coef
& 0xf000) == 0x2000) {
15199 alc_codec_rename(codec
, "ALC259");
15200 spec
->codec_variant
= ALC269_TYPE_ALC259
;
15201 } else if ((coef
& 0xf000) == 0x3000) {
15202 alc_codec_rename(codec
, "ALC258");
15203 spec
->codec_variant
= ALC269_TYPE_ALC258
;
15205 alc_codec_rename(codec
, "ALC269VB");
15206 spec
->codec_variant
= ALC269_TYPE_ALC269VB
;
15209 alc_fix_pll_init(codec
, 0x20, 0x04, 15);
15210 alc269_fill_coef(codec
);
15213 board_config
= snd_hda_check_board_config(codec
, ALC269_MODEL_LAST
,
15217 if (board_config
< 0) {
15218 printk(KERN_INFO
"hda_codec: %s: BIOS auto-probing.\n",
15220 board_config
= ALC269_AUTO
;
15223 if (board_config
== ALC269_AUTO
) {
15224 alc_pick_fixup(codec
, NULL
, alc269_fixup_tbl
, alc269_fixups
);
15225 alc_apply_fixup(codec
, ALC_FIXUP_ACT_PRE_PROBE
);
15228 if (board_config
== ALC269_AUTO
) {
15229 /* automatic parse from the BIOS config */
15230 err
= alc269_parse_auto_config(codec
);
15236 "hda_codec: Cannot set up configuration "
15237 "from BIOS. Using base mode...\n");
15238 board_config
= ALC269_BASIC
;
15242 if (has_cdefine_beep(codec
)) {
15243 err
= snd_hda_attach_beep_device(codec
, 0x1);
15250 if (board_config
!= ALC269_AUTO
)
15251 setup_preset(codec
, &alc269_presets
[board_config
]);
15253 if (board_config
== ALC269_QUANTA_FL1
) {
15254 /* Due to a hardware problem on Lenovo Ideadpad, we need to
15255 * fix the sample rate of analog I/O to 44.1kHz
15257 spec
->stream_analog_playback
= &alc269_44k_pcm_analog_playback
;
15258 spec
->stream_analog_capture
= &alc269_44k_pcm_analog_capture
;
15259 } else if (spec
->dual_adc_switch
) {
15260 spec
->stream_analog_playback
= &alc269_pcm_analog_playback
;
15261 /* switch ADC dynamically */
15262 spec
->stream_analog_capture
= &dualmic_pcm_analog_capture
;
15264 spec
->stream_analog_playback
= &alc269_pcm_analog_playback
;
15265 spec
->stream_analog_capture
= &alc269_pcm_analog_capture
;
15267 spec
->stream_digital_playback
= &alc269_pcm_digital_playback
;
15268 spec
->stream_digital_capture
= &alc269_pcm_digital_capture
;
15270 if (!spec
->adc_nids
) { /* wasn't filled automatically? use default */
15271 if (spec
->codec_variant
== ALC269_TYPE_NORMAL
) {
15272 spec
->adc_nids
= alc269_adc_nids
;
15273 spec
->num_adc_nids
= ARRAY_SIZE(alc269_adc_nids
);
15274 spec
->capsrc_nids
= alc269_capsrc_nids
;
15276 spec
->adc_nids
= alc269vb_adc_nids
;
15277 spec
->num_adc_nids
= ARRAY_SIZE(alc269vb_adc_nids
);
15278 spec
->capsrc_nids
= alc269vb_capsrc_nids
;
15282 if (!spec
->cap_mixer
)
15283 set_capture_mixer(codec
);
15284 if (has_cdefine_beep(codec
))
15285 set_beep_amp(spec
, 0x0b, 0x04, HDA_INPUT
);
15287 alc_apply_fixup(codec
, ALC_FIXUP_ACT_PROBE
);
15289 spec
->vmaster_nid
= 0x02;
15291 codec
->patch_ops
= alc_patch_ops
;
15292 #ifdef CONFIG_SND_HDA_POWER_SAVE
15293 codec
->patch_ops
.suspend
= alc269_suspend
;
15295 #ifdef SND_HDA_NEEDS_RESUME
15296 codec
->patch_ops
.resume
= alc269_resume
;
15298 if (board_config
== ALC269_AUTO
)
15299 spec
->init_hook
= alc269_auto_init
;
15301 alc_init_jacks(codec
);
15302 #ifdef CONFIG_SND_HDA_POWER_SAVE
15303 if (!spec
->loopback
.amplist
)
15304 spec
->loopback
.amplist
= alc269_loopbacks
;
15305 if (alc269_mic2_for_mute_led(codec
))
15306 codec
->patch_ops
.check_power_status
= alc269_mic2_mute_check_ps
;
15313 * ALC861 channel source setting (2/6 channel selection for 3-stack)
15317 * set the path ways for 2 channel output
15318 * need to set the codec line out and mic 1 pin widgets to inputs
15320 static struct hda_verb alc861_threestack_ch2_init
[] = {
15321 /* set pin widget 1Ah (line in) for input */
15322 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20 },
15323 /* set pin widget 18h (mic1/2) for input, for mic also enable
15326 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24 },
15328 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb00c },
15330 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x01 << 8)) }, /*mic*/
15331 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x02 << 8)) }, /*line-in*/
15337 * need to set the codec line out and mic 1 pin widgets to outputs
15339 static struct hda_verb alc861_threestack_ch6_init
[] = {
15340 /* set pin widget 1Ah (line in) for output (Back Surround)*/
15341 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40 },
15342 /* set pin widget 18h (mic1) for output (CLFE)*/
15343 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40 },
15345 { 0x0c, AC_VERB_SET_CONNECT_SEL
, 0x00 },
15346 { 0x0d, AC_VERB_SET_CONNECT_SEL
, 0x00 },
15348 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb080 },
15350 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x01 << 8)) }, /*mic*/
15351 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x02 << 8)) }, /*line in*/
15356 static struct hda_channel_mode alc861_threestack_modes
[2] = {
15357 { 2, alc861_threestack_ch2_init
},
15358 { 6, alc861_threestack_ch6_init
},
15360 /* Set mic1 as input and unmute the mixer */
15361 static struct hda_verb alc861_uniwill_m31_ch2_init
[] = {
15362 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24 },
15363 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x01 << 8)) }, /*mic*/
15366 /* Set mic1 as output and mute mixer */
15367 static struct hda_verb alc861_uniwill_m31_ch4_init
[] = {
15368 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40 },
15369 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x01 << 8)) }, /*mic*/
15373 static struct hda_channel_mode alc861_uniwill_m31_modes
[2] = {
15374 { 2, alc861_uniwill_m31_ch2_init
},
15375 { 4, alc861_uniwill_m31_ch4_init
},
15378 /* Set mic1 and line-in as input and unmute the mixer */
15379 static struct hda_verb alc861_asus_ch2_init
[] = {
15380 /* set pin widget 1Ah (line in) for input */
15381 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20 },
15382 /* set pin widget 18h (mic1/2) for input, for mic also enable
15385 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24 },
15387 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb00c },
15389 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x01 << 8)) }, /*mic*/
15390 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x02 << 8)) }, /*line-in*/
15394 /* Set mic1 nad line-in as output and mute mixer */
15395 static struct hda_verb alc861_asus_ch6_init
[] = {
15396 /* set pin widget 1Ah (line in) for output (Back Surround)*/
15397 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40 },
15398 /* { 0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE }, */
15399 /* set pin widget 18h (mic1) for output (CLFE)*/
15400 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40 },
15401 /* { 0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE }, */
15402 { 0x0c, AC_VERB_SET_CONNECT_SEL
, 0x00 },
15403 { 0x0d, AC_VERB_SET_CONNECT_SEL
, 0x00 },
15405 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb080 },
15407 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x01 << 8)) }, /*mic*/
15408 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x02 << 8)) }, /*line in*/
15413 static struct hda_channel_mode alc861_asus_modes
[2] = {
15414 { 2, alc861_asus_ch2_init
},
15415 { 6, alc861_asus_ch6_init
},
15420 static struct snd_kcontrol_new alc861_base_mixer
[] = {
15421 /* output mixer control */
15422 HDA_CODEC_MUTE("Front Playback Switch", 0x03, 0x0, HDA_OUTPUT
),
15423 HDA_CODEC_MUTE("Surround Playback Switch", 0x06, 0x0, HDA_OUTPUT
),
15424 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x05, 1, 0x0, HDA_OUTPUT
),
15425 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x05, 2, 0x0, HDA_OUTPUT
),
15426 HDA_CODEC_MUTE("Side Playback Switch", 0x04, 0x0, HDA_OUTPUT
),
15428 /*Input mixer control */
15429 /* HDA_CODEC_VOLUME("Input Playback Volume", 0x15, 0x0, HDA_OUTPUT),
15430 HDA_CODEC_MUTE("Input Playback Switch", 0x15, 0x0, HDA_OUTPUT), */
15431 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT
),
15432 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT
),
15433 HDA_CODEC_VOLUME("Line Playback Volume", 0x15, 0x02, HDA_INPUT
),
15434 HDA_CODEC_MUTE("Line Playback Switch", 0x15, 0x02, HDA_INPUT
),
15435 HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT
),
15436 HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT
),
15437 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x10, 0x01, HDA_OUTPUT
),
15438 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x03, HDA_INPUT
),
15443 static struct snd_kcontrol_new alc861_3ST_mixer
[] = {
15444 /* output mixer control */
15445 HDA_CODEC_MUTE("Front Playback Switch", 0x03, 0x0, HDA_OUTPUT
),
15446 HDA_CODEC_MUTE("Surround Playback Switch", 0x06, 0x0, HDA_OUTPUT
),
15447 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x05, 1, 0x0, HDA_OUTPUT
),
15448 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x05, 2, 0x0, HDA_OUTPUT
),
15449 /*HDA_CODEC_MUTE("Side Playback Switch", 0x04, 0x0, HDA_OUTPUT), */
15451 /* Input mixer control */
15452 /* HDA_CODEC_VOLUME("Input Playback Volume", 0x15, 0x0, HDA_OUTPUT),
15453 HDA_CODEC_MUTE("Input Playback Switch", 0x15, 0x0, HDA_OUTPUT), */
15454 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT
),
15455 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT
),
15456 HDA_CODEC_VOLUME("Line Playback Volume", 0x15, 0x02, HDA_INPUT
),
15457 HDA_CODEC_MUTE("Line Playback Switch", 0x15, 0x02, HDA_INPUT
),
15458 HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT
),
15459 HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT
),
15460 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x10, 0x01, HDA_OUTPUT
),
15461 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x03, HDA_INPUT
),
15464 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
15465 .name
= "Channel Mode",
15466 .info
= alc_ch_mode_info
,
15467 .get
= alc_ch_mode_get
,
15468 .put
= alc_ch_mode_put
,
15469 .private_value
= ARRAY_SIZE(alc861_threestack_modes
),
15474 static struct snd_kcontrol_new alc861_toshiba_mixer
[] = {
15475 /* output mixer control */
15476 HDA_CODEC_MUTE("Master Playback Switch", 0x03, 0x0, HDA_OUTPUT
),
15477 HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT
),
15478 HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT
),
15483 static struct snd_kcontrol_new alc861_uniwill_m31_mixer
[] = {
15484 /* output mixer control */
15485 HDA_CODEC_MUTE("Front Playback Switch", 0x03, 0x0, HDA_OUTPUT
),
15486 HDA_CODEC_MUTE("Surround Playback Switch", 0x06, 0x0, HDA_OUTPUT
),
15487 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x05, 1, 0x0, HDA_OUTPUT
),
15488 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x05, 2, 0x0, HDA_OUTPUT
),
15489 /*HDA_CODEC_MUTE("Side Playback Switch", 0x04, 0x0, HDA_OUTPUT), */
15491 /* Input mixer control */
15492 /* HDA_CODEC_VOLUME("Input Playback Volume", 0x15, 0x0, HDA_OUTPUT),
15493 HDA_CODEC_MUTE("Input Playback Switch", 0x15, 0x0, HDA_OUTPUT), */
15494 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT
),
15495 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT
),
15496 HDA_CODEC_VOLUME("Line Playback Volume", 0x15, 0x02, HDA_INPUT
),
15497 HDA_CODEC_MUTE("Line Playback Switch", 0x15, 0x02, HDA_INPUT
),
15498 HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT
),
15499 HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT
),
15500 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x10, 0x01, HDA_OUTPUT
),
15501 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x03, HDA_INPUT
),
15504 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
15505 .name
= "Channel Mode",
15506 .info
= alc_ch_mode_info
,
15507 .get
= alc_ch_mode_get
,
15508 .put
= alc_ch_mode_put
,
15509 .private_value
= ARRAY_SIZE(alc861_uniwill_m31_modes
),
15514 static struct snd_kcontrol_new alc861_asus_mixer
[] = {
15515 /* output mixer control */
15516 HDA_CODEC_MUTE("Front Playback Switch", 0x03, 0x0, HDA_OUTPUT
),
15517 HDA_CODEC_MUTE("Surround Playback Switch", 0x06, 0x0, HDA_OUTPUT
),
15518 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x05, 1, 0x0, HDA_OUTPUT
),
15519 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x05, 2, 0x0, HDA_OUTPUT
),
15520 HDA_CODEC_MUTE("Side Playback Switch", 0x04, 0x0, HDA_OUTPUT
),
15522 /* Input mixer control */
15523 HDA_CODEC_VOLUME("Input Playback Volume", 0x15, 0x0, HDA_OUTPUT
),
15524 HDA_CODEC_MUTE("Input Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
15525 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT
),
15526 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT
),
15527 HDA_CODEC_VOLUME("Line Playback Volume", 0x15, 0x02, HDA_INPUT
),
15528 HDA_CODEC_MUTE("Line Playback Switch", 0x15, 0x02, HDA_INPUT
),
15529 HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT
),
15530 HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT
),
15531 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x10, 0x01, HDA_OUTPUT
),
15532 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x03, HDA_OUTPUT
),
15535 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
15536 .name
= "Channel Mode",
15537 .info
= alc_ch_mode_info
,
15538 .get
= alc_ch_mode_get
,
15539 .put
= alc_ch_mode_put
,
15540 .private_value
= ARRAY_SIZE(alc861_asus_modes
),
15545 /* additional mixer */
15546 static struct snd_kcontrol_new alc861_asus_laptop_mixer
[] = {
15547 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT
),
15548 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT
),
15553 * generic initialization of ADC, input mixers and output mixers
15555 static struct hda_verb alc861_base_init_verbs
[] = {
15557 * Unmute ADC0 and set the default input to mic-in
15559 /* port-A for surround (rear panel) */
15560 { 0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40 },
15561 { 0x0e, AC_VERB_SET_CONNECT_SEL
, 0x00 },
15562 /* port-B for mic-in (rear panel) with vref */
15563 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24 },
15564 /* port-C for line-in (rear panel) */
15565 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20 },
15566 /* port-D for Front */
15567 { 0x0b, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40 },
15568 { 0x0b, AC_VERB_SET_CONNECT_SEL
, 0x00 },
15569 /* port-E for HP out (front panel) */
15570 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0xc0 },
15571 /* route front PCM to HP */
15572 { 0x0f, AC_VERB_SET_CONNECT_SEL
, 0x00 },
15573 /* port-F for mic-in (front panel) with vref */
15574 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24 },
15575 /* port-G for CLFE (rear panel) */
15576 { 0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40 },
15577 { 0x1f, AC_VERB_SET_CONNECT_SEL
, 0x00 },
15578 /* port-H for side (rear panel) */
15579 { 0x20, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40 },
15580 { 0x20, AC_VERB_SET_CONNECT_SEL
, 0x00 },
15582 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20 },
15583 /* route front mic to ADC1*/
15584 {0x08, AC_VERB_SET_CONNECT_SEL
, 0x00},
15585 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15587 /* Unmute DAC0~3 & spdif out*/
15588 {0x03, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
15589 {0x04, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
15590 {0x05, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
15591 {0x06, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
15592 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
15594 /* Unmute Mixer 14 (mic) 1c (Line in)*/
15595 {0x014, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15596 {0x014, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15597 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15598 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15600 /* Unmute Stereo Mixer 15 */
15601 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15602 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15603 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(2)},
15604 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb00c}, /* Output 0~12 step */
15606 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15607 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15608 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15609 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15610 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15611 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15612 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15613 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15614 /* hp used DAC 3 (Front) */
15615 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(3)},
15616 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(2)},
15621 static struct hda_verb alc861_threestack_init_verbs
[] = {
15623 * Unmute ADC0 and set the default input to mic-in
15625 /* port-A for surround (rear panel) */
15626 { 0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x00 },
15627 /* port-B for mic-in (rear panel) with vref */
15628 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24 },
15629 /* port-C for line-in (rear panel) */
15630 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20 },
15631 /* port-D for Front */
15632 { 0x0b, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40 },
15633 { 0x0b, AC_VERB_SET_CONNECT_SEL
, 0x00 },
15634 /* port-E for HP out (front panel) */
15635 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0xc0 },
15636 /* route front PCM to HP */
15637 { 0x0f, AC_VERB_SET_CONNECT_SEL
, 0x00 },
15638 /* port-F for mic-in (front panel) with vref */
15639 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24 },
15640 /* port-G for CLFE (rear panel) */
15641 { 0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x00 },
15642 /* port-H for side (rear panel) */
15643 { 0x20, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x00 },
15645 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20 },
15646 /* route front mic to ADC1*/
15647 {0x08, AC_VERB_SET_CONNECT_SEL
, 0x00},
15648 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15649 /* Unmute DAC0~3 & spdif out*/
15650 {0x03, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
15651 {0x04, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
15652 {0x05, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
15653 {0x06, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
15654 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
15656 /* Unmute Mixer 14 (mic) 1c (Line in)*/
15657 {0x014, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15658 {0x014, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15659 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15660 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15662 /* Unmute Stereo Mixer 15 */
15663 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15664 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15665 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(2)},
15666 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb00c}, /* Output 0~12 step */
15668 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15669 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15670 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15671 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15672 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15673 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15674 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15675 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15676 /* hp used DAC 3 (Front) */
15677 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(3)},
15678 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(2)},
15682 static struct hda_verb alc861_uniwill_m31_init_verbs
[] = {
15684 * Unmute ADC0 and set the default input to mic-in
15686 /* port-A for surround (rear panel) */
15687 { 0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x00 },
15688 /* port-B for mic-in (rear panel) with vref */
15689 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24 },
15690 /* port-C for line-in (rear panel) */
15691 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20 },
15692 /* port-D for Front */
15693 { 0x0b, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40 },
15694 { 0x0b, AC_VERB_SET_CONNECT_SEL
, 0x00 },
15695 /* port-E for HP out (front panel) */
15696 /* this has to be set to VREF80 */
15697 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24 },
15698 /* route front PCM to HP */
15699 { 0x0f, AC_VERB_SET_CONNECT_SEL
, 0x00 },
15700 /* port-F for mic-in (front panel) with vref */
15701 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24 },
15702 /* port-G for CLFE (rear panel) */
15703 { 0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x00 },
15704 /* port-H for side (rear panel) */
15705 { 0x20, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x00 },
15707 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20 },
15708 /* route front mic to ADC1*/
15709 {0x08, AC_VERB_SET_CONNECT_SEL
, 0x00},
15710 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15711 /* Unmute DAC0~3 & spdif out*/
15712 {0x03, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
15713 {0x04, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
15714 {0x05, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
15715 {0x06, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
15716 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
15718 /* Unmute Mixer 14 (mic) 1c (Line in)*/
15719 {0x014, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15720 {0x014, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15721 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15722 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15724 /* Unmute Stereo Mixer 15 */
15725 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15726 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15727 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(2)},
15728 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb00c}, /* Output 0~12 step */
15730 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15731 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15732 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15733 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15734 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15735 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15736 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15737 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15738 /* hp used DAC 3 (Front) */
15739 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(3)},
15740 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(2)},
15744 static struct hda_verb alc861_asus_init_verbs
[] = {
15746 * Unmute ADC0 and set the default input to mic-in
15748 /* port-A for surround (rear panel)
15749 * according to codec#0 this is the HP jack
15751 { 0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0xc0 }, /* was 0x00 */
15752 /* route front PCM to HP */
15753 { 0x0e, AC_VERB_SET_CONNECT_SEL
, 0x01 },
15754 /* port-B for mic-in (rear panel) with vref */
15755 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24 },
15756 /* port-C for line-in (rear panel) */
15757 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20 },
15758 /* port-D for Front */
15759 { 0x0b, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40 },
15760 { 0x0b, AC_VERB_SET_CONNECT_SEL
, 0x00 },
15761 /* port-E for HP out (front panel) */
15762 /* this has to be set to VREF80 */
15763 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24 },
15764 /* route front PCM to HP */
15765 { 0x0f, AC_VERB_SET_CONNECT_SEL
, 0x00 },
15766 /* port-F for mic-in (front panel) with vref */
15767 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24 },
15768 /* port-G for CLFE (rear panel) */
15769 { 0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40 },
15770 /* port-H for side (rear panel) */
15771 { 0x20, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40 },
15773 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20 },
15774 /* route front mic to ADC1*/
15775 {0x08, AC_VERB_SET_CONNECT_SEL
, 0x00},
15776 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15777 /* Unmute DAC0~3 & spdif out*/
15778 {0x03, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
15779 {0x04, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
15780 {0x05, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
15781 {0x06, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
15782 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
15783 /* Unmute Mixer 14 (mic) 1c (Line in)*/
15784 {0x014, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15785 {0x014, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15786 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15787 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15789 /* Unmute Stereo Mixer 15 */
15790 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15791 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15792 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(2)},
15793 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb00c}, /* Output 0~12 step */
15795 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15796 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15797 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15798 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15799 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15800 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15801 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15802 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15803 /* hp used DAC 3 (Front) */
15804 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(3)},
15805 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(2)},
15809 /* additional init verbs for ASUS laptops */
15810 static struct hda_verb alc861_asus_laptop_init_verbs
[] = {
15811 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x45 }, /* HP-out */
15812 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2) }, /* mute line-in */
15817 * generic initialization of ADC, input mixers and output mixers
15819 static struct hda_verb alc861_auto_init_verbs
[] = {
15821 * Unmute ADC0 and set the default input to mic-in
15823 /* {0x08, AC_VERB_SET_CONNECT_SEL, 0x00}, */
15824 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15826 /* Unmute DAC0~3 & spdif out*/
15827 {0x03, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
15828 {0x04, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
15829 {0x05, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
15830 {0x06, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
15831 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
15833 /* Unmute Mixer 14 (mic) 1c (Line in)*/
15834 {0x014, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15835 {0x014, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15836 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15837 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15839 /* Unmute Stereo Mixer 15 */
15840 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15841 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15842 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(2)},
15843 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb00c},
15845 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
15846 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
15847 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
15848 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
15849 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
15850 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
15851 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
15852 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
15854 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
15855 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
15856 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
15857 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
15858 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
15859 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
15860 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
15861 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
15863 {0x08, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* set Mic 1 */
15868 static struct hda_verb alc861_toshiba_init_verbs
[] = {
15869 {0x0f, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
15874 /* toggle speaker-output according to the hp-jack state */
15875 static void alc861_toshiba_automute(struct hda_codec
*codec
)
15877 unsigned int present
= snd_hda_jack_detect(codec
, 0x0f);
15879 snd_hda_codec_amp_stereo(codec
, 0x16, HDA_INPUT
, 0,
15880 HDA_AMP_MUTE
, present
? HDA_AMP_MUTE
: 0);
15881 snd_hda_codec_amp_stereo(codec
, 0x1a, HDA_INPUT
, 3,
15882 HDA_AMP_MUTE
, present
? 0 : HDA_AMP_MUTE
);
15885 static void alc861_toshiba_unsol_event(struct hda_codec
*codec
,
15888 if ((res
>> 26) == ALC880_HP_EVENT
)
15889 alc861_toshiba_automute(codec
);
15892 /* pcm configuration: identical with ALC880 */
15893 #define alc861_pcm_analog_playback alc880_pcm_analog_playback
15894 #define alc861_pcm_analog_capture alc880_pcm_analog_capture
15895 #define alc861_pcm_digital_playback alc880_pcm_digital_playback
15896 #define alc861_pcm_digital_capture alc880_pcm_digital_capture
15899 #define ALC861_DIGOUT_NID 0x07
15901 static struct hda_channel_mode alc861_8ch_modes
[1] = {
15905 static hda_nid_t alc861_dac_nids
[4] = {
15906 /* front, surround, clfe, side */
15907 0x03, 0x06, 0x05, 0x04
15910 static hda_nid_t alc660_dac_nids
[3] = {
15911 /* front, clfe, surround */
15915 static hda_nid_t alc861_adc_nids
[1] = {
15920 static struct hda_input_mux alc861_capture_source
= {
15924 { "Front Mic", 0x3 },
15931 static hda_nid_t
alc861_look_for_dac(struct hda_codec
*codec
, hda_nid_t pin
)
15933 struct alc_spec
*spec
= codec
->spec
;
15934 hda_nid_t mix
, srcs
[5];
15937 if (snd_hda_get_connections(codec
, pin
, &mix
, 1) != 1)
15939 num
= snd_hda_get_connections(codec
, mix
, srcs
, ARRAY_SIZE(srcs
));
15942 for (i
= 0; i
< num
; i
++) {
15944 type
= get_wcaps_type(get_wcaps(codec
, srcs
[i
]));
15945 if (type
!= AC_WID_AUD_OUT
)
15947 for (j
= 0; j
< spec
->multiout
.num_dacs
; j
++)
15948 if (spec
->multiout
.dac_nids
[j
] == srcs
[i
])
15950 if (j
>= spec
->multiout
.num_dacs
)
15956 /* fill in the dac_nids table from the parsed pin configuration */
15957 static int alc861_auto_fill_dac_nids(struct hda_codec
*codec
,
15958 const struct auto_pin_cfg
*cfg
)
15960 struct alc_spec
*spec
= codec
->spec
;
15962 hda_nid_t nid
, dac
;
15964 spec
->multiout
.dac_nids
= spec
->private_dac_nids
;
15965 for (i
= 0; i
< cfg
->line_outs
; i
++) {
15966 nid
= cfg
->line_out_pins
[i
];
15967 dac
= alc861_look_for_dac(codec
, nid
);
15970 spec
->multiout
.dac_nids
[spec
->multiout
.num_dacs
++] = dac
;
15975 static int __alc861_create_out_sw(struct hda_codec
*codec
, const char *pfx
,
15976 hda_nid_t nid
, int idx
, unsigned int chs
)
15978 return __add_pb_sw_ctrl(codec
->spec
, ALC_CTL_WIDGET_MUTE
, pfx
, idx
,
15979 HDA_COMPOSE_AMP_VAL(nid
, chs
, 0, HDA_OUTPUT
));
15982 #define alc861_create_out_sw(codec, pfx, nid, chs) \
15983 __alc861_create_out_sw(codec, pfx, nid, 0, chs)
15985 /* add playback controls from the parsed DAC table */
15986 static int alc861_auto_create_multi_out_ctls(struct hda_codec
*codec
,
15987 const struct auto_pin_cfg
*cfg
)
15989 struct alc_spec
*spec
= codec
->spec
;
15990 static const char * const chname
[4] = {
15991 "Front", "Surround", NULL
/*CLFE*/, "Side"
15993 const char *pfx
= alc_get_line_out_pfx(cfg
, true);
15997 for (i
= 0; i
< cfg
->line_outs
; i
++) {
15998 nid
= spec
->multiout
.dac_nids
[i
];
16001 if (!pfx
&& i
== 2) {
16003 err
= alc861_create_out_sw(codec
, "Center", nid
, 1);
16006 err
= alc861_create_out_sw(codec
, "LFE", nid
, 2);
16010 const char *name
= pfx
;
16016 err
= __alc861_create_out_sw(codec
, name
, nid
, index
, 3);
16024 static int alc861_auto_create_hp_ctls(struct hda_codec
*codec
, hda_nid_t pin
)
16026 struct alc_spec
*spec
= codec
->spec
;
16033 if ((pin
>= 0x0b && pin
<= 0x10) || pin
== 0x1f || pin
== 0x20) {
16034 nid
= alc861_look_for_dac(codec
, pin
);
16036 err
= alc861_create_out_sw(codec
, "Headphone", nid
, 3);
16039 spec
->multiout
.hp_nid
= nid
;
16045 /* create playback/capture controls for input pins */
16046 static int alc861_auto_create_input_ctls(struct hda_codec
*codec
,
16047 const struct auto_pin_cfg
*cfg
)
16049 return alc_auto_create_input_ctls(codec
, cfg
, 0x15, 0x08, 0);
16052 static void alc861_auto_set_output_and_unmute(struct hda_codec
*codec
,
16054 int pin_type
, hda_nid_t dac
)
16056 hda_nid_t mix
, srcs
[5];
16059 snd_hda_codec_write(codec
, nid
, 0, AC_VERB_SET_PIN_WIDGET_CONTROL
,
16061 snd_hda_codec_write(codec
, dac
, 0, AC_VERB_SET_AMP_GAIN_MUTE
,
16063 if (snd_hda_get_connections(codec
, nid
, &mix
, 1) != 1)
16065 num
= snd_hda_get_connections(codec
, mix
, srcs
, ARRAY_SIZE(srcs
));
16068 for (i
= 0; i
< num
; i
++) {
16070 if (srcs
[i
] == dac
|| srcs
[i
] == 0x15)
16071 mute
= AMP_IN_UNMUTE(i
);
16073 mute
= AMP_IN_MUTE(i
);
16074 snd_hda_codec_write(codec
, mix
, 0, AC_VERB_SET_AMP_GAIN_MUTE
,
16079 static void alc861_auto_init_multi_out(struct hda_codec
*codec
)
16081 struct alc_spec
*spec
= codec
->spec
;
16084 for (i
= 0; i
< spec
->autocfg
.line_outs
; i
++) {
16085 hda_nid_t nid
= spec
->autocfg
.line_out_pins
[i
];
16086 int pin_type
= get_pin_type(spec
->autocfg
.line_out_type
);
16088 alc861_auto_set_output_and_unmute(codec
, nid
, pin_type
,
16089 spec
->multiout
.dac_nids
[i
]);
16093 static void alc861_auto_init_hp_out(struct hda_codec
*codec
)
16095 struct alc_spec
*spec
= codec
->spec
;
16097 if (spec
->autocfg
.hp_outs
)
16098 alc861_auto_set_output_and_unmute(codec
,
16099 spec
->autocfg
.hp_pins
[0],
16101 spec
->multiout
.hp_nid
);
16102 if (spec
->autocfg
.speaker_outs
)
16103 alc861_auto_set_output_and_unmute(codec
,
16104 spec
->autocfg
.speaker_pins
[0],
16106 spec
->multiout
.dac_nids
[0]);
16109 static void alc861_auto_init_analog_input(struct hda_codec
*codec
)
16111 struct alc_spec
*spec
= codec
->spec
;
16112 struct auto_pin_cfg
*cfg
= &spec
->autocfg
;
16115 for (i
= 0; i
< cfg
->num_inputs
; i
++) {
16116 hda_nid_t nid
= cfg
->inputs
[i
].pin
;
16117 if (nid
>= 0x0c && nid
<= 0x11)
16118 alc_set_input_pin(codec
, nid
, cfg
->inputs
[i
].type
);
16122 /* parse the BIOS configuration and set up the alc_spec */
16123 /* return 1 if successful, 0 if the proper config is not found,
16124 * or a negative error code
16126 static int alc861_parse_auto_config(struct hda_codec
*codec
)
16128 struct alc_spec
*spec
= codec
->spec
;
16130 static hda_nid_t alc861_ignore
[] = { 0x1d, 0 };
16132 err
= snd_hda_parse_pin_def_config(codec
, &spec
->autocfg
,
16136 if (!spec
->autocfg
.line_outs
)
16137 return 0; /* can't find valid BIOS pin config */
16139 err
= alc861_auto_fill_dac_nids(codec
, &spec
->autocfg
);
16142 err
= alc861_auto_create_multi_out_ctls(codec
, &spec
->autocfg
);
16145 err
= alc861_auto_create_hp_ctls(codec
, spec
->autocfg
.hp_pins
[0]);
16148 err
= alc861_auto_create_input_ctls(codec
, &spec
->autocfg
);
16152 spec
->multiout
.max_channels
= spec
->multiout
.num_dacs
* 2;
16154 alc_auto_parse_digital(codec
);
16156 if (spec
->kctls
.list
)
16157 add_mixer(spec
, spec
->kctls
.list
);
16159 add_verb(spec
, alc861_auto_init_verbs
);
16161 spec
->num_mux_defs
= 1;
16162 spec
->input_mux
= &spec
->private_imux
[0];
16164 spec
->adc_nids
= alc861_adc_nids
;
16165 spec
->num_adc_nids
= ARRAY_SIZE(alc861_adc_nids
);
16166 set_capture_mixer(codec
);
16168 alc_ssid_check(codec
, 0x0e, 0x0f, 0x0b, 0);
16173 /* additional initialization for auto-configuration model */
16174 static void alc861_auto_init(struct hda_codec
*codec
)
16176 struct alc_spec
*spec
= codec
->spec
;
16177 alc861_auto_init_multi_out(codec
);
16178 alc861_auto_init_hp_out(codec
);
16179 alc861_auto_init_analog_input(codec
);
16180 alc_auto_init_digital(codec
);
16181 if (spec
->unsol_event
)
16182 alc_inithook(codec
);
16185 #ifdef CONFIG_SND_HDA_POWER_SAVE
16186 static struct hda_amp_list alc861_loopbacks
[] = {
16187 { 0x15, HDA_INPUT
, 0 },
16188 { 0x15, HDA_INPUT
, 1 },
16189 { 0x15, HDA_INPUT
, 2 },
16190 { 0x15, HDA_INPUT
, 3 },
16197 * configuration and preset
16199 static const char * const alc861_models
[ALC861_MODEL_LAST
] = {
16200 [ALC861_3ST
] = "3stack",
16201 [ALC660_3ST
] = "3stack-660",
16202 [ALC861_3ST_DIG
] = "3stack-dig",
16203 [ALC861_6ST_DIG
] = "6stack-dig",
16204 [ALC861_UNIWILL_M31
] = "uniwill-m31",
16205 [ALC861_TOSHIBA
] = "toshiba",
16206 [ALC861_ASUS
] = "asus",
16207 [ALC861_ASUS_LAPTOP
] = "asus-laptop",
16208 [ALC861_AUTO
] = "auto",
16211 static struct snd_pci_quirk alc861_cfg_tbl
[] = {
16212 SND_PCI_QUIRK(0x1043, 0x1205, "ASUS W7J", ALC861_3ST
),
16213 SND_PCI_QUIRK(0x1043, 0x1335, "ASUS F2/3", ALC861_ASUS_LAPTOP
),
16214 SND_PCI_QUIRK(0x1043, 0x1338, "ASUS F2/3", ALC861_ASUS_LAPTOP
),
16215 SND_PCI_QUIRK(0x1043, 0x1393, "ASUS", ALC861_ASUS
),
16216 SND_PCI_QUIRK(0x1043, 0x13d7, "ASUS A9rp", ALC861_ASUS_LAPTOP
),
16217 SND_PCI_QUIRK(0x1043, 0x81cb, "ASUS P1-AH2", ALC861_3ST_DIG
),
16218 SND_PCI_QUIRK(0x1179, 0xff00, "Toshiba", ALC861_TOSHIBA
),
16219 /* FIXME: the entry below breaks Toshiba A100 (model=auto works!)
16220 * Any other models that need this preset?
16222 /* SND_PCI_QUIRK(0x1179, 0xff10, "Toshiba", ALC861_TOSHIBA), */
16223 SND_PCI_QUIRK(0x1462, 0x7254, "HP dx2200 (MSI MS-7254)", ALC861_3ST
),
16224 SND_PCI_QUIRK(0x1462, 0x7297, "HP dx2250 (MSI MS-7297)", ALC861_3ST
),
16225 SND_PCI_QUIRK(0x1584, 0x2b01, "Uniwill X40AIx", ALC861_UNIWILL_M31
),
16226 SND_PCI_QUIRK(0x1584, 0x9072, "Uniwill m31", ALC861_UNIWILL_M31
),
16227 SND_PCI_QUIRK(0x1584, 0x9075, "Airis Praxis N1212", ALC861_ASUS_LAPTOP
),
16228 /* FIXME: the below seems conflict */
16229 /* SND_PCI_QUIRK(0x1584, 0x9075, "Uniwill", ALC861_UNIWILL_M31), */
16230 SND_PCI_QUIRK(0x1849, 0x0660, "Asrock 939SLI32", ALC660_3ST
),
16231 SND_PCI_QUIRK(0x8086, 0xd600, "Intel", ALC861_3ST
),
16235 static struct alc_config_preset alc861_presets
[] = {
16237 .mixers
= { alc861_3ST_mixer
},
16238 .init_verbs
= { alc861_threestack_init_verbs
},
16239 .num_dacs
= ARRAY_SIZE(alc861_dac_nids
),
16240 .dac_nids
= alc861_dac_nids
,
16241 .num_channel_mode
= ARRAY_SIZE(alc861_threestack_modes
),
16242 .channel_mode
= alc861_threestack_modes
,
16244 .num_adc_nids
= ARRAY_SIZE(alc861_adc_nids
),
16245 .adc_nids
= alc861_adc_nids
,
16246 .input_mux
= &alc861_capture_source
,
16248 [ALC861_3ST_DIG
] = {
16249 .mixers
= { alc861_base_mixer
},
16250 .init_verbs
= { alc861_threestack_init_verbs
},
16251 .num_dacs
= ARRAY_SIZE(alc861_dac_nids
),
16252 .dac_nids
= alc861_dac_nids
,
16253 .dig_out_nid
= ALC861_DIGOUT_NID
,
16254 .num_channel_mode
= ARRAY_SIZE(alc861_threestack_modes
),
16255 .channel_mode
= alc861_threestack_modes
,
16257 .num_adc_nids
= ARRAY_SIZE(alc861_adc_nids
),
16258 .adc_nids
= alc861_adc_nids
,
16259 .input_mux
= &alc861_capture_source
,
16261 [ALC861_6ST_DIG
] = {
16262 .mixers
= { alc861_base_mixer
},
16263 .init_verbs
= { alc861_base_init_verbs
},
16264 .num_dacs
= ARRAY_SIZE(alc861_dac_nids
),
16265 .dac_nids
= alc861_dac_nids
,
16266 .dig_out_nid
= ALC861_DIGOUT_NID
,
16267 .num_channel_mode
= ARRAY_SIZE(alc861_8ch_modes
),
16268 .channel_mode
= alc861_8ch_modes
,
16269 .num_adc_nids
= ARRAY_SIZE(alc861_adc_nids
),
16270 .adc_nids
= alc861_adc_nids
,
16271 .input_mux
= &alc861_capture_source
,
16274 .mixers
= { alc861_3ST_mixer
},
16275 .init_verbs
= { alc861_threestack_init_verbs
},
16276 .num_dacs
= ARRAY_SIZE(alc660_dac_nids
),
16277 .dac_nids
= alc660_dac_nids
,
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_UNIWILL_M31
] = {
16286 .mixers
= { alc861_uniwill_m31_mixer
},
16287 .init_verbs
= { alc861_uniwill_m31_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_uniwill_m31_modes
),
16292 .channel_mode
= alc861_uniwill_m31_modes
,
16294 .num_adc_nids
= ARRAY_SIZE(alc861_adc_nids
),
16295 .adc_nids
= alc861_adc_nids
,
16296 .input_mux
= &alc861_capture_source
,
16298 [ALC861_TOSHIBA
] = {
16299 .mixers
= { alc861_toshiba_mixer
},
16300 .init_verbs
= { alc861_base_init_verbs
,
16301 alc861_toshiba_init_verbs
},
16302 .num_dacs
= ARRAY_SIZE(alc861_dac_nids
),
16303 .dac_nids
= alc861_dac_nids
,
16304 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_2ch_modes
),
16305 .channel_mode
= alc883_3ST_2ch_modes
,
16306 .num_adc_nids
= ARRAY_SIZE(alc861_adc_nids
),
16307 .adc_nids
= alc861_adc_nids
,
16308 .input_mux
= &alc861_capture_source
,
16309 .unsol_event
= alc861_toshiba_unsol_event
,
16310 .init_hook
= alc861_toshiba_automute
,
16313 .mixers
= { alc861_asus_mixer
},
16314 .init_verbs
= { alc861_asus_init_verbs
},
16315 .num_dacs
= ARRAY_SIZE(alc861_dac_nids
),
16316 .dac_nids
= alc861_dac_nids
,
16317 .dig_out_nid
= ALC861_DIGOUT_NID
,
16318 .num_channel_mode
= ARRAY_SIZE(alc861_asus_modes
),
16319 .channel_mode
= alc861_asus_modes
,
16322 .num_adc_nids
= ARRAY_SIZE(alc861_adc_nids
),
16323 .adc_nids
= alc861_adc_nids
,
16324 .input_mux
= &alc861_capture_source
,
16326 [ALC861_ASUS_LAPTOP
] = {
16327 .mixers
= { alc861_toshiba_mixer
, alc861_asus_laptop_mixer
},
16328 .init_verbs
= { alc861_asus_init_verbs
,
16329 alc861_asus_laptop_init_verbs
},
16330 .num_dacs
= ARRAY_SIZE(alc861_dac_nids
),
16331 .dac_nids
= alc861_dac_nids
,
16332 .dig_out_nid
= ALC861_DIGOUT_NID
,
16333 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_2ch_modes
),
16334 .channel_mode
= alc883_3ST_2ch_modes
,
16336 .num_adc_nids
= ARRAY_SIZE(alc861_adc_nids
),
16337 .adc_nids
= alc861_adc_nids
,
16338 .input_mux
= &alc861_capture_source
,
16342 /* Pin config fixes */
16344 PINFIX_FSC_AMILO_PI1505
,
16347 static const struct alc_fixup alc861_fixups
[] = {
16348 [PINFIX_FSC_AMILO_PI1505
] = {
16349 .type
= ALC_FIXUP_PINS
,
16350 .v
.pins
= (const struct alc_pincfg
[]) {
16351 { 0x0b, 0x0221101f }, /* HP */
16352 { 0x0f, 0x90170310 }, /* speaker */
16358 static struct snd_pci_quirk alc861_fixup_tbl
[] = {
16359 SND_PCI_QUIRK(0x1734, 0x10c7, "FSC Amilo Pi1505", PINFIX_FSC_AMILO_PI1505
),
16363 static int patch_alc861(struct hda_codec
*codec
)
16365 struct alc_spec
*spec
;
16369 spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
16373 codec
->spec
= spec
;
16375 board_config
= snd_hda_check_board_config(codec
, ALC861_MODEL_LAST
,
16379 if (board_config
< 0) {
16380 printk(KERN_INFO
"hda_codec: %s: BIOS auto-probing.\n",
16382 board_config
= ALC861_AUTO
;
16385 if (board_config
== ALC861_AUTO
) {
16386 alc_pick_fixup(codec
, NULL
, alc861_fixup_tbl
, alc861_fixups
);
16387 alc_apply_fixup(codec
, ALC_FIXUP_ACT_PRE_PROBE
);
16390 if (board_config
== ALC861_AUTO
) {
16391 /* automatic parse from the BIOS config */
16392 err
= alc861_parse_auto_config(codec
);
16398 "hda_codec: Cannot set up configuration "
16399 "from BIOS. Using base mode...\n");
16400 board_config
= ALC861_3ST_DIG
;
16404 err
= snd_hda_attach_beep_device(codec
, 0x23);
16410 if (board_config
!= ALC861_AUTO
)
16411 setup_preset(codec
, &alc861_presets
[board_config
]);
16413 spec
->stream_analog_playback
= &alc861_pcm_analog_playback
;
16414 spec
->stream_analog_capture
= &alc861_pcm_analog_capture
;
16416 spec
->stream_digital_playback
= &alc861_pcm_digital_playback
;
16417 spec
->stream_digital_capture
= &alc861_pcm_digital_capture
;
16419 if (!spec
->cap_mixer
)
16420 set_capture_mixer(codec
);
16421 set_beep_amp(spec
, 0x23, 0, HDA_OUTPUT
);
16423 spec
->vmaster_nid
= 0x03;
16425 alc_apply_fixup(codec
, ALC_FIXUP_ACT_PROBE
);
16427 codec
->patch_ops
= alc_patch_ops
;
16428 if (board_config
== ALC861_AUTO
) {
16429 spec
->init_hook
= alc861_auto_init
;
16430 #ifdef CONFIG_SND_HDA_POWER_SAVE
16431 spec
->power_hook
= alc_power_eapd
;
16434 #ifdef CONFIG_SND_HDA_POWER_SAVE
16435 if (!spec
->loopback
.amplist
)
16436 spec
->loopback
.amplist
= alc861_loopbacks
;
16443 * ALC861-VD support
16447 * In addition, an independent DAC
16449 #define ALC861VD_DIGOUT_NID 0x06
16451 static hda_nid_t alc861vd_dac_nids
[4] = {
16452 /* front, surr, clfe, side surr */
16453 0x02, 0x03, 0x04, 0x05
16456 /* dac_nids for ALC660vd are in a different order - according to
16457 * Realtek's driver.
16458 * This should probably result in a different mixer for 6stack models
16459 * of ALC660vd codecs, but for now there is only 3stack mixer
16460 * - and it is the same as in 861vd.
16461 * adc_nids in ALC660vd are (is) the same as in 861vd
16463 static hda_nid_t alc660vd_dac_nids
[3] = {
16464 /* front, rear, clfe, rear_surr */
16468 static hda_nid_t alc861vd_adc_nids
[1] = {
16473 static hda_nid_t alc861vd_capsrc_nids
[1] = { 0x22 };
16476 /* FIXME: should be a matrix-type input source selection */
16477 static struct hda_input_mux alc861vd_capture_source
= {
16481 { "Front Mic", 0x1 },
16487 static struct hda_input_mux alc861vd_dallas_capture_source
= {
16491 { "Internal Mic", 0x1 },
16495 static struct hda_input_mux alc861vd_hp_capture_source
= {
16498 { "Front Mic", 0x0 },
16499 { "ATAPI Mic", 0x1 },
16506 static struct hda_channel_mode alc861vd_3stack_2ch_modes
[1] = {
16513 static struct hda_verb alc861vd_6stack_ch6_init
[] = {
16514 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x00 },
16515 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
16516 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
16517 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
16524 static struct hda_verb alc861vd_6stack_ch8_init
[] = {
16525 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
16526 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
16527 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
16528 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
16532 static struct hda_channel_mode alc861vd_6stack_modes
[2] = {
16533 { 6, alc861vd_6stack_ch6_init
},
16534 { 8, alc861vd_6stack_ch8_init
},
16537 static struct snd_kcontrol_new alc861vd_chmode_mixer
[] = {
16539 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
16540 .name
= "Channel Mode",
16541 .info
= alc_ch_mode_info
,
16542 .get
= alc_ch_mode_get
,
16543 .put
= alc_ch_mode_put
,
16548 /* Pin assignment: Front=0x14, Rear=0x15, CLFE=0x16, Side=0x17
16549 * Mic=0x18, Front Mic=0x19, Line-In=0x1a, HP=0x1b
16551 static struct snd_kcontrol_new alc861vd_6st_mixer
[] = {
16552 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
16553 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
16555 HDA_CODEC_VOLUME("Surround Playback Volume", 0x03, 0x0, HDA_OUTPUT
),
16556 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT
),
16558 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x04, 1, 0x0,
16560 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x04, 2, 0x0,
16562 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT
),
16563 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT
),
16565 HDA_CODEC_VOLUME("Side Playback Volume", 0x05, 0x0, HDA_OUTPUT
),
16566 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT
),
16568 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
16570 HDA_CODEC_VOLUME("Mic Boost Volume", 0x18, 0, HDA_INPUT
),
16571 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
16572 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
16574 HDA_CODEC_VOLUME("Front Mic Boost Volume", 0x19, 0, HDA_INPUT
),
16575 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
16576 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
16578 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
16579 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
16581 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
16582 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
16587 static struct snd_kcontrol_new alc861vd_3st_mixer
[] = {
16588 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
16589 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
16591 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
16593 HDA_CODEC_VOLUME("Mic Boost Volume", 0x18, 0, HDA_INPUT
),
16594 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
16595 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
16597 HDA_CODEC_VOLUME("Front Mic Boost Volume", 0x19, 0, HDA_INPUT
),
16598 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
16599 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
16601 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
16602 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
16604 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
16605 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
16610 static struct snd_kcontrol_new alc861vd_lenovo_mixer
[] = {
16611 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
16612 /*HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),*/
16613 HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
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("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
16626 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
16631 /* Pin assignment: Speaker=0x14, HP = 0x15,
16632 * Mic=0x18, Internal Mic = 0x19, CD = 0x1c, PC Beep = 0x1d
16634 static struct snd_kcontrol_new alc861vd_dallas_mixer
[] = {
16635 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
16636 HDA_BIND_MUTE("Speaker Playback Switch", 0x0c, 2, HDA_INPUT
),
16637 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x03, 0x0, HDA_OUTPUT
),
16638 HDA_BIND_MUTE("Headphone Playback Switch", 0x0d, 2, HDA_INPUT
),
16639 HDA_CODEC_VOLUME("Mic Boost Volume", 0x18, 0, HDA_INPUT
),
16640 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
16641 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
16642 HDA_CODEC_VOLUME("Internal Mic Boost Volume", 0x19, 0, HDA_INPUT
),
16643 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
16644 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
16648 /* Pin assignment: Speaker=0x14, Line-out = 0x15,
16649 * Front Mic=0x18, ATAPI Mic = 0x19,
16651 static struct snd_kcontrol_new alc861vd_hp_mixer
[] = {
16652 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
16653 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
16654 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x03, 0x0, HDA_OUTPUT
),
16655 HDA_BIND_MUTE("Headphone Playback Switch", 0x0d, 2, HDA_INPUT
),
16656 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
16657 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
16658 HDA_CODEC_VOLUME("ATAPI Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
16659 HDA_CODEC_MUTE("ATAPI Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
16665 * generic initialization of ADC, input mixers and output mixers
16667 static struct hda_verb alc861vd_volume_init_verbs
[] = {
16669 * Unmute ADC0 and set the default input to mic-in
16671 {0x09, AC_VERB_SET_CONNECT_SEL
, 0x00},
16672 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
16674 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of
16675 * the analog-loopback mixer widget
16677 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
16678 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
16679 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
16680 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
16681 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
16682 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
16684 /* Capture mixer: unmute Mic, F-Mic, Line, CD inputs */
16685 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
16686 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
16687 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(2)},
16688 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(4)},
16691 * Set up output mixers (0x02 - 0x05)
16693 /* set vol=0 to output mixers */
16694 {0x02, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
16695 {0x03, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
16696 {0x04, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
16697 {0x05, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
16699 /* set up input amps for analog loopback */
16700 /* Amp Indices: DAC = 0, mixer = 1 */
16701 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
16702 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
16703 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
16704 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
16705 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
16706 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
16707 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
16708 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
16714 * 3-stack pin configuration:
16715 * front = 0x14, mic/clfe = 0x18, HP = 0x19, line/surr = 0x1a, f-mic = 0x1b
16717 static struct hda_verb alc861vd_3stack_init_verbs
[] = {
16719 * Set pin mode and muting
16721 /* set front pin widgets 0x14 for output */
16722 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
16723 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
16724 {0x14, AC_VERB_SET_CONNECT_SEL
, 0x00},
16726 /* Mic (rear) pin: input vref at 80% */
16727 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
16728 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
16729 /* Front Mic pin: input vref at 80% */
16730 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
16731 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
16732 /* Line In pin: input */
16733 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
16734 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
16735 /* Line-2 In: Headphone output (output 0 - 0x0c) */
16736 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
16737 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
16738 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0x00},
16739 /* CD pin widget for input */
16740 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
16746 * 6-stack pin configuration:
16748 static struct hda_verb alc861vd_6stack_init_verbs
[] = {
16750 * Set pin mode and muting
16752 /* set front pin widgets 0x14 for output */
16753 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
16754 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
16755 {0x14, AC_VERB_SET_CONNECT_SEL
, 0x00},
16757 /* Rear Pin: output 1 (0x0d) */
16758 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
16759 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
16760 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x01},
16761 /* CLFE Pin: output 2 (0x0e) */
16762 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
16763 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
16764 {0x16, AC_VERB_SET_CONNECT_SEL
, 0x02},
16765 /* Side Pin: output 3 (0x0f) */
16766 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
16767 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
16768 {0x17, AC_VERB_SET_CONNECT_SEL
, 0x03},
16770 /* Mic (rear) pin: input vref at 80% */
16771 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
16772 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
16773 /* Front Mic pin: input vref at 80% */
16774 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
16775 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
16776 /* Line In pin: input */
16777 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
16778 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
16779 /* Line-2 In: Headphone output (output 0 - 0x0c) */
16780 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
16781 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
16782 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0x00},
16783 /* CD pin widget for input */
16784 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
16789 static struct hda_verb alc861vd_eapd_verbs
[] = {
16790 {0x14, AC_VERB_SET_EAPD_BTLENABLE
, 2},
16794 static struct hda_verb alc660vd_eapd_verbs
[] = {
16795 {0x14, AC_VERB_SET_EAPD_BTLENABLE
, 2},
16796 {0x15, AC_VERB_SET_EAPD_BTLENABLE
, 2},
16800 static struct hda_verb alc861vd_lenovo_unsol_verbs
[] = {
16801 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
16802 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
16803 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(5)},
16804 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
16805 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
16809 static void alc861vd_lenovo_setup(struct hda_codec
*codec
)
16811 struct alc_spec
*spec
= codec
->spec
;
16812 spec
->autocfg
.hp_pins
[0] = 0x1b;
16813 spec
->autocfg
.speaker_pins
[0] = 0x14;
16816 static void alc861vd_lenovo_init_hook(struct hda_codec
*codec
)
16818 alc_automute_amp(codec
);
16819 alc88x_simple_mic_automute(codec
);
16822 static void alc861vd_lenovo_unsol_event(struct hda_codec
*codec
,
16825 switch (res
>> 26) {
16826 case ALC880_MIC_EVENT
:
16827 alc88x_simple_mic_automute(codec
);
16830 alc_automute_amp_unsol_event(codec
, res
);
16835 static struct hda_verb alc861vd_dallas_verbs
[] = {
16836 {0x02, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
16837 {0x03, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
16838 {0x04, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
16839 {0x05, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
16841 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
16842 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
16843 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
16844 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
16845 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
16846 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
16847 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
16848 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
16850 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
16851 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
16852 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
16853 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
16854 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
16855 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
16856 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
16857 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
16859 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF50
},
16860 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
16861 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF50
},
16862 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
16863 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
16864 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
16865 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
16866 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
16868 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
16869 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
16870 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
16871 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
16873 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
16874 {0x09, AC_VERB_SET_CONNECT_SEL
, 0x00},
16875 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
16880 /* toggle speaker-output according to the hp-jack state */
16881 static void alc861vd_dallas_setup(struct hda_codec
*codec
)
16883 struct alc_spec
*spec
= codec
->spec
;
16885 spec
->autocfg
.hp_pins
[0] = 0x15;
16886 spec
->autocfg
.speaker_pins
[0] = 0x14;
16889 #ifdef CONFIG_SND_HDA_POWER_SAVE
16890 #define alc861vd_loopbacks alc880_loopbacks
16893 /* pcm configuration: identical with ALC880 */
16894 #define alc861vd_pcm_analog_playback alc880_pcm_analog_playback
16895 #define alc861vd_pcm_analog_capture alc880_pcm_analog_capture
16896 #define alc861vd_pcm_digital_playback alc880_pcm_digital_playback
16897 #define alc861vd_pcm_digital_capture alc880_pcm_digital_capture
16900 * configuration and preset
16902 static const char * const alc861vd_models
[ALC861VD_MODEL_LAST
] = {
16903 [ALC660VD_3ST
] = "3stack-660",
16904 [ALC660VD_3ST_DIG
] = "3stack-660-digout",
16905 [ALC660VD_ASUS_V1S
] = "asus-v1s",
16906 [ALC861VD_3ST
] = "3stack",
16907 [ALC861VD_3ST_DIG
] = "3stack-digout",
16908 [ALC861VD_6ST_DIG
] = "6stack-digout",
16909 [ALC861VD_LENOVO
] = "lenovo",
16910 [ALC861VD_DALLAS
] = "dallas",
16911 [ALC861VD_HP
] = "hp",
16912 [ALC861VD_AUTO
] = "auto",
16915 static struct snd_pci_quirk alc861vd_cfg_tbl
[] = {
16916 SND_PCI_QUIRK(0x1019, 0xa88d, "Realtek ALC660 demo", ALC660VD_3ST
),
16917 SND_PCI_QUIRK(0x103c, 0x30bf, "HP TX1000", ALC861VD_HP
),
16918 SND_PCI_QUIRK(0x1043, 0x12e2, "Asus z35m", ALC660VD_3ST
),
16919 /*SND_PCI_QUIRK(0x1043, 0x1339, "Asus G1", ALC660VD_3ST),*/ /* auto */
16920 SND_PCI_QUIRK(0x1043, 0x1633, "Asus V1Sn", ALC660VD_ASUS_V1S
),
16921 SND_PCI_QUIRK(0x1043, 0x81e7, "ASUS", ALC660VD_3ST_DIG
),
16922 SND_PCI_QUIRK(0x10de, 0x03f0, "Realtek ALC660 demo", ALC660VD_3ST
),
16923 SND_PCI_QUIRK(0x1179, 0xff00, "Toshiba A135", ALC861VD_LENOVO
),
16924 /*SND_PCI_QUIRK(0x1179, 0xff00, "DALLAS", ALC861VD_DALLAS),*/ /*lenovo*/
16925 SND_PCI_QUIRK(0x1179, 0xff01, "Toshiba A135", ALC861VD_LENOVO
),
16926 SND_PCI_QUIRK(0x1179, 0xff03, "Toshiba P205", ALC861VD_LENOVO
),
16927 SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba L30-149", ALC861VD_DALLAS
),
16928 SND_PCI_QUIRK(0x1565, 0x820d, "Biostar NF61S SE", ALC861VD_6ST_DIG
),
16929 SND_PCI_QUIRK_VENDOR(0x17aa, "Lenovo", ALC861VD_LENOVO
),
16930 SND_PCI_QUIRK(0x1849, 0x0862, "ASRock K8NF6G-VSTA", ALC861VD_6ST_DIG
),
16934 static struct alc_config_preset alc861vd_presets
[] = {
16936 .mixers
= { alc861vd_3st_mixer
},
16937 .init_verbs
= { alc861vd_volume_init_verbs
,
16938 alc861vd_3stack_init_verbs
},
16939 .num_dacs
= ARRAY_SIZE(alc660vd_dac_nids
),
16940 .dac_nids
= alc660vd_dac_nids
,
16941 .num_channel_mode
= ARRAY_SIZE(alc861vd_3stack_2ch_modes
),
16942 .channel_mode
= alc861vd_3stack_2ch_modes
,
16943 .input_mux
= &alc861vd_capture_source
,
16945 [ALC660VD_3ST_DIG
] = {
16946 .mixers
= { alc861vd_3st_mixer
},
16947 .init_verbs
= { alc861vd_volume_init_verbs
,
16948 alc861vd_3stack_init_verbs
},
16949 .num_dacs
= ARRAY_SIZE(alc660vd_dac_nids
),
16950 .dac_nids
= alc660vd_dac_nids
,
16951 .dig_out_nid
= ALC861VD_DIGOUT_NID
,
16952 .num_channel_mode
= ARRAY_SIZE(alc861vd_3stack_2ch_modes
),
16953 .channel_mode
= alc861vd_3stack_2ch_modes
,
16954 .input_mux
= &alc861vd_capture_source
,
16957 .mixers
= { alc861vd_3st_mixer
},
16958 .init_verbs
= { alc861vd_volume_init_verbs
,
16959 alc861vd_3stack_init_verbs
},
16960 .num_dacs
= ARRAY_SIZE(alc861vd_dac_nids
),
16961 .dac_nids
= alc861vd_dac_nids
,
16962 .num_channel_mode
= ARRAY_SIZE(alc861vd_3stack_2ch_modes
),
16963 .channel_mode
= alc861vd_3stack_2ch_modes
,
16964 .input_mux
= &alc861vd_capture_source
,
16966 [ALC861VD_3ST_DIG
] = {
16967 .mixers
= { alc861vd_3st_mixer
},
16968 .init_verbs
= { alc861vd_volume_init_verbs
,
16969 alc861vd_3stack_init_verbs
},
16970 .num_dacs
= ARRAY_SIZE(alc861vd_dac_nids
),
16971 .dac_nids
= alc861vd_dac_nids
,
16972 .dig_out_nid
= ALC861VD_DIGOUT_NID
,
16973 .num_channel_mode
= ARRAY_SIZE(alc861vd_3stack_2ch_modes
),
16974 .channel_mode
= alc861vd_3stack_2ch_modes
,
16975 .input_mux
= &alc861vd_capture_source
,
16977 [ALC861VD_6ST_DIG
] = {
16978 .mixers
= { alc861vd_6st_mixer
, alc861vd_chmode_mixer
},
16979 .init_verbs
= { alc861vd_volume_init_verbs
,
16980 alc861vd_6stack_init_verbs
},
16981 .num_dacs
= ARRAY_SIZE(alc861vd_dac_nids
),
16982 .dac_nids
= alc861vd_dac_nids
,
16983 .dig_out_nid
= ALC861VD_DIGOUT_NID
,
16984 .num_channel_mode
= ARRAY_SIZE(alc861vd_6stack_modes
),
16985 .channel_mode
= alc861vd_6stack_modes
,
16986 .input_mux
= &alc861vd_capture_source
,
16988 [ALC861VD_LENOVO
] = {
16989 .mixers
= { alc861vd_lenovo_mixer
},
16990 .init_verbs
= { alc861vd_volume_init_verbs
,
16991 alc861vd_3stack_init_verbs
,
16992 alc861vd_eapd_verbs
,
16993 alc861vd_lenovo_unsol_verbs
},
16994 .num_dacs
= ARRAY_SIZE(alc660vd_dac_nids
),
16995 .dac_nids
= alc660vd_dac_nids
,
16996 .num_channel_mode
= ARRAY_SIZE(alc861vd_3stack_2ch_modes
),
16997 .channel_mode
= alc861vd_3stack_2ch_modes
,
16998 .input_mux
= &alc861vd_capture_source
,
16999 .unsol_event
= alc861vd_lenovo_unsol_event
,
17000 .setup
= alc861vd_lenovo_setup
,
17001 .init_hook
= alc861vd_lenovo_init_hook
,
17003 [ALC861VD_DALLAS
] = {
17004 .mixers
= { alc861vd_dallas_mixer
},
17005 .init_verbs
= { alc861vd_dallas_verbs
},
17006 .num_dacs
= ARRAY_SIZE(alc861vd_dac_nids
),
17007 .dac_nids
= alc861vd_dac_nids
,
17008 .num_channel_mode
= ARRAY_SIZE(alc861vd_3stack_2ch_modes
),
17009 .channel_mode
= alc861vd_3stack_2ch_modes
,
17010 .input_mux
= &alc861vd_dallas_capture_source
,
17011 .unsol_event
= alc_automute_amp_unsol_event
,
17012 .setup
= alc861vd_dallas_setup
,
17013 .init_hook
= alc_automute_amp
,
17016 .mixers
= { alc861vd_hp_mixer
},
17017 .init_verbs
= { alc861vd_dallas_verbs
, alc861vd_eapd_verbs
},
17018 .num_dacs
= ARRAY_SIZE(alc861vd_dac_nids
),
17019 .dac_nids
= alc861vd_dac_nids
,
17020 .dig_out_nid
= ALC861VD_DIGOUT_NID
,
17021 .num_channel_mode
= ARRAY_SIZE(alc861vd_3stack_2ch_modes
),
17022 .channel_mode
= alc861vd_3stack_2ch_modes
,
17023 .input_mux
= &alc861vd_hp_capture_source
,
17024 .unsol_event
= alc_automute_amp_unsol_event
,
17025 .setup
= alc861vd_dallas_setup
,
17026 .init_hook
= alc_automute_amp
,
17028 [ALC660VD_ASUS_V1S
] = {
17029 .mixers
= { alc861vd_lenovo_mixer
},
17030 .init_verbs
= { alc861vd_volume_init_verbs
,
17031 alc861vd_3stack_init_verbs
,
17032 alc861vd_eapd_verbs
,
17033 alc861vd_lenovo_unsol_verbs
},
17034 .num_dacs
= ARRAY_SIZE(alc660vd_dac_nids
),
17035 .dac_nids
= alc660vd_dac_nids
,
17036 .dig_out_nid
= ALC861VD_DIGOUT_NID
,
17037 .num_channel_mode
= ARRAY_SIZE(alc861vd_3stack_2ch_modes
),
17038 .channel_mode
= alc861vd_3stack_2ch_modes
,
17039 .input_mux
= &alc861vd_capture_source
,
17040 .unsol_event
= alc861vd_lenovo_unsol_event
,
17041 .setup
= alc861vd_lenovo_setup
,
17042 .init_hook
= alc861vd_lenovo_init_hook
,
17047 * BIOS auto configuration
17049 static int alc861vd_auto_create_input_ctls(struct hda_codec
*codec
,
17050 const struct auto_pin_cfg
*cfg
)
17052 return alc_auto_create_input_ctls(codec
, cfg
, 0x0b, 0x22, 0);
17056 static void alc861vd_auto_set_output_and_unmute(struct hda_codec
*codec
,
17057 hda_nid_t nid
, int pin_type
, int dac_idx
)
17059 alc_set_pin_output(codec
, nid
, pin_type
);
17062 static void alc861vd_auto_init_multi_out(struct hda_codec
*codec
)
17064 struct alc_spec
*spec
= codec
->spec
;
17067 for (i
= 0; i
<= HDA_SIDE
; i
++) {
17068 hda_nid_t nid
= spec
->autocfg
.line_out_pins
[i
];
17069 int pin_type
= get_pin_type(spec
->autocfg
.line_out_type
);
17071 alc861vd_auto_set_output_and_unmute(codec
, nid
,
17077 static void alc861vd_auto_init_hp_out(struct hda_codec
*codec
)
17079 struct alc_spec
*spec
= codec
->spec
;
17082 pin
= spec
->autocfg
.hp_pins
[0];
17083 if (pin
) /* connect to front and use dac 0 */
17084 alc861vd_auto_set_output_and_unmute(codec
, pin
, PIN_HP
, 0);
17085 pin
= spec
->autocfg
.speaker_pins
[0];
17087 alc861vd_auto_set_output_and_unmute(codec
, pin
, PIN_OUT
, 0);
17090 #define ALC861VD_PIN_CD_NID ALC880_PIN_CD_NID
17092 static void alc861vd_auto_init_analog_input(struct hda_codec
*codec
)
17094 struct alc_spec
*spec
= codec
->spec
;
17095 struct auto_pin_cfg
*cfg
= &spec
->autocfg
;
17098 for (i
= 0; i
< cfg
->num_inputs
; i
++) {
17099 hda_nid_t nid
= cfg
->inputs
[i
].pin
;
17100 if (alc_is_input_pin(codec
, nid
)) {
17101 alc_set_input_pin(codec
, nid
, cfg
->inputs
[i
].type
);
17102 if (nid
!= ALC861VD_PIN_CD_NID
&&
17103 (get_wcaps(codec
, nid
) & AC_WCAP_OUT_AMP
))
17104 snd_hda_codec_write(codec
, nid
, 0,
17105 AC_VERB_SET_AMP_GAIN_MUTE
,
17111 #define alc861vd_auto_init_input_src alc882_auto_init_input_src
17113 #define alc861vd_idx_to_mixer_vol(nid) ((nid) + 0x02)
17114 #define alc861vd_idx_to_mixer_switch(nid) ((nid) + 0x0c)
17116 /* add playback controls from the parsed DAC table */
17117 /* Based on ALC880 version. But ALC861VD has separate,
17118 * different NIDs for mute/unmute switch and volume control */
17119 static int alc861vd_auto_create_multi_out_ctls(struct alc_spec
*spec
,
17120 const struct auto_pin_cfg
*cfg
)
17122 static const char * const chname
[4] = {
17123 "Front", "Surround", "CLFE", "Side"
17125 const char *pfx
= alc_get_line_out_pfx(cfg
, true);
17126 hda_nid_t nid_v
, nid_s
;
17129 for (i
= 0; i
< cfg
->line_outs
; i
++) {
17130 if (!spec
->multiout
.dac_nids
[i
])
17132 nid_v
= alc861vd_idx_to_mixer_vol(
17134 spec
->multiout
.dac_nids
[i
]));
17135 nid_s
= alc861vd_idx_to_mixer_switch(
17137 spec
->multiout
.dac_nids
[i
]));
17139 if (!pfx
&& i
== 2) {
17141 err
= add_pb_vol_ctrl(spec
, ALC_CTL_WIDGET_VOL
,
17143 HDA_COMPOSE_AMP_VAL(nid_v
, 1, 0,
17147 err
= add_pb_vol_ctrl(spec
, ALC_CTL_WIDGET_VOL
,
17149 HDA_COMPOSE_AMP_VAL(nid_v
, 2, 0,
17153 err
= add_pb_sw_ctrl(spec
, ALC_CTL_BIND_MUTE
,
17155 HDA_COMPOSE_AMP_VAL(nid_s
, 1, 2,
17159 err
= add_pb_sw_ctrl(spec
, ALC_CTL_BIND_MUTE
,
17161 HDA_COMPOSE_AMP_VAL(nid_s
, 2, 2,
17166 const char *name
= pfx
;
17172 err
= __add_pb_vol_ctrl(spec
, ALC_CTL_WIDGET_VOL
,
17174 HDA_COMPOSE_AMP_VAL(nid_v
, 3, 0,
17178 err
= __add_pb_sw_ctrl(spec
, ALC_CTL_BIND_MUTE
,
17180 HDA_COMPOSE_AMP_VAL(nid_s
, 3, 2,
17189 /* add playback controls for speaker and HP outputs */
17190 /* Based on ALC880 version. But ALC861VD has separate,
17191 * different NIDs for mute/unmute switch and volume control */
17192 static int alc861vd_auto_create_extra_out(struct alc_spec
*spec
,
17193 hda_nid_t pin
, const char *pfx
)
17195 hda_nid_t nid_v
, nid_s
;
17201 if (alc880_is_fixed_pin(pin
)) {
17202 nid_v
= alc880_idx_to_dac(alc880_fixed_pin_idx(pin
));
17203 /* specify the DAC as the extra output */
17204 if (!spec
->multiout
.hp_nid
)
17205 spec
->multiout
.hp_nid
= nid_v
;
17207 spec
->multiout
.extra_out_nid
[0] = nid_v
;
17208 /* control HP volume/switch on the output mixer amp */
17209 nid_v
= alc861vd_idx_to_mixer_vol(
17210 alc880_fixed_pin_idx(pin
));
17211 nid_s
= alc861vd_idx_to_mixer_switch(
17212 alc880_fixed_pin_idx(pin
));
17214 err
= add_pb_vol_ctrl(spec
, ALC_CTL_WIDGET_VOL
, pfx
,
17215 HDA_COMPOSE_AMP_VAL(nid_v
, 3, 0, HDA_OUTPUT
));
17218 err
= add_pb_sw_ctrl(spec
, ALC_CTL_BIND_MUTE
, pfx
,
17219 HDA_COMPOSE_AMP_VAL(nid_s
, 3, 2, HDA_INPUT
));
17222 } else if (alc880_is_multi_pin(pin
)) {
17223 /* set manual connection */
17224 /* we have only a switch on HP-out PIN */
17225 err
= add_pb_sw_ctrl(spec
, ALC_CTL_WIDGET_MUTE
, pfx
,
17226 HDA_COMPOSE_AMP_VAL(pin
, 3, 0, HDA_OUTPUT
));
17233 /* parse the BIOS configuration and set up the alc_spec
17234 * return 1 if successful, 0 if the proper config is not found,
17235 * or a negative error code
17236 * Based on ALC880 version - had to change it to override
17237 * alc880_auto_create_extra_out and alc880_auto_create_multi_out_ctls */
17238 static int alc861vd_parse_auto_config(struct hda_codec
*codec
)
17240 struct alc_spec
*spec
= codec
->spec
;
17242 static hda_nid_t alc861vd_ignore
[] = { 0x1d, 0 };
17244 err
= snd_hda_parse_pin_def_config(codec
, &spec
->autocfg
,
17248 if (!spec
->autocfg
.line_outs
)
17249 return 0; /* can't find valid BIOS pin config */
17251 err
= alc880_auto_fill_dac_nids(spec
, &spec
->autocfg
);
17254 err
= alc861vd_auto_create_multi_out_ctls(spec
, &spec
->autocfg
);
17257 err
= alc861vd_auto_create_extra_out(spec
,
17258 spec
->autocfg
.speaker_pins
[0],
17262 err
= alc861vd_auto_create_extra_out(spec
,
17263 spec
->autocfg
.hp_pins
[0],
17267 err
= alc861vd_auto_create_input_ctls(codec
, &spec
->autocfg
);
17271 spec
->multiout
.max_channels
= spec
->multiout
.num_dacs
* 2;
17273 alc_auto_parse_digital(codec
);
17275 if (spec
->kctls
.list
)
17276 add_mixer(spec
, spec
->kctls
.list
);
17278 add_verb(spec
, alc861vd_volume_init_verbs
);
17280 spec
->num_mux_defs
= 1;
17281 spec
->input_mux
= &spec
->private_imux
[0];
17283 err
= alc_auto_add_mic_boost(codec
);
17287 alc_ssid_check(codec
, 0x15, 0x1b, 0x14, 0);
17292 /* additional initialization for auto-configuration model */
17293 static void alc861vd_auto_init(struct hda_codec
*codec
)
17295 struct alc_spec
*spec
= codec
->spec
;
17296 alc861vd_auto_init_multi_out(codec
);
17297 alc861vd_auto_init_hp_out(codec
);
17298 alc861vd_auto_init_analog_input(codec
);
17299 alc861vd_auto_init_input_src(codec
);
17300 alc_auto_init_digital(codec
);
17301 if (spec
->unsol_event
)
17302 alc_inithook(codec
);
17306 ALC660VD_FIX_ASUS_GPIO1
17310 static const struct alc_fixup alc861vd_fixups
[] = {
17311 [ALC660VD_FIX_ASUS_GPIO1
] = {
17312 .type
= ALC_FIXUP_VERBS
,
17313 .v
.verbs
= (const struct hda_verb
[]) {
17314 {0x01, AC_VERB_SET_GPIO_MASK
, 0x03},
17315 {0x01, AC_VERB_SET_GPIO_DIRECTION
, 0x01},
17316 {0x01, AC_VERB_SET_GPIO_DATA
, 0x01},
17322 static struct snd_pci_quirk alc861vd_fixup_tbl
[] = {
17323 SND_PCI_QUIRK(0x1043, 0x1339, "ASUS A7-K", ALC660VD_FIX_ASUS_GPIO1
),
17327 static int patch_alc861vd(struct hda_codec
*codec
)
17329 struct alc_spec
*spec
;
17330 int err
, board_config
;
17332 spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
17336 codec
->spec
= spec
;
17338 board_config
= snd_hda_check_board_config(codec
, ALC861VD_MODEL_LAST
,
17342 if (board_config
< 0 || board_config
>= ALC861VD_MODEL_LAST
) {
17343 printk(KERN_INFO
"hda_codec: %s: BIOS auto-probing.\n",
17345 board_config
= ALC861VD_AUTO
;
17348 if (board_config
== ALC861VD_AUTO
) {
17349 alc_pick_fixup(codec
, NULL
, alc861vd_fixup_tbl
, alc861vd_fixups
);
17350 alc_apply_fixup(codec
, ALC_FIXUP_ACT_PRE_PROBE
);
17353 if (board_config
== ALC861VD_AUTO
) {
17354 /* automatic parse from the BIOS config */
17355 err
= alc861vd_parse_auto_config(codec
);
17361 "hda_codec: Cannot set up configuration "
17362 "from BIOS. Using base mode...\n");
17363 board_config
= ALC861VD_3ST
;
17367 err
= snd_hda_attach_beep_device(codec
, 0x23);
17373 if (board_config
!= ALC861VD_AUTO
)
17374 setup_preset(codec
, &alc861vd_presets
[board_config
]);
17376 if (codec
->vendor_id
== 0x10ec0660) {
17377 /* always turn on EAPD */
17378 add_verb(spec
, alc660vd_eapd_verbs
);
17381 spec
->stream_analog_playback
= &alc861vd_pcm_analog_playback
;
17382 spec
->stream_analog_capture
= &alc861vd_pcm_analog_capture
;
17384 spec
->stream_digital_playback
= &alc861vd_pcm_digital_playback
;
17385 spec
->stream_digital_capture
= &alc861vd_pcm_digital_capture
;
17387 if (!spec
->adc_nids
) {
17388 spec
->adc_nids
= alc861vd_adc_nids
;
17389 spec
->num_adc_nids
= ARRAY_SIZE(alc861vd_adc_nids
);
17391 if (!spec
->capsrc_nids
)
17392 spec
->capsrc_nids
= alc861vd_capsrc_nids
;
17394 set_capture_mixer(codec
);
17395 set_beep_amp(spec
, 0x0b, 0x05, HDA_INPUT
);
17397 spec
->vmaster_nid
= 0x02;
17399 alc_apply_fixup(codec
, ALC_FIXUP_ACT_PROBE
);
17401 codec
->patch_ops
= alc_patch_ops
;
17403 if (board_config
== ALC861VD_AUTO
)
17404 spec
->init_hook
= alc861vd_auto_init
;
17405 #ifdef CONFIG_SND_HDA_POWER_SAVE
17406 if (!spec
->loopback
.amplist
)
17407 spec
->loopback
.amplist
= alc861vd_loopbacks
;
17416 * ALC662 is almost identical with ALC880 but has cleaner and more flexible
17417 * configuration. Each pin widget can choose any input DACs and a mixer.
17418 * Each ADC is connected from a mixer of all inputs. This makes possible
17419 * 6-channel independent captures.
17421 * In addition, an independent DAC for the multi-playback (not used in this
17424 #define ALC662_DIGOUT_NID 0x06
17425 #define ALC662_DIGIN_NID 0x0a
17427 static hda_nid_t alc662_dac_nids
[4] = {
17428 /* front, rear, clfe, rear_surr */
17432 static hda_nid_t alc272_dac_nids
[2] = {
17436 static hda_nid_t alc662_adc_nids
[2] = {
17441 static hda_nid_t alc272_adc_nids
[1] = {
17446 static hda_nid_t alc662_capsrc_nids
[2] = { 0x22, 0x23 };
17447 static hda_nid_t alc272_capsrc_nids
[1] = { 0x23 };
17451 /* FIXME: should be a matrix-type input source selection */
17452 static struct hda_input_mux alc662_capture_source
= {
17456 { "Front Mic", 0x1 },
17462 static struct hda_input_mux alc662_lenovo_101e_capture_source
= {
17470 static struct hda_input_mux alc663_capture_source
= {
17474 { "Front Mic", 0x1 },
17479 #if 0 /* set to 1 for testing other input sources below */
17480 static struct hda_input_mux alc272_nc10_capture_source
= {
17483 { "Autoselect Mic", 0x0 },
17484 { "Internal Mic", 0x1 },
17485 { "In-0x02", 0x2 },
17486 { "In-0x03", 0x3 },
17487 { "In-0x04", 0x4 },
17488 { "In-0x05", 0x5 },
17489 { "In-0x06", 0x6 },
17490 { "In-0x07", 0x7 },
17491 { "In-0x08", 0x8 },
17492 { "In-0x09", 0x9 },
17493 { "In-0x0a", 0x0a },
17494 { "In-0x0b", 0x0b },
17495 { "In-0x0c", 0x0c },
17496 { "In-0x0d", 0x0d },
17497 { "In-0x0e", 0x0e },
17498 { "In-0x0f", 0x0f },
17506 static struct hda_channel_mode alc662_3ST_2ch_modes
[1] = {
17513 static struct hda_verb alc662_3ST_ch2_init
[] = {
17514 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
17515 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
17516 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
17517 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
17524 static struct hda_verb alc662_3ST_ch6_init
[] = {
17525 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
17526 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17527 { 0x18, AC_VERB_SET_CONNECT_SEL
, 0x02 },
17528 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
17529 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17530 { 0x1a, AC_VERB_SET_CONNECT_SEL
, 0x01 },
17534 static struct hda_channel_mode alc662_3ST_6ch_modes
[2] = {
17535 { 2, alc662_3ST_ch2_init
},
17536 { 6, alc662_3ST_ch6_init
},
17542 static struct hda_verb alc662_sixstack_ch6_init
[] = {
17543 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x00 },
17544 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x00 },
17545 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
17552 static struct hda_verb alc662_sixstack_ch8_init
[] = {
17553 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
17554 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
17555 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
17559 static struct hda_channel_mode alc662_5stack_modes
[2] = {
17560 { 2, alc662_sixstack_ch6_init
},
17561 { 6, alc662_sixstack_ch8_init
},
17564 /* Pin assignment: Front=0x14, Rear=0x15, CLFE=0x16, Side=0x17
17565 * Mic=0x18, Front Mic=0x19, Line-In=0x1a, HP=0x1b
17568 static struct snd_kcontrol_new alc662_base_mixer
[] = {
17569 /* output mixer control */
17570 HDA_CODEC_VOLUME("Front Playback Volume", 0x2, 0x0, HDA_OUTPUT
),
17571 HDA_CODEC_MUTE("Front Playback Switch", 0x0c, 0x0, HDA_INPUT
),
17572 HDA_CODEC_VOLUME("Surround Playback Volume", 0x3, 0x0, HDA_OUTPUT
),
17573 HDA_CODEC_MUTE("Surround Playback Switch", 0x0d, 0x0, HDA_INPUT
),
17574 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x04, 1, 0x0, HDA_OUTPUT
),
17575 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x04, 2, 0x0, HDA_OUTPUT
),
17576 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x0e, 1, 0x0, HDA_INPUT
),
17577 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 0x0, HDA_INPUT
),
17578 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
17580 /*Input mixer control */
17581 HDA_CODEC_VOLUME("CD Playback Volume", 0xb, 0x4, HDA_INPUT
),
17582 HDA_CODEC_MUTE("CD Playback Switch", 0xb, 0x4, HDA_INPUT
),
17583 HDA_CODEC_VOLUME("Line Playback Volume", 0xb, 0x02, HDA_INPUT
),
17584 HDA_CODEC_MUTE("Line Playback Switch", 0xb, 0x02, HDA_INPUT
),
17585 HDA_CODEC_VOLUME("Mic Playback Volume", 0xb, 0x0, HDA_INPUT
),
17586 HDA_CODEC_MUTE("Mic Playback Switch", 0xb, 0x0, HDA_INPUT
),
17587 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0xb, 0x01, HDA_INPUT
),
17588 HDA_CODEC_MUTE("Front Mic Playback Switch", 0xb, 0x01, HDA_INPUT
),
17592 static struct snd_kcontrol_new alc662_3ST_2ch_mixer
[] = {
17593 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
17594 HDA_CODEC_MUTE("Front Playback Switch", 0x0c, 0x0, HDA_INPUT
),
17595 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
17596 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
17597 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
17598 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
17599 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
17600 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
17601 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
17602 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
17603 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
17607 static struct snd_kcontrol_new alc662_3ST_6ch_mixer
[] = {
17608 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
17609 HDA_CODEC_MUTE("Front Playback Switch", 0x0c, 0x0, HDA_INPUT
),
17610 HDA_CODEC_VOLUME("Surround Playback Volume", 0x03, 0x0, HDA_OUTPUT
),
17611 HDA_CODEC_MUTE("Surround Playback Switch", 0x0d, 0x0, HDA_INPUT
),
17612 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x04, 1, 0x0, HDA_OUTPUT
),
17613 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x04, 2, 0x0, HDA_OUTPUT
),
17614 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x0e, 1, 0x0, HDA_INPUT
),
17615 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 0x0, HDA_INPUT
),
17616 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
17617 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
17618 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
17619 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
17620 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
17621 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
17622 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
17623 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
17624 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
17628 static struct snd_kcontrol_new alc662_lenovo_101e_mixer
[] = {
17629 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
17630 HDA_BIND_MUTE("Front Playback Switch", 0x02, 2, HDA_INPUT
),
17631 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x03, 0x0, HDA_OUTPUT
),
17632 HDA_BIND_MUTE("Speaker Playback Switch", 0x03, 2, HDA_INPUT
),
17633 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
17634 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
17635 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
17636 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
17637 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
17641 static struct snd_kcontrol_new alc662_eeepc_p701_mixer
[] = {
17642 HDA_CODEC_VOLUME("Master Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
17643 ALC262_HIPPO_MASTER_SWITCH
,
17645 HDA_CODEC_VOLUME("Mic Boost Volume", 0x18, 0, HDA_INPUT
),
17646 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
17647 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
17649 HDA_CODEC_VOLUME("Internal Mic Boost Volume", 0x19, 0, HDA_INPUT
),
17650 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
17651 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
17655 static struct snd_kcontrol_new alc662_eeepc_ep20_mixer
[] = {
17656 ALC262_HIPPO_MASTER_SWITCH
,
17657 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
17658 HDA_CODEC_VOLUME("Surround Playback Volume", 0x03, 0x0, HDA_OUTPUT
),
17659 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x04, 1, 0x0, HDA_OUTPUT
),
17660 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x04, 2, 0x0, HDA_OUTPUT
),
17661 HDA_BIND_MUTE("MuteCtrl Playback Switch", 0x0c, 2, HDA_INPUT
),
17662 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
17663 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
17664 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
17665 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
17669 static struct hda_bind_ctls alc663_asus_bind_master_vol
= {
17670 .ops
= &snd_hda_bind_vol
,
17672 HDA_COMPOSE_AMP_VAL(0x02, 3, 0, HDA_OUTPUT
),
17673 HDA_COMPOSE_AMP_VAL(0x03, 3, 0, HDA_OUTPUT
),
17678 static struct hda_bind_ctls alc663_asus_one_bind_switch
= {
17679 .ops
= &snd_hda_bind_sw
,
17681 HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT
),
17682 HDA_COMPOSE_AMP_VAL(0x21, 3, 0, HDA_OUTPUT
),
17687 static struct snd_kcontrol_new alc663_m51va_mixer
[] = {
17688 HDA_BIND_VOL("Master Playback Volume", &alc663_asus_bind_master_vol
),
17689 HDA_BIND_SW("Master Playback Switch", &alc663_asus_one_bind_switch
),
17690 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
17691 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
17695 static struct hda_bind_ctls alc663_asus_tree_bind_switch
= {
17696 .ops
= &snd_hda_bind_sw
,
17698 HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT
),
17699 HDA_COMPOSE_AMP_VAL(0x15, 3, 0, HDA_OUTPUT
),
17700 HDA_COMPOSE_AMP_VAL(0x21, 3, 0, HDA_OUTPUT
),
17705 static struct snd_kcontrol_new alc663_two_hp_m1_mixer
[] = {
17706 HDA_BIND_VOL("Master Playback Volume", &alc663_asus_bind_master_vol
),
17707 HDA_BIND_SW("Master Playback Switch", &alc663_asus_tree_bind_switch
),
17708 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
17709 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
17710 HDA_CODEC_VOLUME("F-Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
17711 HDA_CODEC_MUTE("F-Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
17716 static struct hda_bind_ctls alc663_asus_four_bind_switch
= {
17717 .ops
= &snd_hda_bind_sw
,
17719 HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT
),
17720 HDA_COMPOSE_AMP_VAL(0x15, 3, 0, HDA_OUTPUT
),
17721 HDA_COMPOSE_AMP_VAL(0x1b, 3, 0, HDA_OUTPUT
),
17726 static struct snd_kcontrol_new alc663_two_hp_m2_mixer
[] = {
17727 HDA_BIND_VOL("Master Playback Volume", &alc663_asus_bind_master_vol
),
17728 HDA_BIND_SW("Master Playback Switch", &alc663_asus_four_bind_switch
),
17729 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
17730 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
17731 HDA_CODEC_VOLUME("F-Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
17732 HDA_CODEC_MUTE("F-Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
17736 static struct snd_kcontrol_new alc662_1bjd_mixer
[] = {
17737 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
17738 HDA_CODEC_MUTE("Speaker Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
17739 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
17740 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
17741 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
17742 HDA_CODEC_VOLUME("F-Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
17743 HDA_CODEC_MUTE("F-Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
17747 static struct hda_bind_ctls alc663_asus_two_bind_master_vol
= {
17748 .ops
= &snd_hda_bind_vol
,
17750 HDA_COMPOSE_AMP_VAL(0x02, 3, 0, HDA_OUTPUT
),
17751 HDA_COMPOSE_AMP_VAL(0x04, 3, 0, HDA_OUTPUT
),
17756 static struct hda_bind_ctls alc663_asus_two_bind_switch
= {
17757 .ops
= &snd_hda_bind_sw
,
17759 HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT
),
17760 HDA_COMPOSE_AMP_VAL(0x16, 3, 0, HDA_OUTPUT
),
17765 static struct snd_kcontrol_new alc663_asus_21jd_clfe_mixer
[] = {
17766 HDA_BIND_VOL("Master Playback Volume",
17767 &alc663_asus_two_bind_master_vol
),
17768 HDA_BIND_SW("Master Playback Switch", &alc663_asus_two_bind_switch
),
17769 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x03, 0x0, HDA_OUTPUT
),
17770 HDA_CODEC_MUTE("Headphone Playback Switch", 0x21, 0x0, HDA_OUTPUT
),
17771 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
17772 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
17776 static struct snd_kcontrol_new alc663_asus_15jd_clfe_mixer
[] = {
17777 HDA_BIND_VOL("Master Playback Volume", &alc663_asus_bind_master_vol
),
17778 HDA_BIND_SW("Master Playback Switch", &alc663_asus_two_bind_switch
),
17779 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x03, 0x0, HDA_OUTPUT
),
17780 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
17781 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
17782 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
17786 static struct snd_kcontrol_new alc663_g71v_mixer
[] = {
17787 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
17788 HDA_CODEC_MUTE("Speaker Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
17789 HDA_CODEC_VOLUME("Front Playback Volume", 0x03, 0x0, HDA_OUTPUT
),
17790 HDA_CODEC_MUTE("Front Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
17791 HDA_CODEC_MUTE("Headphone Playback Switch", 0x21, 0x0, HDA_OUTPUT
),
17793 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
17794 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
17795 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
17796 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
17800 static struct snd_kcontrol_new alc663_g50v_mixer
[] = {
17801 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
17802 HDA_CODEC_MUTE("Speaker Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
17803 HDA_CODEC_MUTE("Headphone Playback Switch", 0x21, 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
),
17807 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
17808 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
17809 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
17810 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
17814 static struct hda_bind_ctls alc663_asus_mode7_8_all_bind_switch
= {
17815 .ops
= &snd_hda_bind_sw
,
17817 HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT
),
17818 HDA_COMPOSE_AMP_VAL(0x15, 3, 0, HDA_OUTPUT
),
17819 HDA_COMPOSE_AMP_VAL(0x17, 3, 0, HDA_OUTPUT
),
17820 HDA_COMPOSE_AMP_VAL(0x1b, 3, 0, HDA_OUTPUT
),
17821 HDA_COMPOSE_AMP_VAL(0x21, 3, 0, HDA_OUTPUT
),
17826 static struct hda_bind_ctls alc663_asus_mode7_8_sp_bind_switch
= {
17827 .ops
= &snd_hda_bind_sw
,
17829 HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT
),
17830 HDA_COMPOSE_AMP_VAL(0x17, 3, 0, HDA_OUTPUT
),
17835 static struct snd_kcontrol_new alc663_mode7_mixer
[] = {
17836 HDA_BIND_SW("Master Playback Switch", &alc663_asus_mode7_8_all_bind_switch
),
17837 HDA_BIND_VOL("Speaker Playback Volume", &alc663_asus_bind_master_vol
),
17838 HDA_BIND_SW("Speaker Playback Switch", &alc663_asus_mode7_8_sp_bind_switch
),
17839 HDA_CODEC_MUTE("Headphone1 Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
17840 HDA_CODEC_MUTE("Headphone2 Playback Switch", 0x21, 0x0, HDA_OUTPUT
),
17841 HDA_CODEC_VOLUME("IntMic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
17842 HDA_CODEC_MUTE("IntMic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
17843 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
17844 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
17848 static struct snd_kcontrol_new alc663_mode8_mixer
[] = {
17849 HDA_BIND_SW("Master Playback Switch", &alc663_asus_mode7_8_all_bind_switch
),
17850 HDA_BIND_VOL("Speaker Playback Volume", &alc663_asus_bind_master_vol
),
17851 HDA_BIND_SW("Speaker Playback Switch", &alc663_asus_mode7_8_sp_bind_switch
),
17852 HDA_CODEC_MUTE("Headphone1 Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
17853 HDA_CODEC_MUTE("Headphone2 Playback Switch", 0x21, 0x0, HDA_OUTPUT
),
17854 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
17855 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
17860 static struct snd_kcontrol_new alc662_chmode_mixer
[] = {
17862 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
17863 .name
= "Channel Mode",
17864 .info
= alc_ch_mode_info
,
17865 .get
= alc_ch_mode_get
,
17866 .put
= alc_ch_mode_put
,
17871 static struct hda_verb alc662_init_verbs
[] = {
17872 /* ADC: mute amp left and right */
17873 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
17874 {0x09, AC_VERB_SET_CONNECT_SEL
, 0x00},
17876 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
17877 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
17878 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
17879 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
17880 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
17881 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
17883 /* Front Pin: output 0 (0x0c) */
17884 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
17885 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17887 /* Rear Pin: output 1 (0x0d) */
17888 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
17889 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17891 /* CLFE Pin: output 2 (0x0e) */
17892 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
17893 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17895 /* Mic (rear) pin: input vref at 80% */
17896 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
17897 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
17898 /* Front Mic pin: input vref at 80% */
17899 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
17900 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
17901 /* Line In pin: input */
17902 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
17903 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
17904 /* Line-2 In: Headphone output (output 0 - 0x0c) */
17905 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
17906 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17907 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0x00},
17908 /* CD pin widget for input */
17909 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
17911 /* FIXME: use matrix-type input source selection */
17912 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
17914 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
17915 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
17917 /* always trun on EAPD */
17918 {0x14, AC_VERB_SET_EAPD_BTLENABLE
, 2},
17919 {0x15, AC_VERB_SET_EAPD_BTLENABLE
, 2},
17924 static struct hda_verb alc663_init_verbs
[] = {
17925 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
17926 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17927 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
17928 {0x21, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17929 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
17930 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
17934 static struct hda_verb alc272_init_verbs
[] = {
17935 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
17936 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
17937 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
17938 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17939 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
17940 {0x21, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17941 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
17942 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
17946 static struct hda_verb alc662_sue_init_verbs
[] = {
17947 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
|ALC880_FRONT_EVENT
},
17948 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
|ALC880_HP_EVENT
},
17952 static struct hda_verb alc662_eeepc_sue_init_verbs
[] = {
17953 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
17954 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
17958 /* Set Unsolicited Event*/
17959 static struct hda_verb alc662_eeepc_ep20_sue_init_verbs
[] = {
17960 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
17961 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
17965 static struct hda_verb alc663_m51va_init_verbs
[] = {
17966 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
17967 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
17968 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
17969 {0x21, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17970 {0x21, AC_VERB_SET_CONNECT_SEL
, 0x01}, /* Headphone */
17971 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
17972 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(9)},
17973 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
17974 {0x21, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
17978 static struct hda_verb alc663_21jd_amic_init_verbs
[] = {
17979 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
17980 {0x21, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17981 {0x21, AC_VERB_SET_CONNECT_SEL
, 0x01}, /* Headphone */
17982 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
17983 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
17984 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
17985 {0x21, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
17989 static struct hda_verb alc662_1bjd_amic_init_verbs
[] = {
17990 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
17991 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
17992 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17993 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* Headphone */
17994 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
17995 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
17996 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
17997 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
18001 static struct hda_verb alc663_15jd_amic_init_verbs
[] = {
18002 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
18003 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
18004 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x01}, /* Headphone */
18005 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
18006 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
18007 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
18008 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
18012 static struct hda_verb alc663_two_hp_amic_m1_init_verbs
[] = {
18013 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
18014 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
18015 {0x21, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
18016 {0x21, AC_VERB_SET_CONNECT_SEL
, 0x0}, /* Headphone */
18017 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
18018 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
18019 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x0}, /* Headphone */
18020 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
18021 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
18022 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
18023 {0x21, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
18024 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
18028 static struct hda_verb alc663_two_hp_amic_m2_init_verbs
[] = {
18029 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
18030 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
18031 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
18032 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0x01}, /* Headphone */
18033 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
18034 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
18035 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x01}, /* Headphone */
18036 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
18037 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
18038 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
18039 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
18040 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
18044 static struct hda_verb alc663_g71v_init_verbs
[] = {
18045 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
18046 /* {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, */
18047 /* {0x15, AC_VERB_SET_CONNECT_SEL, 0x01}, */ /* Headphone */
18049 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
18050 {0x21, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
18051 {0x21, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* Headphone */
18053 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
|ALC880_FRONT_EVENT
},
18054 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
|ALC880_MIC_EVENT
},
18055 {0x21, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
|ALC880_HP_EVENT
},
18059 static struct hda_verb alc663_g50v_init_verbs
[] = {
18060 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
18061 {0x21, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
18062 {0x21, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* Headphone */
18064 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
18065 {0x21, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
18069 static struct hda_verb alc662_ecs_init_verbs
[] = {
18070 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, 0x701f},
18071 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
18072 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
18073 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
18077 static struct hda_verb alc272_dell_zm1_init_verbs
[] = {
18078 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
18079 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
18080 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
18081 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
18082 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
18083 {0x21, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
18084 {0x21, AC_VERB_SET_CONNECT_SEL
, 0x01}, /* Headphone */
18085 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
18086 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(9)},
18087 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
18088 {0x21, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
18092 static struct hda_verb alc272_dell_init_verbs
[] = {
18093 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
18094 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
18095 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
18096 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
18097 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
18098 {0x21, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
18099 {0x21, AC_VERB_SET_CONNECT_SEL
, 0x01}, /* Headphone */
18100 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
18101 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(9)},
18102 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
18103 {0x21, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
18107 static struct hda_verb alc663_mode7_init_verbs
[] = {
18108 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
18109 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
18110 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
18111 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
18112 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
18113 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
18114 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0x01},
18115 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
18116 {0x21, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
18117 {0x21, AC_VERB_SET_CONNECT_SEL
, 0x01}, /* Headphone */
18118 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
18119 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(9)},
18120 {0x19, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
18121 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
18122 {0x21, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
18126 static struct hda_verb alc663_mode8_init_verbs
[] = {
18127 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
18128 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
18129 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
18130 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x01},
18131 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
18132 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
18133 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
18134 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
18135 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
18136 {0x21, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
18137 {0x21, AC_VERB_SET_CONNECT_SEL
, 0x01}, /* Headphone */
18138 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
18139 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(9)},
18140 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
18141 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
18142 {0x21, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
18146 static struct snd_kcontrol_new alc662_auto_capture_mixer
[] = {
18147 HDA_CODEC_VOLUME("Capture Volume", 0x09, 0x0, HDA_INPUT
),
18148 HDA_CODEC_MUTE("Capture Switch", 0x09, 0x0, HDA_INPUT
),
18152 static struct snd_kcontrol_new alc272_auto_capture_mixer
[] = {
18153 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT
),
18154 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT
),
18158 static void alc662_lenovo_101e_ispeaker_automute(struct hda_codec
*codec
)
18160 unsigned int present
;
18161 unsigned char bits
;
18163 present
= snd_hda_jack_detect(codec
, 0x14);
18164 bits
= present
? HDA_AMP_MUTE
: 0;
18166 snd_hda_codec_amp_stereo(codec
, 0x15, HDA_OUTPUT
, 0,
18167 HDA_AMP_MUTE
, bits
);
18170 static void alc662_lenovo_101e_all_automute(struct hda_codec
*codec
)
18172 unsigned int present
;
18173 unsigned char bits
;
18175 present
= snd_hda_jack_detect(codec
, 0x1b);
18176 bits
= present
? HDA_AMP_MUTE
: 0;
18178 snd_hda_codec_amp_stereo(codec
, 0x15, HDA_OUTPUT
, 0,
18179 HDA_AMP_MUTE
, bits
);
18180 snd_hda_codec_amp_stereo(codec
, 0x14, HDA_OUTPUT
, 0,
18181 HDA_AMP_MUTE
, bits
);
18184 static void alc662_lenovo_101e_unsol_event(struct hda_codec
*codec
,
18187 if ((res
>> 26) == ALC880_HP_EVENT
)
18188 alc662_lenovo_101e_all_automute(codec
);
18189 if ((res
>> 26) == ALC880_FRONT_EVENT
)
18190 alc662_lenovo_101e_ispeaker_automute(codec
);
18193 /* unsolicited event for HP jack sensing */
18194 static void alc662_eeepc_unsol_event(struct hda_codec
*codec
,
18197 if ((res
>> 26) == ALC880_MIC_EVENT
)
18198 alc_mic_automute(codec
);
18200 alc262_hippo_unsol_event(codec
, res
);
18203 static void alc662_eeepc_setup(struct hda_codec
*codec
)
18205 struct alc_spec
*spec
= codec
->spec
;
18207 alc262_hippo1_setup(codec
);
18208 spec
->ext_mic
.pin
= 0x18;
18209 spec
->ext_mic
.mux_idx
= 0;
18210 spec
->int_mic
.pin
= 0x19;
18211 spec
->int_mic
.mux_idx
= 1;
18212 spec
->auto_mic
= 1;
18215 static void alc662_eeepc_inithook(struct hda_codec
*codec
)
18217 alc262_hippo_automute(codec
);
18218 alc_mic_automute(codec
);
18221 static void alc662_eeepc_ep20_setup(struct hda_codec
*codec
)
18223 struct alc_spec
*spec
= codec
->spec
;
18225 spec
->autocfg
.hp_pins
[0] = 0x14;
18226 spec
->autocfg
.speaker_pins
[0] = 0x1b;
18229 #define alc662_eeepc_ep20_inithook alc262_hippo_master_update
18231 static void alc663_m51va_speaker_automute(struct hda_codec
*codec
)
18233 unsigned int present
;
18234 unsigned char bits
;
18236 present
= snd_hda_jack_detect(codec
, 0x21);
18237 bits
= present
? HDA_AMP_MUTE
: 0;
18238 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 0,
18239 HDA_AMP_MUTE
, bits
);
18240 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 1,
18241 HDA_AMP_MUTE
, bits
);
18244 static void alc663_21jd_two_speaker_automute(struct hda_codec
*codec
)
18246 unsigned int present
;
18247 unsigned char bits
;
18249 present
= snd_hda_jack_detect(codec
, 0x21);
18250 bits
= present
? HDA_AMP_MUTE
: 0;
18251 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 0,
18252 HDA_AMP_MUTE
, bits
);
18253 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 1,
18254 HDA_AMP_MUTE
, bits
);
18255 snd_hda_codec_amp_stereo(codec
, 0x0e, HDA_INPUT
, 0,
18256 HDA_AMP_MUTE
, bits
);
18257 snd_hda_codec_amp_stereo(codec
, 0x0e, HDA_INPUT
, 1,
18258 HDA_AMP_MUTE
, bits
);
18261 static void alc663_15jd_two_speaker_automute(struct hda_codec
*codec
)
18263 unsigned int present
;
18264 unsigned char bits
;
18266 present
= snd_hda_jack_detect(codec
, 0x15);
18267 bits
= present
? HDA_AMP_MUTE
: 0;
18268 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 0,
18269 HDA_AMP_MUTE
, bits
);
18270 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 1,
18271 HDA_AMP_MUTE
, bits
);
18272 snd_hda_codec_amp_stereo(codec
, 0x0e, HDA_INPUT
, 0,
18273 HDA_AMP_MUTE
, bits
);
18274 snd_hda_codec_amp_stereo(codec
, 0x0e, HDA_INPUT
, 1,
18275 HDA_AMP_MUTE
, bits
);
18278 static void alc662_f5z_speaker_automute(struct hda_codec
*codec
)
18280 unsigned int present
;
18281 unsigned char bits
;
18283 present
= snd_hda_jack_detect(codec
, 0x1b);
18284 bits
= present
? 0 : PIN_OUT
;
18285 snd_hda_codec_write(codec
, 0x14, 0,
18286 AC_VERB_SET_PIN_WIDGET_CONTROL
, bits
);
18289 static void alc663_two_hp_m1_speaker_automute(struct hda_codec
*codec
)
18291 unsigned int present1
, present2
;
18293 present1
= snd_hda_jack_detect(codec
, 0x21);
18294 present2
= snd_hda_jack_detect(codec
, 0x15);
18296 if (present1
|| present2
) {
18297 snd_hda_codec_write_cache(codec
, 0x14, 0,
18298 AC_VERB_SET_PIN_WIDGET_CONTROL
, 0);
18300 snd_hda_codec_write_cache(codec
, 0x14, 0,
18301 AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
);
18305 static void alc663_two_hp_m2_speaker_automute(struct hda_codec
*codec
)
18307 unsigned int present1
, present2
;
18309 present1
= snd_hda_jack_detect(codec
, 0x1b);
18310 present2
= snd_hda_jack_detect(codec
, 0x15);
18312 if (present1
|| present2
) {
18313 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 0,
18314 HDA_AMP_MUTE
, HDA_AMP_MUTE
);
18315 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 1,
18316 HDA_AMP_MUTE
, HDA_AMP_MUTE
);
18318 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 0,
18320 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 1,
18325 static void alc663_two_hp_m7_speaker_automute(struct hda_codec
*codec
)
18327 unsigned int present1
, present2
;
18329 present1
= snd_hda_codec_read(codec
, 0x1b, 0,
18330 AC_VERB_GET_PIN_SENSE
, 0)
18331 & AC_PINSENSE_PRESENCE
;
18332 present2
= snd_hda_codec_read(codec
, 0x21, 0,
18333 AC_VERB_GET_PIN_SENSE
, 0)
18334 & AC_PINSENSE_PRESENCE
;
18336 if (present1
|| present2
) {
18337 snd_hda_codec_write_cache(codec
, 0x14, 0,
18338 AC_VERB_SET_PIN_WIDGET_CONTROL
, 0);
18339 snd_hda_codec_write_cache(codec
, 0x17, 0,
18340 AC_VERB_SET_PIN_WIDGET_CONTROL
, 0);
18342 snd_hda_codec_write_cache(codec
, 0x14, 0,
18343 AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
);
18344 snd_hda_codec_write_cache(codec
, 0x17, 0,
18345 AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
);
18349 static void alc663_two_hp_m8_speaker_automute(struct hda_codec
*codec
)
18351 unsigned int present1
, present2
;
18353 present1
= snd_hda_codec_read(codec
, 0x21, 0,
18354 AC_VERB_GET_PIN_SENSE
, 0)
18355 & AC_PINSENSE_PRESENCE
;
18356 present2
= snd_hda_codec_read(codec
, 0x15, 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_m51va_unsol_event(struct hda_codec
*codec
,
18376 switch (res
>> 26) {
18377 case ALC880_HP_EVENT
:
18378 alc663_m51va_speaker_automute(codec
);
18380 case ALC880_MIC_EVENT
:
18381 alc_mic_automute(codec
);
18386 static void alc663_m51va_setup(struct hda_codec
*codec
)
18388 struct alc_spec
*spec
= codec
->spec
;
18389 spec
->ext_mic
.pin
= 0x18;
18390 spec
->ext_mic
.mux_idx
= 0;
18391 spec
->int_mic
.pin
= 0x12;
18392 spec
->int_mic
.mux_idx
= 9;
18393 spec
->auto_mic
= 1;
18396 static void alc663_m51va_inithook(struct hda_codec
*codec
)
18398 alc663_m51va_speaker_automute(codec
);
18399 alc_mic_automute(codec
);
18402 /* ***************** Mode1 ******************************/
18403 #define alc663_mode1_unsol_event alc663_m51va_unsol_event
18405 static void alc663_mode1_setup(struct hda_codec
*codec
)
18407 struct alc_spec
*spec
= codec
->spec
;
18408 spec
->ext_mic
.pin
= 0x18;
18409 spec
->ext_mic
.mux_idx
= 0;
18410 spec
->int_mic
.pin
= 0x19;
18411 spec
->int_mic
.mux_idx
= 1;
18412 spec
->auto_mic
= 1;
18415 #define alc663_mode1_inithook alc663_m51va_inithook
18417 /* ***************** Mode2 ******************************/
18418 static void alc662_mode2_unsol_event(struct hda_codec
*codec
,
18421 switch (res
>> 26) {
18422 case ALC880_HP_EVENT
:
18423 alc662_f5z_speaker_automute(codec
);
18425 case ALC880_MIC_EVENT
:
18426 alc_mic_automute(codec
);
18431 #define alc662_mode2_setup alc663_mode1_setup
18433 static void alc662_mode2_inithook(struct hda_codec
*codec
)
18435 alc662_f5z_speaker_automute(codec
);
18436 alc_mic_automute(codec
);
18438 /* ***************** Mode3 ******************************/
18439 static void alc663_mode3_unsol_event(struct hda_codec
*codec
,
18442 switch (res
>> 26) {
18443 case ALC880_HP_EVENT
:
18444 alc663_two_hp_m1_speaker_automute(codec
);
18446 case ALC880_MIC_EVENT
:
18447 alc_mic_automute(codec
);
18452 #define alc663_mode3_setup alc663_mode1_setup
18454 static void alc663_mode3_inithook(struct hda_codec
*codec
)
18456 alc663_two_hp_m1_speaker_automute(codec
);
18457 alc_mic_automute(codec
);
18459 /* ***************** Mode4 ******************************/
18460 static void alc663_mode4_unsol_event(struct hda_codec
*codec
,
18463 switch (res
>> 26) {
18464 case ALC880_HP_EVENT
:
18465 alc663_21jd_two_speaker_automute(codec
);
18467 case ALC880_MIC_EVENT
:
18468 alc_mic_automute(codec
);
18473 #define alc663_mode4_setup alc663_mode1_setup
18475 static void alc663_mode4_inithook(struct hda_codec
*codec
)
18477 alc663_21jd_two_speaker_automute(codec
);
18478 alc_mic_automute(codec
);
18480 /* ***************** Mode5 ******************************/
18481 static void alc663_mode5_unsol_event(struct hda_codec
*codec
,
18484 switch (res
>> 26) {
18485 case ALC880_HP_EVENT
:
18486 alc663_15jd_two_speaker_automute(codec
);
18488 case ALC880_MIC_EVENT
:
18489 alc_mic_automute(codec
);
18494 #define alc663_mode5_setup alc663_mode1_setup
18496 static void alc663_mode5_inithook(struct hda_codec
*codec
)
18498 alc663_15jd_two_speaker_automute(codec
);
18499 alc_mic_automute(codec
);
18501 /* ***************** Mode6 ******************************/
18502 static void alc663_mode6_unsol_event(struct hda_codec
*codec
,
18505 switch (res
>> 26) {
18506 case ALC880_HP_EVENT
:
18507 alc663_two_hp_m2_speaker_automute(codec
);
18509 case ALC880_MIC_EVENT
:
18510 alc_mic_automute(codec
);
18515 #define alc663_mode6_setup alc663_mode1_setup
18517 static void alc663_mode6_inithook(struct hda_codec
*codec
)
18519 alc663_two_hp_m2_speaker_automute(codec
);
18520 alc_mic_automute(codec
);
18523 /* ***************** Mode7 ******************************/
18524 static void alc663_mode7_unsol_event(struct hda_codec
*codec
,
18527 switch (res
>> 26) {
18528 case ALC880_HP_EVENT
:
18529 alc663_two_hp_m7_speaker_automute(codec
);
18531 case ALC880_MIC_EVENT
:
18532 alc_mic_automute(codec
);
18537 #define alc663_mode7_setup alc663_mode1_setup
18539 static void alc663_mode7_inithook(struct hda_codec
*codec
)
18541 alc663_two_hp_m7_speaker_automute(codec
);
18542 alc_mic_automute(codec
);
18545 /* ***************** Mode8 ******************************/
18546 static void alc663_mode8_unsol_event(struct hda_codec
*codec
,
18549 switch (res
>> 26) {
18550 case ALC880_HP_EVENT
:
18551 alc663_two_hp_m8_speaker_automute(codec
);
18553 case ALC880_MIC_EVENT
:
18554 alc_mic_automute(codec
);
18559 #define alc663_mode8_setup alc663_m51va_setup
18561 static void alc663_mode8_inithook(struct hda_codec
*codec
)
18563 alc663_two_hp_m8_speaker_automute(codec
);
18564 alc_mic_automute(codec
);
18567 static void alc663_g71v_hp_automute(struct hda_codec
*codec
)
18569 unsigned int present
;
18570 unsigned char bits
;
18572 present
= snd_hda_jack_detect(codec
, 0x21);
18573 bits
= present
? HDA_AMP_MUTE
: 0;
18574 snd_hda_codec_amp_stereo(codec
, 0x15, HDA_OUTPUT
, 0,
18575 HDA_AMP_MUTE
, bits
);
18576 snd_hda_codec_amp_stereo(codec
, 0x14, HDA_OUTPUT
, 0,
18577 HDA_AMP_MUTE
, bits
);
18580 static void alc663_g71v_front_automute(struct hda_codec
*codec
)
18582 unsigned int present
;
18583 unsigned char bits
;
18585 present
= snd_hda_jack_detect(codec
, 0x15);
18586 bits
= present
? HDA_AMP_MUTE
: 0;
18587 snd_hda_codec_amp_stereo(codec
, 0x14, HDA_OUTPUT
, 0,
18588 HDA_AMP_MUTE
, bits
);
18591 static void alc663_g71v_unsol_event(struct hda_codec
*codec
,
18594 switch (res
>> 26) {
18595 case ALC880_HP_EVENT
:
18596 alc663_g71v_hp_automute(codec
);
18598 case ALC880_FRONT_EVENT
:
18599 alc663_g71v_front_automute(codec
);
18601 case ALC880_MIC_EVENT
:
18602 alc_mic_automute(codec
);
18607 #define alc663_g71v_setup alc663_m51va_setup
18609 static void alc663_g71v_inithook(struct hda_codec
*codec
)
18611 alc663_g71v_front_automute(codec
);
18612 alc663_g71v_hp_automute(codec
);
18613 alc_mic_automute(codec
);
18616 static void alc663_g50v_unsol_event(struct hda_codec
*codec
,
18619 switch (res
>> 26) {
18620 case ALC880_HP_EVENT
:
18621 alc663_m51va_speaker_automute(codec
);
18623 case ALC880_MIC_EVENT
:
18624 alc_mic_automute(codec
);
18629 #define alc663_g50v_setup alc663_m51va_setup
18631 static void alc663_g50v_inithook(struct hda_codec
*codec
)
18633 alc663_m51va_speaker_automute(codec
);
18634 alc_mic_automute(codec
);
18637 static struct snd_kcontrol_new alc662_ecs_mixer
[] = {
18638 HDA_CODEC_VOLUME("Master Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
18639 ALC262_HIPPO_MASTER_SWITCH
,
18641 HDA_CODEC_VOLUME("Mic/LineIn Boost Volume", 0x18, 0, HDA_INPUT
),
18642 HDA_CODEC_VOLUME("Mic/LineIn Playback Volume", 0x0b, 0x0, HDA_INPUT
),
18643 HDA_CODEC_MUTE("Mic/LineIn Playback Switch", 0x0b, 0x0, HDA_INPUT
),
18645 HDA_CODEC_VOLUME("Internal Mic Boost Volume", 0x19, 0, HDA_INPUT
),
18646 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
18647 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
18651 static struct snd_kcontrol_new alc272_nc10_mixer
[] = {
18652 /* Master Playback automatically created from Speaker and Headphone */
18653 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
18654 HDA_CODEC_MUTE("Speaker Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
18655 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x03, 0x0, HDA_OUTPUT
),
18656 HDA_CODEC_MUTE("Headphone Playback Switch", 0x21, 0x0, HDA_OUTPUT
),
18658 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
18659 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
18660 HDA_CODEC_VOLUME("Mic Boost Volume", 0x18, 0, HDA_INPUT
),
18662 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
18663 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
18664 HDA_CODEC_VOLUME("Internal Mic Boost Volume", 0x19, 0, HDA_INPUT
),
18668 #ifdef CONFIG_SND_HDA_POWER_SAVE
18669 #define alc662_loopbacks alc880_loopbacks
18673 /* pcm configuration: identical with ALC880 */
18674 #define alc662_pcm_analog_playback alc880_pcm_analog_playback
18675 #define alc662_pcm_analog_capture alc880_pcm_analog_capture
18676 #define alc662_pcm_digital_playback alc880_pcm_digital_playback
18677 #define alc662_pcm_digital_capture alc880_pcm_digital_capture
18680 * configuration and preset
18682 static const char * const alc662_models
[ALC662_MODEL_LAST
] = {
18683 [ALC662_3ST_2ch_DIG
] = "3stack-dig",
18684 [ALC662_3ST_6ch_DIG
] = "3stack-6ch-dig",
18685 [ALC662_3ST_6ch
] = "3stack-6ch",
18686 [ALC662_5ST_DIG
] = "6stack-dig",
18687 [ALC662_LENOVO_101E
] = "lenovo-101e",
18688 [ALC662_ASUS_EEEPC_P701
] = "eeepc-p701",
18689 [ALC662_ASUS_EEEPC_EP20
] = "eeepc-ep20",
18690 [ALC662_ECS
] = "ecs",
18691 [ALC663_ASUS_M51VA
] = "m51va",
18692 [ALC663_ASUS_G71V
] = "g71v",
18693 [ALC663_ASUS_H13
] = "h13",
18694 [ALC663_ASUS_G50V
] = "g50v",
18695 [ALC663_ASUS_MODE1
] = "asus-mode1",
18696 [ALC662_ASUS_MODE2
] = "asus-mode2",
18697 [ALC663_ASUS_MODE3
] = "asus-mode3",
18698 [ALC663_ASUS_MODE4
] = "asus-mode4",
18699 [ALC663_ASUS_MODE5
] = "asus-mode5",
18700 [ALC663_ASUS_MODE6
] = "asus-mode6",
18701 [ALC663_ASUS_MODE7
] = "asus-mode7",
18702 [ALC663_ASUS_MODE8
] = "asus-mode8",
18703 [ALC272_DELL
] = "dell",
18704 [ALC272_DELL_ZM1
] = "dell-zm1",
18705 [ALC272_SAMSUNG_NC10
] = "samsung-nc10",
18706 [ALC662_AUTO
] = "auto",
18709 static struct snd_pci_quirk alc662_cfg_tbl
[] = {
18710 SND_PCI_QUIRK(0x1019, 0x9087, "ECS", ALC662_ECS
),
18711 SND_PCI_QUIRK(0x1028, 0x02d6, "DELL", ALC272_DELL
),
18712 SND_PCI_QUIRK(0x1028, 0x02f4, "DELL ZM1", ALC272_DELL_ZM1
),
18713 SND_PCI_QUIRK(0x1043, 0x1000, "ASUS N50Vm", ALC663_ASUS_MODE1
),
18714 SND_PCI_QUIRK(0x1043, 0x1092, "ASUS NB", ALC663_ASUS_MODE3
),
18715 SND_PCI_QUIRK(0x1043, 0x1173, "ASUS K73Jn", ALC663_ASUS_MODE1
),
18716 SND_PCI_QUIRK(0x1043, 0x11c3, "ASUS M70V", ALC663_ASUS_MODE3
),
18717 SND_PCI_QUIRK(0x1043, 0x11d3, "ASUS NB", ALC663_ASUS_MODE1
),
18718 SND_PCI_QUIRK(0x1043, 0x11f3, "ASUS NB", ALC662_ASUS_MODE2
),
18719 SND_PCI_QUIRK(0x1043, 0x1203, "ASUS NB", ALC663_ASUS_MODE1
),
18720 SND_PCI_QUIRK(0x1043, 0x1303, "ASUS G60J", ALC663_ASUS_MODE1
),
18721 SND_PCI_QUIRK(0x1043, 0x1333, "ASUS G60Jx", ALC663_ASUS_MODE1
),
18722 SND_PCI_QUIRK(0x1043, 0x1339, "ASUS NB", ALC662_ASUS_MODE2
),
18723 SND_PCI_QUIRK(0x1043, 0x13e3, "ASUS N71JA", ALC663_ASUS_MODE7
),
18724 SND_PCI_QUIRK(0x1043, 0x1463, "ASUS N71", ALC663_ASUS_MODE7
),
18725 SND_PCI_QUIRK(0x1043, 0x14d3, "ASUS G72", ALC663_ASUS_MODE8
),
18726 SND_PCI_QUIRK(0x1043, 0x1563, "ASUS N90", ALC663_ASUS_MODE3
),
18727 SND_PCI_QUIRK(0x1043, 0x15d3, "ASUS N50SF F50SF", ALC663_ASUS_MODE1
),
18728 SND_PCI_QUIRK(0x1043, 0x16c3, "ASUS NB", ALC662_ASUS_MODE2
),
18729 SND_PCI_QUIRK(0x1043, 0x16f3, "ASUS K40C K50C", ALC662_ASUS_MODE2
),
18730 SND_PCI_QUIRK(0x1043, 0x1733, "ASUS N81De", ALC663_ASUS_MODE1
),
18731 SND_PCI_QUIRK(0x1043, 0x1753, "ASUS NB", ALC662_ASUS_MODE2
),
18732 SND_PCI_QUIRK(0x1043, 0x1763, "ASUS NB", ALC663_ASUS_MODE6
),
18733 SND_PCI_QUIRK(0x1043, 0x1765, "ASUS NB", ALC663_ASUS_MODE6
),
18734 SND_PCI_QUIRK(0x1043, 0x1783, "ASUS NB", ALC662_ASUS_MODE2
),
18735 SND_PCI_QUIRK(0x1043, 0x1793, "ASUS F50GX", ALC663_ASUS_MODE1
),
18736 SND_PCI_QUIRK(0x1043, 0x17b3, "ASUS F70SL", ALC663_ASUS_MODE3
),
18737 SND_PCI_QUIRK(0x1043, 0x17c3, "ASUS UX20", ALC663_ASUS_M51VA
),
18738 SND_PCI_QUIRK(0x1043, 0x17f3, "ASUS X58LE", ALC662_ASUS_MODE2
),
18739 SND_PCI_QUIRK(0x1043, 0x1813, "ASUS NB", ALC662_ASUS_MODE2
),
18740 SND_PCI_QUIRK(0x1043, 0x1823, "ASUS NB", ALC663_ASUS_MODE5
),
18741 SND_PCI_QUIRK(0x1043, 0x1833, "ASUS NB", ALC663_ASUS_MODE6
),
18742 SND_PCI_QUIRK(0x1043, 0x1843, "ASUS NB", ALC662_ASUS_MODE2
),
18743 SND_PCI_QUIRK(0x1043, 0x1853, "ASUS F50Z", ALC663_ASUS_MODE1
),
18744 SND_PCI_QUIRK(0x1043, 0x1864, "ASUS NB", ALC662_ASUS_MODE2
),
18745 SND_PCI_QUIRK(0x1043, 0x1876, "ASUS NB", ALC662_ASUS_MODE2
),
18746 SND_PCI_QUIRK(0x1043, 0x1878, "ASUS M51VA", ALC663_ASUS_M51VA
),
18747 /*SND_PCI_QUIRK(0x1043, 0x1878, "ASUS M50Vr", ALC663_ASUS_MODE1),*/
18748 SND_PCI_QUIRK(0x1043, 0x1893, "ASUS M50Vm", ALC663_ASUS_MODE3
),
18749 SND_PCI_QUIRK(0x1043, 0x1894, "ASUS X55", ALC663_ASUS_MODE3
),
18750 SND_PCI_QUIRK(0x1043, 0x18b3, "ASUS N80Vc", ALC663_ASUS_MODE1
),
18751 SND_PCI_QUIRK(0x1043, 0x18c3, "ASUS VX5", ALC663_ASUS_MODE1
),
18752 SND_PCI_QUIRK(0x1043, 0x18d3, "ASUS N81Te", ALC663_ASUS_MODE1
),
18753 SND_PCI_QUIRK(0x1043, 0x18f3, "ASUS N505Tp", ALC663_ASUS_MODE1
),
18754 SND_PCI_QUIRK(0x1043, 0x1903, "ASUS F5GL", ALC663_ASUS_MODE1
),
18755 SND_PCI_QUIRK(0x1043, 0x1913, "ASUS NB", ALC662_ASUS_MODE2
),
18756 SND_PCI_QUIRK(0x1043, 0x1933, "ASUS F80Q", ALC662_ASUS_MODE2
),
18757 SND_PCI_QUIRK(0x1043, 0x1943, "ASUS Vx3V", ALC663_ASUS_MODE1
),
18758 SND_PCI_QUIRK(0x1043, 0x1953, "ASUS NB", ALC663_ASUS_MODE1
),
18759 SND_PCI_QUIRK(0x1043, 0x1963, "ASUS X71C", ALC663_ASUS_MODE3
),
18760 SND_PCI_QUIRK(0x1043, 0x1983, "ASUS N5051A", ALC663_ASUS_MODE1
),
18761 SND_PCI_QUIRK(0x1043, 0x1993, "ASUS N20", ALC663_ASUS_MODE1
),
18762 SND_PCI_QUIRK(0x1043, 0x19a3, "ASUS G50V", ALC663_ASUS_G50V
),
18763 /*SND_PCI_QUIRK(0x1043, 0x19a3, "ASUS NB", ALC663_ASUS_MODE1),*/
18764 SND_PCI_QUIRK(0x1043, 0x19b3, "ASUS F7Z", ALC663_ASUS_MODE1
),
18765 SND_PCI_QUIRK(0x1043, 0x19c3, "ASUS F5Z/F6x", ALC662_ASUS_MODE2
),
18766 SND_PCI_QUIRK(0x1043, 0x19d3, "ASUS NB", ALC663_ASUS_M51VA
),
18767 SND_PCI_QUIRK(0x1043, 0x19e3, "ASUS NB", ALC663_ASUS_MODE1
),
18768 SND_PCI_QUIRK(0x1043, 0x19f3, "ASUS NB", ALC663_ASUS_MODE4
),
18769 SND_PCI_QUIRK(0x1043, 0x8290, "ASUS P5GC-MX", ALC662_3ST_6ch_DIG
),
18770 SND_PCI_QUIRK(0x1043, 0x82a1, "ASUS Eeepc", ALC662_ASUS_EEEPC_P701
),
18771 SND_PCI_QUIRK(0x1043, 0x82d1, "ASUS Eeepc EP20", ALC662_ASUS_EEEPC_EP20
),
18772 SND_PCI_QUIRK(0x105b, 0x0cd6, "Foxconn", ALC662_ECS
),
18773 SND_PCI_QUIRK(0x105b, 0x0d47, "Foxconn 45CMX/45GMX/45CMX-K",
18774 ALC662_3ST_6ch_DIG
),
18775 SND_PCI_QUIRK(0x1179, 0xff6e, "Toshiba NB20x", ALC662_AUTO
),
18776 SND_PCI_QUIRK(0x144d, 0xca00, "Samsung NC10", ALC272_SAMSUNG_NC10
),
18777 SND_PCI_QUIRK(0x1458, 0xa002, "Gigabyte 945GCM-S2L",
18778 ALC662_3ST_6ch_DIG
),
18779 SND_PCI_QUIRK(0x152d, 0x2304, "Quanta WH1", ALC663_ASUS_H13
),
18780 SND_PCI_QUIRK(0x1565, 0x820f, "Biostar TA780G M2+", ALC662_3ST_6ch_DIG
),
18781 SND_PCI_QUIRK(0x1631, 0xc10c, "PB RS65", ALC663_ASUS_M51VA
),
18782 SND_PCI_QUIRK(0x17aa, 0x101e, "Lenovo", ALC662_LENOVO_101E
),
18783 SND_PCI_QUIRK(0x1849, 0x3662, "ASROCK K10N78FullHD-hSLI R3.0",
18784 ALC662_3ST_6ch_DIG
),
18785 SND_PCI_QUIRK_MASK(0x1854, 0xf000, 0x2000, "ASUS H13-200x",
18787 SND_PCI_QUIRK(0x1991, 0x5628, "Ordissimo EVE", ALC662_LENOVO_101E
),
18791 static struct alc_config_preset alc662_presets
[] = {
18792 [ALC662_3ST_2ch_DIG
] = {
18793 .mixers
= { alc662_3ST_2ch_mixer
},
18794 .init_verbs
= { alc662_init_verbs
},
18795 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
18796 .dac_nids
= alc662_dac_nids
,
18797 .dig_out_nid
= ALC662_DIGOUT_NID
,
18798 .dig_in_nid
= ALC662_DIGIN_NID
,
18799 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
18800 .channel_mode
= alc662_3ST_2ch_modes
,
18801 .input_mux
= &alc662_capture_source
,
18803 [ALC662_3ST_6ch_DIG
] = {
18804 .mixers
= { alc662_3ST_6ch_mixer
, alc662_chmode_mixer
},
18805 .init_verbs
= { alc662_init_verbs
},
18806 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
18807 .dac_nids
= alc662_dac_nids
,
18808 .dig_out_nid
= ALC662_DIGOUT_NID
,
18809 .dig_in_nid
= ALC662_DIGIN_NID
,
18810 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_6ch_modes
),
18811 .channel_mode
= alc662_3ST_6ch_modes
,
18813 .input_mux
= &alc662_capture_source
,
18815 [ALC662_3ST_6ch
] = {
18816 .mixers
= { alc662_3ST_6ch_mixer
, alc662_chmode_mixer
},
18817 .init_verbs
= { alc662_init_verbs
},
18818 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
18819 .dac_nids
= alc662_dac_nids
,
18820 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_6ch_modes
),
18821 .channel_mode
= alc662_3ST_6ch_modes
,
18823 .input_mux
= &alc662_capture_source
,
18825 [ALC662_5ST_DIG
] = {
18826 .mixers
= { alc662_base_mixer
, alc662_chmode_mixer
},
18827 .init_verbs
= { alc662_init_verbs
},
18828 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
18829 .dac_nids
= alc662_dac_nids
,
18830 .dig_out_nid
= ALC662_DIGOUT_NID
,
18831 .dig_in_nid
= ALC662_DIGIN_NID
,
18832 .num_channel_mode
= ARRAY_SIZE(alc662_5stack_modes
),
18833 .channel_mode
= alc662_5stack_modes
,
18834 .input_mux
= &alc662_capture_source
,
18836 [ALC662_LENOVO_101E
] = {
18837 .mixers
= { alc662_lenovo_101e_mixer
},
18838 .init_verbs
= { alc662_init_verbs
, alc662_sue_init_verbs
},
18839 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
18840 .dac_nids
= alc662_dac_nids
,
18841 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
18842 .channel_mode
= alc662_3ST_2ch_modes
,
18843 .input_mux
= &alc662_lenovo_101e_capture_source
,
18844 .unsol_event
= alc662_lenovo_101e_unsol_event
,
18845 .init_hook
= alc662_lenovo_101e_all_automute
,
18847 [ALC662_ASUS_EEEPC_P701
] = {
18848 .mixers
= { alc662_eeepc_p701_mixer
},
18849 .init_verbs
= { alc662_init_verbs
,
18850 alc662_eeepc_sue_init_verbs
},
18851 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
18852 .dac_nids
= alc662_dac_nids
,
18853 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
18854 .channel_mode
= alc662_3ST_2ch_modes
,
18855 .unsol_event
= alc662_eeepc_unsol_event
,
18856 .setup
= alc662_eeepc_setup
,
18857 .init_hook
= alc662_eeepc_inithook
,
18859 [ALC662_ASUS_EEEPC_EP20
] = {
18860 .mixers
= { alc662_eeepc_ep20_mixer
,
18861 alc662_chmode_mixer
},
18862 .init_verbs
= { alc662_init_verbs
,
18863 alc662_eeepc_ep20_sue_init_verbs
},
18864 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
18865 .dac_nids
= alc662_dac_nids
,
18866 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_6ch_modes
),
18867 .channel_mode
= alc662_3ST_6ch_modes
,
18868 .input_mux
= &alc662_lenovo_101e_capture_source
,
18869 .unsol_event
= alc662_eeepc_unsol_event
,
18870 .setup
= alc662_eeepc_ep20_setup
,
18871 .init_hook
= alc662_eeepc_ep20_inithook
,
18874 .mixers
= { alc662_ecs_mixer
},
18875 .init_verbs
= { alc662_init_verbs
,
18876 alc662_ecs_init_verbs
},
18877 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
18878 .dac_nids
= alc662_dac_nids
,
18879 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
18880 .channel_mode
= alc662_3ST_2ch_modes
,
18881 .unsol_event
= alc662_eeepc_unsol_event
,
18882 .setup
= alc662_eeepc_setup
,
18883 .init_hook
= alc662_eeepc_inithook
,
18885 [ALC663_ASUS_M51VA
] = {
18886 .mixers
= { alc663_m51va_mixer
},
18887 .init_verbs
= { alc662_init_verbs
, alc663_m51va_init_verbs
},
18888 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
18889 .dac_nids
= alc662_dac_nids
,
18890 .dig_out_nid
= ALC662_DIGOUT_NID
,
18891 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
18892 .channel_mode
= alc662_3ST_2ch_modes
,
18893 .unsol_event
= alc663_m51va_unsol_event
,
18894 .setup
= alc663_m51va_setup
,
18895 .init_hook
= alc663_m51va_inithook
,
18897 [ALC663_ASUS_G71V
] = {
18898 .mixers
= { alc663_g71v_mixer
},
18899 .init_verbs
= { alc662_init_verbs
, alc663_g71v_init_verbs
},
18900 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
18901 .dac_nids
= alc662_dac_nids
,
18902 .dig_out_nid
= ALC662_DIGOUT_NID
,
18903 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
18904 .channel_mode
= alc662_3ST_2ch_modes
,
18905 .unsol_event
= alc663_g71v_unsol_event
,
18906 .setup
= alc663_g71v_setup
,
18907 .init_hook
= alc663_g71v_inithook
,
18909 [ALC663_ASUS_H13
] = {
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 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
18915 .channel_mode
= alc662_3ST_2ch_modes
,
18916 .unsol_event
= alc663_m51va_unsol_event
,
18917 .init_hook
= alc663_m51va_inithook
,
18919 [ALC663_ASUS_G50V
] = {
18920 .mixers
= { alc663_g50v_mixer
},
18921 .init_verbs
= { alc662_init_verbs
, alc663_g50v_init_verbs
},
18922 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
18923 .dac_nids
= alc662_dac_nids
,
18924 .dig_out_nid
= ALC662_DIGOUT_NID
,
18925 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_6ch_modes
),
18926 .channel_mode
= alc662_3ST_6ch_modes
,
18927 .input_mux
= &alc663_capture_source
,
18928 .unsol_event
= alc663_g50v_unsol_event
,
18929 .setup
= alc663_g50v_setup
,
18930 .init_hook
= alc663_g50v_inithook
,
18932 [ALC663_ASUS_MODE1
] = {
18933 .mixers
= { alc663_m51va_mixer
},
18934 .cap_mixer
= alc662_auto_capture_mixer
,
18935 .init_verbs
= { alc662_init_verbs
,
18936 alc663_21jd_amic_init_verbs
},
18937 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
18939 .dac_nids
= alc662_dac_nids
,
18940 .dig_out_nid
= ALC662_DIGOUT_NID
,
18941 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
18942 .channel_mode
= alc662_3ST_2ch_modes
,
18943 .unsol_event
= alc663_mode1_unsol_event
,
18944 .setup
= alc663_mode1_setup
,
18945 .init_hook
= alc663_mode1_inithook
,
18947 [ALC662_ASUS_MODE2
] = {
18948 .mixers
= { alc662_1bjd_mixer
},
18949 .cap_mixer
= alc662_auto_capture_mixer
,
18950 .init_verbs
= { alc662_init_verbs
,
18951 alc662_1bjd_amic_init_verbs
},
18952 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
18953 .dac_nids
= alc662_dac_nids
,
18954 .dig_out_nid
= ALC662_DIGOUT_NID
,
18955 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
18956 .channel_mode
= alc662_3ST_2ch_modes
,
18957 .unsol_event
= alc662_mode2_unsol_event
,
18958 .setup
= alc662_mode2_setup
,
18959 .init_hook
= alc662_mode2_inithook
,
18961 [ALC663_ASUS_MODE3
] = {
18962 .mixers
= { alc663_two_hp_m1_mixer
},
18963 .cap_mixer
= alc662_auto_capture_mixer
,
18964 .init_verbs
= { alc662_init_verbs
,
18965 alc663_two_hp_amic_m1_init_verbs
},
18966 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
18968 .dac_nids
= alc662_dac_nids
,
18969 .dig_out_nid
= ALC662_DIGOUT_NID
,
18970 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
18971 .channel_mode
= alc662_3ST_2ch_modes
,
18972 .unsol_event
= alc663_mode3_unsol_event
,
18973 .setup
= alc663_mode3_setup
,
18974 .init_hook
= alc663_mode3_inithook
,
18976 [ALC663_ASUS_MODE4
] = {
18977 .mixers
= { alc663_asus_21jd_clfe_mixer
},
18978 .cap_mixer
= alc662_auto_capture_mixer
,
18979 .init_verbs
= { alc662_init_verbs
,
18980 alc663_21jd_amic_init_verbs
},
18981 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
18983 .dac_nids
= alc662_dac_nids
,
18984 .dig_out_nid
= ALC662_DIGOUT_NID
,
18985 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
18986 .channel_mode
= alc662_3ST_2ch_modes
,
18987 .unsol_event
= alc663_mode4_unsol_event
,
18988 .setup
= alc663_mode4_setup
,
18989 .init_hook
= alc663_mode4_inithook
,
18991 [ALC663_ASUS_MODE5
] = {
18992 .mixers
= { alc663_asus_15jd_clfe_mixer
},
18993 .cap_mixer
= alc662_auto_capture_mixer
,
18994 .init_verbs
= { alc662_init_verbs
,
18995 alc663_15jd_amic_init_verbs
},
18996 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
18998 .dac_nids
= alc662_dac_nids
,
18999 .dig_out_nid
= ALC662_DIGOUT_NID
,
19000 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
19001 .channel_mode
= alc662_3ST_2ch_modes
,
19002 .unsol_event
= alc663_mode5_unsol_event
,
19003 .setup
= alc663_mode5_setup
,
19004 .init_hook
= alc663_mode5_inithook
,
19006 [ALC663_ASUS_MODE6
] = {
19007 .mixers
= { alc663_two_hp_m2_mixer
},
19008 .cap_mixer
= alc662_auto_capture_mixer
,
19009 .init_verbs
= { alc662_init_verbs
,
19010 alc663_two_hp_amic_m2_init_verbs
},
19011 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
19013 .dac_nids
= alc662_dac_nids
,
19014 .dig_out_nid
= ALC662_DIGOUT_NID
,
19015 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
19016 .channel_mode
= alc662_3ST_2ch_modes
,
19017 .unsol_event
= alc663_mode6_unsol_event
,
19018 .setup
= alc663_mode6_setup
,
19019 .init_hook
= alc663_mode6_inithook
,
19021 [ALC663_ASUS_MODE7
] = {
19022 .mixers
= { alc663_mode7_mixer
},
19023 .cap_mixer
= alc662_auto_capture_mixer
,
19024 .init_verbs
= { alc662_init_verbs
,
19025 alc663_mode7_init_verbs
},
19026 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
19028 .dac_nids
= alc662_dac_nids
,
19029 .dig_out_nid
= ALC662_DIGOUT_NID
,
19030 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
19031 .channel_mode
= alc662_3ST_2ch_modes
,
19032 .unsol_event
= alc663_mode7_unsol_event
,
19033 .setup
= alc663_mode7_setup
,
19034 .init_hook
= alc663_mode7_inithook
,
19036 [ALC663_ASUS_MODE8
] = {
19037 .mixers
= { alc663_mode8_mixer
},
19038 .cap_mixer
= alc662_auto_capture_mixer
,
19039 .init_verbs
= { alc662_init_verbs
,
19040 alc663_mode8_init_verbs
},
19041 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
19043 .dac_nids
= alc662_dac_nids
,
19044 .dig_out_nid
= ALC662_DIGOUT_NID
,
19045 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
19046 .channel_mode
= alc662_3ST_2ch_modes
,
19047 .unsol_event
= alc663_mode8_unsol_event
,
19048 .setup
= alc663_mode8_setup
,
19049 .init_hook
= alc663_mode8_inithook
,
19052 .mixers
= { alc663_m51va_mixer
},
19053 .cap_mixer
= alc272_auto_capture_mixer
,
19054 .init_verbs
= { alc662_init_verbs
, alc272_dell_init_verbs
},
19055 .num_dacs
= ARRAY_SIZE(alc272_dac_nids
),
19056 .dac_nids
= alc662_dac_nids
,
19057 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
19058 .adc_nids
= alc272_adc_nids
,
19059 .num_adc_nids
= ARRAY_SIZE(alc272_adc_nids
),
19060 .capsrc_nids
= alc272_capsrc_nids
,
19061 .channel_mode
= alc662_3ST_2ch_modes
,
19062 .unsol_event
= alc663_m51va_unsol_event
,
19063 .setup
= alc663_m51va_setup
,
19064 .init_hook
= alc663_m51va_inithook
,
19066 [ALC272_DELL_ZM1
] = {
19067 .mixers
= { alc663_m51va_mixer
},
19068 .cap_mixer
= alc662_auto_capture_mixer
,
19069 .init_verbs
= { alc662_init_verbs
, alc272_dell_zm1_init_verbs
},
19070 .num_dacs
= ARRAY_SIZE(alc272_dac_nids
),
19071 .dac_nids
= alc662_dac_nids
,
19072 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
19073 .adc_nids
= alc662_adc_nids
,
19075 .capsrc_nids
= alc662_capsrc_nids
,
19076 .channel_mode
= alc662_3ST_2ch_modes
,
19077 .unsol_event
= alc663_m51va_unsol_event
,
19078 .setup
= alc663_m51va_setup
,
19079 .init_hook
= alc663_m51va_inithook
,
19081 [ALC272_SAMSUNG_NC10
] = {
19082 .mixers
= { alc272_nc10_mixer
},
19083 .init_verbs
= { alc662_init_verbs
,
19084 alc663_21jd_amic_init_verbs
},
19085 .num_dacs
= ARRAY_SIZE(alc272_dac_nids
),
19086 .dac_nids
= alc272_dac_nids
,
19087 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
19088 .channel_mode
= alc662_3ST_2ch_modes
,
19089 /*.input_mux = &alc272_nc10_capture_source,*/
19090 .unsol_event
= alc663_mode4_unsol_event
,
19091 .setup
= alc663_mode4_setup
,
19092 .init_hook
= alc663_mode4_inithook
,
19098 * BIOS auto configuration
19101 /* convert from MIX nid to DAC */
19102 static inline hda_nid_t
alc662_mix_to_dac(hda_nid_t nid
)
19106 else if (nid
>= 0x0c && nid
<= 0x0e)
19107 return nid
- 0x0c + 0x02;
19108 else if (nid
== 0x26) /* ALC887-VD has this DAC too */
19114 /* get MIX nid connected to the given pin targeted to DAC */
19115 static hda_nid_t
alc662_dac_to_mix(struct hda_codec
*codec
, hda_nid_t pin
,
19121 num
= snd_hda_get_connections(codec
, pin
, mix
, ARRAY_SIZE(mix
));
19122 for (i
= 0; i
< num
; i
++) {
19123 if (alc662_mix_to_dac(mix
[i
]) == dac
)
19129 /* look for an empty DAC slot */
19130 static hda_nid_t
alc662_look_for_dac(struct hda_codec
*codec
, hda_nid_t pin
)
19132 struct alc_spec
*spec
= codec
->spec
;
19136 num
= snd_hda_get_connections(codec
, pin
, srcs
, ARRAY_SIZE(srcs
));
19139 for (i
= 0; i
< num
; i
++) {
19140 hda_nid_t nid
= alc662_mix_to_dac(srcs
[i
]);
19143 for (j
= 0; j
< spec
->multiout
.num_dacs
; j
++)
19144 if (spec
->multiout
.dac_nids
[j
] == nid
)
19146 if (j
>= spec
->multiout
.num_dacs
)
19152 /* fill in the dac_nids table from the parsed pin configuration */
19153 static int alc662_auto_fill_dac_nids(struct hda_codec
*codec
,
19154 const struct auto_pin_cfg
*cfg
)
19156 struct alc_spec
*spec
= codec
->spec
;
19160 spec
->multiout
.dac_nids
= spec
->private_dac_nids
;
19161 for (i
= 0; i
< cfg
->line_outs
; i
++) {
19162 dac
= alc662_look_for_dac(codec
, cfg
->line_out_pins
[i
]);
19165 spec
->multiout
.dac_nids
[spec
->multiout
.num_dacs
++] = dac
;
19170 static inline int __alc662_add_vol_ctl(struct alc_spec
*spec
, const char *pfx
,
19171 hda_nid_t nid
, int idx
, unsigned int chs
)
19173 return __add_pb_vol_ctrl(spec
, ALC_CTL_WIDGET_VOL
, pfx
, idx
,
19174 HDA_COMPOSE_AMP_VAL(nid
, chs
, 0, HDA_OUTPUT
));
19177 static inline int __alc662_add_sw_ctl(struct alc_spec
*spec
, const char *pfx
,
19178 hda_nid_t nid
, int idx
, unsigned int chs
)
19180 return __add_pb_sw_ctrl(spec
, ALC_CTL_WIDGET_MUTE
, pfx
, idx
,
19181 HDA_COMPOSE_AMP_VAL(nid
, chs
, 0, HDA_INPUT
));
19184 #define alc662_add_vol_ctl(spec, pfx, nid, chs) \
19185 __alc662_add_vol_ctl(spec, pfx, nid, 0, chs)
19186 #define alc662_add_sw_ctl(spec, pfx, nid, chs) \
19187 __alc662_add_sw_ctl(spec, pfx, nid, 0, chs)
19188 #define alc662_add_stereo_vol(spec, pfx, nid) \
19189 alc662_add_vol_ctl(spec, pfx, nid, 3)
19190 #define alc662_add_stereo_sw(spec, pfx, nid) \
19191 alc662_add_sw_ctl(spec, pfx, nid, 3)
19193 /* add playback controls from the parsed DAC table */
19194 static int alc662_auto_create_multi_out_ctls(struct hda_codec
*codec
,
19195 const struct auto_pin_cfg
*cfg
)
19197 struct alc_spec
*spec
= codec
->spec
;
19198 static const char * const chname
[4] = {
19199 "Front", "Surround", NULL
/*CLFE*/, "Side"
19201 const char *pfx
= alc_get_line_out_pfx(cfg
, true);
19202 hda_nid_t nid
, mix
;
19205 for (i
= 0; i
< cfg
->line_outs
; i
++) {
19206 nid
= spec
->multiout
.dac_nids
[i
];
19209 mix
= alc662_dac_to_mix(codec
, cfg
->line_out_pins
[i
], nid
);
19212 if (!pfx
&& i
== 2) {
19214 err
= alc662_add_vol_ctl(spec
, "Center", nid
, 1);
19217 err
= alc662_add_vol_ctl(spec
, "LFE", nid
, 2);
19220 err
= alc662_add_sw_ctl(spec
, "Center", mix
, 1);
19223 err
= alc662_add_sw_ctl(spec
, "LFE", mix
, 2);
19227 const char *name
= pfx
;
19233 err
= __alc662_add_vol_ctl(spec
, name
, nid
, index
, 3);
19236 err
= __alc662_add_sw_ctl(spec
, name
, mix
, index
, 3);
19244 /* add playback controls for speaker and HP outputs */
19245 /* return DAC nid if any new DAC is assigned */
19246 static int alc662_auto_create_extra_out(struct hda_codec
*codec
, hda_nid_t pin
,
19249 struct alc_spec
*spec
= codec
->spec
;
19250 hda_nid_t nid
, mix
;
19255 nid
= alc662_look_for_dac(codec
, pin
);
19257 /* the corresponding DAC is already occupied */
19258 if (!(get_wcaps(codec
, pin
) & AC_WCAP_OUT_AMP
))
19259 return 0; /* no way */
19260 /* create a switch only */
19261 return add_pb_sw_ctrl(spec
, ALC_CTL_WIDGET_MUTE
, pfx
,
19262 HDA_COMPOSE_AMP_VAL(pin
, 3, 0, HDA_OUTPUT
));
19265 mix
= alc662_dac_to_mix(codec
, pin
, nid
);
19268 err
= alc662_add_vol_ctl(spec
, pfx
, nid
, 3);
19271 err
= alc662_add_sw_ctl(spec
, pfx
, mix
, 3);
19277 /* create playback/capture controls for input pins */
19278 #define alc662_auto_create_input_ctls \
19279 alc882_auto_create_input_ctls
19281 static void alc662_auto_set_output_and_unmute(struct hda_codec
*codec
,
19282 hda_nid_t nid
, int pin_type
,
19286 hda_nid_t srcs
[HDA_MAX_CONNECTIONS
];
19288 alc_set_pin_output(codec
, nid
, pin_type
);
19289 /* need the manual connection? */
19290 num
= snd_hda_get_connections(codec
, nid
, srcs
, ARRAY_SIZE(srcs
));
19293 for (i
= 0; i
< num
; i
++) {
19294 if (alc662_mix_to_dac(srcs
[i
]) != dac
)
19296 snd_hda_codec_write(codec
, nid
, 0, AC_VERB_SET_CONNECT_SEL
, i
);
19301 static void alc662_auto_init_multi_out(struct hda_codec
*codec
)
19303 struct alc_spec
*spec
= codec
->spec
;
19304 int pin_type
= get_pin_type(spec
->autocfg
.line_out_type
);
19307 for (i
= 0; i
<= HDA_SIDE
; i
++) {
19308 hda_nid_t nid
= spec
->autocfg
.line_out_pins
[i
];
19310 alc662_auto_set_output_and_unmute(codec
, nid
, pin_type
,
19311 spec
->multiout
.dac_nids
[i
]);
19315 static void alc662_auto_init_hp_out(struct hda_codec
*codec
)
19317 struct alc_spec
*spec
= codec
->spec
;
19320 pin
= spec
->autocfg
.hp_pins
[0];
19322 alc662_auto_set_output_and_unmute(codec
, pin
, PIN_HP
,
19323 spec
->multiout
.hp_nid
);
19324 pin
= spec
->autocfg
.speaker_pins
[0];
19326 alc662_auto_set_output_and_unmute(codec
, pin
, PIN_OUT
,
19327 spec
->multiout
.extra_out_nid
[0]);
19330 #define ALC662_PIN_CD_NID ALC880_PIN_CD_NID
19332 static void alc662_auto_init_analog_input(struct hda_codec
*codec
)
19334 struct alc_spec
*spec
= codec
->spec
;
19335 struct auto_pin_cfg
*cfg
= &spec
->autocfg
;
19338 for (i
= 0; i
< cfg
->num_inputs
; i
++) {
19339 hda_nid_t nid
= cfg
->inputs
[i
].pin
;
19340 if (alc_is_input_pin(codec
, nid
)) {
19341 alc_set_input_pin(codec
, nid
, cfg
->inputs
[i
].type
);
19342 if (nid
!= ALC662_PIN_CD_NID
&&
19343 (get_wcaps(codec
, nid
) & AC_WCAP_OUT_AMP
))
19344 snd_hda_codec_write(codec
, nid
, 0,
19345 AC_VERB_SET_AMP_GAIN_MUTE
,
19351 #define alc662_auto_init_input_src alc882_auto_init_input_src
19353 static int alc662_parse_auto_config(struct hda_codec
*codec
)
19355 struct alc_spec
*spec
= codec
->spec
;
19357 static hda_nid_t alc662_ignore
[] = { 0x1d, 0 };
19359 err
= snd_hda_parse_pin_def_config(codec
, &spec
->autocfg
,
19363 if (!spec
->autocfg
.line_outs
)
19364 return 0; /* can't find valid BIOS pin config */
19366 err
= alc662_auto_fill_dac_nids(codec
, &spec
->autocfg
);
19369 err
= alc662_auto_create_multi_out_ctls(codec
, &spec
->autocfg
);
19372 err
= alc662_auto_create_extra_out(codec
,
19373 spec
->autocfg
.speaker_pins
[0],
19378 spec
->multiout
.extra_out_nid
[0] = err
;
19379 err
= alc662_auto_create_extra_out(codec
, spec
->autocfg
.hp_pins
[0],
19384 spec
->multiout
.hp_nid
= err
;
19385 err
= alc662_auto_create_input_ctls(codec
, &spec
->autocfg
);
19389 spec
->multiout
.max_channels
= spec
->multiout
.num_dacs
* 2;
19391 alc_auto_parse_digital(codec
);
19393 if (spec
->kctls
.list
)
19394 add_mixer(spec
, spec
->kctls
.list
);
19396 spec
->num_mux_defs
= 1;
19397 spec
->input_mux
= &spec
->private_imux
[0];
19399 add_verb(spec
, alc662_init_verbs
);
19400 if (codec
->vendor_id
== 0x10ec0272 || codec
->vendor_id
== 0x10ec0663 ||
19401 codec
->vendor_id
== 0x10ec0665 || codec
->vendor_id
== 0x10ec0670)
19402 add_verb(spec
, alc663_init_verbs
);
19404 if (codec
->vendor_id
== 0x10ec0272)
19405 add_verb(spec
, alc272_init_verbs
);
19407 err
= alc_auto_add_mic_boost(codec
);
19411 if (codec
->vendor_id
== 0x10ec0272 || codec
->vendor_id
== 0x10ec0663 ||
19412 codec
->vendor_id
== 0x10ec0665 || codec
->vendor_id
== 0x10ec0670)
19413 alc_ssid_check(codec
, 0x15, 0x1b, 0x14, 0x21);
19415 alc_ssid_check(codec
, 0x15, 0x1b, 0x14, 0);
19420 /* additional initialization for auto-configuration model */
19421 static void alc662_auto_init(struct hda_codec
*codec
)
19423 struct alc_spec
*spec
= codec
->spec
;
19424 alc662_auto_init_multi_out(codec
);
19425 alc662_auto_init_hp_out(codec
);
19426 alc662_auto_init_analog_input(codec
);
19427 alc662_auto_init_input_src(codec
);
19428 alc_auto_init_digital(codec
);
19429 if (spec
->unsol_event
)
19430 alc_inithook(codec
);
19433 static void alc272_fixup_mario(struct hda_codec
*codec
,
19434 const struct alc_fixup
*fix
, int action
)
19436 if (action
!= ALC_FIXUP_ACT_PROBE
)
19438 if (snd_hda_override_amp_caps(codec
, 0x2, HDA_OUTPUT
,
19439 (0x3b << AC_AMPCAP_OFFSET_SHIFT
) |
19440 (0x3b << AC_AMPCAP_NUM_STEPS_SHIFT
) |
19441 (0x03 << AC_AMPCAP_STEP_SIZE_SHIFT
) |
19442 (0 << AC_AMPCAP_MUTE_SHIFT
)))
19443 printk(KERN_WARNING
19444 "hda_codec: failed to override amp caps for NID 0x2\n");
19448 ALC662_FIXUP_ASPIRE
,
19449 ALC662_FIXUP_IDEAPAD
,
19450 ALC272_FIXUP_MARIO
,
19451 ALC662_FIXUP_CZC_P10T
,
19454 static const struct alc_fixup alc662_fixups
[] = {
19455 [ALC662_FIXUP_ASPIRE
] = {
19456 .type
= ALC_FIXUP_PINS
,
19457 .v
.pins
= (const struct alc_pincfg
[]) {
19458 { 0x15, 0x99130112 }, /* subwoofer */
19462 [ALC662_FIXUP_IDEAPAD
] = {
19463 .type
= ALC_FIXUP_PINS
,
19464 .v
.pins
= (const struct alc_pincfg
[]) {
19465 { 0x17, 0x99130112 }, /* subwoofer */
19469 [ALC272_FIXUP_MARIO
] = {
19470 .type
= ALC_FIXUP_FUNC
,
19471 .v
.func
= alc272_fixup_mario
,
19473 [ALC662_FIXUP_CZC_P10T
] = {
19474 .type
= ALC_FIXUP_VERBS
,
19475 .v
.verbs
= (const struct hda_verb
[]) {
19476 {0x14, AC_VERB_SET_EAPD_BTLENABLE
, 0},
19482 static struct snd_pci_quirk alc662_fixup_tbl
[] = {
19483 SND_PCI_QUIRK(0x1025, 0x0308, "Acer Aspire 8942G", ALC662_FIXUP_ASPIRE
),
19484 SND_PCI_QUIRK(0x1025, 0x038b, "Acer Aspire 8943G", ALC662_FIXUP_ASPIRE
),
19485 SND_PCI_QUIRK(0x144d, 0xc051, "Samsung R720", ALC662_FIXUP_IDEAPAD
),
19486 SND_PCI_QUIRK(0x17aa, 0x38af, "Lenovo Ideapad Y550P", ALC662_FIXUP_IDEAPAD
),
19487 SND_PCI_QUIRK(0x17aa, 0x3a0d, "Lenovo Ideapad Y550", ALC662_FIXUP_IDEAPAD
),
19488 SND_PCI_QUIRK(0x1b35, 0x2206, "CZC P10T", ALC662_FIXUP_CZC_P10T
),
19492 static const struct alc_model_fixup alc662_fixup_models
[] = {
19493 {.id
= ALC272_FIXUP_MARIO
, .name
= "mario"},
19498 static int patch_alc662(struct hda_codec
*codec
)
19500 struct alc_spec
*spec
;
19501 int err
, board_config
;
19504 spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
19508 codec
->spec
= spec
;
19510 alc_auto_parse_customize_define(codec
);
19512 alc_fix_pll_init(codec
, 0x20, 0x04, 15);
19514 coef
= alc_read_coef_idx(codec
, 0);
19515 if (coef
== 0x8020 || coef
== 0x8011)
19516 alc_codec_rename(codec
, "ALC661");
19517 else if (coef
& (1 << 14) &&
19518 codec
->bus
->pci
->subsystem_vendor
== 0x1025 &&
19519 spec
->cdefine
.platform_type
== 1)
19520 alc_codec_rename(codec
, "ALC272X");
19521 else if (coef
== 0x4011)
19522 alc_codec_rename(codec
, "ALC656");
19524 board_config
= snd_hda_check_board_config(codec
, ALC662_MODEL_LAST
,
19527 if (board_config
< 0) {
19528 printk(KERN_INFO
"hda_codec: %s: BIOS auto-probing.\n",
19530 board_config
= ALC662_AUTO
;
19533 if (board_config
== ALC662_AUTO
) {
19534 alc_pick_fixup(codec
, alc662_fixup_models
,
19535 alc662_fixup_tbl
, alc662_fixups
);
19536 alc_apply_fixup(codec
, ALC_FIXUP_ACT_PRE_PROBE
);
19537 /* automatic parse from the BIOS config */
19538 err
= alc662_parse_auto_config(codec
);
19544 "hda_codec: Cannot set up configuration "
19545 "from BIOS. Using base mode...\n");
19546 board_config
= ALC662_3ST_2ch_DIG
;
19550 if (has_cdefine_beep(codec
)) {
19551 err
= snd_hda_attach_beep_device(codec
, 0x1);
19558 if (board_config
!= ALC662_AUTO
)
19559 setup_preset(codec
, &alc662_presets
[board_config
]);
19561 spec
->stream_analog_playback
= &alc662_pcm_analog_playback
;
19562 spec
->stream_analog_capture
= &alc662_pcm_analog_capture
;
19564 spec
->stream_digital_playback
= &alc662_pcm_digital_playback
;
19565 spec
->stream_digital_capture
= &alc662_pcm_digital_capture
;
19567 if (!spec
->adc_nids
) {
19568 spec
->adc_nids
= alc662_adc_nids
;
19569 spec
->num_adc_nids
= ARRAY_SIZE(alc662_adc_nids
);
19571 if (!spec
->capsrc_nids
)
19572 spec
->capsrc_nids
= alc662_capsrc_nids
;
19574 if (!spec
->cap_mixer
)
19575 set_capture_mixer(codec
);
19577 if (has_cdefine_beep(codec
)) {
19578 switch (codec
->vendor_id
) {
19580 set_beep_amp(spec
, 0x0b, 0x05, HDA_INPUT
);
19585 set_beep_amp(spec
, 0x0b, 0x04, HDA_INPUT
);
19588 set_beep_amp(spec
, 0x0b, 0x03, HDA_INPUT
);
19592 spec
->vmaster_nid
= 0x02;
19594 alc_apply_fixup(codec
, ALC_FIXUP_ACT_PROBE
);
19596 codec
->patch_ops
= alc_patch_ops
;
19597 if (board_config
== ALC662_AUTO
)
19598 spec
->init_hook
= alc662_auto_init
;
19600 alc_init_jacks(codec
);
19602 #ifdef CONFIG_SND_HDA_POWER_SAVE
19603 if (!spec
->loopback
.amplist
)
19604 spec
->loopback
.amplist
= alc662_loopbacks
;
19610 static int patch_alc888(struct hda_codec
*codec
)
19612 if ((alc_read_coef_idx(codec
, 0) & 0x00f0)==0x0030){
19613 kfree(codec
->chip_name
);
19614 if (codec
->vendor_id
== 0x10ec0887)
19615 codec
->chip_name
= kstrdup("ALC887-VD", GFP_KERNEL
);
19617 codec
->chip_name
= kstrdup("ALC888-VD", GFP_KERNEL
);
19618 if (!codec
->chip_name
) {
19622 return patch_alc662(codec
);
19624 return patch_alc882(codec
);
19630 #define ALC680_DIGIN_NID ALC880_DIGIN_NID
19631 #define ALC680_DIGOUT_NID ALC880_DIGOUT_NID
19632 #define alc680_modes alc260_modes
19634 static hda_nid_t alc680_dac_nids
[3] = {
19635 /* Lout1, Lout2, hp */
19639 static hda_nid_t alc680_adc_nids
[3] = {
19641 /* DMIC, MIC, Line-in*/
19646 * Analog capture ADC cgange
19648 static void alc680_rec_autoswitch(struct hda_codec
*codec
)
19650 struct alc_spec
*spec
= codec
->spec
;
19651 struct auto_pin_cfg
*cfg
= &spec
->autocfg
;
19653 int type_found
= AUTO_PIN_LAST
;
19657 for (i
= 0; i
< cfg
->num_inputs
; i
++) {
19658 nid
= cfg
->inputs
[i
].pin
;
19659 if (!(snd_hda_query_pin_caps(codec
, nid
) &
19660 AC_PINCAP_PRES_DETECT
))
19662 if (snd_hda_jack_detect(codec
, nid
)) {
19663 if (cfg
->inputs
[i
].type
< type_found
) {
19664 type_found
= cfg
->inputs
[i
].type
;
19672 snd_hda_get_connections(codec
, pin_found
, &nid
, 1);
19674 if (nid
!= spec
->cur_adc
)
19675 __snd_hda_codec_cleanup_stream(codec
, spec
->cur_adc
, 1);
19676 spec
->cur_adc
= nid
;
19677 snd_hda_codec_setup_stream(codec
, nid
, spec
->cur_adc_stream_tag
, 0,
19678 spec
->cur_adc_format
);
19681 static int alc680_capture_pcm_prepare(struct hda_pcm_stream
*hinfo
,
19682 struct hda_codec
*codec
,
19683 unsigned int stream_tag
,
19684 unsigned int format
,
19685 struct snd_pcm_substream
*substream
)
19687 struct alc_spec
*spec
= codec
->spec
;
19689 spec
->cur_adc
= 0x07;
19690 spec
->cur_adc_stream_tag
= stream_tag
;
19691 spec
->cur_adc_format
= format
;
19693 alc680_rec_autoswitch(codec
);
19697 static int alc680_capture_pcm_cleanup(struct hda_pcm_stream
*hinfo
,
19698 struct hda_codec
*codec
,
19699 struct snd_pcm_substream
*substream
)
19701 snd_hda_codec_cleanup_stream(codec
, 0x07);
19702 snd_hda_codec_cleanup_stream(codec
, 0x08);
19703 snd_hda_codec_cleanup_stream(codec
, 0x09);
19707 static struct hda_pcm_stream alc680_pcm_analog_auto_capture
= {
19708 .substreams
= 1, /* can be overridden */
19711 /* NID is set in alc_build_pcms */
19713 .prepare
= alc680_capture_pcm_prepare
,
19714 .cleanup
= alc680_capture_pcm_cleanup
19718 static struct snd_kcontrol_new alc680_base_mixer
[] = {
19719 /* output mixer control */
19720 HDA_CODEC_VOLUME("Front Playback Volume", 0x2, 0x0, HDA_OUTPUT
),
19721 HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
19722 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x4, 0x0, HDA_OUTPUT
),
19723 HDA_CODEC_MUTE("Headphone Playback Switch", 0x16, 0x0, HDA_OUTPUT
),
19724 HDA_CODEC_VOLUME("Internal Mic Boost Volume", 0x12, 0, HDA_INPUT
),
19725 HDA_CODEC_VOLUME("Mic Boost Volume", 0x18, 0, HDA_INPUT
),
19726 HDA_CODEC_VOLUME("Line In Boost Volume", 0x19, 0, HDA_INPUT
),
19730 static struct hda_bind_ctls alc680_bind_cap_vol
= {
19731 .ops
= &snd_hda_bind_vol
,
19733 HDA_COMPOSE_AMP_VAL(0x07, 3, 0, HDA_INPUT
),
19734 HDA_COMPOSE_AMP_VAL(0x08, 3, 0, HDA_INPUT
),
19735 HDA_COMPOSE_AMP_VAL(0x09, 3, 0, HDA_INPUT
),
19740 static struct hda_bind_ctls alc680_bind_cap_switch
= {
19741 .ops
= &snd_hda_bind_sw
,
19743 HDA_COMPOSE_AMP_VAL(0x07, 3, 0, HDA_INPUT
),
19744 HDA_COMPOSE_AMP_VAL(0x08, 3, 0, HDA_INPUT
),
19745 HDA_COMPOSE_AMP_VAL(0x09, 3, 0, HDA_INPUT
),
19750 static struct snd_kcontrol_new alc680_master_capture_mixer
[] = {
19751 HDA_BIND_VOL("Capture Volume", &alc680_bind_cap_vol
),
19752 HDA_BIND_SW("Capture Switch", &alc680_bind_cap_switch
),
19757 * generic initialization of ADC, input mixers and output mixers
19759 static struct hda_verb alc680_init_verbs
[] = {
19760 {0x02, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
19761 {0x03, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
19762 {0x04, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
19764 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
19765 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
19766 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
19767 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
19768 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
19769 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
19771 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
19772 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
19773 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
19774 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
19775 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
19777 {0x16, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
19778 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_MIC_EVENT
| AC_USRSP_EN
},
19779 {0x19, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_MIC_EVENT
| AC_USRSP_EN
},
19784 /* toggle speaker-output according to the hp-jack state */
19785 static void alc680_base_setup(struct hda_codec
*codec
)
19787 struct alc_spec
*spec
= codec
->spec
;
19789 spec
->autocfg
.hp_pins
[0] = 0x16;
19790 spec
->autocfg
.speaker_pins
[0] = 0x14;
19791 spec
->autocfg
.speaker_pins
[1] = 0x15;
19792 spec
->autocfg
.num_inputs
= 2;
19793 spec
->autocfg
.inputs
[0].pin
= 0x18;
19794 spec
->autocfg
.inputs
[0].type
= AUTO_PIN_MIC
;
19795 spec
->autocfg
.inputs
[1].pin
= 0x19;
19796 spec
->autocfg
.inputs
[1].type
= AUTO_PIN_LINE_IN
;
19799 static void alc680_unsol_event(struct hda_codec
*codec
,
19802 if ((res
>> 26) == ALC880_HP_EVENT
)
19803 alc_automute_amp(codec
);
19804 if ((res
>> 26) == ALC880_MIC_EVENT
)
19805 alc680_rec_autoswitch(codec
);
19808 static void alc680_inithook(struct hda_codec
*codec
)
19810 alc_automute_amp(codec
);
19811 alc680_rec_autoswitch(codec
);
19814 /* create input playback/capture controls for the given pin */
19815 static int alc680_new_analog_output(struct alc_spec
*spec
, hda_nid_t nid
,
19816 const char *ctlname
, int idx
)
19834 if (spec
->multiout
.dac_nids
[0] != dac
&&
19835 spec
->multiout
.dac_nids
[1] != dac
) {
19836 err
= add_pb_vol_ctrl(spec
, ALC_CTL_WIDGET_VOL
, ctlname
,
19837 HDA_COMPOSE_AMP_VAL(dac
, 3, idx
,
19842 err
= add_pb_sw_ctrl(spec
, ALC_CTL_WIDGET_MUTE
, ctlname
,
19843 HDA_COMPOSE_AMP_VAL(nid
, 3, idx
, HDA_OUTPUT
));
19847 spec
->multiout
.dac_nids
[spec
->multiout
.num_dacs
++] = dac
;
19853 /* add playback controls from the parsed DAC table */
19854 static int alc680_auto_create_multi_out_ctls(struct alc_spec
*spec
,
19855 const struct auto_pin_cfg
*cfg
)
19860 spec
->multiout
.dac_nids
= spec
->private_dac_nids
;
19862 nid
= cfg
->line_out_pins
[0];
19865 if (cfg
->line_out_type
== AUTO_PIN_SPEAKER_OUT
)
19869 err
= alc680_new_analog_output(spec
, nid
, name
, 0);
19874 nid
= cfg
->speaker_pins
[0];
19876 err
= alc680_new_analog_output(spec
, nid
, "Speaker", 0);
19880 nid
= cfg
->hp_pins
[0];
19882 err
= alc680_new_analog_output(spec
, nid
, "Headphone", 0);
19890 static void alc680_auto_set_output_and_unmute(struct hda_codec
*codec
,
19891 hda_nid_t nid
, int pin_type
)
19893 alc_set_pin_output(codec
, nid
, pin_type
);
19896 static void alc680_auto_init_multi_out(struct hda_codec
*codec
)
19898 struct alc_spec
*spec
= codec
->spec
;
19899 hda_nid_t nid
= spec
->autocfg
.line_out_pins
[0];
19901 int pin_type
= get_pin_type(spec
->autocfg
.line_out_type
);
19902 alc680_auto_set_output_and_unmute(codec
, nid
, pin_type
);
19906 static void alc680_auto_init_hp_out(struct hda_codec
*codec
)
19908 struct alc_spec
*spec
= codec
->spec
;
19911 pin
= spec
->autocfg
.hp_pins
[0];
19913 alc680_auto_set_output_and_unmute(codec
, pin
, PIN_HP
);
19914 pin
= spec
->autocfg
.speaker_pins
[0];
19916 alc680_auto_set_output_and_unmute(codec
, pin
, PIN_OUT
);
19919 /* pcm configuration: identical with ALC880 */
19920 #define alc680_pcm_analog_playback alc880_pcm_analog_playback
19921 #define alc680_pcm_analog_capture alc880_pcm_analog_capture
19922 #define alc680_pcm_analog_alt_capture alc880_pcm_analog_alt_capture
19923 #define alc680_pcm_digital_playback alc880_pcm_digital_playback
19924 #define alc680_pcm_digital_capture alc880_pcm_digital_capture
19927 * BIOS auto configuration
19929 static int alc680_parse_auto_config(struct hda_codec
*codec
)
19931 struct alc_spec
*spec
= codec
->spec
;
19933 static hda_nid_t alc680_ignore
[] = { 0 };
19935 err
= snd_hda_parse_pin_def_config(codec
, &spec
->autocfg
,
19940 if (!spec
->autocfg
.line_outs
) {
19941 if (spec
->autocfg
.dig_outs
|| spec
->autocfg
.dig_in_pin
) {
19942 spec
->multiout
.max_channels
= 2;
19943 spec
->no_analog
= 1;
19946 return 0; /* can't find valid BIOS pin config */
19948 err
= alc680_auto_create_multi_out_ctls(spec
, &spec
->autocfg
);
19952 spec
->multiout
.max_channels
= 2;
19955 /* digital only support output */
19956 alc_auto_parse_digital(codec
);
19957 if (spec
->kctls
.list
)
19958 add_mixer(spec
, spec
->kctls
.list
);
19960 add_verb(spec
, alc680_init_verbs
);
19962 err
= alc_auto_add_mic_boost(codec
);
19969 #define alc680_auto_init_analog_input alc882_auto_init_analog_input
19971 /* init callback for auto-configuration model -- overriding the default init */
19972 static void alc680_auto_init(struct hda_codec
*codec
)
19974 struct alc_spec
*spec
= codec
->spec
;
19975 alc680_auto_init_multi_out(codec
);
19976 alc680_auto_init_hp_out(codec
);
19977 alc680_auto_init_analog_input(codec
);
19978 alc_auto_init_digital(codec
);
19979 if (spec
->unsol_event
)
19980 alc_inithook(codec
);
19984 * configuration and preset
19986 static const char * const alc680_models
[ALC680_MODEL_LAST
] = {
19987 [ALC680_BASE
] = "base",
19988 [ALC680_AUTO
] = "auto",
19991 static struct snd_pci_quirk alc680_cfg_tbl
[] = {
19992 SND_PCI_QUIRK(0x1043, 0x12f3, "ASUS NX90", ALC680_BASE
),
19996 static struct alc_config_preset alc680_presets
[] = {
19998 .mixers
= { alc680_base_mixer
},
19999 .cap_mixer
= alc680_master_capture_mixer
,
20000 .init_verbs
= { alc680_init_verbs
},
20001 .num_dacs
= ARRAY_SIZE(alc680_dac_nids
),
20002 .dac_nids
= alc680_dac_nids
,
20003 .dig_out_nid
= ALC680_DIGOUT_NID
,
20004 .num_channel_mode
= ARRAY_SIZE(alc680_modes
),
20005 .channel_mode
= alc680_modes
,
20006 .unsol_event
= alc680_unsol_event
,
20007 .setup
= alc680_base_setup
,
20008 .init_hook
= alc680_inithook
,
20013 static int patch_alc680(struct hda_codec
*codec
)
20015 struct alc_spec
*spec
;
20019 spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
20023 codec
->spec
= spec
;
20025 board_config
= snd_hda_check_board_config(codec
, ALC680_MODEL_LAST
,
20029 if (board_config
< 0 || board_config
>= ALC680_MODEL_LAST
) {
20030 printk(KERN_INFO
"hda_codec: %s: BIOS auto-probing.\n",
20032 board_config
= ALC680_AUTO
;
20035 if (board_config
== ALC680_AUTO
) {
20036 /* automatic parse from the BIOS config */
20037 err
= alc680_parse_auto_config(codec
);
20043 "hda_codec: Cannot set up configuration "
20044 "from BIOS. Using base mode...\n");
20045 board_config
= ALC680_BASE
;
20049 if (board_config
!= ALC680_AUTO
)
20050 setup_preset(codec
, &alc680_presets
[board_config
]);
20052 spec
->stream_analog_playback
= &alc680_pcm_analog_playback
;
20053 spec
->stream_analog_capture
= &alc680_pcm_analog_auto_capture
;
20054 spec
->stream_digital_playback
= &alc680_pcm_digital_playback
;
20055 spec
->stream_digital_capture
= &alc680_pcm_digital_capture
;
20057 if (!spec
->adc_nids
) {
20058 spec
->adc_nids
= alc680_adc_nids
;
20059 spec
->num_adc_nids
= ARRAY_SIZE(alc680_adc_nids
);
20062 if (!spec
->cap_mixer
)
20063 set_capture_mixer(codec
);
20065 spec
->vmaster_nid
= 0x02;
20067 codec
->patch_ops
= alc_patch_ops
;
20068 if (board_config
== ALC680_AUTO
)
20069 spec
->init_hook
= alc680_auto_init
;
20077 static struct hda_codec_preset snd_hda_preset_realtek
[] = {
20078 { .id
= 0x10ec0260, .name
= "ALC260", .patch
= patch_alc260
},
20079 { .id
= 0x10ec0262, .name
= "ALC262", .patch
= patch_alc262
},
20080 { .id
= 0x10ec0267, .name
= "ALC267", .patch
= patch_alc268
},
20081 { .id
= 0x10ec0268, .name
= "ALC268", .patch
= patch_alc268
},
20082 { .id
= 0x10ec0269, .name
= "ALC269", .patch
= patch_alc269
},
20083 { .id
= 0x10ec0270, .name
= "ALC270", .patch
= patch_alc269
},
20084 { .id
= 0x10ec0272, .name
= "ALC272", .patch
= patch_alc662
},
20085 { .id
= 0x10ec0275, .name
= "ALC275", .patch
= patch_alc269
},
20086 { .id
= 0x10ec0861, .rev
= 0x100340, .name
= "ALC660",
20087 .patch
= patch_alc861
},
20088 { .id
= 0x10ec0660, .name
= "ALC660-VD", .patch
= patch_alc861vd
},
20089 { .id
= 0x10ec0861, .name
= "ALC861", .patch
= patch_alc861
},
20090 { .id
= 0x10ec0862, .name
= "ALC861-VD", .patch
= patch_alc861vd
},
20091 { .id
= 0x10ec0662, .rev
= 0x100002, .name
= "ALC662 rev2",
20092 .patch
= patch_alc882
},
20093 { .id
= 0x10ec0662, .rev
= 0x100101, .name
= "ALC662 rev1",
20094 .patch
= patch_alc662
},
20095 { .id
= 0x10ec0663, .name
= "ALC663", .patch
= patch_alc662
},
20096 { .id
= 0x10ec0665, .name
= "ALC665", .patch
= patch_alc662
},
20097 { .id
= 0x10ec0670, .name
= "ALC670", .patch
= patch_alc662
},
20098 { .id
= 0x10ec0680, .name
= "ALC680", .patch
= patch_alc680
},
20099 { .id
= 0x10ec0880, .name
= "ALC880", .patch
= patch_alc880
},
20100 { .id
= 0x10ec0882, .name
= "ALC882", .patch
= patch_alc882
},
20101 { .id
= 0x10ec0883, .name
= "ALC883", .patch
= patch_alc882
},
20102 { .id
= 0x10ec0885, .rev
= 0x100101, .name
= "ALC889A",
20103 .patch
= patch_alc882
},
20104 { .id
= 0x10ec0885, .rev
= 0x100103, .name
= "ALC889A",
20105 .patch
= patch_alc882
},
20106 { .id
= 0x10ec0885, .name
= "ALC885", .patch
= patch_alc882
},
20107 { .id
= 0x10ec0887, .name
= "ALC887", .patch
= patch_alc888
},
20108 { .id
= 0x10ec0888, .rev
= 0x100101, .name
= "ALC1200",
20109 .patch
= patch_alc882
},
20110 { .id
= 0x10ec0888, .name
= "ALC888", .patch
= patch_alc888
},
20111 { .id
= 0x10ec0889, .name
= "ALC889", .patch
= patch_alc882
},
20112 { .id
= 0x10ec0892, .name
= "ALC892", .patch
= patch_alc662
},
20113 {} /* terminator */
20116 MODULE_ALIAS("snd-hda-codec-id:10ec*");
20118 MODULE_LICENSE("GPL");
20119 MODULE_DESCRIPTION("Realtek HD-audio codec");
20121 static struct hda_codec_preset_list realtek_list
= {
20122 .preset
= snd_hda_preset_realtek
,
20123 .owner
= THIS_MODULE
,
20126 static int __init
patch_realtek_init(void)
20128 return snd_hda_add_codec_preset(&realtek_list
);
20131 static void __exit
patch_realtek_exit(void)
20133 snd_hda_delete_codec_preset(&realtek_list
);
20136 module_init(patch_realtek_init
)
20137 module_exit(patch_realtek_exit
)