2 * Universal Interface for Intel High Definition Audio Codec
4 * HD audio interface patch for ALC 260/880/882 codecs
6 * Copyright (c) 2004 Kailang Yang <kailang@realtek.com.tw>
7 * PeiSen Hou <pshou@realtek.com.tw>
8 * Takashi Iwai <tiwai@suse.de>
9 * Jonathan Woithe <jwoithe@physics.adelaide.edu.au>
11 * This driver is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
16 * This driver is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26 #include <linux/init.h>
27 #include <linux/delay.h>
28 #include <linux/slab.h>
29 #include <linux/pci.h>
30 #include <sound/core.h>
31 #include "hda_codec.h"
32 #include "hda_local.h"
35 #define ALC880_FRONT_EVENT 0x01
36 #define ALC880_DCVOL_EVENT 0x02
37 #define ALC880_HP_EVENT 0x04
38 #define ALC880_MIC_EVENT 0x08
40 /* ALC880 board config type */
64 #ifdef CONFIG_SND_DEBUG
68 ALC880_MODEL_LAST
/* last tag */
82 #ifdef CONFIG_SND_DEBUG
86 ALC260_MODEL_LAST
/* last tag */
96 ALC262_HP_BPC_D7000_WL
,
97 ALC262_HP_BPC_D7000_WF
,
110 ALC262_MODEL_LAST
/* last tag */
120 ALC268_ACER_ASPIRE_ONE
,
123 #ifdef CONFIG_SND_DEBUG
127 ALC268_MODEL_LAST
/* last tag */
141 ALC269_MODEL_LAST
/* last tag */
158 /* ALC861-VD models */
180 ALC662_ASUS_EEEPC_P701
,
181 ALC662_ASUS_EEEPC_EP20
,
223 ALC883_TARGA_2ch_DIG
,
224 ALC883_TARGA_8ch_DIG
,
227 ALC888_ACER_ASPIRE_4930G
,
228 ALC888_ACER_ASPIRE_6530G
,
229 ALC888_ACER_ASPIRE_8930G
,
230 ALC888_ACER_ASPIRE_7730G
,
233 ALC883_MEDION_WIM2160
,
235 ALC883_LENOVO_101E_2ch
,
236 ALC883_LENOVO_NB0763
,
237 ALC888_LENOVO_MS7195_DIG
,
245 ALC883_FUJITSU_PI2515
,
246 ALC888_FUJITSU_XA3530
,
247 ALC883_3ST_6ch_INTEL
,
260 #define GPIO_MASK 0x03
262 /* extra amp-initialization sequence types */
271 struct alc_mic_route
{
273 unsigned char mux_idx
;
274 unsigned char amix_idx
;
277 #define MUX_IDX_UNDEF ((unsigned char)-1)
279 struct alc_customize_define
{
280 unsigned int sku_cfg
;
281 unsigned char port_connectivity
;
282 unsigned char check_sum
;
283 unsigned char customization
;
284 unsigned char external_amp
;
285 unsigned int enable_pcbeep
:1;
286 unsigned int platform_type
:1;
288 unsigned int override
:1;
292 /* codec parameterization */
293 struct snd_kcontrol_new
*mixers
[5]; /* mixer arrays */
294 unsigned int num_mixers
;
295 struct snd_kcontrol_new
*cap_mixer
; /* capture mixer */
296 unsigned int beep_amp
; /* beep amp value, set via set_beep_amp() */
298 const struct hda_verb
*init_verbs
[10]; /* initialization verbs
302 unsigned int num_init_verbs
;
304 char stream_name_analog
[32]; /* analog PCM stream */
305 struct hda_pcm_stream
*stream_analog_playback
;
306 struct hda_pcm_stream
*stream_analog_capture
;
307 struct hda_pcm_stream
*stream_analog_alt_playback
;
308 struct hda_pcm_stream
*stream_analog_alt_capture
;
310 char stream_name_digital
[32]; /* digital PCM stream */
311 struct hda_pcm_stream
*stream_digital_playback
;
312 struct hda_pcm_stream
*stream_digital_capture
;
315 struct hda_multi_out multiout
; /* playback set-up
316 * max_channels, dacs must be set
317 * dig_out_nid and hp_nid are optional
319 hda_nid_t alt_dac_nid
;
320 hda_nid_t slave_dig_outs
[3]; /* optional - for auto-parsing */
324 unsigned int num_adc_nids
;
326 hda_nid_t
*capsrc_nids
;
327 hda_nid_t dig_in_nid
; /* digital-in NID; optional */
330 unsigned int num_mux_defs
;
331 const struct hda_input_mux
*input_mux
;
332 unsigned int cur_mux
[3];
333 struct alc_mic_route ext_mic
;
334 struct alc_mic_route int_mic
;
337 const struct hda_channel_mode
*channel_mode
;
338 int num_channel_mode
;
340 int const_channel_count
;
341 int ext_channel_count
;
343 /* PCM information */
344 struct hda_pcm pcm_rec
[3]; /* used in alc_build_pcms() */
346 /* dynamic controls, init_verbs and input_mux */
347 struct auto_pin_cfg autocfg
;
348 struct alc_customize_define cdefine
;
349 struct snd_array kctls
;
350 struct hda_input_mux private_imux
[3];
351 hda_nid_t private_dac_nids
[AUTO_CFG_MAX_OUTS
];
352 hda_nid_t private_adc_nids
[AUTO_CFG_MAX_OUTS
];
353 hda_nid_t private_capsrc_nids
[AUTO_CFG_MAX_OUTS
];
356 void (*init_hook
)(struct hda_codec
*codec
);
357 void (*unsol_event
)(struct hda_codec
*codec
, unsigned int res
);
358 #ifdef CONFIG_SND_HDA_POWER_SAVE
359 void (*power_hook
)(struct hda_codec
*codec
);
362 /* for pin sensing */
363 unsigned int sense_updated
: 1;
364 unsigned int jack_present
: 1;
365 unsigned int master_sw
: 1;
366 unsigned int auto_mic
:1;
369 unsigned int no_analog
:1; /* digital I/O only */
372 /* for virtual master */
373 hda_nid_t vmaster_nid
;
374 #ifdef CONFIG_SND_HDA_POWER_SAVE
375 struct hda_loopback_check loopback
;
380 unsigned int pll_coef_idx
, pll_coef_bit
;
384 * configuration template - to be copied to the spec instance
386 struct alc_config_preset
{
387 struct snd_kcontrol_new
*mixers
[5]; /* should be identical size
390 struct snd_kcontrol_new
*cap_mixer
; /* capture mixer */
391 const struct hda_verb
*init_verbs
[5];
392 unsigned int num_dacs
;
394 hda_nid_t dig_out_nid
; /* optional */
395 hda_nid_t hp_nid
; /* optional */
396 hda_nid_t
*slave_dig_outs
;
397 unsigned int num_adc_nids
;
399 hda_nid_t
*capsrc_nids
;
400 hda_nid_t dig_in_nid
;
401 unsigned int num_channel_mode
;
402 const struct hda_channel_mode
*channel_mode
;
404 int const_channel_count
;
405 unsigned int num_mux_defs
;
406 const struct hda_input_mux
*input_mux
;
407 void (*unsol_event
)(struct hda_codec
*, unsigned int);
408 void (*setup
)(struct hda_codec
*);
409 void (*init_hook
)(struct hda_codec
*);
410 #ifdef CONFIG_SND_HDA_POWER_SAVE
411 struct hda_amp_list
*loopbacks
;
412 void (*power_hook
)(struct hda_codec
*codec
);
420 static int alc_mux_enum_info(struct snd_kcontrol
*kcontrol
,
421 struct snd_ctl_elem_info
*uinfo
)
423 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
424 struct alc_spec
*spec
= codec
->spec
;
425 unsigned int mux_idx
= snd_ctl_get_ioffidx(kcontrol
, &uinfo
->id
);
426 if (mux_idx
>= spec
->num_mux_defs
)
428 if (!spec
->input_mux
[mux_idx
].num_items
&& mux_idx
> 0)
430 return snd_hda_input_mux_info(&spec
->input_mux
[mux_idx
], uinfo
);
433 static int alc_mux_enum_get(struct snd_kcontrol
*kcontrol
,
434 struct snd_ctl_elem_value
*ucontrol
)
436 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
437 struct alc_spec
*spec
= codec
->spec
;
438 unsigned int adc_idx
= snd_ctl_get_ioffidx(kcontrol
, &ucontrol
->id
);
440 ucontrol
->value
.enumerated
.item
[0] = spec
->cur_mux
[adc_idx
];
444 static int alc_mux_enum_put(struct snd_kcontrol
*kcontrol
,
445 struct snd_ctl_elem_value
*ucontrol
)
447 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
448 struct alc_spec
*spec
= codec
->spec
;
449 const struct hda_input_mux
*imux
;
450 unsigned int adc_idx
= snd_ctl_get_ioffidx(kcontrol
, &ucontrol
->id
);
451 unsigned int mux_idx
;
452 hda_nid_t nid
= spec
->capsrc_nids
?
453 spec
->capsrc_nids
[adc_idx
] : spec
->adc_nids
[adc_idx
];
456 mux_idx
= adc_idx
>= spec
->num_mux_defs
? 0 : adc_idx
;
457 imux
= &spec
->input_mux
[mux_idx
];
458 if (!imux
->num_items
&& mux_idx
> 0)
459 imux
= &spec
->input_mux
[0];
461 type
= get_wcaps_type(get_wcaps(codec
, nid
));
462 if (type
== AC_WID_AUD_MIX
) {
463 /* Matrix-mixer style (e.g. ALC882) */
464 unsigned int *cur_val
= &spec
->cur_mux
[adc_idx
];
467 idx
= ucontrol
->value
.enumerated
.item
[0];
468 if (idx
>= imux
->num_items
)
469 idx
= imux
->num_items
- 1;
472 for (i
= 0; i
< imux
->num_items
; i
++) {
473 unsigned int v
= (i
== idx
) ? 0 : HDA_AMP_MUTE
;
474 snd_hda_codec_amp_stereo(codec
, nid
, HDA_INPUT
,
475 imux
->items
[i
].index
,
481 /* MUX style (e.g. ALC880) */
482 return snd_hda_input_mux_put(codec
, imux
, ucontrol
, nid
,
483 &spec
->cur_mux
[adc_idx
]);
488 * channel mode setting
490 static int alc_ch_mode_info(struct snd_kcontrol
*kcontrol
,
491 struct snd_ctl_elem_info
*uinfo
)
493 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
494 struct alc_spec
*spec
= codec
->spec
;
495 return snd_hda_ch_mode_info(codec
, uinfo
, spec
->channel_mode
,
496 spec
->num_channel_mode
);
499 static int alc_ch_mode_get(struct snd_kcontrol
*kcontrol
,
500 struct snd_ctl_elem_value
*ucontrol
)
502 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
503 struct alc_spec
*spec
= codec
->spec
;
504 return snd_hda_ch_mode_get(codec
, ucontrol
, spec
->channel_mode
,
505 spec
->num_channel_mode
,
506 spec
->ext_channel_count
);
509 static int alc_ch_mode_put(struct snd_kcontrol
*kcontrol
,
510 struct snd_ctl_elem_value
*ucontrol
)
512 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
513 struct alc_spec
*spec
= codec
->spec
;
514 int err
= snd_hda_ch_mode_put(codec
, ucontrol
, spec
->channel_mode
,
515 spec
->num_channel_mode
,
516 &spec
->ext_channel_count
);
517 if (err
>= 0 && !spec
->const_channel_count
) {
518 spec
->multiout
.max_channels
= spec
->ext_channel_count
;
519 if (spec
->need_dac_fix
)
520 spec
->multiout
.num_dacs
= spec
->multiout
.max_channels
/ 2;
526 * Control the mode of pin widget settings via the mixer. "pc" is used
527 * instead of "%" to avoid consequences of accidently treating the % as
528 * being part of a format specifier. Maximum allowed length of a value is
529 * 63 characters plus NULL terminator.
531 * Note: some retasking pin complexes seem to ignore requests for input
532 * states other than HiZ (eg: PIN_VREFxx) and revert to HiZ if any of these
533 * are requested. Therefore order this list so that this behaviour will not
534 * cause problems when mixer clients move through the enum sequentially.
535 * NIDs 0x0f and 0x10 have been observed to have this behaviour as of
538 static char *alc_pin_mode_names
[] = {
539 "Mic 50pc bias", "Mic 80pc bias",
540 "Line in", "Line out", "Headphone out",
542 static unsigned char alc_pin_mode_values
[] = {
543 PIN_VREF50
, PIN_VREF80
, PIN_IN
, PIN_OUT
, PIN_HP
,
545 /* The control can present all 5 options, or it can limit the options based
546 * in the pin being assumed to be exclusively an input or an output pin. In
547 * addition, "input" pins may or may not process the mic bias option
548 * depending on actual widget capability (NIDs 0x0f and 0x10 don't seem to
549 * accept requests for bias as of chip versions up to March 2006) and/or
550 * wiring in the computer.
552 #define ALC_PIN_DIR_IN 0x00
553 #define ALC_PIN_DIR_OUT 0x01
554 #define ALC_PIN_DIR_INOUT 0x02
555 #define ALC_PIN_DIR_IN_NOMICBIAS 0x03
556 #define ALC_PIN_DIR_INOUT_NOMICBIAS 0x04
558 /* Info about the pin modes supported by the different pin direction modes.
559 * For each direction the minimum and maximum values are given.
561 static signed char alc_pin_mode_dir_info
[5][2] = {
562 { 0, 2 }, /* ALC_PIN_DIR_IN */
563 { 3, 4 }, /* ALC_PIN_DIR_OUT */
564 { 0, 4 }, /* ALC_PIN_DIR_INOUT */
565 { 2, 2 }, /* ALC_PIN_DIR_IN_NOMICBIAS */
566 { 2, 4 }, /* ALC_PIN_DIR_INOUT_NOMICBIAS */
568 #define alc_pin_mode_min(_dir) (alc_pin_mode_dir_info[_dir][0])
569 #define alc_pin_mode_max(_dir) (alc_pin_mode_dir_info[_dir][1])
570 #define alc_pin_mode_n_items(_dir) \
571 (alc_pin_mode_max(_dir)-alc_pin_mode_min(_dir)+1)
573 static int alc_pin_mode_info(struct snd_kcontrol
*kcontrol
,
574 struct snd_ctl_elem_info
*uinfo
)
576 unsigned int item_num
= uinfo
->value
.enumerated
.item
;
577 unsigned char dir
= (kcontrol
->private_value
>> 16) & 0xff;
579 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
581 uinfo
->value
.enumerated
.items
= alc_pin_mode_n_items(dir
);
583 if (item_num
<alc_pin_mode_min(dir
) || item_num
>alc_pin_mode_max(dir
))
584 item_num
= alc_pin_mode_min(dir
);
585 strcpy(uinfo
->value
.enumerated
.name
, alc_pin_mode_names
[item_num
]);
589 static int alc_pin_mode_get(struct snd_kcontrol
*kcontrol
,
590 struct snd_ctl_elem_value
*ucontrol
)
593 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
594 hda_nid_t nid
= kcontrol
->private_value
& 0xffff;
595 unsigned char dir
= (kcontrol
->private_value
>> 16) & 0xff;
596 long *valp
= ucontrol
->value
.integer
.value
;
597 unsigned int pinctl
= snd_hda_codec_read(codec
, nid
, 0,
598 AC_VERB_GET_PIN_WIDGET_CONTROL
,
601 /* Find enumerated value for current pinctl setting */
602 i
= alc_pin_mode_min(dir
);
603 while (i
<= alc_pin_mode_max(dir
) && alc_pin_mode_values
[i
] != pinctl
)
605 *valp
= i
<= alc_pin_mode_max(dir
) ? i
: alc_pin_mode_min(dir
);
609 static int alc_pin_mode_put(struct snd_kcontrol
*kcontrol
,
610 struct snd_ctl_elem_value
*ucontrol
)
613 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
614 hda_nid_t nid
= kcontrol
->private_value
& 0xffff;
615 unsigned char dir
= (kcontrol
->private_value
>> 16) & 0xff;
616 long val
= *ucontrol
->value
.integer
.value
;
617 unsigned int pinctl
= snd_hda_codec_read(codec
, nid
, 0,
618 AC_VERB_GET_PIN_WIDGET_CONTROL
,
621 if (val
< alc_pin_mode_min(dir
) || val
> alc_pin_mode_max(dir
))
622 val
= alc_pin_mode_min(dir
);
624 change
= pinctl
!= alc_pin_mode_values
[val
];
626 /* Set pin mode to that requested */
627 snd_hda_codec_write_cache(codec
, nid
, 0,
628 AC_VERB_SET_PIN_WIDGET_CONTROL
,
629 alc_pin_mode_values
[val
]);
631 /* Also enable the retasking pin's input/output as required
632 * for the requested pin mode. Enum values of 2 or less are
635 * Dynamically switching the input/output buffers probably
636 * reduces noise slightly (particularly on input) so we'll
637 * do it. However, having both input and output buffers
638 * enabled simultaneously doesn't seem to be problematic if
639 * this turns out to be necessary in the future.
642 snd_hda_codec_amp_stereo(codec
, nid
, HDA_OUTPUT
, 0,
643 HDA_AMP_MUTE
, HDA_AMP_MUTE
);
644 snd_hda_codec_amp_stereo(codec
, nid
, HDA_INPUT
, 0,
647 snd_hda_codec_amp_stereo(codec
, nid
, HDA_INPUT
, 0,
648 HDA_AMP_MUTE
, HDA_AMP_MUTE
);
649 snd_hda_codec_amp_stereo(codec
, nid
, HDA_OUTPUT
, 0,
656 #define ALC_PIN_MODE(xname, nid, dir) \
657 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0, \
658 .subdevice = HDA_SUBDEV_NID_FLAG | nid, \
659 .info = alc_pin_mode_info, \
660 .get = alc_pin_mode_get, \
661 .put = alc_pin_mode_put, \
662 .private_value = nid | (dir<<16) }
664 /* A switch control for ALC260 GPIO pins. Multiple GPIOs can be ganged
665 * together using a mask with more than one bit set. This control is
666 * currently used only by the ALC260 test model. At this stage they are not
667 * needed for any "production" models.
669 #ifdef CONFIG_SND_DEBUG
670 #define alc_gpio_data_info snd_ctl_boolean_mono_info
672 static int alc_gpio_data_get(struct snd_kcontrol
*kcontrol
,
673 struct snd_ctl_elem_value
*ucontrol
)
675 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
676 hda_nid_t nid
= kcontrol
->private_value
& 0xffff;
677 unsigned char mask
= (kcontrol
->private_value
>> 16) & 0xff;
678 long *valp
= ucontrol
->value
.integer
.value
;
679 unsigned int val
= snd_hda_codec_read(codec
, nid
, 0,
680 AC_VERB_GET_GPIO_DATA
, 0x00);
682 *valp
= (val
& mask
) != 0;
685 static int alc_gpio_data_put(struct snd_kcontrol
*kcontrol
,
686 struct snd_ctl_elem_value
*ucontrol
)
689 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
690 hda_nid_t nid
= kcontrol
->private_value
& 0xffff;
691 unsigned char mask
= (kcontrol
->private_value
>> 16) & 0xff;
692 long val
= *ucontrol
->value
.integer
.value
;
693 unsigned int gpio_data
= snd_hda_codec_read(codec
, nid
, 0,
694 AC_VERB_GET_GPIO_DATA
,
697 /* Set/unset the masked GPIO bit(s) as needed */
698 change
= (val
== 0 ? 0 : mask
) != (gpio_data
& mask
);
703 snd_hda_codec_write_cache(codec
, nid
, 0,
704 AC_VERB_SET_GPIO_DATA
, gpio_data
);
708 #define ALC_GPIO_DATA_SWITCH(xname, nid, mask) \
709 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0, \
710 .subdevice = HDA_SUBDEV_NID_FLAG | nid, \
711 .info = alc_gpio_data_info, \
712 .get = alc_gpio_data_get, \
713 .put = alc_gpio_data_put, \
714 .private_value = nid | (mask<<16) }
715 #endif /* CONFIG_SND_DEBUG */
717 /* A switch control to allow the enabling of the digital IO pins on the
718 * ALC260. This is incredibly simplistic; the intention of this control is
719 * to provide something in the test model allowing digital outputs to be
720 * identified if present. If models are found which can utilise these
721 * outputs a more complete mixer control can be devised for those models if
724 #ifdef CONFIG_SND_DEBUG
725 #define alc_spdif_ctrl_info snd_ctl_boolean_mono_info
727 static int alc_spdif_ctrl_get(struct snd_kcontrol
*kcontrol
,
728 struct snd_ctl_elem_value
*ucontrol
)
730 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
731 hda_nid_t nid
= kcontrol
->private_value
& 0xffff;
732 unsigned char mask
= (kcontrol
->private_value
>> 16) & 0xff;
733 long *valp
= ucontrol
->value
.integer
.value
;
734 unsigned int val
= snd_hda_codec_read(codec
, nid
, 0,
735 AC_VERB_GET_DIGI_CONVERT_1
, 0x00);
737 *valp
= (val
& mask
) != 0;
740 static int alc_spdif_ctrl_put(struct snd_kcontrol
*kcontrol
,
741 struct snd_ctl_elem_value
*ucontrol
)
744 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
745 hda_nid_t nid
= kcontrol
->private_value
& 0xffff;
746 unsigned char mask
= (kcontrol
->private_value
>> 16) & 0xff;
747 long val
= *ucontrol
->value
.integer
.value
;
748 unsigned int ctrl_data
= snd_hda_codec_read(codec
, nid
, 0,
749 AC_VERB_GET_DIGI_CONVERT_1
,
752 /* Set/unset the masked control bit(s) as needed */
753 change
= (val
== 0 ? 0 : mask
) != (ctrl_data
& mask
);
758 snd_hda_codec_write_cache(codec
, nid
, 0, AC_VERB_SET_DIGI_CONVERT_1
,
763 #define ALC_SPDIF_CTRL_SWITCH(xname, nid, mask) \
764 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0, \
765 .subdevice = HDA_SUBDEV_NID_FLAG | nid, \
766 .info = alc_spdif_ctrl_info, \
767 .get = alc_spdif_ctrl_get, \
768 .put = alc_spdif_ctrl_put, \
769 .private_value = nid | (mask<<16) }
770 #endif /* CONFIG_SND_DEBUG */
772 /* A switch control to allow the enabling EAPD digital outputs on the ALC26x.
773 * Again, this is only used in the ALC26x test models to help identify when
774 * the EAPD line must be asserted for features to work.
776 #ifdef CONFIG_SND_DEBUG
777 #define alc_eapd_ctrl_info snd_ctl_boolean_mono_info
779 static int alc_eapd_ctrl_get(struct snd_kcontrol
*kcontrol
,
780 struct snd_ctl_elem_value
*ucontrol
)
782 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
783 hda_nid_t nid
= kcontrol
->private_value
& 0xffff;
784 unsigned char mask
= (kcontrol
->private_value
>> 16) & 0xff;
785 long *valp
= ucontrol
->value
.integer
.value
;
786 unsigned int val
= snd_hda_codec_read(codec
, nid
, 0,
787 AC_VERB_GET_EAPD_BTLENABLE
, 0x00);
789 *valp
= (val
& mask
) != 0;
793 static int alc_eapd_ctrl_put(struct snd_kcontrol
*kcontrol
,
794 struct snd_ctl_elem_value
*ucontrol
)
797 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
798 hda_nid_t nid
= kcontrol
->private_value
& 0xffff;
799 unsigned char mask
= (kcontrol
->private_value
>> 16) & 0xff;
800 long val
= *ucontrol
->value
.integer
.value
;
801 unsigned int ctrl_data
= snd_hda_codec_read(codec
, nid
, 0,
802 AC_VERB_GET_EAPD_BTLENABLE
,
805 /* Set/unset the masked control bit(s) as needed */
806 change
= (!val
? 0 : mask
) != (ctrl_data
& mask
);
811 snd_hda_codec_write_cache(codec
, nid
, 0, AC_VERB_SET_EAPD_BTLENABLE
,
817 #define ALC_EAPD_CTRL_SWITCH(xname, nid, mask) \
818 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0, \
819 .subdevice = HDA_SUBDEV_NID_FLAG | nid, \
820 .info = alc_eapd_ctrl_info, \
821 .get = alc_eapd_ctrl_get, \
822 .put = alc_eapd_ctrl_put, \
823 .private_value = nid | (mask<<16) }
824 #endif /* CONFIG_SND_DEBUG */
827 * set up the input pin config (depending on the given auto-pin type)
829 static void alc_set_input_pin(struct hda_codec
*codec
, hda_nid_t nid
,
832 unsigned int val
= PIN_IN
;
834 if (auto_pin_type
<= AUTO_PIN_FRONT_MIC
) {
836 pincap
= snd_hda_query_pin_caps(codec
, nid
);
837 pincap
= (pincap
& AC_PINCAP_VREF
) >> AC_PINCAP_VREF_SHIFT
;
838 if (pincap
& AC_PINCAP_VREF_80
)
840 else if (pincap
& AC_PINCAP_VREF_50
)
842 else if (pincap
& AC_PINCAP_VREF_100
)
844 else if (pincap
& AC_PINCAP_VREF_GRD
)
847 snd_hda_codec_write(codec
, nid
, 0, AC_VERB_SET_PIN_WIDGET_CONTROL
, val
);
852 static void add_mixer(struct alc_spec
*spec
, struct snd_kcontrol_new
*mix
)
854 if (snd_BUG_ON(spec
->num_mixers
>= ARRAY_SIZE(spec
->mixers
)))
856 spec
->mixers
[spec
->num_mixers
++] = mix
;
859 static void add_verb(struct alc_spec
*spec
, const struct hda_verb
*verb
)
861 if (snd_BUG_ON(spec
->num_init_verbs
>= ARRAY_SIZE(spec
->init_verbs
)))
863 spec
->init_verbs
[spec
->num_init_verbs
++] = verb
;
867 * set up from the preset table
869 static void setup_preset(struct hda_codec
*codec
,
870 const struct alc_config_preset
*preset
)
872 struct alc_spec
*spec
= codec
->spec
;
875 for (i
= 0; i
< ARRAY_SIZE(preset
->mixers
) && preset
->mixers
[i
]; i
++)
876 add_mixer(spec
, preset
->mixers
[i
]);
877 spec
->cap_mixer
= preset
->cap_mixer
;
878 for (i
= 0; i
< ARRAY_SIZE(preset
->init_verbs
) && preset
->init_verbs
[i
];
880 add_verb(spec
, preset
->init_verbs
[i
]);
882 spec
->channel_mode
= preset
->channel_mode
;
883 spec
->num_channel_mode
= preset
->num_channel_mode
;
884 spec
->need_dac_fix
= preset
->need_dac_fix
;
885 spec
->const_channel_count
= preset
->const_channel_count
;
887 if (preset
->const_channel_count
)
888 spec
->multiout
.max_channels
= preset
->const_channel_count
;
890 spec
->multiout
.max_channels
= spec
->channel_mode
[0].channels
;
891 spec
->ext_channel_count
= spec
->channel_mode
[0].channels
;
893 spec
->multiout
.num_dacs
= preset
->num_dacs
;
894 spec
->multiout
.dac_nids
= preset
->dac_nids
;
895 spec
->multiout
.dig_out_nid
= preset
->dig_out_nid
;
896 spec
->multiout
.slave_dig_outs
= preset
->slave_dig_outs
;
897 spec
->multiout
.hp_nid
= preset
->hp_nid
;
899 spec
->num_mux_defs
= preset
->num_mux_defs
;
900 if (!spec
->num_mux_defs
)
901 spec
->num_mux_defs
= 1;
902 spec
->input_mux
= preset
->input_mux
;
904 spec
->num_adc_nids
= preset
->num_adc_nids
;
905 spec
->adc_nids
= preset
->adc_nids
;
906 spec
->capsrc_nids
= preset
->capsrc_nids
;
907 spec
->dig_in_nid
= preset
->dig_in_nid
;
909 spec
->unsol_event
= preset
->unsol_event
;
910 spec
->init_hook
= preset
->init_hook
;
911 #ifdef CONFIG_SND_HDA_POWER_SAVE
912 spec
->power_hook
= preset
->power_hook
;
913 spec
->loopback
.amplist
= preset
->loopbacks
;
917 preset
->setup(codec
);
920 /* Enable GPIO mask and set output */
921 static struct hda_verb alc_gpio1_init_verbs
[] = {
922 {0x01, AC_VERB_SET_GPIO_MASK
, 0x01},
923 {0x01, AC_VERB_SET_GPIO_DIRECTION
, 0x01},
924 {0x01, AC_VERB_SET_GPIO_DATA
, 0x01},
928 static struct hda_verb alc_gpio2_init_verbs
[] = {
929 {0x01, AC_VERB_SET_GPIO_MASK
, 0x02},
930 {0x01, AC_VERB_SET_GPIO_DIRECTION
, 0x02},
931 {0x01, AC_VERB_SET_GPIO_DATA
, 0x02},
935 static struct hda_verb alc_gpio3_init_verbs
[] = {
936 {0x01, AC_VERB_SET_GPIO_MASK
, 0x03},
937 {0x01, AC_VERB_SET_GPIO_DIRECTION
, 0x03},
938 {0x01, AC_VERB_SET_GPIO_DATA
, 0x03},
943 * Fix hardware PLL issue
944 * On some codecs, the analog PLL gating control must be off while
945 * the default value is 1.
947 static void alc_fix_pll(struct hda_codec
*codec
)
949 struct alc_spec
*spec
= codec
->spec
;
954 snd_hda_codec_write(codec
, spec
->pll_nid
, 0, AC_VERB_SET_COEF_INDEX
,
956 val
= snd_hda_codec_read(codec
, spec
->pll_nid
, 0,
957 AC_VERB_GET_PROC_COEF
, 0);
958 snd_hda_codec_write(codec
, spec
->pll_nid
, 0, AC_VERB_SET_COEF_INDEX
,
960 snd_hda_codec_write(codec
, spec
->pll_nid
, 0, AC_VERB_SET_PROC_COEF
,
961 val
& ~(1 << spec
->pll_coef_bit
));
964 static void alc_fix_pll_init(struct hda_codec
*codec
, hda_nid_t nid
,
965 unsigned int coef_idx
, unsigned int coef_bit
)
967 struct alc_spec
*spec
= codec
->spec
;
969 spec
->pll_coef_idx
= coef_idx
;
970 spec
->pll_coef_bit
= coef_bit
;
974 static void alc_automute_pin(struct hda_codec
*codec
)
976 struct alc_spec
*spec
= codec
->spec
;
977 unsigned int nid
= spec
->autocfg
.hp_pins
[0];
982 spec
->jack_present
= snd_hda_jack_detect(codec
, nid
);
983 for (i
= 0; i
< ARRAY_SIZE(spec
->autocfg
.speaker_pins
); i
++) {
984 nid
= spec
->autocfg
.speaker_pins
[i
];
987 snd_hda_codec_write(codec
, nid
, 0,
988 AC_VERB_SET_PIN_WIDGET_CONTROL
,
989 spec
->jack_present
? 0 : PIN_OUT
);
993 static int get_connection_index(struct hda_codec
*codec
, hda_nid_t mux
,
996 hda_nid_t conn
[HDA_MAX_NUM_INPUTS
];
999 nums
= snd_hda_get_connections(codec
, mux
, conn
, ARRAY_SIZE(conn
));
1000 for (i
= 0; i
< nums
; i
++)
1006 static void alc_mic_automute(struct hda_codec
*codec
)
1008 struct alc_spec
*spec
= codec
->spec
;
1009 struct alc_mic_route
*dead
, *alive
;
1010 unsigned int present
, type
;
1013 if (!spec
->auto_mic
)
1015 if (!spec
->int_mic
.pin
|| !spec
->ext_mic
.pin
)
1017 if (snd_BUG_ON(!spec
->adc_nids
))
1020 cap_nid
= spec
->capsrc_nids
? spec
->capsrc_nids
[0] : spec
->adc_nids
[0];
1022 present
= snd_hda_jack_detect(codec
, spec
->ext_mic
.pin
);
1024 alive
= &spec
->ext_mic
;
1025 dead
= &spec
->int_mic
;
1027 alive
= &spec
->int_mic
;
1028 dead
= &spec
->ext_mic
;
1031 type
= get_wcaps_type(get_wcaps(codec
, cap_nid
));
1032 if (type
== AC_WID_AUD_MIX
) {
1033 /* Matrix-mixer style (e.g. ALC882) */
1034 snd_hda_codec_amp_stereo(codec
, cap_nid
, HDA_INPUT
,
1037 snd_hda_codec_amp_stereo(codec
, cap_nid
, HDA_INPUT
,
1039 HDA_AMP_MUTE
, HDA_AMP_MUTE
);
1041 /* MUX style (e.g. ALC880) */
1042 snd_hda_codec_write_cache(codec
, cap_nid
, 0,
1043 AC_VERB_SET_CONNECT_SEL
,
1047 /* FIXME: analog mixer */
1050 /* unsolicited event for HP jack sensing */
1051 static void alc_sku_unsol_event(struct hda_codec
*codec
, unsigned int res
)
1053 if (codec
->vendor_id
== 0x10ec0880)
1058 case ALC880_HP_EVENT
:
1059 alc_automute_pin(codec
);
1061 case ALC880_MIC_EVENT
:
1062 alc_mic_automute(codec
);
1067 static void alc_inithook(struct hda_codec
*codec
)
1069 alc_automute_pin(codec
);
1070 alc_mic_automute(codec
);
1073 /* additional initialization for ALC888 variants */
1074 static void alc888_coef_init(struct hda_codec
*codec
)
1078 snd_hda_codec_write(codec
, 0x20, 0, AC_VERB_SET_COEF_INDEX
, 0);
1079 tmp
= snd_hda_codec_read(codec
, 0x20, 0, AC_VERB_GET_PROC_COEF
, 0);
1080 snd_hda_codec_write(codec
, 0x20, 0, AC_VERB_SET_COEF_INDEX
, 7);
1081 if ((tmp
& 0xf0) == 0x20)
1083 snd_hda_codec_read(codec
, 0x20, 0,
1084 AC_VERB_SET_PROC_COEF
, 0x830);
1087 snd_hda_codec_read(codec
, 0x20, 0,
1088 AC_VERB_SET_PROC_COEF
, 0x3030);
1091 static void alc889_coef_init(struct hda_codec
*codec
)
1095 snd_hda_codec_write(codec
, 0x20, 0, AC_VERB_SET_COEF_INDEX
, 7);
1096 tmp
= snd_hda_codec_read(codec
, 0x20, 0, AC_VERB_GET_PROC_COEF
, 0);
1097 snd_hda_codec_write(codec
, 0x20, 0, AC_VERB_SET_COEF_INDEX
, 7);
1098 snd_hda_codec_write(codec
, 0x20, 0, AC_VERB_SET_PROC_COEF
, tmp
|0x2010);
1101 /* turn on/off EAPD control (only if available) */
1102 static void set_eapd(struct hda_codec
*codec
, hda_nid_t nid
, int on
)
1104 if (get_wcaps_type(get_wcaps(codec
, nid
)) != AC_WID_PIN
)
1106 if (snd_hda_query_pin_caps(codec
, nid
) & AC_PINCAP_EAPD
)
1107 snd_hda_codec_write(codec
, nid
, 0, AC_VERB_SET_EAPD_BTLENABLE
,
1111 static void alc_auto_init_amp(struct hda_codec
*codec
, int type
)
1116 case ALC_INIT_GPIO1
:
1117 snd_hda_sequence_write(codec
, alc_gpio1_init_verbs
);
1119 case ALC_INIT_GPIO2
:
1120 snd_hda_sequence_write(codec
, alc_gpio2_init_verbs
);
1122 case ALC_INIT_GPIO3
:
1123 snd_hda_sequence_write(codec
, alc_gpio3_init_verbs
);
1125 case ALC_INIT_DEFAULT
:
1126 switch (codec
->vendor_id
) {
1128 set_eapd(codec
, 0x0f, 1);
1129 set_eapd(codec
, 0x10, 1);
1142 set_eapd(codec
, 0x14, 1);
1143 set_eapd(codec
, 0x15, 1);
1146 switch (codec
->vendor_id
) {
1148 snd_hda_codec_write(codec
, 0x1a, 0,
1149 AC_VERB_SET_COEF_INDEX
, 7);
1150 tmp
= snd_hda_codec_read(codec
, 0x1a, 0,
1151 AC_VERB_GET_PROC_COEF
, 0);
1152 snd_hda_codec_write(codec
, 0x1a, 0,
1153 AC_VERB_SET_COEF_INDEX
, 7);
1154 snd_hda_codec_write(codec
, 0x1a, 0,
1155 AC_VERB_SET_PROC_COEF
,
1165 alc889_coef_init(codec
);
1168 alc888_coef_init(codec
);
1170 #if 0 /* XXX: This may cause the silent output on speaker on some machines */
1173 snd_hda_codec_write(codec
, 0x20, 0,
1174 AC_VERB_SET_COEF_INDEX
, 7);
1175 tmp
= snd_hda_codec_read(codec
, 0x20, 0,
1176 AC_VERB_GET_PROC_COEF
, 0);
1177 snd_hda_codec_write(codec
, 0x20, 0,
1178 AC_VERB_SET_COEF_INDEX
, 7);
1179 snd_hda_codec_write(codec
, 0x20, 0,
1180 AC_VERB_SET_PROC_COEF
,
1189 static void alc_init_auto_hp(struct hda_codec
*codec
)
1191 struct alc_spec
*spec
= codec
->spec
;
1193 if (!spec
->autocfg
.hp_pins
[0])
1196 if (!spec
->autocfg
.speaker_pins
[0]) {
1197 if (spec
->autocfg
.line_out_pins
[0] &&
1198 spec
->autocfg
.line_out_type
== AUTO_PIN_SPEAKER_OUT
)
1199 spec
->autocfg
.speaker_pins
[0] =
1200 spec
->autocfg
.line_out_pins
[0];
1205 snd_printdd("realtek: Enable HP auto-muting on NID 0x%x\n",
1206 spec
->autocfg
.hp_pins
[0]);
1207 snd_hda_codec_write_cache(codec
, spec
->autocfg
.hp_pins
[0], 0,
1208 AC_VERB_SET_UNSOLICITED_ENABLE
,
1209 AC_USRSP_EN
| ALC880_HP_EVENT
);
1210 spec
->unsol_event
= alc_sku_unsol_event
;
1213 static void alc_init_auto_mic(struct hda_codec
*codec
)
1215 struct alc_spec
*spec
= codec
->spec
;
1216 struct auto_pin_cfg
*cfg
= &spec
->autocfg
;
1217 hda_nid_t fixed
, ext
;
1220 /* there must be only two mic inputs exclusively */
1221 for (i
= AUTO_PIN_LINE
; i
< AUTO_PIN_LAST
; i
++)
1222 if (cfg
->input_pins
[i
])
1226 for (i
= AUTO_PIN_MIC
; i
<= AUTO_PIN_FRONT_MIC
; i
++) {
1227 hda_nid_t nid
= cfg
->input_pins
[i
];
1228 unsigned int defcfg
;
1231 defcfg
= snd_hda_codec_get_pincfg(codec
, nid
);
1232 switch (get_defcfg_connect(defcfg
)) {
1233 case AC_JACK_PORT_FIXED
:
1235 return; /* already occupied */
1238 case AC_JACK_PORT_COMPLEX
:
1240 return; /* already occupied */
1244 return; /* invalid entry */
1249 if (!(get_wcaps(codec
, ext
) & AC_WCAP_UNSOL_CAP
))
1250 return; /* no unsol support */
1251 snd_printdd("realtek: Enable auto-mic switch on NID 0x%x/0x%x\n",
1253 spec
->ext_mic
.pin
= ext
;
1254 spec
->int_mic
.pin
= fixed
;
1255 spec
->ext_mic
.mux_idx
= MUX_IDX_UNDEF
; /* set later */
1256 spec
->int_mic
.mux_idx
= MUX_IDX_UNDEF
; /* set later */
1258 snd_hda_codec_write_cache(codec
, spec
->ext_mic
.pin
, 0,
1259 AC_VERB_SET_UNSOLICITED_ENABLE
,
1260 AC_USRSP_EN
| ALC880_MIC_EVENT
);
1261 spec
->unsol_event
= alc_sku_unsol_event
;
1264 static int alc_auto_parse_customize_define(struct hda_codec
*codec
)
1266 unsigned int ass
, tmp
, i
;
1268 struct alc_spec
*spec
= codec
->spec
;
1270 ass
= codec
->subsystem_id
& 0xffff;
1271 if (ass
!= codec
->bus
->pci
->subsystem_device
&& (ass
& 1))
1275 if (codec
->vendor_id
== 0x10ec0260)
1277 ass
= snd_hda_codec_get_pincfg(codec
, nid
);
1280 printk(KERN_INFO
"hda_codec: %s: SKU not ready 0x%08x\n",
1281 codec
->chip_name
, ass
);
1287 for (i
= 1; i
< 16; i
++) {
1291 if (((ass
>> 16) & 0xf) != tmp
)
1294 spec
->cdefine
.port_connectivity
= ass
>> 30;
1295 spec
->cdefine
.enable_pcbeep
= (ass
& 0x100000) >> 20;
1296 spec
->cdefine
.check_sum
= (ass
>> 16) & 0xf;
1297 spec
->cdefine
.customization
= ass
>> 8;
1299 spec
->cdefine
.sku_cfg
= ass
;
1300 spec
->cdefine
.external_amp
= (ass
& 0x38) >> 3;
1301 spec
->cdefine
.platform_type
= (ass
& 0x4) >> 2;
1302 spec
->cdefine
.swap
= (ass
& 0x2) >> 1;
1303 spec
->cdefine
.override
= ass
& 0x1;
1305 snd_printd("SKU: Nid=0x%x sku_cfg=0x%08x\n",
1306 nid
, spec
->cdefine
.sku_cfg
);
1307 snd_printd("SKU: port_connectivity=0x%x\n",
1308 spec
->cdefine
.port_connectivity
);
1309 snd_printd("SKU: enable_pcbeep=0x%x\n", spec
->cdefine
.enable_pcbeep
);
1310 snd_printd("SKU: check_sum=0x%08x\n", spec
->cdefine
.check_sum
);
1311 snd_printd("SKU: customization=0x%08x\n", spec
->cdefine
.customization
);
1312 snd_printd("SKU: external_amp=0x%x\n", spec
->cdefine
.external_amp
);
1313 snd_printd("SKU: platform_type=0x%x\n", spec
->cdefine
.platform_type
);
1314 snd_printd("SKU: swap=0x%x\n", spec
->cdefine
.swap
);
1315 snd_printd("SKU: override=0x%x\n", spec
->cdefine
.override
);
1320 /* check subsystem ID and set up device-specific initialization;
1321 * return 1 if initialized, 0 if invalid SSID
1323 /* 32-bit subsystem ID for BIOS loading in HD Audio codec.
1324 * 31 ~ 16 : Manufacture ID
1326 * 7 ~ 0 : Assembly ID
1327 * port-A --> pin 39/41, port-E --> pin 14/15, port-D --> pin 35/36
1329 static int alc_subsystem_id(struct hda_codec
*codec
,
1330 hda_nid_t porta
, hda_nid_t porte
,
1331 hda_nid_t portd
, hda_nid_t porti
)
1333 unsigned int ass
, tmp
, i
;
1335 struct alc_spec
*spec
= codec
->spec
;
1337 ass
= codec
->subsystem_id
& 0xffff;
1338 if ((ass
!= codec
->bus
->pci
->subsystem_device
) && (ass
& 1))
1341 /* invalid SSID, check the special NID pin defcfg instead */
1343 * 31~30 : port connectivity
1346 * 19~16 : Check sum (15:1)
1351 if (codec
->vendor_id
== 0x10ec0260)
1353 ass
= snd_hda_codec_get_pincfg(codec
, nid
);
1354 snd_printd("realtek: No valid SSID, "
1355 "checking pincfg 0x%08x for NID 0x%x\n",
1359 if ((ass
>> 30) != 1) /* no physical connection */
1364 for (i
= 1; i
< 16; i
++) {
1368 if (((ass
>> 16) & 0xf) != tmp
)
1371 snd_printd("realtek: Enabling init ASM_ID=0x%04x CODEC_ID=%08x\n",
1372 ass
& 0xffff, codec
->vendor_id
);
1376 * 2 : 0 --> Desktop, 1 --> Laptop
1377 * 3~5 : External Amplifier control
1380 tmp
= (ass
& 0x38) >> 3; /* external Amp control */
1383 spec
->init_amp
= ALC_INIT_GPIO1
;
1386 spec
->init_amp
= ALC_INIT_GPIO2
;
1389 spec
->init_amp
= ALC_INIT_GPIO3
;
1392 spec
->init_amp
= ALC_INIT_DEFAULT
;
1396 /* is laptop or Desktop and enable the function "Mute internal speaker
1397 * when the external headphone out jack is plugged"
1399 if (!(ass
& 0x8000))
1402 * 10~8 : Jack location
1403 * 12~11: Headphone out -> 00: PortA, 01: PortE, 02: PortD, 03: Resvered
1405 * 15 : 1 --> enable the function "Mute internal speaker
1406 * when the external headphone out jack is plugged"
1408 if (!spec
->autocfg
.hp_pins
[0]) {
1410 tmp
= (ass
>> 11) & 0x3; /* HP to chassis */
1421 for (i
= 0; i
< spec
->autocfg
.line_outs
; i
++)
1422 if (spec
->autocfg
.line_out_pins
[i
] == nid
)
1424 spec
->autocfg
.hp_pins
[0] = nid
;
1427 alc_init_auto_hp(codec
);
1428 alc_init_auto_mic(codec
);
1432 static void alc_ssid_check(struct hda_codec
*codec
,
1433 hda_nid_t porta
, hda_nid_t porte
,
1434 hda_nid_t portd
, hda_nid_t porti
)
1436 if (!alc_subsystem_id(codec
, porta
, porte
, portd
, porti
)) {
1437 struct alc_spec
*spec
= codec
->spec
;
1438 snd_printd("realtek: "
1439 "Enable default setup for auto mode as fallback\n");
1440 spec
->init_amp
= ALC_INIT_DEFAULT
;
1441 alc_init_auto_hp(codec
);
1442 alc_init_auto_mic(codec
);
1447 * Fix-up pin default configurations and add default verbs
1456 const struct alc_pincfg
*pins
;
1457 const struct hda_verb
*verbs
;
1460 static void alc_pick_fixup(struct hda_codec
*codec
,
1461 const struct snd_pci_quirk
*quirk
,
1462 const struct alc_fixup
*fix
,
1465 const struct alc_pincfg
*cfg
;
1467 quirk
= snd_pci_quirk_lookup(codec
->bus
->pci
, quirk
);
1470 fix
+= quirk
->value
;
1472 if (pre_init
&& cfg
) {
1473 #ifdef CONFIG_SND_DEBUG_VERBOSE
1474 snd_printdd(KERN_INFO
"hda_codec: %s: Apply pincfg for %s\n",
1475 codec
->chip_name
, quirk
->name
);
1477 for (; cfg
->nid
; cfg
++)
1478 snd_hda_codec_set_pincfg(codec
, cfg
->nid
, cfg
->val
);
1480 if (!pre_init
&& fix
->verbs
) {
1481 #ifdef CONFIG_SND_DEBUG_VERBOSE
1482 snd_printdd(KERN_INFO
"hda_codec: %s: Apply fix-verbs for %s\n",
1483 codec
->chip_name
, quirk
->name
);
1485 add_verb(codec
->spec
, fix
->verbs
);
1489 static int alc_read_coef_idx(struct hda_codec
*codec
,
1490 unsigned int coef_idx
)
1493 snd_hda_codec_write(codec
, 0x20, 0, AC_VERB_SET_COEF_INDEX
,
1495 val
= snd_hda_codec_read(codec
, 0x20, 0,
1496 AC_VERB_GET_PROC_COEF
, 0);
1507 static struct hda_verb alc888_4ST_ch2_intel_init
[] = {
1508 /* Mic-in jack as mic in */
1509 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
1510 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
1511 /* Line-in jack as Line in */
1512 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
1513 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
1514 /* Line-Out as Front */
1515 { 0x17, AC_VERB_SET_CONNECT_SEL
, 0x00},
1522 static struct hda_verb alc888_4ST_ch4_intel_init
[] = {
1523 /* Mic-in jack as mic in */
1524 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
1525 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
1526 /* Line-in jack as Surround */
1527 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
1528 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
1529 /* Line-Out as Front */
1530 { 0x17, AC_VERB_SET_CONNECT_SEL
, 0x00},
1537 static struct hda_verb alc888_4ST_ch6_intel_init
[] = {
1538 /* Mic-in jack as CLFE */
1539 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
1540 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
1541 /* Line-in jack as Surround */
1542 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
1543 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
1544 /* Line-Out as CLFE (workaround because Mic-in is not loud enough) */
1545 { 0x17, AC_VERB_SET_CONNECT_SEL
, 0x03},
1552 static struct hda_verb alc888_4ST_ch8_intel_init
[] = {
1553 /* Mic-in jack as CLFE */
1554 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
1555 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
1556 /* Line-in jack as Surround */
1557 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
1558 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
1559 /* Line-Out as Side */
1560 { 0x17, AC_VERB_SET_CONNECT_SEL
, 0x03},
1564 static struct hda_channel_mode alc888_4ST_8ch_intel_modes
[4] = {
1565 { 2, alc888_4ST_ch2_intel_init
},
1566 { 4, alc888_4ST_ch4_intel_init
},
1567 { 6, alc888_4ST_ch6_intel_init
},
1568 { 8, alc888_4ST_ch8_intel_init
},
1572 * ALC888 Fujitsu Siemens Amillo xa3530
1575 static struct hda_verb alc888_fujitsu_xa3530_verbs
[] = {
1576 /* Front Mic: set to PIN_IN (empty by default) */
1577 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
1578 /* Connect Internal HP to Front */
1579 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
1580 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
1581 {0x14, AC_VERB_SET_CONNECT_SEL
, 0x00},
1582 /* Connect Bass HP to Front */
1583 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
1584 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
1585 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00},
1586 /* Connect Line-Out side jack (SPDIF) to Side */
1587 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
1588 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
1589 {0x17, AC_VERB_SET_CONNECT_SEL
, 0x03},
1590 /* Connect Mic jack to CLFE */
1591 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
1592 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
1593 {0x18, AC_VERB_SET_CONNECT_SEL
, 0x02},
1594 /* Connect Line-in jack to Surround */
1595 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
1596 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
1597 {0x1a, AC_VERB_SET_CONNECT_SEL
, 0x01},
1598 /* Connect HP out jack to Front */
1599 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
1600 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
1601 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0x00},
1602 /* Enable unsolicited event for HP jack and Line-out jack */
1603 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
1604 {0x17, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
1608 static void alc_automute_amp(struct hda_codec
*codec
)
1610 struct alc_spec
*spec
= codec
->spec
;
1615 spec
->jack_present
= 0;
1616 for (i
= 0; i
< ARRAY_SIZE(spec
->autocfg
.hp_pins
); i
++) {
1617 nid
= spec
->autocfg
.hp_pins
[i
];
1620 if (snd_hda_jack_detect(codec
, nid
)) {
1621 spec
->jack_present
= 1;
1626 mute
= spec
->jack_present
? HDA_AMP_MUTE
: 0;
1627 /* Toggle internal speakers muting */
1628 for (i
= 0; i
< ARRAY_SIZE(spec
->autocfg
.speaker_pins
); i
++) {
1629 nid
= spec
->autocfg
.speaker_pins
[i
];
1632 snd_hda_codec_amp_stereo(codec
, nid
, HDA_OUTPUT
, 0,
1633 HDA_AMP_MUTE
, mute
);
1637 static void alc_automute_amp_unsol_event(struct hda_codec
*codec
,
1640 if (codec
->vendor_id
== 0x10ec0880)
1644 if (res
== ALC880_HP_EVENT
)
1645 alc_automute_amp(codec
);
1648 static void alc889_automute_setup(struct hda_codec
*codec
)
1650 struct alc_spec
*spec
= codec
->spec
;
1652 spec
->autocfg
.hp_pins
[0] = 0x15;
1653 spec
->autocfg
.speaker_pins
[0] = 0x14;
1654 spec
->autocfg
.speaker_pins
[1] = 0x16;
1655 spec
->autocfg
.speaker_pins
[2] = 0x17;
1656 spec
->autocfg
.speaker_pins
[3] = 0x19;
1657 spec
->autocfg
.speaker_pins
[4] = 0x1a;
1660 static void alc889_intel_init_hook(struct hda_codec
*codec
)
1662 alc889_coef_init(codec
);
1663 alc_automute_amp(codec
);
1666 static void alc888_fujitsu_xa3530_setup(struct hda_codec
*codec
)
1668 struct alc_spec
*spec
= codec
->spec
;
1670 spec
->autocfg
.hp_pins
[0] = 0x17; /* line-out */
1671 spec
->autocfg
.hp_pins
[1] = 0x1b; /* hp */
1672 spec
->autocfg
.speaker_pins
[0] = 0x14; /* speaker */
1673 spec
->autocfg
.speaker_pins
[1] = 0x15; /* bass */
1677 * ALC888 Acer Aspire 4930G model
1680 static struct hda_verb alc888_acer_aspire_4930g_verbs
[] = {
1681 /* Front Mic: set to PIN_IN (empty by default) */
1682 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
1683 /* Unselect Front Mic by default in input mixer 3 */
1684 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0xb)},
1685 /* Enable unsolicited event for HP jack */
1686 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
1687 /* Connect Internal HP to front */
1688 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
1689 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
1690 {0x14, AC_VERB_SET_CONNECT_SEL
, 0x00},
1691 /* Connect HP out to front */
1692 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
1693 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
1694 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00},
1699 * ALC888 Acer Aspire 6530G model
1702 static struct hda_verb alc888_acer_aspire_6530g_verbs
[] = {
1703 /* Route to built-in subwoofer as well as speakers */
1704 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
1705 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
1706 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
1707 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
1708 /* Bias voltage on for external mic port */
1709 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
| PIN_VREF80
},
1710 /* Front Mic: set to PIN_IN (empty by default) */
1711 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
1712 /* Unselect Front Mic by default in input mixer 3 */
1713 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0xb)},
1714 /* Enable unsolicited event for HP jack */
1715 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
1716 /* Enable speaker output */
1717 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
1718 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
1719 {0x14, AC_VERB_SET_EAPD_BTLENABLE
, 2},
1720 /* Enable headphone output */
1721 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
| PIN_HP
},
1722 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
1723 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00},
1724 {0x15, AC_VERB_SET_EAPD_BTLENABLE
, 2},
1729 * ALC889 Acer Aspire 8930G model
1732 static struct hda_verb alc889_acer_aspire_8930g_verbs
[] = {
1733 /* Front Mic: set to PIN_IN (empty by default) */
1734 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
1735 /* Unselect Front Mic by default in input mixer 3 */
1736 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0xb)},
1737 /* Enable unsolicited event for HP jack */
1738 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
1739 /* Connect Internal Front to Front */
1740 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
1741 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
1742 {0x14, AC_VERB_SET_CONNECT_SEL
, 0x00},
1743 /* Connect Internal Rear to Rear */
1744 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
1745 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
1746 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0x01},
1747 /* Connect Internal CLFE to CLFE */
1748 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
1749 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
1750 {0x16, AC_VERB_SET_CONNECT_SEL
, 0x02},
1751 /* Connect HP out to Front */
1752 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
| PIN_HP
},
1753 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
1754 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00},
1755 /* Enable all DACs */
1756 /* DAC DISABLE/MUTE 1? */
1757 /* setting bits 1-5 disables DAC nids 0x02-0x06 apparently. Init=0x38 */
1758 {0x20, AC_VERB_SET_COEF_INDEX
, 0x03},
1759 {0x20, AC_VERB_SET_PROC_COEF
, 0x0000},
1760 /* DAC DISABLE/MUTE 2? */
1761 /* some bit here disables the other DACs. Init=0x4900 */
1762 {0x20, AC_VERB_SET_COEF_INDEX
, 0x08},
1763 {0x20, AC_VERB_SET_PROC_COEF
, 0x0000},
1765 * This laptop has a stereo digital microphone. The mics are only 1cm apart
1766 * which makes the stereo useless. However, either the mic or the ALC889
1767 * makes the signal become a difference/sum signal instead of standard
1768 * stereo, which is annoying. So instead we flip this bit which makes the
1769 * codec replicate the sum signal to both channels, turning it into a
1772 /* DMIC_CONTROL? Init value = 0x0001 */
1773 {0x20, AC_VERB_SET_COEF_INDEX
, 0x0b},
1774 {0x20, AC_VERB_SET_PROC_COEF
, 0x0003},
1778 static struct hda_input_mux alc888_2_capture_sources
[2] = {
1779 /* Front mic only available on one ADC */
1786 { "Front Mic", 0xb },
1799 static struct hda_input_mux alc888_acer_aspire_6530_sources
[2] = {
1800 /* Interal mic only available on one ADC */
1807 { "Input Mix", 0xa },
1817 { "Input Mix", 0xa },
1822 static struct hda_input_mux alc889_capture_sources
[3] = {
1823 /* Digital mic only available on first "ADC" */
1830 { "Front Mic", 0xb },
1831 { "Input Mix", 0xa },
1840 { "Input Mix", 0xa },
1849 { "Input Mix", 0xa },
1854 static struct snd_kcontrol_new alc888_base_mixer
[] = {
1855 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
1856 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
1857 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
1858 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT
),
1859 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0,
1861 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT
),
1862 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT
),
1863 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT
),
1864 HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT
),
1865 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT
),
1866 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
1867 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
1868 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
1869 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
1870 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
1871 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
1872 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
1876 static struct snd_kcontrol_new alc889_acer_aspire_8930g_mixer
[] = {
1877 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
1878 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
1879 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
1880 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT
),
1881 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0,
1883 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT
),
1884 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT
),
1885 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT
),
1886 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
1887 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
1888 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
1889 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
1890 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
1895 static void alc888_acer_aspire_4930g_setup(struct hda_codec
*codec
)
1897 struct alc_spec
*spec
= codec
->spec
;
1899 spec
->autocfg
.hp_pins
[0] = 0x15;
1900 spec
->autocfg
.speaker_pins
[0] = 0x14;
1901 spec
->autocfg
.speaker_pins
[1] = 0x16;
1902 spec
->autocfg
.speaker_pins
[2] = 0x17;
1905 static void alc888_acer_aspire_6530g_setup(struct hda_codec
*codec
)
1907 struct alc_spec
*spec
= codec
->spec
;
1909 spec
->autocfg
.hp_pins
[0] = 0x15;
1910 spec
->autocfg
.speaker_pins
[0] = 0x14;
1911 spec
->autocfg
.speaker_pins
[1] = 0x16;
1912 spec
->autocfg
.speaker_pins
[2] = 0x17;
1915 static void alc889_acer_aspire_8930g_setup(struct hda_codec
*codec
)
1917 struct alc_spec
*spec
= codec
->spec
;
1919 spec
->autocfg
.hp_pins
[0] = 0x15;
1920 spec
->autocfg
.speaker_pins
[0] = 0x14;
1921 spec
->autocfg
.speaker_pins
[1] = 0x16;
1922 spec
->autocfg
.speaker_pins
[2] = 0x1b;
1926 * ALC880 3-stack model
1928 * DAC: Front = 0x02 (0x0c), Surr = 0x05 (0x0f), CLFE = 0x04 (0x0e)
1929 * Pin assignment: Front = 0x14, Line-In/Surr = 0x1a, Mic/CLFE = 0x18,
1930 * F-Mic = 0x1b, HP = 0x19
1933 static hda_nid_t alc880_dac_nids
[4] = {
1934 /* front, rear, clfe, rear_surr */
1935 0x02, 0x05, 0x04, 0x03
1938 static hda_nid_t alc880_adc_nids
[3] = {
1943 /* The datasheet says the node 0x07 is connected from inputs,
1944 * but it shows zero connection in the real implementation on some devices.
1945 * Note: this is a 915GAV bug, fixed on 915GLV
1947 static hda_nid_t alc880_adc_nids_alt
[2] = {
1952 #define ALC880_DIGOUT_NID 0x06
1953 #define ALC880_DIGIN_NID 0x0a
1955 static struct hda_input_mux alc880_capture_source
= {
1959 { "Front Mic", 0x3 },
1965 /* channel source setting (2/6 channel selection for 3-stack) */
1967 static struct hda_verb alc880_threestack_ch2_init
[] = {
1968 /* set line-in to input, mute it */
1969 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
1970 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
1971 /* set mic-in to input vref 80%, mute it */
1972 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
1973 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
1978 static struct hda_verb alc880_threestack_ch6_init
[] = {
1979 /* set line-in to output, unmute it */
1980 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
1981 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
1982 /* set mic-in to output, unmute it */
1983 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
1984 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
1988 static struct hda_channel_mode alc880_threestack_modes
[2] = {
1989 { 2, alc880_threestack_ch2_init
},
1990 { 6, alc880_threestack_ch6_init
},
1993 static struct snd_kcontrol_new alc880_three_stack_mixer
[] = {
1994 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
1995 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
1996 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0f, 0x0, HDA_OUTPUT
),
1997 HDA_BIND_MUTE("Surround Playback Switch", 0x0f, 2, HDA_INPUT
),
1998 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT
),
1999 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT
),
2000 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT
),
2001 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT
),
2002 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
2003 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
2004 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
2005 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
2006 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
2007 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
2008 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x3, HDA_INPUT
),
2009 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x3, HDA_INPUT
),
2010 HDA_CODEC_MUTE("Headphone Playback Switch", 0x19, 0x0, HDA_OUTPUT
),
2012 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
2013 .name
= "Channel Mode",
2014 .info
= alc_ch_mode_info
,
2015 .get
= alc_ch_mode_get
,
2016 .put
= alc_ch_mode_put
,
2021 /* capture mixer elements */
2022 static int alc_cap_vol_info(struct snd_kcontrol
*kcontrol
,
2023 struct snd_ctl_elem_info
*uinfo
)
2025 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2026 struct alc_spec
*spec
= codec
->spec
;
2029 mutex_lock(&codec
->control_mutex
);
2030 kcontrol
->private_value
= HDA_COMPOSE_AMP_VAL(spec
->adc_nids
[0], 3, 0,
2032 err
= snd_hda_mixer_amp_volume_info(kcontrol
, uinfo
);
2033 mutex_unlock(&codec
->control_mutex
);
2037 static int alc_cap_vol_tlv(struct snd_kcontrol
*kcontrol
, int op_flag
,
2038 unsigned int size
, unsigned int __user
*tlv
)
2040 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2041 struct alc_spec
*spec
= codec
->spec
;
2044 mutex_lock(&codec
->control_mutex
);
2045 kcontrol
->private_value
= HDA_COMPOSE_AMP_VAL(spec
->adc_nids
[0], 3, 0,
2047 err
= snd_hda_mixer_amp_tlv(kcontrol
, op_flag
, size
, tlv
);
2048 mutex_unlock(&codec
->control_mutex
);
2052 typedef int (*getput_call_t
)(struct snd_kcontrol
*kcontrol
,
2053 struct snd_ctl_elem_value
*ucontrol
);
2055 static int alc_cap_getput_caller(struct snd_kcontrol
*kcontrol
,
2056 struct snd_ctl_elem_value
*ucontrol
,
2059 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
2060 struct alc_spec
*spec
= codec
->spec
;
2061 unsigned int adc_idx
= snd_ctl_get_ioffidx(kcontrol
, &ucontrol
->id
);
2064 mutex_lock(&codec
->control_mutex
);
2065 kcontrol
->private_value
= HDA_COMPOSE_AMP_VAL(spec
->adc_nids
[adc_idx
],
2067 err
= func(kcontrol
, ucontrol
);
2068 mutex_unlock(&codec
->control_mutex
);
2072 static int alc_cap_vol_get(struct snd_kcontrol
*kcontrol
,
2073 struct snd_ctl_elem_value
*ucontrol
)
2075 return alc_cap_getput_caller(kcontrol
, ucontrol
,
2076 snd_hda_mixer_amp_volume_get
);
2079 static int alc_cap_vol_put(struct snd_kcontrol
*kcontrol
,
2080 struct snd_ctl_elem_value
*ucontrol
)
2082 return alc_cap_getput_caller(kcontrol
, ucontrol
,
2083 snd_hda_mixer_amp_volume_put
);
2086 /* capture mixer elements */
2087 #define alc_cap_sw_info snd_ctl_boolean_stereo_info
2089 static int alc_cap_sw_get(struct snd_kcontrol
*kcontrol
,
2090 struct snd_ctl_elem_value
*ucontrol
)
2092 return alc_cap_getput_caller(kcontrol
, ucontrol
,
2093 snd_hda_mixer_amp_switch_get
);
2096 static int alc_cap_sw_put(struct snd_kcontrol
*kcontrol
,
2097 struct snd_ctl_elem_value
*ucontrol
)
2099 return alc_cap_getput_caller(kcontrol
, ucontrol
,
2100 snd_hda_mixer_amp_switch_put
);
2103 #define _DEFINE_CAPMIX(num) \
2105 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2106 .name = "Capture Switch", \
2107 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE, \
2109 .info = alc_cap_sw_info, \
2110 .get = alc_cap_sw_get, \
2111 .put = alc_cap_sw_put, \
2114 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2115 .name = "Capture Volume", \
2116 .access = (SNDRV_CTL_ELEM_ACCESS_READWRITE | \
2117 SNDRV_CTL_ELEM_ACCESS_TLV_READ | \
2118 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK), \
2120 .info = alc_cap_vol_info, \
2121 .get = alc_cap_vol_get, \
2122 .put = alc_cap_vol_put, \
2123 .tlv = { .c = alc_cap_vol_tlv }, \
2126 #define _DEFINE_CAPSRC(num) \
2128 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2129 /* .name = "Capture Source", */ \
2130 .name = "Input Source", \
2132 .info = alc_mux_enum_info, \
2133 .get = alc_mux_enum_get, \
2134 .put = alc_mux_enum_put, \
2137 #define DEFINE_CAPMIX(num) \
2138 static struct snd_kcontrol_new alc_capture_mixer ## num[] = { \
2139 _DEFINE_CAPMIX(num), \
2140 _DEFINE_CAPSRC(num), \
2144 #define DEFINE_CAPMIX_NOSRC(num) \
2145 static struct snd_kcontrol_new alc_capture_mixer_nosrc ## num[] = { \
2146 _DEFINE_CAPMIX(num), \
2150 /* up to three ADCs */
2154 DEFINE_CAPMIX_NOSRC(1);
2155 DEFINE_CAPMIX_NOSRC(2);
2156 DEFINE_CAPMIX_NOSRC(3);
2159 * ALC880 5-stack model
2161 * DAC: Front = 0x02 (0x0c), Surr = 0x05 (0x0f), CLFE = 0x04 (0x0d),
2163 * Pin assignment: Front = 0x14, Surr = 0x17, CLFE = 0x16
2164 * Line-In/Side = 0x1a, Mic = 0x18, F-Mic = 0x1b, HP = 0x19
2167 /* additional mixers to alc880_three_stack_mixer */
2168 static struct snd_kcontrol_new alc880_five_stack_mixer
[] = {
2169 HDA_CODEC_VOLUME("Side Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
2170 HDA_BIND_MUTE("Side Playback Switch", 0x0d, 2, HDA_INPUT
),
2174 /* channel source setting (6/8 channel selection for 5-stack) */
2176 static struct hda_verb alc880_fivestack_ch6_init
[] = {
2177 /* set line-in to input, mute it */
2178 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
2179 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
2184 static struct hda_verb alc880_fivestack_ch8_init
[] = {
2185 /* set line-in to output, unmute it */
2186 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
2187 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2191 static struct hda_channel_mode alc880_fivestack_modes
[2] = {
2192 { 6, alc880_fivestack_ch6_init
},
2193 { 8, alc880_fivestack_ch8_init
},
2198 * ALC880 6-stack model
2200 * DAC: Front = 0x02 (0x0c), Surr = 0x03 (0x0d), CLFE = 0x04 (0x0e),
2201 * Side = 0x05 (0x0f)
2202 * Pin assignment: Front = 0x14, Surr = 0x15, CLFE = 0x16, Side = 0x17,
2203 * Mic = 0x18, F-Mic = 0x19, Line = 0x1a, HP = 0x1b
2206 static hda_nid_t alc880_6st_dac_nids
[4] = {
2207 /* front, rear, clfe, rear_surr */
2208 0x02, 0x03, 0x04, 0x05
2211 static struct hda_input_mux alc880_6stack_capture_source
= {
2215 { "Front Mic", 0x1 },
2221 /* fixed 8-channels */
2222 static struct hda_channel_mode alc880_sixstack_modes
[1] = {
2226 static struct snd_kcontrol_new alc880_six_stack_mixer
[] = {
2227 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
2228 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
2229 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
2230 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT
),
2231 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT
),
2232 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT
),
2233 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT
),
2234 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT
),
2235 HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT
),
2236 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT
),
2237 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
2238 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
2239 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
2240 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
2241 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
2242 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
2243 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
2244 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
2246 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
2247 .name
= "Channel Mode",
2248 .info
= alc_ch_mode_info
,
2249 .get
= alc_ch_mode_get
,
2250 .put
= alc_ch_mode_put
,
2259 * W810 has rear IO for:
2262 * Center/LFE (DAC 04)
2265 * The system also has a pair of internal speakers, and a headphone jack.
2266 * These are both connected to Line2 on the codec, hence to DAC 02.
2268 * There is a variable resistor to control the speaker or headphone
2269 * volume. This is a hardware-only device without a software API.
2271 * Plugging headphones in will disable the internal speakers. This is
2272 * implemented in hardware, not via the driver using jack sense. In
2273 * a similar fashion, plugging into the rear socket marked "front" will
2274 * disable both the speakers and headphones.
2276 * For input, there's a microphone jack, and an "audio in" jack.
2277 * These may not do anything useful with this driver yet, because I
2278 * haven't setup any initialization verbs for these yet...
2281 static hda_nid_t alc880_w810_dac_nids
[3] = {
2282 /* front, rear/surround, clfe */
2286 /* fixed 6 channels */
2287 static struct hda_channel_mode alc880_w810_modes
[1] = {
2291 /* Pin assignment: Front = 0x14, Surr = 0x15, CLFE = 0x16, HP = 0x1b */
2292 static struct snd_kcontrol_new alc880_w810_base_mixer
[] = {
2293 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
2294 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
2295 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
2296 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT
),
2297 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT
),
2298 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT
),
2299 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT
),
2300 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT
),
2301 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
2309 * DAC: Front = 0x02 (0x0c), HP = 0x03 (0x0d)
2310 * Pin assignment: Front = 0x14, HP = 0x15, Mic = 0x18, Mic2 = 0x19(?),
2314 static hda_nid_t alc880_z71v_dac_nids
[1] = {
2317 #define ALC880_Z71V_HP_DAC 0x03
2319 /* fixed 2 channels */
2320 static struct hda_channel_mode alc880_2_jack_modes
[1] = {
2324 static struct snd_kcontrol_new alc880_z71v_mixer
[] = {
2325 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
2326 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
2327 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
2328 HDA_BIND_MUTE("Headphone Playback Switch", 0x0d, 2, HDA_INPUT
),
2329 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
2330 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
2331 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
2332 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
2338 * ALC880 F1734 model
2340 * DAC: HP = 0x02 (0x0c), Front = 0x03 (0x0d)
2341 * Pin assignment: HP = 0x14, Front = 0x15, Mic = 0x18
2344 static hda_nid_t alc880_f1734_dac_nids
[1] = {
2347 #define ALC880_F1734_HP_DAC 0x02
2349 static struct snd_kcontrol_new alc880_f1734_mixer
[] = {
2350 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
2351 HDA_BIND_MUTE("Headphone Playback Switch", 0x0c, 2, HDA_INPUT
),
2352 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
2353 HDA_BIND_MUTE("Speaker Playback Switch", 0x0d, 2, HDA_INPUT
),
2354 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
2355 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
2356 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
2357 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
2361 static struct hda_input_mux alc880_f1734_capture_source
= {
2373 * DAC: HP/Front = 0x02 (0x0c), Surr = 0x03 (0x0d), CLFE = 0x04 (0x0e)
2374 * Pin assignment: HP/Front = 0x14, Surr = 0x15, CLFE = 0x16,
2375 * Mic = 0x18, Line = 0x1a
2378 #define alc880_asus_dac_nids alc880_w810_dac_nids /* identical with w810 */
2379 #define alc880_asus_modes alc880_threestack_modes /* 2/6 channel mode */
2381 static struct snd_kcontrol_new alc880_asus_mixer
[] = {
2382 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
2383 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
2384 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
2385 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT
),
2386 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT
),
2387 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT
),
2388 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT
),
2389 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT
),
2390 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
2391 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
2392 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
2393 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
2394 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
2395 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
2397 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
2398 .name
= "Channel Mode",
2399 .info
= alc_ch_mode_info
,
2400 .get
= alc_ch_mode_get
,
2401 .put
= alc_ch_mode_put
,
2407 * ALC880 ASUS W1V model
2409 * DAC: HP/Front = 0x02 (0x0c), Surr = 0x03 (0x0d), CLFE = 0x04 (0x0e)
2410 * Pin assignment: HP/Front = 0x14, Surr = 0x15, CLFE = 0x16,
2411 * Mic = 0x18, Line = 0x1a, Line2 = 0x1b
2414 /* additional mixers to alc880_asus_mixer */
2415 static struct snd_kcontrol_new alc880_asus_w1v_mixer
[] = {
2416 HDA_CODEC_VOLUME("Line2 Playback Volume", 0x0b, 0x03, HDA_INPUT
),
2417 HDA_CODEC_MUTE("Line2 Playback Switch", 0x0b, 0x03, HDA_INPUT
),
2422 static struct snd_kcontrol_new alc880_tcl_s700_mixer
[] = {
2423 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
2424 HDA_CODEC_MUTE("Front Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
2425 HDA_CODEC_MUTE("Headphone Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
2426 HDA_CODEC_VOLUME("CD Playback Volume", 0x0B, 0x04, HDA_INPUT
),
2427 HDA_CODEC_MUTE("CD Playback Switch", 0x0B, 0x04, HDA_INPUT
),
2428 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0B, 0x0, HDA_INPUT
),
2429 HDA_CODEC_MUTE("Mic Playback Switch", 0x0B, 0x0, HDA_INPUT
),
2430 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT
),
2431 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT
),
2436 static struct snd_kcontrol_new alc880_uniwill_mixer
[] = {
2437 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
2438 HDA_BIND_MUTE("Headphone Playback Switch", 0x0c, 2, HDA_INPUT
),
2439 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
2440 HDA_BIND_MUTE("Speaker Playback Switch", 0x0d, 2, HDA_INPUT
),
2441 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT
),
2442 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT
),
2443 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT
),
2444 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT
),
2445 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
2446 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
2447 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
2448 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
2449 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
2450 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
2451 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
2452 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
2454 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
2455 .name
= "Channel Mode",
2456 .info
= alc_ch_mode_info
,
2457 .get
= alc_ch_mode_get
,
2458 .put
= alc_ch_mode_put
,
2463 static struct snd_kcontrol_new alc880_fujitsu_mixer
[] = {
2464 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
2465 HDA_BIND_MUTE("Headphone Playback Switch", 0x0c, 2, HDA_INPUT
),
2466 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
2467 HDA_BIND_MUTE("Speaker Playback Switch", 0x0d, 2, HDA_INPUT
),
2468 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
2469 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
2470 HDA_CODEC_VOLUME("Ext Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
2471 HDA_CODEC_MUTE("Ext Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
2472 HDA_CODEC_VOLUME("Int Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
2473 HDA_CODEC_MUTE("Int Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
2477 static struct snd_kcontrol_new alc880_uniwill_p53_mixer
[] = {
2478 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
2479 HDA_BIND_MUTE("Headphone Playback Switch", 0x0c, 2, HDA_INPUT
),
2480 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
2481 HDA_BIND_MUTE("Speaker Playback Switch", 0x0d, 2, HDA_INPUT
),
2482 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
2483 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
2488 * virtual master controls
2492 * slave controls for virtual master
2494 static const char *alc_slave_vols
[] = {
2495 "Front Playback Volume",
2496 "Surround Playback Volume",
2497 "Center Playback Volume",
2498 "LFE Playback Volume",
2499 "Side Playback Volume",
2500 "Headphone Playback Volume",
2501 "Speaker Playback Volume",
2502 "Mono Playback Volume",
2503 "Line-Out Playback Volume",
2504 "PCM Playback Volume",
2508 static const char *alc_slave_sws
[] = {
2509 "Front Playback Switch",
2510 "Surround Playback Switch",
2511 "Center Playback Switch",
2512 "LFE Playback Switch",
2513 "Side Playback Switch",
2514 "Headphone Playback Switch",
2515 "Speaker Playback Switch",
2516 "Mono Playback Switch",
2517 "IEC958 Playback Switch",
2518 "Line-Out Playback Switch",
2519 "PCM Playback Switch",
2524 * build control elements
2527 #define NID_MAPPING (-1)
2529 #define SUBDEV_SPEAKER_ (0 << 6)
2530 #define SUBDEV_HP_ (1 << 6)
2531 #define SUBDEV_LINE_ (2 << 6)
2532 #define SUBDEV_SPEAKER(x) (SUBDEV_SPEAKER_ | ((x) & 0x3f))
2533 #define SUBDEV_HP(x) (SUBDEV_HP_ | ((x) & 0x3f))
2534 #define SUBDEV_LINE(x) (SUBDEV_LINE_ | ((x) & 0x3f))
2536 static void alc_free_kctls(struct hda_codec
*codec
);
2538 #ifdef CONFIG_SND_HDA_INPUT_BEEP
2539 /* additional beep mixers; the actual parameters are overwritten at build */
2540 static struct snd_kcontrol_new alc_beep_mixer
[] = {
2541 HDA_CODEC_VOLUME("Beep Playback Volume", 0, 0, HDA_INPUT
),
2542 HDA_CODEC_MUTE_BEEP("Beep Playback Switch", 0, 0, HDA_INPUT
),
2547 static int alc_build_controls(struct hda_codec
*codec
)
2549 struct alc_spec
*spec
= codec
->spec
;
2550 struct snd_kcontrol
*kctl
;
2551 struct snd_kcontrol_new
*knew
;
2556 for (i
= 0; i
< spec
->num_mixers
; i
++) {
2557 err
= snd_hda_add_new_ctls(codec
, spec
->mixers
[i
]);
2561 if (spec
->cap_mixer
) {
2562 err
= snd_hda_add_new_ctls(codec
, spec
->cap_mixer
);
2566 if (spec
->multiout
.dig_out_nid
) {
2567 err
= snd_hda_create_spdif_out_ctls(codec
,
2568 spec
->multiout
.dig_out_nid
);
2571 if (!spec
->no_analog
) {
2572 err
= snd_hda_create_spdif_share_sw(codec
,
2576 spec
->multiout
.share_spdif
= 1;
2579 if (spec
->dig_in_nid
) {
2580 err
= snd_hda_create_spdif_in_ctls(codec
, spec
->dig_in_nid
);
2585 #ifdef CONFIG_SND_HDA_INPUT_BEEP
2586 /* create beep controls if needed */
2587 if (spec
->beep_amp
) {
2588 struct snd_kcontrol_new
*knew
;
2589 for (knew
= alc_beep_mixer
; knew
->name
; knew
++) {
2590 struct snd_kcontrol
*kctl
;
2591 kctl
= snd_ctl_new1(knew
, codec
);
2594 kctl
->private_value
= spec
->beep_amp
;
2595 err
= snd_hda_ctl_add(codec
, 0, kctl
);
2602 /* if we have no master control, let's create it */
2603 if (!spec
->no_analog
&&
2604 !snd_hda_find_mixer_ctl(codec
, "Master Playback Volume")) {
2605 unsigned int vmaster_tlv
[4];
2606 snd_hda_set_vmaster_tlv(codec
, spec
->vmaster_nid
,
2607 HDA_OUTPUT
, vmaster_tlv
);
2608 err
= snd_hda_add_vmaster(codec
, "Master Playback Volume",
2609 vmaster_tlv
, alc_slave_vols
);
2613 if (!spec
->no_analog
&&
2614 !snd_hda_find_mixer_ctl(codec
, "Master Playback Switch")) {
2615 err
= snd_hda_add_vmaster(codec
, "Master Playback Switch",
2616 NULL
, alc_slave_sws
);
2621 /* assign Capture Source enums to NID */
2622 kctl
= snd_hda_find_mixer_ctl(codec
, "Capture Source");
2624 kctl
= snd_hda_find_mixer_ctl(codec
, "Input Source");
2625 for (i
= 0; kctl
&& i
< kctl
->count
; i
++) {
2626 hda_nid_t
*nids
= spec
->capsrc_nids
;
2628 nids
= spec
->adc_nids
;
2629 err
= snd_hda_add_nid(codec
, kctl
, i
, nids
[i
]);
2633 if (spec
->cap_mixer
) {
2634 const char *kname
= kctl
? kctl
->id
.name
: NULL
;
2635 for (knew
= spec
->cap_mixer
; knew
->name
; knew
++) {
2636 if (kname
&& strcmp(knew
->name
, kname
) == 0)
2638 kctl
= snd_hda_find_mixer_ctl(codec
, knew
->name
);
2639 for (i
= 0; kctl
&& i
< kctl
->count
; i
++) {
2640 err
= snd_hda_add_nid(codec
, kctl
, i
,
2648 /* other nid->control mapping */
2649 for (i
= 0; i
< spec
->num_mixers
; i
++) {
2650 for (knew
= spec
->mixers
[i
]; knew
->name
; knew
++) {
2651 if (knew
->iface
!= NID_MAPPING
)
2653 kctl
= snd_hda_find_mixer_ctl(codec
, knew
->name
);
2656 u
= knew
->subdevice
;
2657 for (j
= 0; j
< 4; j
++, u
>>= 8) {
2662 case SUBDEV_SPEAKER_
:
2663 nid
= spec
->autocfg
.speaker_pins
[nid
];
2666 nid
= spec
->autocfg
.line_out_pins
[nid
];
2669 nid
= spec
->autocfg
.hp_pins
[nid
];
2674 err
= snd_hda_add_nid(codec
, kctl
, 0, nid
);
2678 u
= knew
->private_value
;
2679 for (j
= 0; j
< 4; j
++, u
>>= 8) {
2683 err
= snd_hda_add_nid(codec
, kctl
, 0, nid
);
2690 alc_free_kctls(codec
); /* no longer needed */
2697 * initialize the codec volumes, etc
2701 * generic initialization of ADC, input mixers and output mixers
2703 static struct hda_verb alc880_volume_init_verbs
[] = {
2705 * Unmute ADC0-2 and set the default input to mic-in
2707 {0x07, AC_VERB_SET_CONNECT_SEL
, 0x00},
2708 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
2709 {0x08, AC_VERB_SET_CONNECT_SEL
, 0x00},
2710 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
2711 {0x09, AC_VERB_SET_CONNECT_SEL
, 0x00},
2712 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
2714 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
2716 * Note: PASD motherboards uses the Line In 2 as the input for front
2719 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
2720 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
2721 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
2722 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
2723 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
2724 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
2725 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(6)},
2726 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(7)},
2729 * Set up output mixers (0x0c - 0x0f)
2731 /* set vol=0 to output mixers */
2732 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
2733 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
2734 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
2735 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
2736 /* set up input amps for analog loopback */
2737 /* Amp Indices: DAC = 0, mixer = 1 */
2738 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
2739 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
2740 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
2741 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
2742 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
2743 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
2744 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
2745 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
2751 * 3-stack pin configuration:
2752 * front = 0x14, mic/clfe = 0x18, HP = 0x19, line/surr = 0x1a, f-mic = 0x1b
2754 static struct hda_verb alc880_pin_3stack_init_verbs
[] = {
2756 * preset connection lists of input pins
2757 * 0 = front, 1 = rear_surr, 2 = CLFE, 3 = surround
2759 {0x10, AC_VERB_SET_CONNECT_SEL
, 0x02}, /* mic/clfe */
2760 {0x11, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* HP */
2761 {0x12, AC_VERB_SET_CONNECT_SEL
, 0x03}, /* line/surround */
2764 * Set pin mode and muting
2766 /* set front pin widgets 0x14 for output */
2767 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
2768 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2769 /* Mic1 (rear panel) pin widget for input and vref at 80% */
2770 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
2771 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
2772 /* Mic2 (as headphone out) for HP output */
2773 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
2774 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2775 /* Line In pin widget for input */
2776 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
2777 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
2778 /* Line2 (as front mic) pin widget for input and vref at 80% */
2779 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
2780 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
2781 /* CD pin widget for input */
2782 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
2788 * 5-stack pin configuration:
2789 * front = 0x14, surround = 0x17, clfe = 0x16, mic = 0x18, HP = 0x19,
2790 * line-in/side = 0x1a, f-mic = 0x1b
2792 static struct hda_verb alc880_pin_5stack_init_verbs
[] = {
2794 * preset connection lists of input pins
2795 * 0 = front, 1 = rear_surr, 2 = CLFE, 3 = surround
2797 {0x11, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* HP */
2798 {0x12, AC_VERB_SET_CONNECT_SEL
, 0x01}, /* line/side */
2801 * Set pin mode and muting
2803 /* set pin widgets 0x14-0x17 for output */
2804 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
2805 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
2806 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
2807 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
2808 /* unmute pins for output (no gain on this amp) */
2809 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2810 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2811 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2812 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2814 /* Mic1 (rear panel) pin widget for input and vref at 80% */
2815 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
2816 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
2817 /* Mic2 (as headphone out) for HP output */
2818 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
2819 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2820 /* Line In pin widget for input */
2821 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
2822 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
2823 /* Line2 (as front mic) pin widget for input and vref at 80% */
2824 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
2825 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
2826 /* CD pin widget for input */
2827 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
2833 * W810 pin configuration:
2834 * front = 0x14, surround = 0x15, clfe = 0x16, HP = 0x1b
2836 static struct hda_verb alc880_pin_w810_init_verbs
[] = {
2837 /* hphone/speaker input selector: front DAC */
2838 {0x13, AC_VERB_SET_CONNECT_SEL
, 0x0},
2840 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
2841 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2842 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
2843 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2844 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
2845 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2847 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
2848 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
2854 * Z71V pin configuration:
2855 * Speaker-out = 0x14, HP = 0x15, Mic = 0x18, Line-in = 0x1a, Mic2 = 0x1b (?)
2857 static struct hda_verb alc880_pin_z71v_init_verbs
[] = {
2858 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
2859 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2860 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
2861 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2863 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
2864 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
2865 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
2866 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
2872 * 6-stack pin configuration:
2873 * front = 0x14, surr = 0x15, clfe = 0x16, side = 0x17, mic = 0x18,
2874 * f-mic = 0x19, line = 0x1a, HP = 0x1b
2876 static struct hda_verb alc880_pin_6stack_init_verbs
[] = {
2877 {0x13, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* HP */
2879 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
2880 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2881 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
2882 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2883 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
2884 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2885 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
2886 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2888 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
2889 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
2890 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
2891 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
2892 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
2893 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
2894 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
2895 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2896 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
2902 * Uniwill pin configuration:
2903 * HP = 0x14, InternalSpeaker = 0x15, mic = 0x18, internal mic = 0x19,
2906 static struct hda_verb alc880_uniwill_init_verbs
[] = {
2907 {0x13, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* HP */
2909 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
2910 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2911 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
2912 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2913 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
2914 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2915 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
2916 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2917 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
2918 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x01 << 8))},
2919 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
2920 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x01 << 8))},
2921 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
2922 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x01 << 8))},
2924 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
2925 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
2926 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
2927 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
2928 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
2929 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
2930 /* {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP}, */
2931 /* {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, */
2932 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
2934 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
2935 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
2942 * HP = 0x14, InternalSpeaker = 0x15, mic = 0x19,
2944 static struct hda_verb alc880_uniwill_p53_init_verbs
[] = {
2945 {0x13, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* HP */
2947 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
2948 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2949 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
2950 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2951 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
2952 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2953 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
2954 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x01 << 8))},
2955 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
2956 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x01 << 8))},
2957 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
2958 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x01 << 8))},
2960 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
2961 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
2962 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
2963 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
2964 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
2965 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
2967 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
2968 {0x21, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_DCVOL_EVENT
},
2973 static struct hda_verb alc880_beep_init_verbs
[] = {
2974 { 0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(5) },
2978 /* auto-toggle front mic */
2979 static void alc880_uniwill_mic_automute(struct hda_codec
*codec
)
2981 unsigned int present
;
2984 present
= snd_hda_jack_detect(codec
, 0x18);
2985 bits
= present
? HDA_AMP_MUTE
: 0;
2986 snd_hda_codec_amp_stereo(codec
, 0x0b, HDA_INPUT
, 1, HDA_AMP_MUTE
, bits
);
2989 static void alc880_uniwill_setup(struct hda_codec
*codec
)
2991 struct alc_spec
*spec
= codec
->spec
;
2993 spec
->autocfg
.hp_pins
[0] = 0x14;
2994 spec
->autocfg
.speaker_pins
[0] = 0x15;
2995 spec
->autocfg
.speaker_pins
[0] = 0x16;
2998 static void alc880_uniwill_init_hook(struct hda_codec
*codec
)
3000 alc_automute_amp(codec
);
3001 alc880_uniwill_mic_automute(codec
);
3004 static void alc880_uniwill_unsol_event(struct hda_codec
*codec
,
3007 /* Looks like the unsol event is incompatible with the standard
3008 * definition. 4bit tag is placed at 28 bit!
3010 switch (res
>> 28) {
3011 case ALC880_MIC_EVENT
:
3012 alc880_uniwill_mic_automute(codec
);
3015 alc_automute_amp_unsol_event(codec
, res
);
3020 static void alc880_uniwill_p53_setup(struct hda_codec
*codec
)
3022 struct alc_spec
*spec
= codec
->spec
;
3024 spec
->autocfg
.hp_pins
[0] = 0x14;
3025 spec
->autocfg
.speaker_pins
[0] = 0x15;
3028 static void alc880_uniwill_p53_dcvol_automute(struct hda_codec
*codec
)
3030 unsigned int present
;
3032 present
= snd_hda_codec_read(codec
, 0x21, 0,
3033 AC_VERB_GET_VOLUME_KNOB_CONTROL
, 0);
3034 present
&= HDA_AMP_VOLMASK
;
3035 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_OUTPUT
, 0,
3036 HDA_AMP_VOLMASK
, present
);
3037 snd_hda_codec_amp_stereo(codec
, 0x0d, HDA_OUTPUT
, 0,
3038 HDA_AMP_VOLMASK
, present
);
3041 static void alc880_uniwill_p53_unsol_event(struct hda_codec
*codec
,
3044 /* Looks like the unsol event is incompatible with the standard
3045 * definition. 4bit tag is placed at 28 bit!
3047 if ((res
>> 28) == ALC880_DCVOL_EVENT
)
3048 alc880_uniwill_p53_dcvol_automute(codec
);
3050 alc_automute_amp_unsol_event(codec
, res
);
3054 * F1734 pin configuration:
3055 * HP = 0x14, speaker-out = 0x15, mic = 0x18
3057 static struct hda_verb alc880_pin_f1734_init_verbs
[] = {
3058 {0x07, AC_VERB_SET_CONNECT_SEL
, 0x01},
3059 {0x10, AC_VERB_SET_CONNECT_SEL
, 0x02},
3060 {0x11, AC_VERB_SET_CONNECT_SEL
, 0x00},
3061 {0x12, AC_VERB_SET_CONNECT_SEL
, 0x01},
3062 {0x13, AC_VERB_SET_CONNECT_SEL
, 0x00},
3064 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
3065 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3066 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
3067 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3069 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
3070 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
3071 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF50
},
3072 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
3073 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
3074 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3075 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
3076 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3077 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
3079 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
|ALC880_HP_EVENT
},
3080 {0x21, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
|ALC880_DCVOL_EVENT
},
3086 * ASUS pin configuration:
3087 * HP/front = 0x14, surr = 0x15, clfe = 0x16, mic = 0x18, line = 0x1a
3089 static struct hda_verb alc880_pin_asus_init_verbs
[] = {
3090 {0x10, AC_VERB_SET_CONNECT_SEL
, 0x02},
3091 {0x11, AC_VERB_SET_CONNECT_SEL
, 0x00},
3092 {0x12, AC_VERB_SET_CONNECT_SEL
, 0x01},
3093 {0x13, AC_VERB_SET_CONNECT_SEL
, 0x00},
3095 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
3096 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3097 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
3098 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3099 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
3100 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3101 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
3102 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3104 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
3105 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
3106 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
3107 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
3108 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
3109 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
3110 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
3111 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3112 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
3117 /* Enable GPIO mask and set output */
3118 #define alc880_gpio1_init_verbs alc_gpio1_init_verbs
3119 #define alc880_gpio2_init_verbs alc_gpio2_init_verbs
3120 #define alc880_gpio3_init_verbs alc_gpio3_init_verbs
3122 /* Clevo m520g init */
3123 static struct hda_verb alc880_pin_clevo_init_verbs
[] = {
3124 /* headphone output */
3125 {0x11, AC_VERB_SET_CONNECT_SEL
, 0x01},
3127 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
3128 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3130 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
3131 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3133 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
3134 {0x1c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3135 /* Mic1 (rear panel) */
3136 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
3137 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3138 /* Mic2 (front panel) */
3139 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
3140 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3142 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
3143 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3144 /* change to EAPD mode */
3145 {0x20, AC_VERB_SET_COEF_INDEX
, 0x07},
3146 {0x20, AC_VERB_SET_PROC_COEF
, 0x3060},
3151 static struct hda_verb alc880_pin_tcl_S700_init_verbs
[] = {
3152 /* change to EAPD mode */
3153 {0x20, AC_VERB_SET_COEF_INDEX
, 0x07},
3154 {0x20, AC_VERB_SET_PROC_COEF
, 0x3060},
3156 /* Headphone output */
3157 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
3159 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
3160 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0x00},
3162 /* Line In pin widget for input */
3163 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
3164 /* CD pin widget for input */
3165 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
3166 /* Mic1 (rear panel) pin widget for input and vref at 80% */
3167 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
3169 /* change to EAPD mode */
3170 {0x20, AC_VERB_SET_COEF_INDEX
, 0x07},
3171 {0x20, AC_VERB_SET_PROC_COEF
, 0x3070},
3177 * LG m1 express dual
3180 * Rear Line-In/Out (blue): 0x14
3181 * Build-in Mic-In: 0x15
3183 * HP-Out (green): 0x1b
3184 * Mic-In/Out (red): 0x19
3188 /* To make 5.1 output working (green=Front, blue=Surr, red=CLFE) */
3189 static hda_nid_t alc880_lg_dac_nids
[3] = {
3193 /* seems analog CD is not working */
3194 static struct hda_input_mux alc880_lg_capture_source
= {
3199 { "Internal Mic", 0x6 },
3203 /* 2,4,6 channel modes */
3204 static struct hda_verb alc880_lg_ch2_init
[] = {
3205 /* set line-in and mic-in to input */
3206 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
3207 { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
3211 static struct hda_verb alc880_lg_ch4_init
[] = {
3212 /* set line-in to out and mic-in to input */
3213 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
3214 { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
3218 static struct hda_verb alc880_lg_ch6_init
[] = {
3219 /* set line-in and mic-in to output */
3220 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
3221 { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
3225 static struct hda_channel_mode alc880_lg_ch_modes
[3] = {
3226 { 2, alc880_lg_ch2_init
},
3227 { 4, alc880_lg_ch4_init
},
3228 { 6, alc880_lg_ch6_init
},
3231 static struct snd_kcontrol_new alc880_lg_mixer
[] = {
3232 HDA_CODEC_VOLUME("Front Playback Volume", 0x0f, 0x0, HDA_OUTPUT
),
3233 HDA_BIND_MUTE("Front Playback Switch", 0x0f, 2, HDA_INPUT
),
3234 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
3235 HDA_BIND_MUTE("Surround Playback Switch", 0x0c, 2, HDA_INPUT
),
3236 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0d, 1, 0x0, HDA_OUTPUT
),
3237 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0d, 2, 0x0, HDA_OUTPUT
),
3238 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0d, 1, 2, HDA_INPUT
),
3239 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0d, 2, 2, HDA_INPUT
),
3240 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
3241 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
3242 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x06, HDA_INPUT
),
3243 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x06, HDA_INPUT
),
3244 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x0b, 0x07, HDA_INPUT
),
3245 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x0b, 0x07, HDA_INPUT
),
3247 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
3248 .name
= "Channel Mode",
3249 .info
= alc_ch_mode_info
,
3250 .get
= alc_ch_mode_get
,
3251 .put
= alc_ch_mode_put
,
3256 static struct hda_verb alc880_lg_init_verbs
[] = {
3257 /* set capture source to mic-in */
3258 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
3259 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
3260 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
3261 /* mute all amp mixer inputs */
3262 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(5)},
3263 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(6)},
3264 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(7)},
3265 /* line-in to input */
3266 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
3267 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3269 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
3270 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3272 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
3273 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3274 /* mic-in to input */
3275 {0x11, AC_VERB_SET_CONNECT_SEL
, 0x01},
3276 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
3277 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3279 {0x13, AC_VERB_SET_CONNECT_SEL
, 0x03},
3280 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
3281 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3283 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
3287 /* toggle speaker-output according to the hp-jack state */
3288 static void alc880_lg_setup(struct hda_codec
*codec
)
3290 struct alc_spec
*spec
= codec
->spec
;
3292 spec
->autocfg
.hp_pins
[0] = 0x1b;
3293 spec
->autocfg
.speaker_pins
[0] = 0x17;
3302 * Built-in Mic-In: 0x19
3308 static struct hda_input_mux alc880_lg_lw_capture_source
= {
3312 { "Internal Mic", 0x1 },
3317 #define alc880_lg_lw_modes alc880_threestack_modes
3319 static struct snd_kcontrol_new alc880_lg_lw_mixer
[] = {
3320 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
3321 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
3322 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0f, 0x0, HDA_OUTPUT
),
3323 HDA_BIND_MUTE("Surround Playback Switch", 0x0f, 2, HDA_INPUT
),
3324 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT
),
3325 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT
),
3326 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT
),
3327 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT
),
3328 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
3329 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
3330 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
3331 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
3332 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x0b, 0x01, HDA_INPUT
),
3333 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x0b, 0x01, HDA_INPUT
),
3335 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
3336 .name
= "Channel Mode",
3337 .info
= alc_ch_mode_info
,
3338 .get
= alc_ch_mode_get
,
3339 .put
= alc_ch_mode_put
,
3344 static struct hda_verb alc880_lg_lw_init_verbs
[] = {
3345 {0x13, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* HP */
3346 {0x10, AC_VERB_SET_CONNECT_SEL
, 0x02}, /* mic/clfe */
3347 {0x12, AC_VERB_SET_CONNECT_SEL
, 0x03}, /* line/surround */
3349 /* set capture source to mic-in */
3350 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
3351 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
3352 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
3353 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(7)},
3355 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
3356 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3358 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
3359 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3360 /* mic-in to input */
3361 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
3362 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3364 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
3365 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3367 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
3371 /* toggle speaker-output according to the hp-jack state */
3372 static void alc880_lg_lw_setup(struct hda_codec
*codec
)
3374 struct alc_spec
*spec
= codec
->spec
;
3376 spec
->autocfg
.hp_pins
[0] = 0x1b;
3377 spec
->autocfg
.speaker_pins
[0] = 0x14;
3380 static struct snd_kcontrol_new alc880_medion_rim_mixer
[] = {
3381 HDA_CODEC_VOLUME("Master Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
3382 HDA_BIND_MUTE("Master Playback Switch", 0x0c, 2, HDA_INPUT
),
3383 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
3384 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
3385 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
3386 HDA_CODEC_MUTE("Internal Playback Switch", 0x0b, 0x1, HDA_INPUT
),
3390 static struct hda_input_mux alc880_medion_rim_capture_source
= {
3394 { "Internal Mic", 0x1 },
3398 static struct hda_verb alc880_medion_rim_init_verbs
[] = {
3399 {0x13, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* HP */
3401 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
3402 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3404 /* Mic1 (rear panel) pin widget for input and vref at 80% */
3405 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
3406 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
3407 /* Mic2 (as headphone out) for HP output */
3408 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
3409 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
3410 /* Internal Speaker */
3411 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
3412 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3414 {0x20, AC_VERB_SET_COEF_INDEX
, 0x07},
3415 {0x20, AC_VERB_SET_PROC_COEF
, 0x3060},
3417 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
3421 /* toggle speaker-output according to the hp-jack state */
3422 static void alc880_medion_rim_automute(struct hda_codec
*codec
)
3424 struct alc_spec
*spec
= codec
->spec
;
3425 alc_automute_amp(codec
);
3427 if (spec
->jack_present
)
3428 snd_hda_codec_write(codec
, 0x01, 0, AC_VERB_SET_GPIO_DATA
, 0);
3430 snd_hda_codec_write(codec
, 0x01, 0, AC_VERB_SET_GPIO_DATA
, 2);
3433 static void alc880_medion_rim_unsol_event(struct hda_codec
*codec
,
3436 /* Looks like the unsol event is incompatible with the standard
3437 * definition. 4bit tag is placed at 28 bit!
3439 if ((res
>> 28) == ALC880_HP_EVENT
)
3440 alc880_medion_rim_automute(codec
);
3443 static void alc880_medion_rim_setup(struct hda_codec
*codec
)
3445 struct alc_spec
*spec
= codec
->spec
;
3447 spec
->autocfg
.hp_pins
[0] = 0x14;
3448 spec
->autocfg
.speaker_pins
[0] = 0x1b;
3451 #ifdef CONFIG_SND_HDA_POWER_SAVE
3452 static struct hda_amp_list alc880_loopbacks
[] = {
3453 { 0x0b, HDA_INPUT
, 0 },
3454 { 0x0b, HDA_INPUT
, 1 },
3455 { 0x0b, HDA_INPUT
, 2 },
3456 { 0x0b, HDA_INPUT
, 3 },
3457 { 0x0b, HDA_INPUT
, 4 },
3461 static struct hda_amp_list alc880_lg_loopbacks
[] = {
3462 { 0x0b, HDA_INPUT
, 1 },
3463 { 0x0b, HDA_INPUT
, 6 },
3464 { 0x0b, HDA_INPUT
, 7 },
3473 static int alc_init(struct hda_codec
*codec
)
3475 struct alc_spec
*spec
= codec
->spec
;
3479 alc_auto_init_amp(codec
, spec
->init_amp
);
3481 for (i
= 0; i
< spec
->num_init_verbs
; i
++)
3482 snd_hda_sequence_write(codec
, spec
->init_verbs
[i
]);
3484 if (spec
->init_hook
)
3485 spec
->init_hook(codec
);
3487 #ifdef CONFIG_SND_HDA_POWER_SAVE
3488 if (codec
->patch_ops
.check_power_status
)
3489 codec
->patch_ops
.check_power_status(codec
, 0x01);
3494 static void alc_unsol_event(struct hda_codec
*codec
, unsigned int res
)
3496 struct alc_spec
*spec
= codec
->spec
;
3498 if (spec
->unsol_event
)
3499 spec
->unsol_event(codec
, res
);
3502 #ifdef CONFIG_SND_HDA_POWER_SAVE
3503 static int alc_check_power_status(struct hda_codec
*codec
, hda_nid_t nid
)
3505 struct alc_spec
*spec
= codec
->spec
;
3506 return snd_hda_check_amp_list_power(codec
, &spec
->loopback
, nid
);
3511 * Analog playback callbacks
3513 static int alc880_playback_pcm_open(struct hda_pcm_stream
*hinfo
,
3514 struct hda_codec
*codec
,
3515 struct snd_pcm_substream
*substream
)
3517 struct alc_spec
*spec
= codec
->spec
;
3518 return snd_hda_multi_out_analog_open(codec
, &spec
->multiout
, substream
,
3522 static int alc880_playback_pcm_prepare(struct hda_pcm_stream
*hinfo
,
3523 struct hda_codec
*codec
,
3524 unsigned int stream_tag
,
3525 unsigned int format
,
3526 struct snd_pcm_substream
*substream
)
3528 struct alc_spec
*spec
= codec
->spec
;
3529 return snd_hda_multi_out_analog_prepare(codec
, &spec
->multiout
,
3530 stream_tag
, format
, substream
);
3533 static int alc880_playback_pcm_cleanup(struct hda_pcm_stream
*hinfo
,
3534 struct hda_codec
*codec
,
3535 struct snd_pcm_substream
*substream
)
3537 struct alc_spec
*spec
= codec
->spec
;
3538 return snd_hda_multi_out_analog_cleanup(codec
, &spec
->multiout
);
3544 static int alc880_dig_playback_pcm_open(struct hda_pcm_stream
*hinfo
,
3545 struct hda_codec
*codec
,
3546 struct snd_pcm_substream
*substream
)
3548 struct alc_spec
*spec
= codec
->spec
;
3549 return snd_hda_multi_out_dig_open(codec
, &spec
->multiout
);
3552 static int alc880_dig_playback_pcm_prepare(struct hda_pcm_stream
*hinfo
,
3553 struct hda_codec
*codec
,
3554 unsigned int stream_tag
,
3555 unsigned int format
,
3556 struct snd_pcm_substream
*substream
)
3558 struct alc_spec
*spec
= codec
->spec
;
3559 return snd_hda_multi_out_dig_prepare(codec
, &spec
->multiout
,
3560 stream_tag
, format
, substream
);
3563 static int alc880_dig_playback_pcm_cleanup(struct hda_pcm_stream
*hinfo
,
3564 struct hda_codec
*codec
,
3565 struct snd_pcm_substream
*substream
)
3567 struct alc_spec
*spec
= codec
->spec
;
3568 return snd_hda_multi_out_dig_cleanup(codec
, &spec
->multiout
);
3571 static int alc880_dig_playback_pcm_close(struct hda_pcm_stream
*hinfo
,
3572 struct hda_codec
*codec
,
3573 struct snd_pcm_substream
*substream
)
3575 struct alc_spec
*spec
= codec
->spec
;
3576 return snd_hda_multi_out_dig_close(codec
, &spec
->multiout
);
3582 static int alc880_alt_capture_pcm_prepare(struct hda_pcm_stream
*hinfo
,
3583 struct hda_codec
*codec
,
3584 unsigned int stream_tag
,
3585 unsigned int format
,
3586 struct snd_pcm_substream
*substream
)
3588 struct alc_spec
*spec
= codec
->spec
;
3590 snd_hda_codec_setup_stream(codec
, spec
->adc_nids
[substream
->number
+ 1],
3591 stream_tag
, 0, format
);
3595 static int alc880_alt_capture_pcm_cleanup(struct hda_pcm_stream
*hinfo
,
3596 struct hda_codec
*codec
,
3597 struct snd_pcm_substream
*substream
)
3599 struct alc_spec
*spec
= codec
->spec
;
3601 snd_hda_codec_cleanup_stream(codec
,
3602 spec
->adc_nids
[substream
->number
+ 1]);
3609 static struct hda_pcm_stream alc880_pcm_analog_playback
= {
3613 /* NID is set in alc_build_pcms */
3615 .open
= alc880_playback_pcm_open
,
3616 .prepare
= alc880_playback_pcm_prepare
,
3617 .cleanup
= alc880_playback_pcm_cleanup
3621 static struct hda_pcm_stream alc880_pcm_analog_capture
= {
3625 /* NID is set in alc_build_pcms */
3628 static struct hda_pcm_stream alc880_pcm_analog_alt_playback
= {
3632 /* NID is set in alc_build_pcms */
3635 static struct hda_pcm_stream alc880_pcm_analog_alt_capture
= {
3636 .substreams
= 2, /* can be overridden */
3639 /* NID is set in alc_build_pcms */
3641 .prepare
= alc880_alt_capture_pcm_prepare
,
3642 .cleanup
= alc880_alt_capture_pcm_cleanup
3646 static struct hda_pcm_stream alc880_pcm_digital_playback
= {
3650 /* NID is set in alc_build_pcms */
3652 .open
= alc880_dig_playback_pcm_open
,
3653 .close
= alc880_dig_playback_pcm_close
,
3654 .prepare
= alc880_dig_playback_pcm_prepare
,
3655 .cleanup
= alc880_dig_playback_pcm_cleanup
3659 static struct hda_pcm_stream alc880_pcm_digital_capture
= {
3663 /* NID is set in alc_build_pcms */
3666 /* Used by alc_build_pcms to flag that a PCM has no playback stream */
3667 static struct hda_pcm_stream alc_pcm_null_stream
= {
3673 static int alc_build_pcms(struct hda_codec
*codec
)
3675 struct alc_spec
*spec
= codec
->spec
;
3676 struct hda_pcm
*info
= spec
->pcm_rec
;
3679 codec
->num_pcms
= 1;
3680 codec
->pcm_info
= info
;
3682 if (spec
->no_analog
)
3685 snprintf(spec
->stream_name_analog
, sizeof(spec
->stream_name_analog
),
3686 "%s Analog", codec
->chip_name
);
3687 info
->name
= spec
->stream_name_analog
;
3689 if (spec
->stream_analog_playback
) {
3690 if (snd_BUG_ON(!spec
->multiout
.dac_nids
))
3692 info
->stream
[SNDRV_PCM_STREAM_PLAYBACK
] = *(spec
->stream_analog_playback
);
3693 info
->stream
[SNDRV_PCM_STREAM_PLAYBACK
].nid
= spec
->multiout
.dac_nids
[0];
3695 if (spec
->stream_analog_capture
) {
3696 if (snd_BUG_ON(!spec
->adc_nids
))
3698 info
->stream
[SNDRV_PCM_STREAM_CAPTURE
] = *(spec
->stream_analog_capture
);
3699 info
->stream
[SNDRV_PCM_STREAM_CAPTURE
].nid
= spec
->adc_nids
[0];
3702 if (spec
->channel_mode
) {
3703 info
->stream
[SNDRV_PCM_STREAM_PLAYBACK
].channels_max
= 0;
3704 for (i
= 0; i
< spec
->num_channel_mode
; i
++) {
3705 if (spec
->channel_mode
[i
].channels
> info
->stream
[SNDRV_PCM_STREAM_PLAYBACK
].channels_max
) {
3706 info
->stream
[SNDRV_PCM_STREAM_PLAYBACK
].channels_max
= spec
->channel_mode
[i
].channels
;
3712 /* SPDIF for stream index #1 */
3713 if (spec
->multiout
.dig_out_nid
|| spec
->dig_in_nid
) {
3714 snprintf(spec
->stream_name_digital
,
3715 sizeof(spec
->stream_name_digital
),
3716 "%s Digital", codec
->chip_name
);
3717 codec
->num_pcms
= 2;
3718 codec
->slave_dig_outs
= spec
->multiout
.slave_dig_outs
;
3719 info
= spec
->pcm_rec
+ 1;
3720 info
->name
= spec
->stream_name_digital
;
3721 if (spec
->dig_out_type
)
3722 info
->pcm_type
= spec
->dig_out_type
;
3724 info
->pcm_type
= HDA_PCM_TYPE_SPDIF
;
3725 if (spec
->multiout
.dig_out_nid
&&
3726 spec
->stream_digital_playback
) {
3727 info
->stream
[SNDRV_PCM_STREAM_PLAYBACK
] = *(spec
->stream_digital_playback
);
3728 info
->stream
[SNDRV_PCM_STREAM_PLAYBACK
].nid
= spec
->multiout
.dig_out_nid
;
3730 if (spec
->dig_in_nid
&&
3731 spec
->stream_digital_capture
) {
3732 info
->stream
[SNDRV_PCM_STREAM_CAPTURE
] = *(spec
->stream_digital_capture
);
3733 info
->stream
[SNDRV_PCM_STREAM_CAPTURE
].nid
= spec
->dig_in_nid
;
3735 /* FIXME: do we need this for all Realtek codec models? */
3736 codec
->spdif_status_reset
= 1;
3739 if (spec
->no_analog
)
3742 /* If the use of more than one ADC is requested for the current
3743 * model, configure a second analog capture-only PCM.
3745 /* Additional Analaog capture for index #2 */
3746 if ((spec
->alt_dac_nid
&& spec
->stream_analog_alt_playback
) ||
3747 (spec
->num_adc_nids
> 1 && spec
->stream_analog_alt_capture
)) {
3748 codec
->num_pcms
= 3;
3749 info
= spec
->pcm_rec
+ 2;
3750 info
->name
= spec
->stream_name_analog
;
3751 if (spec
->alt_dac_nid
) {
3752 info
->stream
[SNDRV_PCM_STREAM_PLAYBACK
] =
3753 *spec
->stream_analog_alt_playback
;
3754 info
->stream
[SNDRV_PCM_STREAM_PLAYBACK
].nid
=
3757 info
->stream
[SNDRV_PCM_STREAM_PLAYBACK
] =
3758 alc_pcm_null_stream
;
3759 info
->stream
[SNDRV_PCM_STREAM_PLAYBACK
].nid
= 0;
3761 if (spec
->num_adc_nids
> 1) {
3762 info
->stream
[SNDRV_PCM_STREAM_CAPTURE
] =
3763 *spec
->stream_analog_alt_capture
;
3764 info
->stream
[SNDRV_PCM_STREAM_CAPTURE
].nid
=
3766 info
->stream
[SNDRV_PCM_STREAM_CAPTURE
].substreams
=
3767 spec
->num_adc_nids
- 1;
3769 info
->stream
[SNDRV_PCM_STREAM_CAPTURE
] =
3770 alc_pcm_null_stream
;
3771 info
->stream
[SNDRV_PCM_STREAM_CAPTURE
].nid
= 0;
3778 static inline void alc_shutup(struct hda_codec
*codec
)
3780 snd_hda_shutup_pins(codec
);
3783 static void alc_free_kctls(struct hda_codec
*codec
)
3785 struct alc_spec
*spec
= codec
->spec
;
3787 if (spec
->kctls
.list
) {
3788 struct snd_kcontrol_new
*kctl
= spec
->kctls
.list
;
3790 for (i
= 0; i
< spec
->kctls
.used
; i
++)
3791 kfree(kctl
[i
].name
);
3793 snd_array_free(&spec
->kctls
);
3796 static void alc_free(struct hda_codec
*codec
)
3798 struct alc_spec
*spec
= codec
->spec
;
3804 alc_free_kctls(codec
);
3806 snd_hda_detach_beep_device(codec
);
3809 #ifdef CONFIG_SND_HDA_POWER_SAVE
3810 static void alc_power_eapd(struct hda_codec
*codec
)
3812 /* We currently only handle front, HP */
3813 switch (codec
->vendor_id
) {
3815 set_eapd(codec
, 0x0f, 0);
3816 set_eapd(codec
, 0x10, 0);
3829 set_eapd(codec
, 0x14, 0);
3830 set_eapd(codec
, 0x15, 0);
3835 static int alc_suspend(struct hda_codec
*codec
, pm_message_t state
)
3837 struct alc_spec
*spec
= codec
->spec
;
3839 if (spec
&& spec
->power_hook
)
3840 spec
->power_hook(codec
);
3845 #ifdef SND_HDA_NEEDS_RESUME
3846 static int alc_resume(struct hda_codec
*codec
)
3848 codec
->patch_ops
.init(codec
);
3849 snd_hda_codec_resume_amp(codec
);
3850 snd_hda_codec_resume_cache(codec
);
3851 #ifdef CONFIG_SND_HDA_POWER_SAVE
3852 if (codec
->patch_ops
.check_power_status
)
3853 codec
->patch_ops
.check_power_status(codec
, 0x01);
3861 static struct hda_codec_ops alc_patch_ops
= {
3862 .build_controls
= alc_build_controls
,
3863 .build_pcms
= alc_build_pcms
,
3866 .unsol_event
= alc_unsol_event
,
3867 #ifdef SND_HDA_NEEDS_RESUME
3868 .resume
= alc_resume
,
3870 #ifdef CONFIG_SND_HDA_POWER_SAVE
3871 .suspend
= alc_suspend
,
3872 .check_power_status
= alc_check_power_status
,
3874 .reboot_notify
= alc_shutup
,
3877 /* replace the codec chip_name with the given string */
3878 static int alc_codec_rename(struct hda_codec
*codec
, const char *name
)
3880 kfree(codec
->chip_name
);
3881 codec
->chip_name
= kstrdup(name
, GFP_KERNEL
);
3882 if (!codec
->chip_name
) {
3890 * Test configuration for debugging
3892 * Almost all inputs/outputs are enabled. I/O pins can be configured via
3895 #ifdef CONFIG_SND_DEBUG
3896 static hda_nid_t alc880_test_dac_nids
[4] = {
3897 0x02, 0x03, 0x04, 0x05
3900 static struct hda_input_mux alc880_test_capture_source
= {
3909 { "Surround", 0x6 },
3913 static struct hda_channel_mode alc880_test_modes
[4] = {
3920 static int alc_test_pin_ctl_info(struct snd_kcontrol
*kcontrol
,
3921 struct snd_ctl_elem_info
*uinfo
)
3923 static char *texts
[] = {
3924 "N/A", "Line Out", "HP Out",
3925 "In Hi-Z", "In 50%", "In Grd", "In 80%", "In 100%"
3927 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
3929 uinfo
->value
.enumerated
.items
= 8;
3930 if (uinfo
->value
.enumerated
.item
>= 8)
3931 uinfo
->value
.enumerated
.item
= 7;
3932 strcpy(uinfo
->value
.enumerated
.name
, texts
[uinfo
->value
.enumerated
.item
]);
3936 static int alc_test_pin_ctl_get(struct snd_kcontrol
*kcontrol
,
3937 struct snd_ctl_elem_value
*ucontrol
)
3939 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
3940 hda_nid_t nid
= (hda_nid_t
)kcontrol
->private_value
;
3941 unsigned int pin_ctl
, item
= 0;
3943 pin_ctl
= snd_hda_codec_read(codec
, nid
, 0,
3944 AC_VERB_GET_PIN_WIDGET_CONTROL
, 0);
3945 if (pin_ctl
& AC_PINCTL_OUT_EN
) {
3946 if (pin_ctl
& AC_PINCTL_HP_EN
)
3950 } else if (pin_ctl
& AC_PINCTL_IN_EN
) {
3951 switch (pin_ctl
& AC_PINCTL_VREFEN
) {
3952 case AC_PINCTL_VREF_HIZ
: item
= 3; break;
3953 case AC_PINCTL_VREF_50
: item
= 4; break;
3954 case AC_PINCTL_VREF_GRD
: item
= 5; break;
3955 case AC_PINCTL_VREF_80
: item
= 6; break;
3956 case AC_PINCTL_VREF_100
: item
= 7; break;
3959 ucontrol
->value
.enumerated
.item
[0] = item
;
3963 static int alc_test_pin_ctl_put(struct snd_kcontrol
*kcontrol
,
3964 struct snd_ctl_elem_value
*ucontrol
)
3966 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
3967 hda_nid_t nid
= (hda_nid_t
)kcontrol
->private_value
;
3968 static unsigned int ctls
[] = {
3969 0, AC_PINCTL_OUT_EN
, AC_PINCTL_OUT_EN
| AC_PINCTL_HP_EN
,
3970 AC_PINCTL_IN_EN
| AC_PINCTL_VREF_HIZ
,
3971 AC_PINCTL_IN_EN
| AC_PINCTL_VREF_50
,
3972 AC_PINCTL_IN_EN
| AC_PINCTL_VREF_GRD
,
3973 AC_PINCTL_IN_EN
| AC_PINCTL_VREF_80
,
3974 AC_PINCTL_IN_EN
| AC_PINCTL_VREF_100
,
3976 unsigned int old_ctl
, new_ctl
;
3978 old_ctl
= snd_hda_codec_read(codec
, nid
, 0,
3979 AC_VERB_GET_PIN_WIDGET_CONTROL
, 0);
3980 new_ctl
= ctls
[ucontrol
->value
.enumerated
.item
[0]];
3981 if (old_ctl
!= new_ctl
) {
3983 snd_hda_codec_write_cache(codec
, nid
, 0,
3984 AC_VERB_SET_PIN_WIDGET_CONTROL
,
3986 val
= ucontrol
->value
.enumerated
.item
[0] >= 3 ?
3988 snd_hda_codec_amp_stereo(codec
, nid
, HDA_OUTPUT
, 0,
3995 static int alc_test_pin_src_info(struct snd_kcontrol
*kcontrol
,
3996 struct snd_ctl_elem_info
*uinfo
)
3998 static char *texts
[] = {
3999 "Front", "Surround", "CLFE", "Side"
4001 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
4003 uinfo
->value
.enumerated
.items
= 4;
4004 if (uinfo
->value
.enumerated
.item
>= 4)
4005 uinfo
->value
.enumerated
.item
= 3;
4006 strcpy(uinfo
->value
.enumerated
.name
, texts
[uinfo
->value
.enumerated
.item
]);
4010 static int alc_test_pin_src_get(struct snd_kcontrol
*kcontrol
,
4011 struct snd_ctl_elem_value
*ucontrol
)
4013 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
4014 hda_nid_t nid
= (hda_nid_t
)kcontrol
->private_value
;
4017 sel
= snd_hda_codec_read(codec
, nid
, 0, AC_VERB_GET_CONNECT_SEL
, 0);
4018 ucontrol
->value
.enumerated
.item
[0] = sel
& 3;
4022 static int alc_test_pin_src_put(struct snd_kcontrol
*kcontrol
,
4023 struct snd_ctl_elem_value
*ucontrol
)
4025 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
4026 hda_nid_t nid
= (hda_nid_t
)kcontrol
->private_value
;
4029 sel
= snd_hda_codec_read(codec
, nid
, 0, AC_VERB_GET_CONNECT_SEL
, 0) & 3;
4030 if (ucontrol
->value
.enumerated
.item
[0] != sel
) {
4031 sel
= ucontrol
->value
.enumerated
.item
[0] & 3;
4032 snd_hda_codec_write_cache(codec
, nid
, 0,
4033 AC_VERB_SET_CONNECT_SEL
, sel
);
4039 #define PIN_CTL_TEST(xname,nid) { \
4040 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
4042 .subdevice = HDA_SUBDEV_NID_FLAG | nid, \
4043 .info = alc_test_pin_ctl_info, \
4044 .get = alc_test_pin_ctl_get, \
4045 .put = alc_test_pin_ctl_put, \
4046 .private_value = nid \
4049 #define PIN_SRC_TEST(xname,nid) { \
4050 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
4052 .subdevice = HDA_SUBDEV_NID_FLAG | nid, \
4053 .info = alc_test_pin_src_info, \
4054 .get = alc_test_pin_src_get, \
4055 .put = alc_test_pin_src_put, \
4056 .private_value = nid \
4059 static struct snd_kcontrol_new alc880_test_mixer
[] = {
4060 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
4061 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
4062 HDA_CODEC_VOLUME("CLFE Playback Volume", 0x0e, 0x0, HDA_OUTPUT
),
4063 HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT
),
4064 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
4065 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT
),
4066 HDA_BIND_MUTE("CLFE Playback Switch", 0x0e, 2, HDA_INPUT
),
4067 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT
),
4068 PIN_CTL_TEST("Front Pin Mode", 0x14),
4069 PIN_CTL_TEST("Surround Pin Mode", 0x15),
4070 PIN_CTL_TEST("CLFE Pin Mode", 0x16),
4071 PIN_CTL_TEST("Side Pin Mode", 0x17),
4072 PIN_CTL_TEST("In-1 Pin Mode", 0x18),
4073 PIN_CTL_TEST("In-2 Pin Mode", 0x19),
4074 PIN_CTL_TEST("In-3 Pin Mode", 0x1a),
4075 PIN_CTL_TEST("In-4 Pin Mode", 0x1b),
4076 PIN_SRC_TEST("In-1 Pin Source", 0x18),
4077 PIN_SRC_TEST("In-2 Pin Source", 0x19),
4078 PIN_SRC_TEST("In-3 Pin Source", 0x1a),
4079 PIN_SRC_TEST("In-4 Pin Source", 0x1b),
4080 HDA_CODEC_VOLUME("In-1 Playback Volume", 0x0b, 0x0, HDA_INPUT
),
4081 HDA_CODEC_MUTE("In-1 Playback Switch", 0x0b, 0x0, HDA_INPUT
),
4082 HDA_CODEC_VOLUME("In-2 Playback Volume", 0x0b, 0x1, HDA_INPUT
),
4083 HDA_CODEC_MUTE("In-2 Playback Switch", 0x0b, 0x1, HDA_INPUT
),
4084 HDA_CODEC_VOLUME("In-3 Playback Volume", 0x0b, 0x2, HDA_INPUT
),
4085 HDA_CODEC_MUTE("In-3 Playback Switch", 0x0b, 0x2, HDA_INPUT
),
4086 HDA_CODEC_VOLUME("In-4 Playback Volume", 0x0b, 0x3, HDA_INPUT
),
4087 HDA_CODEC_MUTE("In-4 Playback Switch", 0x0b, 0x3, HDA_INPUT
),
4088 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x4, HDA_INPUT
),
4089 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x4, HDA_INPUT
),
4091 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
4092 .name
= "Channel Mode",
4093 .info
= alc_ch_mode_info
,
4094 .get
= alc_ch_mode_get
,
4095 .put
= alc_ch_mode_put
,
4100 static struct hda_verb alc880_test_init_verbs
[] = {
4101 /* Unmute inputs of 0x0c - 0x0f */
4102 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
4103 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
4104 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
4105 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
4106 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
4107 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
4108 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
4109 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
4110 /* Vol output for 0x0c-0x0f */
4111 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
4112 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
4113 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
4114 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
4115 /* Set output pins 0x14-0x17 */
4116 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
4117 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
4118 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
4119 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
4120 /* Unmute output pins 0x14-0x17 */
4121 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
4122 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
4123 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
4124 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
4125 /* Set input pins 0x18-0x1c */
4126 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
4127 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
4128 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
4129 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
4130 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
4131 /* Mute input pins 0x18-0x1b */
4132 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
4133 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
4134 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
4135 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
4137 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
4138 {0x07, AC_VERB_SET_CONNECT_SEL
, 0x00},
4139 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
4140 {0x08, AC_VERB_SET_CONNECT_SEL
, 0x00},
4141 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
4142 {0x09, AC_VERB_SET_CONNECT_SEL
, 0x00},
4143 /* Analog input/passthru */
4144 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
4145 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
4146 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
4147 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
4148 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
4156 static const char *alc880_models
[ALC880_MODEL_LAST
] = {
4157 [ALC880_3ST
] = "3stack",
4158 [ALC880_TCL_S700
] = "tcl",
4159 [ALC880_3ST_DIG
] = "3stack-digout",
4160 [ALC880_CLEVO
] = "clevo",
4161 [ALC880_5ST
] = "5stack",
4162 [ALC880_5ST_DIG
] = "5stack-digout",
4163 [ALC880_W810
] = "w810",
4164 [ALC880_Z71V
] = "z71v",
4165 [ALC880_6ST
] = "6stack",
4166 [ALC880_6ST_DIG
] = "6stack-digout",
4167 [ALC880_ASUS
] = "asus",
4168 [ALC880_ASUS_W1V
] = "asus-w1v",
4169 [ALC880_ASUS_DIG
] = "asus-dig",
4170 [ALC880_ASUS_DIG2
] = "asus-dig2",
4171 [ALC880_UNIWILL_DIG
] = "uniwill",
4172 [ALC880_UNIWILL_P53
] = "uniwill-p53",
4173 [ALC880_FUJITSU
] = "fujitsu",
4174 [ALC880_F1734
] = "F1734",
4176 [ALC880_LG_LW
] = "lg-lw",
4177 [ALC880_MEDION_RIM
] = "medion",
4178 #ifdef CONFIG_SND_DEBUG
4179 [ALC880_TEST
] = "test",
4181 [ALC880_AUTO
] = "auto",
4184 static struct snd_pci_quirk alc880_cfg_tbl
[] = {
4185 SND_PCI_QUIRK(0x1019, 0x0f69, "Coeus G610P", ALC880_W810
),
4186 SND_PCI_QUIRK(0x1019, 0xa880, "ECS", ALC880_5ST_DIG
),
4187 SND_PCI_QUIRK(0x1019, 0xa884, "Acer APFV", ALC880_6ST
),
4188 SND_PCI_QUIRK(0x1025, 0x0070, "ULI", ALC880_3ST_DIG
),
4189 SND_PCI_QUIRK(0x1025, 0x0077, "ULI", ALC880_6ST_DIG
),
4190 SND_PCI_QUIRK(0x1025, 0x0078, "ULI", ALC880_6ST_DIG
),
4191 SND_PCI_QUIRK(0x1025, 0x0087, "ULI", ALC880_6ST_DIG
),
4192 SND_PCI_QUIRK(0x1025, 0xe309, "ULI", ALC880_3ST_DIG
),
4193 SND_PCI_QUIRK(0x1025, 0xe310, "ULI", ALC880_3ST
),
4194 SND_PCI_QUIRK(0x1039, 0x1234, NULL
, ALC880_6ST_DIG
),
4195 SND_PCI_QUIRK(0x103c, 0x2a09, "HP", ALC880_5ST
),
4196 SND_PCI_QUIRK(0x1043, 0x10b3, "ASUS W1V", ALC880_ASUS_W1V
),
4197 SND_PCI_QUIRK(0x1043, 0x10c2, "ASUS W6A", ALC880_ASUS_DIG
),
4198 SND_PCI_QUIRK(0x1043, 0x10c3, "ASUS Wxx", ALC880_ASUS_DIG
),
4199 SND_PCI_QUIRK(0x1043, 0x1113, "ASUS", ALC880_ASUS_DIG
),
4200 SND_PCI_QUIRK(0x1043, 0x1123, "ASUS", ALC880_ASUS_DIG
),
4201 SND_PCI_QUIRK(0x1043, 0x1173, "ASUS", ALC880_ASUS_DIG
),
4202 SND_PCI_QUIRK(0x1043, 0x1964, "ASUS Z71V", ALC880_Z71V
),
4203 /* SND_PCI_QUIRK(0x1043, 0x1964, "ASUS", ALC880_ASUS_DIG), */
4204 SND_PCI_QUIRK(0x1043, 0x1973, "ASUS", ALC880_ASUS_DIG
),
4205 SND_PCI_QUIRK(0x1043, 0x19b3, "ASUS", ALC880_ASUS_DIG
),
4206 SND_PCI_QUIRK(0x1043, 0x814e, "ASUS P5GD1 w/SPDIF", ALC880_6ST_DIG
),
4207 SND_PCI_QUIRK(0x1043, 0x8181, "ASUS P4GPL", ALC880_ASUS_DIG
),
4208 SND_PCI_QUIRK(0x1043, 0x8196, "ASUS P5GD1", ALC880_6ST
),
4209 SND_PCI_QUIRK(0x1043, 0x81b4, "ASUS", ALC880_6ST
),
4210 SND_PCI_QUIRK_VENDOR(0x1043, "ASUS", ALC880_ASUS
), /* default ASUS */
4211 SND_PCI_QUIRK(0x104d, 0x81a0, "Sony", ALC880_3ST
),
4212 SND_PCI_QUIRK(0x104d, 0x81d6, "Sony", ALC880_3ST
),
4213 SND_PCI_QUIRK(0x107b, 0x3032, "Gateway", ALC880_5ST
),
4214 SND_PCI_QUIRK(0x107b, 0x3033, "Gateway", ALC880_5ST
),
4215 SND_PCI_QUIRK(0x107b, 0x4039, "Gateway", ALC880_5ST
),
4216 SND_PCI_QUIRK(0x1297, 0xc790, "Shuttle ST20G5", ALC880_6ST_DIG
),
4217 SND_PCI_QUIRK(0x1458, 0xa102, "Gigabyte K8", ALC880_6ST_DIG
),
4218 SND_PCI_QUIRK(0x1462, 0x1150, "MSI", ALC880_6ST_DIG
),
4219 SND_PCI_QUIRK(0x1509, 0x925d, "FIC P4M", ALC880_6ST_DIG
),
4220 SND_PCI_QUIRK(0x1558, 0x0520, "Clevo m520G", ALC880_CLEVO
),
4221 SND_PCI_QUIRK(0x1558, 0x0660, "Clevo m655n", ALC880_CLEVO
),
4222 SND_PCI_QUIRK(0x1558, 0x5401, "ASUS", ALC880_ASUS_DIG2
),
4223 SND_PCI_QUIRK(0x1565, 0x8202, "Biostar", ALC880_5ST_DIG
),
4224 SND_PCI_QUIRK(0x1584, 0x9050, "Uniwill", ALC880_UNIWILL_DIG
),
4225 SND_PCI_QUIRK(0x1584, 0x9054, "Uniwlll", ALC880_F1734
),
4226 SND_PCI_QUIRK(0x1584, 0x9070, "Uniwill", ALC880_UNIWILL
),
4227 SND_PCI_QUIRK(0x1584, 0x9077, "Uniwill P53", ALC880_UNIWILL_P53
),
4228 SND_PCI_QUIRK(0x161f, 0x203d, "W810", ALC880_W810
),
4229 SND_PCI_QUIRK(0x161f, 0x205d, "Medion Rim 2150", ALC880_MEDION_RIM
),
4230 SND_PCI_QUIRK(0x1695, 0x400d, "EPoX", ALC880_5ST_DIG
),
4231 SND_PCI_QUIRK(0x1695, 0x4012, "EPox EP-5LDA", ALC880_5ST_DIG
),
4232 SND_PCI_QUIRK(0x1734, 0x107c, "FSC F1734", ALC880_F1734
),
4233 SND_PCI_QUIRK(0x1734, 0x1094, "FSC Amilo M1451G", ALC880_FUJITSU
),
4234 SND_PCI_QUIRK(0x1734, 0x10ac, "FSC AMILO Xi 1526", ALC880_F1734
),
4235 SND_PCI_QUIRK(0x1734, 0x10b0, "Fujitsu", ALC880_FUJITSU
),
4236 SND_PCI_QUIRK(0x1854, 0x0018, "LG LW20", ALC880_LG_LW
),
4237 SND_PCI_QUIRK(0x1854, 0x003b, "LG", ALC880_LG
),
4238 SND_PCI_QUIRK(0x1854, 0x0068, "LG w1", ALC880_LG
),
4239 SND_PCI_QUIRK(0x1854, 0x0077, "LG LW25", ALC880_LG_LW
),
4240 SND_PCI_QUIRK(0x19db, 0x4188, "TCL S700", ALC880_TCL_S700
),
4241 SND_PCI_QUIRK(0x2668, 0x8086, NULL
, ALC880_6ST_DIG
), /* broken BIOS */
4242 SND_PCI_QUIRK(0x8086, 0x2668, NULL
, ALC880_6ST_DIG
),
4243 SND_PCI_QUIRK(0x8086, 0xa100, "Intel mobo", ALC880_5ST_DIG
),
4244 SND_PCI_QUIRK(0x8086, 0xd400, "Intel mobo", ALC880_5ST_DIG
),
4245 SND_PCI_QUIRK(0x8086, 0xd401, "Intel mobo", ALC880_5ST_DIG
),
4246 SND_PCI_QUIRK(0x8086, 0xd402, "Intel mobo", ALC880_3ST_DIG
),
4247 SND_PCI_QUIRK(0x8086, 0xe224, "Intel mobo", ALC880_5ST_DIG
),
4248 SND_PCI_QUIRK(0x8086, 0xe305, "Intel mobo", ALC880_3ST_DIG
),
4249 SND_PCI_QUIRK(0x8086, 0xe308, "Intel mobo", ALC880_3ST_DIG
),
4250 SND_PCI_QUIRK(0x8086, 0xe400, "Intel mobo", ALC880_5ST_DIG
),
4251 SND_PCI_QUIRK(0x8086, 0xe401, "Intel mobo", ALC880_5ST_DIG
),
4252 SND_PCI_QUIRK(0x8086, 0xe402, "Intel mobo", ALC880_5ST_DIG
),
4254 SND_PCI_QUIRK_VENDOR(0x8086, "Intel mobo", ALC880_3ST
),
4255 SND_PCI_QUIRK(0xa0a0, 0x0560, "AOpen i915GMm-HFS", ALC880_5ST_DIG
),
4256 SND_PCI_QUIRK(0xe803, 0x1019, NULL
, ALC880_6ST_DIG
),
4261 * ALC880 codec presets
4263 static struct alc_config_preset alc880_presets
[] = {
4265 .mixers
= { alc880_three_stack_mixer
},
4266 .init_verbs
= { alc880_volume_init_verbs
,
4267 alc880_pin_3stack_init_verbs
},
4268 .num_dacs
= ARRAY_SIZE(alc880_dac_nids
),
4269 .dac_nids
= alc880_dac_nids
,
4270 .num_channel_mode
= ARRAY_SIZE(alc880_threestack_modes
),
4271 .channel_mode
= alc880_threestack_modes
,
4273 .input_mux
= &alc880_capture_source
,
4275 [ALC880_3ST_DIG
] = {
4276 .mixers
= { alc880_three_stack_mixer
},
4277 .init_verbs
= { alc880_volume_init_verbs
,
4278 alc880_pin_3stack_init_verbs
},
4279 .num_dacs
= ARRAY_SIZE(alc880_dac_nids
),
4280 .dac_nids
= alc880_dac_nids
,
4281 .dig_out_nid
= ALC880_DIGOUT_NID
,
4282 .num_channel_mode
= ARRAY_SIZE(alc880_threestack_modes
),
4283 .channel_mode
= alc880_threestack_modes
,
4285 .input_mux
= &alc880_capture_source
,
4287 [ALC880_TCL_S700
] = {
4288 .mixers
= { alc880_tcl_s700_mixer
},
4289 .init_verbs
= { alc880_volume_init_verbs
,
4290 alc880_pin_tcl_S700_init_verbs
,
4291 alc880_gpio2_init_verbs
},
4292 .num_dacs
= ARRAY_SIZE(alc880_dac_nids
),
4293 .dac_nids
= alc880_dac_nids
,
4294 .adc_nids
= alc880_adc_nids_alt
, /* FIXME: correct? */
4295 .num_adc_nids
= 1, /* single ADC */
4297 .num_channel_mode
= ARRAY_SIZE(alc880_2_jack_modes
),
4298 .channel_mode
= alc880_2_jack_modes
,
4299 .input_mux
= &alc880_capture_source
,
4302 .mixers
= { alc880_three_stack_mixer
,
4303 alc880_five_stack_mixer
},
4304 .init_verbs
= { alc880_volume_init_verbs
,
4305 alc880_pin_5stack_init_verbs
},
4306 .num_dacs
= ARRAY_SIZE(alc880_dac_nids
),
4307 .dac_nids
= alc880_dac_nids
,
4308 .num_channel_mode
= ARRAY_SIZE(alc880_fivestack_modes
),
4309 .channel_mode
= alc880_fivestack_modes
,
4310 .input_mux
= &alc880_capture_source
,
4312 [ALC880_5ST_DIG
] = {
4313 .mixers
= { alc880_three_stack_mixer
,
4314 alc880_five_stack_mixer
},
4315 .init_verbs
= { alc880_volume_init_verbs
,
4316 alc880_pin_5stack_init_verbs
},
4317 .num_dacs
= ARRAY_SIZE(alc880_dac_nids
),
4318 .dac_nids
= alc880_dac_nids
,
4319 .dig_out_nid
= ALC880_DIGOUT_NID
,
4320 .num_channel_mode
= ARRAY_SIZE(alc880_fivestack_modes
),
4321 .channel_mode
= alc880_fivestack_modes
,
4322 .input_mux
= &alc880_capture_source
,
4325 .mixers
= { alc880_six_stack_mixer
},
4326 .init_verbs
= { alc880_volume_init_verbs
,
4327 alc880_pin_6stack_init_verbs
},
4328 .num_dacs
= ARRAY_SIZE(alc880_6st_dac_nids
),
4329 .dac_nids
= alc880_6st_dac_nids
,
4330 .num_channel_mode
= ARRAY_SIZE(alc880_sixstack_modes
),
4331 .channel_mode
= alc880_sixstack_modes
,
4332 .input_mux
= &alc880_6stack_capture_source
,
4334 [ALC880_6ST_DIG
] = {
4335 .mixers
= { alc880_six_stack_mixer
},
4336 .init_verbs
= { alc880_volume_init_verbs
,
4337 alc880_pin_6stack_init_verbs
},
4338 .num_dacs
= ARRAY_SIZE(alc880_6st_dac_nids
),
4339 .dac_nids
= alc880_6st_dac_nids
,
4340 .dig_out_nid
= ALC880_DIGOUT_NID
,
4341 .num_channel_mode
= ARRAY_SIZE(alc880_sixstack_modes
),
4342 .channel_mode
= alc880_sixstack_modes
,
4343 .input_mux
= &alc880_6stack_capture_source
,
4346 .mixers
= { alc880_w810_base_mixer
},
4347 .init_verbs
= { alc880_volume_init_verbs
,
4348 alc880_pin_w810_init_verbs
,
4349 alc880_gpio2_init_verbs
},
4350 .num_dacs
= ARRAY_SIZE(alc880_w810_dac_nids
),
4351 .dac_nids
= alc880_w810_dac_nids
,
4352 .dig_out_nid
= ALC880_DIGOUT_NID
,
4353 .num_channel_mode
= ARRAY_SIZE(alc880_w810_modes
),
4354 .channel_mode
= alc880_w810_modes
,
4355 .input_mux
= &alc880_capture_source
,
4358 .mixers
= { alc880_z71v_mixer
},
4359 .init_verbs
= { alc880_volume_init_verbs
,
4360 alc880_pin_z71v_init_verbs
},
4361 .num_dacs
= ARRAY_SIZE(alc880_z71v_dac_nids
),
4362 .dac_nids
= alc880_z71v_dac_nids
,
4363 .dig_out_nid
= ALC880_DIGOUT_NID
,
4365 .num_channel_mode
= ARRAY_SIZE(alc880_2_jack_modes
),
4366 .channel_mode
= alc880_2_jack_modes
,
4367 .input_mux
= &alc880_capture_source
,
4370 .mixers
= { alc880_f1734_mixer
},
4371 .init_verbs
= { alc880_volume_init_verbs
,
4372 alc880_pin_f1734_init_verbs
},
4373 .num_dacs
= ARRAY_SIZE(alc880_f1734_dac_nids
),
4374 .dac_nids
= alc880_f1734_dac_nids
,
4376 .num_channel_mode
= ARRAY_SIZE(alc880_2_jack_modes
),
4377 .channel_mode
= alc880_2_jack_modes
,
4378 .input_mux
= &alc880_f1734_capture_source
,
4379 .unsol_event
= alc880_uniwill_p53_unsol_event
,
4380 .setup
= alc880_uniwill_p53_setup
,
4381 .init_hook
= alc_automute_amp
,
4384 .mixers
= { alc880_asus_mixer
},
4385 .init_verbs
= { alc880_volume_init_verbs
,
4386 alc880_pin_asus_init_verbs
,
4387 alc880_gpio1_init_verbs
},
4388 .num_dacs
= ARRAY_SIZE(alc880_asus_dac_nids
),
4389 .dac_nids
= alc880_asus_dac_nids
,
4390 .num_channel_mode
= ARRAY_SIZE(alc880_asus_modes
),
4391 .channel_mode
= alc880_asus_modes
,
4393 .input_mux
= &alc880_capture_source
,
4395 [ALC880_ASUS_DIG
] = {
4396 .mixers
= { alc880_asus_mixer
},
4397 .init_verbs
= { alc880_volume_init_verbs
,
4398 alc880_pin_asus_init_verbs
,
4399 alc880_gpio1_init_verbs
},
4400 .num_dacs
= ARRAY_SIZE(alc880_asus_dac_nids
),
4401 .dac_nids
= alc880_asus_dac_nids
,
4402 .dig_out_nid
= ALC880_DIGOUT_NID
,
4403 .num_channel_mode
= ARRAY_SIZE(alc880_asus_modes
),
4404 .channel_mode
= alc880_asus_modes
,
4406 .input_mux
= &alc880_capture_source
,
4408 [ALC880_ASUS_DIG2
] = {
4409 .mixers
= { alc880_asus_mixer
},
4410 .init_verbs
= { alc880_volume_init_verbs
,
4411 alc880_pin_asus_init_verbs
,
4412 alc880_gpio2_init_verbs
}, /* use GPIO2 */
4413 .num_dacs
= ARRAY_SIZE(alc880_asus_dac_nids
),
4414 .dac_nids
= alc880_asus_dac_nids
,
4415 .dig_out_nid
= ALC880_DIGOUT_NID
,
4416 .num_channel_mode
= ARRAY_SIZE(alc880_asus_modes
),
4417 .channel_mode
= alc880_asus_modes
,
4419 .input_mux
= &alc880_capture_source
,
4421 [ALC880_ASUS_W1V
] = {
4422 .mixers
= { alc880_asus_mixer
, alc880_asus_w1v_mixer
},
4423 .init_verbs
= { alc880_volume_init_verbs
,
4424 alc880_pin_asus_init_verbs
,
4425 alc880_gpio1_init_verbs
},
4426 .num_dacs
= ARRAY_SIZE(alc880_asus_dac_nids
),
4427 .dac_nids
= alc880_asus_dac_nids
,
4428 .dig_out_nid
= ALC880_DIGOUT_NID
,
4429 .num_channel_mode
= ARRAY_SIZE(alc880_asus_modes
),
4430 .channel_mode
= alc880_asus_modes
,
4432 .input_mux
= &alc880_capture_source
,
4434 [ALC880_UNIWILL_DIG
] = {
4435 .mixers
= { alc880_asus_mixer
},
4436 .init_verbs
= { alc880_volume_init_verbs
,
4437 alc880_pin_asus_init_verbs
},
4438 .num_dacs
= ARRAY_SIZE(alc880_asus_dac_nids
),
4439 .dac_nids
= alc880_asus_dac_nids
,
4440 .dig_out_nid
= ALC880_DIGOUT_NID
,
4441 .num_channel_mode
= ARRAY_SIZE(alc880_asus_modes
),
4442 .channel_mode
= alc880_asus_modes
,
4444 .input_mux
= &alc880_capture_source
,
4446 [ALC880_UNIWILL
] = {
4447 .mixers
= { alc880_uniwill_mixer
},
4448 .init_verbs
= { alc880_volume_init_verbs
,
4449 alc880_uniwill_init_verbs
},
4450 .num_dacs
= ARRAY_SIZE(alc880_asus_dac_nids
),
4451 .dac_nids
= alc880_asus_dac_nids
,
4452 .dig_out_nid
= ALC880_DIGOUT_NID
,
4453 .num_channel_mode
= ARRAY_SIZE(alc880_threestack_modes
),
4454 .channel_mode
= alc880_threestack_modes
,
4456 .input_mux
= &alc880_capture_source
,
4457 .unsol_event
= alc880_uniwill_unsol_event
,
4458 .setup
= alc880_uniwill_setup
,
4459 .init_hook
= alc880_uniwill_init_hook
,
4461 [ALC880_UNIWILL_P53
] = {
4462 .mixers
= { alc880_uniwill_p53_mixer
},
4463 .init_verbs
= { alc880_volume_init_verbs
,
4464 alc880_uniwill_p53_init_verbs
},
4465 .num_dacs
= ARRAY_SIZE(alc880_asus_dac_nids
),
4466 .dac_nids
= alc880_asus_dac_nids
,
4467 .num_channel_mode
= ARRAY_SIZE(alc880_w810_modes
),
4468 .channel_mode
= alc880_threestack_modes
,
4469 .input_mux
= &alc880_capture_source
,
4470 .unsol_event
= alc880_uniwill_p53_unsol_event
,
4471 .setup
= alc880_uniwill_p53_setup
,
4472 .init_hook
= alc_automute_amp
,
4474 [ALC880_FUJITSU
] = {
4475 .mixers
= { alc880_fujitsu_mixer
},
4476 .init_verbs
= { alc880_volume_init_verbs
,
4477 alc880_uniwill_p53_init_verbs
,
4478 alc880_beep_init_verbs
},
4479 .num_dacs
= ARRAY_SIZE(alc880_dac_nids
),
4480 .dac_nids
= alc880_dac_nids
,
4481 .dig_out_nid
= ALC880_DIGOUT_NID
,
4482 .num_channel_mode
= ARRAY_SIZE(alc880_2_jack_modes
),
4483 .channel_mode
= alc880_2_jack_modes
,
4484 .input_mux
= &alc880_capture_source
,
4485 .unsol_event
= alc880_uniwill_p53_unsol_event
,
4486 .setup
= alc880_uniwill_p53_setup
,
4487 .init_hook
= alc_automute_amp
,
4490 .mixers
= { alc880_three_stack_mixer
},
4491 .init_verbs
= { alc880_volume_init_verbs
,
4492 alc880_pin_clevo_init_verbs
},
4493 .num_dacs
= ARRAY_SIZE(alc880_dac_nids
),
4494 .dac_nids
= alc880_dac_nids
,
4496 .num_channel_mode
= ARRAY_SIZE(alc880_threestack_modes
),
4497 .channel_mode
= alc880_threestack_modes
,
4499 .input_mux
= &alc880_capture_source
,
4502 .mixers
= { alc880_lg_mixer
},
4503 .init_verbs
= { alc880_volume_init_verbs
,
4504 alc880_lg_init_verbs
},
4505 .num_dacs
= ARRAY_SIZE(alc880_lg_dac_nids
),
4506 .dac_nids
= alc880_lg_dac_nids
,
4507 .dig_out_nid
= ALC880_DIGOUT_NID
,
4508 .num_channel_mode
= ARRAY_SIZE(alc880_lg_ch_modes
),
4509 .channel_mode
= alc880_lg_ch_modes
,
4511 .input_mux
= &alc880_lg_capture_source
,
4512 .unsol_event
= alc_automute_amp_unsol_event
,
4513 .setup
= alc880_lg_setup
,
4514 .init_hook
= alc_automute_amp
,
4515 #ifdef CONFIG_SND_HDA_POWER_SAVE
4516 .loopbacks
= alc880_lg_loopbacks
,
4520 .mixers
= { alc880_lg_lw_mixer
},
4521 .init_verbs
= { alc880_volume_init_verbs
,
4522 alc880_lg_lw_init_verbs
},
4523 .num_dacs
= ARRAY_SIZE(alc880_dac_nids
),
4524 .dac_nids
= alc880_dac_nids
,
4525 .dig_out_nid
= ALC880_DIGOUT_NID
,
4526 .num_channel_mode
= ARRAY_SIZE(alc880_lg_lw_modes
),
4527 .channel_mode
= alc880_lg_lw_modes
,
4528 .input_mux
= &alc880_lg_lw_capture_source
,
4529 .unsol_event
= alc_automute_amp_unsol_event
,
4530 .setup
= alc880_lg_lw_setup
,
4531 .init_hook
= alc_automute_amp
,
4533 [ALC880_MEDION_RIM
] = {
4534 .mixers
= { alc880_medion_rim_mixer
},
4535 .init_verbs
= { alc880_volume_init_verbs
,
4536 alc880_medion_rim_init_verbs
,
4537 alc_gpio2_init_verbs
},
4538 .num_dacs
= ARRAY_SIZE(alc880_dac_nids
),
4539 .dac_nids
= alc880_dac_nids
,
4540 .dig_out_nid
= ALC880_DIGOUT_NID
,
4541 .num_channel_mode
= ARRAY_SIZE(alc880_2_jack_modes
),
4542 .channel_mode
= alc880_2_jack_modes
,
4543 .input_mux
= &alc880_medion_rim_capture_source
,
4544 .unsol_event
= alc880_medion_rim_unsol_event
,
4545 .setup
= alc880_medion_rim_setup
,
4546 .init_hook
= alc880_medion_rim_automute
,
4548 #ifdef CONFIG_SND_DEBUG
4550 .mixers
= { alc880_test_mixer
},
4551 .init_verbs
= { alc880_test_init_verbs
},
4552 .num_dacs
= ARRAY_SIZE(alc880_test_dac_nids
),
4553 .dac_nids
= alc880_test_dac_nids
,
4554 .dig_out_nid
= ALC880_DIGOUT_NID
,
4555 .num_channel_mode
= ARRAY_SIZE(alc880_test_modes
),
4556 .channel_mode
= alc880_test_modes
,
4557 .input_mux
= &alc880_test_capture_source
,
4563 * Automatic parse of I/O pins from the BIOS configuration
4568 ALC_CTL_WIDGET_MUTE
,
4571 static struct snd_kcontrol_new alc880_control_templates
[] = {
4572 HDA_CODEC_VOLUME(NULL
, 0, 0, 0),
4573 HDA_CODEC_MUTE(NULL
, 0, 0, 0),
4574 HDA_BIND_MUTE(NULL
, 0, 0, 0),
4577 /* add dynamic controls */
4578 static int add_control(struct alc_spec
*spec
, int type
, const char *name
,
4581 struct snd_kcontrol_new
*knew
;
4583 snd_array_init(&spec
->kctls
, sizeof(*knew
), 32);
4584 knew
= snd_array_new(&spec
->kctls
);
4587 *knew
= alc880_control_templates
[type
];
4588 knew
->name
= kstrdup(name
, GFP_KERNEL
);
4591 if (get_amp_nid_(val
))
4592 knew
->subdevice
= HDA_SUBDEV_AMP_FLAG
;
4593 knew
->private_value
= val
;
4597 static int add_control_with_pfx(struct alc_spec
*spec
, int type
,
4598 const char *pfx
, const char *dir
,
4599 const char *sfx
, unsigned long val
)
4602 snprintf(name
, sizeof(name
), "%s %s %s", pfx
, dir
, sfx
);
4603 return add_control(spec
, type
, name
, val
);
4606 #define add_pb_vol_ctrl(spec, type, pfx, val) \
4607 add_control_with_pfx(spec, type, pfx, "Playback", "Volume", val)
4608 #define add_pb_sw_ctrl(spec, type, pfx, val) \
4609 add_control_with_pfx(spec, type, pfx, "Playback", "Switch", val)
4611 #define alc880_is_fixed_pin(nid) ((nid) >= 0x14 && (nid) <= 0x17)
4612 #define alc880_fixed_pin_idx(nid) ((nid) - 0x14)
4613 #define alc880_is_multi_pin(nid) ((nid) >= 0x18)
4614 #define alc880_multi_pin_idx(nid) ((nid) - 0x18)
4615 #define alc880_idx_to_dac(nid) ((nid) + 0x02)
4616 #define alc880_dac_to_idx(nid) ((nid) - 0x02)
4617 #define alc880_idx_to_mixer(nid) ((nid) + 0x0c)
4618 #define alc880_idx_to_selector(nid) ((nid) + 0x10)
4619 #define ALC880_PIN_CD_NID 0x1c
4621 /* fill in the dac_nids table from the parsed pin configuration */
4622 static int alc880_auto_fill_dac_nids(struct alc_spec
*spec
,
4623 const struct auto_pin_cfg
*cfg
)
4629 memset(assigned
, 0, sizeof(assigned
));
4630 spec
->multiout
.dac_nids
= spec
->private_dac_nids
;
4632 /* check the pins hardwired to audio widget */
4633 for (i
= 0; i
< cfg
->line_outs
; i
++) {
4634 nid
= cfg
->line_out_pins
[i
];
4635 if (alc880_is_fixed_pin(nid
)) {
4636 int idx
= alc880_fixed_pin_idx(nid
);
4637 spec
->multiout
.dac_nids
[i
] = alc880_idx_to_dac(idx
);
4641 /* left pins can be connect to any audio widget */
4642 for (i
= 0; i
< cfg
->line_outs
; i
++) {
4643 nid
= cfg
->line_out_pins
[i
];
4644 if (alc880_is_fixed_pin(nid
))
4646 /* search for an empty channel */
4647 for (j
= 0; j
< cfg
->line_outs
; j
++) {
4649 spec
->multiout
.dac_nids
[i
] =
4650 alc880_idx_to_dac(j
);
4656 spec
->multiout
.num_dacs
= cfg
->line_outs
;
4660 /* add playback controls from the parsed DAC table */
4661 static int alc880_auto_create_multi_out_ctls(struct alc_spec
*spec
,
4662 const struct auto_pin_cfg
*cfg
)
4664 static const char *chname
[4] = {
4665 "Front", "Surround", NULL
/*CLFE*/, "Side"
4670 for (i
= 0; i
< cfg
->line_outs
; i
++) {
4671 if (!spec
->multiout
.dac_nids
[i
])
4673 nid
= alc880_idx_to_mixer(alc880_dac_to_idx(spec
->multiout
.dac_nids
[i
]));
4676 err
= add_pb_vol_ctrl(spec
, ALC_CTL_WIDGET_VOL
,
4678 HDA_COMPOSE_AMP_VAL(nid
, 1, 0,
4682 err
= add_pb_vol_ctrl(spec
, ALC_CTL_WIDGET_VOL
,
4684 HDA_COMPOSE_AMP_VAL(nid
, 2, 0,
4688 err
= add_pb_sw_ctrl(spec
, ALC_CTL_BIND_MUTE
,
4690 HDA_COMPOSE_AMP_VAL(nid
, 1, 2,
4694 err
= add_pb_sw_ctrl(spec
, ALC_CTL_BIND_MUTE
,
4696 HDA_COMPOSE_AMP_VAL(nid
, 2, 2,
4702 if (cfg
->line_outs
== 1 &&
4703 cfg
->line_out_type
== AUTO_PIN_SPEAKER_OUT
)
4707 err
= add_pb_vol_ctrl(spec
, ALC_CTL_WIDGET_VOL
, pfx
,
4708 HDA_COMPOSE_AMP_VAL(nid
, 3, 0,
4712 err
= add_pb_sw_ctrl(spec
, ALC_CTL_BIND_MUTE
, pfx
,
4713 HDA_COMPOSE_AMP_VAL(nid
, 3, 2,
4722 /* add playback controls for speaker and HP outputs */
4723 static int alc880_auto_create_extra_out(struct alc_spec
*spec
, hda_nid_t pin
,
4732 if (alc880_is_fixed_pin(pin
)) {
4733 nid
= alc880_idx_to_dac(alc880_fixed_pin_idx(pin
));
4734 /* specify the DAC as the extra output */
4735 if (!spec
->multiout
.hp_nid
)
4736 spec
->multiout
.hp_nid
= nid
;
4738 spec
->multiout
.extra_out_nid
[0] = nid
;
4739 /* control HP volume/switch on the output mixer amp */
4740 nid
= alc880_idx_to_mixer(alc880_fixed_pin_idx(pin
));
4741 err
= add_pb_vol_ctrl(spec
, ALC_CTL_WIDGET_VOL
, pfx
,
4742 HDA_COMPOSE_AMP_VAL(nid
, 3, 0, HDA_OUTPUT
));
4745 err
= add_pb_sw_ctrl(spec
, ALC_CTL_BIND_MUTE
, pfx
,
4746 HDA_COMPOSE_AMP_VAL(nid
, 3, 2, HDA_INPUT
));
4749 } else if (alc880_is_multi_pin(pin
)) {
4750 /* set manual connection */
4751 /* we have only a switch on HP-out PIN */
4752 err
= add_pb_sw_ctrl(spec
, ALC_CTL_WIDGET_MUTE
, pfx
,
4753 HDA_COMPOSE_AMP_VAL(pin
, 3, 0, HDA_OUTPUT
));
4760 /* create input playback/capture controls for the given pin */
4761 static int new_analog_input(struct alc_spec
*spec
, hda_nid_t pin
,
4762 const char *ctlname
,
4763 int idx
, hda_nid_t mix_nid
)
4767 err
= add_pb_vol_ctrl(spec
, ALC_CTL_WIDGET_VOL
, ctlname
,
4768 HDA_COMPOSE_AMP_VAL(mix_nid
, 3, idx
, HDA_INPUT
));
4771 err
= add_pb_sw_ctrl(spec
, ALC_CTL_WIDGET_MUTE
, ctlname
,
4772 HDA_COMPOSE_AMP_VAL(mix_nid
, 3, idx
, HDA_INPUT
));
4778 static int alc_is_input_pin(struct hda_codec
*codec
, hda_nid_t nid
)
4780 unsigned int pincap
= snd_hda_query_pin_caps(codec
, nid
);
4781 return (pincap
& AC_PINCAP_IN
) != 0;
4784 /* create playback/capture controls for input pins */
4785 static int alc_auto_create_input_ctls(struct hda_codec
*codec
,
4786 const struct auto_pin_cfg
*cfg
,
4788 hda_nid_t cap1
, hda_nid_t cap2
)
4790 struct alc_spec
*spec
= codec
->spec
;
4791 struct hda_input_mux
*imux
= &spec
->private_imux
[0];
4794 for (i
= 0; i
< AUTO_PIN_LAST
; i
++) {
4797 pin
= cfg
->input_pins
[i
];
4798 if (!alc_is_input_pin(codec
, pin
))
4802 idx
= get_connection_index(codec
, mixer
, pin
);
4804 err
= new_analog_input(spec
, pin
,
4805 auto_pin_cfg_labels
[i
],
4814 idx
= get_connection_index(codec
, cap1
, pin
);
4815 if (idx
< 0 && cap2
)
4816 idx
= get_connection_index(codec
, cap2
, pin
);
4818 imux
->items
[imux
->num_items
].label
=
4819 auto_pin_cfg_labels
[i
];
4820 imux
->items
[imux
->num_items
].index
= idx
;
4827 static int alc880_auto_create_input_ctls(struct hda_codec
*codec
,
4828 const struct auto_pin_cfg
*cfg
)
4830 return alc_auto_create_input_ctls(codec
, cfg
, 0x0b, 0x08, 0x09);
4833 static void alc_set_pin_output(struct hda_codec
*codec
, hda_nid_t nid
,
4834 unsigned int pin_type
)
4836 snd_hda_codec_write(codec
, nid
, 0, AC_VERB_SET_PIN_WIDGET_CONTROL
,
4839 snd_hda_codec_write(codec
, nid
, 0, AC_VERB_SET_AMP_GAIN_MUTE
,
4843 static void alc880_auto_set_output_and_unmute(struct hda_codec
*codec
,
4844 hda_nid_t nid
, int pin_type
,
4847 alc_set_pin_output(codec
, nid
, pin_type
);
4848 /* need the manual connection? */
4849 if (alc880_is_multi_pin(nid
)) {
4850 struct alc_spec
*spec
= codec
->spec
;
4851 int idx
= alc880_multi_pin_idx(nid
);
4852 snd_hda_codec_write(codec
, alc880_idx_to_selector(idx
), 0,
4853 AC_VERB_SET_CONNECT_SEL
,
4854 alc880_dac_to_idx(spec
->multiout
.dac_nids
[dac_idx
]));
4858 static int get_pin_type(int line_out_type
)
4860 if (line_out_type
== AUTO_PIN_HP_OUT
)
4866 static void alc880_auto_init_multi_out(struct hda_codec
*codec
)
4868 struct alc_spec
*spec
= codec
->spec
;
4871 for (i
= 0; i
< spec
->autocfg
.line_outs
; i
++) {
4872 hda_nid_t nid
= spec
->autocfg
.line_out_pins
[i
];
4873 int pin_type
= get_pin_type(spec
->autocfg
.line_out_type
);
4874 alc880_auto_set_output_and_unmute(codec
, nid
, pin_type
, i
);
4878 static void alc880_auto_init_extra_out(struct hda_codec
*codec
)
4880 struct alc_spec
*spec
= codec
->spec
;
4883 pin
= spec
->autocfg
.speaker_pins
[0];
4884 if (pin
) /* connect to front */
4885 alc880_auto_set_output_and_unmute(codec
, pin
, PIN_OUT
, 0);
4886 pin
= spec
->autocfg
.hp_pins
[0];
4887 if (pin
) /* connect to front */
4888 alc880_auto_set_output_and_unmute(codec
, pin
, PIN_HP
, 0);
4891 static void alc880_auto_init_analog_input(struct hda_codec
*codec
)
4893 struct alc_spec
*spec
= codec
->spec
;
4896 for (i
= 0; i
< AUTO_PIN_LAST
; i
++) {
4897 hda_nid_t nid
= spec
->autocfg
.input_pins
[i
];
4898 if (alc_is_input_pin(codec
, nid
)) {
4899 alc_set_input_pin(codec
, nid
, i
);
4900 if (nid
!= ALC880_PIN_CD_NID
&&
4901 (get_wcaps(codec
, nid
) & AC_WCAP_OUT_AMP
))
4902 snd_hda_codec_write(codec
, nid
, 0,
4903 AC_VERB_SET_AMP_GAIN_MUTE
,
4909 static void alc880_auto_init_input_src(struct hda_codec
*codec
)
4911 struct alc_spec
*spec
= codec
->spec
;
4914 for (c
= 0; c
< spec
->num_adc_nids
; c
++) {
4915 unsigned int mux_idx
;
4916 const struct hda_input_mux
*imux
;
4917 mux_idx
= c
>= spec
->num_mux_defs
? 0 : c
;
4918 imux
= &spec
->input_mux
[mux_idx
];
4919 if (!imux
->num_items
&& mux_idx
> 0)
4920 imux
= &spec
->input_mux
[0];
4922 snd_hda_codec_write(codec
, spec
->adc_nids
[c
], 0,
4923 AC_VERB_SET_CONNECT_SEL
,
4924 imux
->items
[0].index
);
4928 /* parse the BIOS configuration and set up the alc_spec */
4929 /* return 1 if successful, 0 if the proper config is not found,
4930 * or a negative error code
4932 static int alc880_parse_auto_config(struct hda_codec
*codec
)
4934 struct alc_spec
*spec
= codec
->spec
;
4936 static hda_nid_t alc880_ignore
[] = { 0x1d, 0 };
4938 err
= snd_hda_parse_pin_def_config(codec
, &spec
->autocfg
,
4942 if (!spec
->autocfg
.line_outs
)
4943 return 0; /* can't find valid BIOS pin config */
4945 err
= alc880_auto_fill_dac_nids(spec
, &spec
->autocfg
);
4948 err
= alc880_auto_create_multi_out_ctls(spec
, &spec
->autocfg
);
4951 err
= alc880_auto_create_extra_out(spec
,
4952 spec
->autocfg
.speaker_pins
[0],
4956 err
= alc880_auto_create_extra_out(spec
, spec
->autocfg
.hp_pins
[0],
4960 err
= alc880_auto_create_input_ctls(codec
, &spec
->autocfg
);
4964 spec
->multiout
.max_channels
= spec
->multiout
.num_dacs
* 2;
4966 /* check multiple SPDIF-out (for recent codecs) */
4967 for (i
= 0; i
< spec
->autocfg
.dig_outs
; i
++) {
4969 err
= snd_hda_get_connections(codec
,
4970 spec
->autocfg
.dig_out_pins
[i
],
4975 spec
->multiout
.dig_out_nid
= dig_nid
;
4977 spec
->multiout
.slave_dig_outs
= spec
->slave_dig_outs
;
4978 if (i
>= ARRAY_SIZE(spec
->slave_dig_outs
) - 1)
4980 spec
->slave_dig_outs
[i
- 1] = dig_nid
;
4983 if (spec
->autocfg
.dig_in_pin
)
4984 spec
->dig_in_nid
= ALC880_DIGIN_NID
;
4986 if (spec
->kctls
.list
)
4987 add_mixer(spec
, spec
->kctls
.list
);
4989 add_verb(spec
, alc880_volume_init_verbs
);
4991 spec
->num_mux_defs
= 1;
4992 spec
->input_mux
= &spec
->private_imux
[0];
4994 alc_ssid_check(codec
, 0x15, 0x1b, 0x14, 0);
4999 /* additional initialization for auto-configuration model */
5000 static void alc880_auto_init(struct hda_codec
*codec
)
5002 struct alc_spec
*spec
= codec
->spec
;
5003 alc880_auto_init_multi_out(codec
);
5004 alc880_auto_init_extra_out(codec
);
5005 alc880_auto_init_analog_input(codec
);
5006 alc880_auto_init_input_src(codec
);
5007 if (spec
->unsol_event
)
5008 alc_inithook(codec
);
5011 /* check the ADC/MUX contains all input pins; some ADC/MUX contains only
5012 * one of two digital mic pins, e.g. on ALC272
5014 static void fixup_automic_adc(struct hda_codec
*codec
)
5016 struct alc_spec
*spec
= codec
->spec
;
5019 for (i
= 0; i
< spec
->num_adc_nids
; i
++) {
5020 hda_nid_t cap
= spec
->capsrc_nids
?
5021 spec
->capsrc_nids
[i
] : spec
->adc_nids
[i
];
5024 iidx
= get_connection_index(codec
, cap
, spec
->int_mic
.pin
);
5027 eidx
= get_connection_index(codec
, cap
, spec
->ext_mic
.pin
);
5030 spec
->int_mic
.mux_idx
= iidx
;
5031 spec
->ext_mic
.mux_idx
= eidx
;
5032 if (spec
->capsrc_nids
)
5033 spec
->capsrc_nids
+= i
;
5034 spec
->adc_nids
+= i
;
5035 spec
->num_adc_nids
= 1;
5038 snd_printd(KERN_INFO
"hda_codec: %s: "
5039 "No ADC/MUX containing both 0x%x and 0x%x pins\n",
5040 codec
->chip_name
, spec
->int_mic
.pin
, spec
->ext_mic
.pin
);
5041 spec
->auto_mic
= 0; /* disable auto-mic to be sure */
5044 /* choose the ADC/MUX containing the input pin and initialize the setup */
5045 static void fixup_single_adc(struct hda_codec
*codec
)
5047 struct alc_spec
*spec
= codec
->spec
;
5051 /* search for the input pin; there must be only one */
5052 for (i
= 0; i
< AUTO_PIN_LAST
; i
++) {
5053 if (spec
->autocfg
.input_pins
[i
]) {
5054 pin
= spec
->autocfg
.input_pins
[i
];
5061 /* set the default connection to that pin */
5062 for (i
= 0; i
< spec
->num_adc_nids
; i
++) {
5063 hda_nid_t cap
= spec
->capsrc_nids
?
5064 spec
->capsrc_nids
[i
] : spec
->adc_nids
[i
];
5067 idx
= get_connection_index(codec
, cap
, pin
);
5070 /* use only this ADC */
5071 if (spec
->capsrc_nids
)
5072 spec
->capsrc_nids
+= i
;
5073 spec
->adc_nids
+= i
;
5074 spec
->num_adc_nids
= 1;
5075 /* select or unmute this route */
5076 if (get_wcaps_type(get_wcaps(codec
, cap
)) == AC_WID_AUD_MIX
) {
5077 snd_hda_codec_amp_stereo(codec
, cap
, HDA_INPUT
, idx
,
5080 snd_hda_codec_write_cache(codec
, cap
, 0,
5081 AC_VERB_SET_CONNECT_SEL
, idx
);
5087 static void set_capture_mixer(struct hda_codec
*codec
)
5089 struct alc_spec
*spec
= codec
->spec
;
5090 static struct snd_kcontrol_new
*caps
[2][3] = {
5091 { alc_capture_mixer_nosrc1
,
5092 alc_capture_mixer_nosrc2
,
5093 alc_capture_mixer_nosrc3
},
5094 { alc_capture_mixer1
,
5096 alc_capture_mixer3
},
5098 if (spec
->num_adc_nids
> 0 && spec
->num_adc_nids
<= 3) {
5101 fixup_automic_adc(codec
);
5102 else if (spec
->input_mux
) {
5103 if (spec
->input_mux
->num_items
> 1)
5105 else if (spec
->input_mux
->num_items
== 1)
5106 fixup_single_adc(codec
);
5108 spec
->cap_mixer
= caps
[mux
][spec
->num_adc_nids
- 1];
5112 /* fill adc_nids (and capsrc_nids) containing all active input pins */
5113 static void fillup_priv_adc_nids(struct hda_codec
*codec
, hda_nid_t
*nids
,
5116 struct alc_spec
*spec
= codec
->spec
;
5118 hda_nid_t fallback_adc
= 0, fallback_cap
= 0;
5120 for (n
= 0; n
< num_nids
; n
++) {
5122 hda_nid_t conn
[HDA_MAX_NUM_INPUTS
];
5126 if (get_wcaps_type(get_wcaps(codec
, adc
)) != AC_WID_AUD_IN
)
5129 nconns
= snd_hda_get_connections(codec
, cap
, conn
,
5133 nconns
= snd_hda_get_connections(codec
, cap
, conn
,
5138 if (!fallback_adc
) {
5142 for (i
= 0; i
< AUTO_PIN_LAST
; i
++) {
5143 hda_nid_t nid
= spec
->autocfg
.input_pins
[i
];
5146 for (j
= 0; j
< nconns
; j
++) {
5153 if (i
>= AUTO_PIN_LAST
) {
5154 int num_adcs
= spec
->num_adc_nids
;
5155 spec
->private_adc_nids
[num_adcs
] = adc
;
5156 spec
->private_capsrc_nids
[num_adcs
] = cap
;
5157 spec
->num_adc_nids
++;
5158 spec
->adc_nids
= spec
->private_adc_nids
;
5160 spec
->capsrc_nids
= spec
->private_capsrc_nids
;
5163 if (!spec
->num_adc_nids
) {
5164 printk(KERN_WARNING
"hda_codec: %s: no valid ADC found;"
5165 " using fallback 0x%x\n",
5166 codec
->chip_name
, fallback_adc
);
5167 spec
->private_adc_nids
[0] = fallback_adc
;
5168 spec
->adc_nids
= spec
->private_adc_nids
;
5169 if (fallback_adc
!= fallback_cap
) {
5170 spec
->private_capsrc_nids
[0] = fallback_cap
;
5171 spec
->capsrc_nids
= spec
->private_adc_nids
;
5176 #ifdef CONFIG_SND_HDA_INPUT_BEEP
5177 #define set_beep_amp(spec, nid, idx, dir) \
5178 ((spec)->beep_amp = HDA_COMPOSE_AMP_VAL(nid, 3, idx, dir))
5180 #define set_beep_amp(spec, nid, idx, dir) /* NOP */
5184 * OK, here we have finally the patch for ALC880
5187 static int patch_alc880(struct hda_codec
*codec
)
5189 struct alc_spec
*spec
;
5193 spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
5199 board_config
= snd_hda_check_board_config(codec
, ALC880_MODEL_LAST
,
5202 if (board_config
< 0) {
5203 printk(KERN_INFO
"hda_codec: %s: BIOS auto-probing.\n",
5205 board_config
= ALC880_AUTO
;
5208 if (board_config
== ALC880_AUTO
) {
5209 /* automatic parse from the BIOS config */
5210 err
= alc880_parse_auto_config(codec
);
5216 "hda_codec: Cannot set up configuration "
5217 "from BIOS. Using 3-stack mode...\n");
5218 board_config
= ALC880_3ST
;
5222 err
= snd_hda_attach_beep_device(codec
, 0x1);
5228 if (board_config
!= ALC880_AUTO
)
5229 setup_preset(codec
, &alc880_presets
[board_config
]);
5231 spec
->stream_analog_playback
= &alc880_pcm_analog_playback
;
5232 spec
->stream_analog_capture
= &alc880_pcm_analog_capture
;
5233 spec
->stream_analog_alt_capture
= &alc880_pcm_analog_alt_capture
;
5235 spec
->stream_digital_playback
= &alc880_pcm_digital_playback
;
5236 spec
->stream_digital_capture
= &alc880_pcm_digital_capture
;
5238 if (!spec
->adc_nids
&& spec
->input_mux
) {
5239 /* check whether NID 0x07 is valid */
5240 unsigned int wcap
= get_wcaps(codec
, alc880_adc_nids
[0]);
5242 wcap
= get_wcaps_type(wcap
);
5243 if (wcap
!= AC_WID_AUD_IN
) {
5244 spec
->adc_nids
= alc880_adc_nids_alt
;
5245 spec
->num_adc_nids
= ARRAY_SIZE(alc880_adc_nids_alt
);
5247 spec
->adc_nids
= alc880_adc_nids
;
5248 spec
->num_adc_nids
= ARRAY_SIZE(alc880_adc_nids
);
5251 set_capture_mixer(codec
);
5252 set_beep_amp(spec
, 0x0b, 0x05, HDA_INPUT
);
5254 spec
->vmaster_nid
= 0x0c;
5256 codec
->patch_ops
= alc_patch_ops
;
5257 if (board_config
== ALC880_AUTO
)
5258 spec
->init_hook
= alc880_auto_init
;
5259 #ifdef CONFIG_SND_HDA_POWER_SAVE
5260 if (!spec
->loopback
.amplist
)
5261 spec
->loopback
.amplist
= alc880_loopbacks
;
5272 static hda_nid_t alc260_dac_nids
[1] = {
5277 static hda_nid_t alc260_adc_nids
[1] = {
5282 static hda_nid_t alc260_adc_nids_alt
[1] = {
5287 /* NIDs used when simultaneous access to both ADCs makes sense. Note that
5288 * alc260_capture_mixer assumes ADC0 (nid 0x04) is the first ADC.
5290 static hda_nid_t alc260_dual_adc_nids
[2] = {
5295 #define ALC260_DIGOUT_NID 0x03
5296 #define ALC260_DIGIN_NID 0x06
5298 static struct hda_input_mux alc260_capture_source
= {
5302 { "Front Mic", 0x1 },
5308 /* On Fujitsu S702x laptops capture only makes sense from Mic/LineIn jack,
5309 * headphone jack and the internal CD lines since these are the only pins at
5310 * which audio can appear. For flexibility, also allow the option of
5311 * recording the mixer output on the second ADC (ADC0 doesn't have a
5312 * connection to the mixer output).
5314 static struct hda_input_mux alc260_fujitsu_capture_sources
[2] = {
5318 { "Mic/Line", 0x0 },
5320 { "Headphone", 0x2 },
5326 { "Mic/Line", 0x0 },
5328 { "Headphone", 0x2 },
5335 /* Acer TravelMate(/Extensa/Aspire) notebooks have similar configuration to
5336 * the Fujitsu S702x, but jacks are marked differently.
5338 static struct hda_input_mux alc260_acer_capture_sources
[2] = {
5345 { "Headphone", 0x5 },
5354 { "Headphone", 0x6 },
5360 /* Maxdata Favorit 100XS */
5361 static struct hda_input_mux alc260_favorit100_capture_sources
[2] = {
5365 { "Line/Mic", 0x0 },
5372 { "Line/Mic", 0x0 },
5380 * This is just place-holder, so there's something for alc_build_pcms to look
5381 * at when it calculates the maximum number of channels. ALC260 has no mixer
5382 * element which allows changing the channel mode, so the verb list is
5385 static struct hda_channel_mode alc260_modes
[1] = {
5390 /* Mixer combinations
5392 * basic: base_output + input + pc_beep + capture
5393 * HP: base_output + input + capture_alt
5394 * HP_3013: hp_3013 + input + capture
5395 * fujitsu: fujitsu + capture
5396 * acer: acer + capture
5399 static struct snd_kcontrol_new alc260_base_output_mixer
[] = {
5400 HDA_CODEC_VOLUME("Front Playback Volume", 0x08, 0x0, HDA_OUTPUT
),
5401 HDA_BIND_MUTE("Front Playback Switch", 0x08, 2, HDA_INPUT
),
5402 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x09, 0x0, HDA_OUTPUT
),
5403 HDA_BIND_MUTE("Headphone Playback Switch", 0x09, 2, HDA_INPUT
),
5404 HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x0a, 1, 0x0, HDA_OUTPUT
),
5405 HDA_BIND_MUTE_MONO("Mono Playback Switch", 0x0a, 1, 2, HDA_INPUT
),
5409 static struct snd_kcontrol_new alc260_input_mixer
[] = {
5410 HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT
),
5411 HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT
),
5412 HDA_CODEC_VOLUME("Line Playback Volume", 0x07, 0x02, HDA_INPUT
),
5413 HDA_CODEC_MUTE("Line Playback Switch", 0x07, 0x02, HDA_INPUT
),
5414 HDA_CODEC_VOLUME("Mic Playback Volume", 0x07, 0x0, HDA_INPUT
),
5415 HDA_CODEC_MUTE("Mic Playback Switch", 0x07, 0x0, HDA_INPUT
),
5416 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x07, 0x01, HDA_INPUT
),
5417 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x07, 0x01, HDA_INPUT
),
5421 /* update HP, line and mono out pins according to the master switch */
5422 static void alc260_hp_master_update(struct hda_codec
*codec
,
5423 hda_nid_t hp
, hda_nid_t line
,
5426 struct alc_spec
*spec
= codec
->spec
;
5427 unsigned int val
= spec
->master_sw
? PIN_HP
: 0;
5428 /* change HP and line-out pins */
5429 snd_hda_codec_write(codec
, hp
, 0, AC_VERB_SET_PIN_WIDGET_CONTROL
,
5431 snd_hda_codec_write(codec
, line
, 0, AC_VERB_SET_PIN_WIDGET_CONTROL
,
5433 /* mono (speaker) depending on the HP jack sense */
5434 val
= (val
&& !spec
->jack_present
) ? PIN_OUT
: 0;
5435 snd_hda_codec_write(codec
, mono
, 0, AC_VERB_SET_PIN_WIDGET_CONTROL
,
5439 static int alc260_hp_master_sw_get(struct snd_kcontrol
*kcontrol
,
5440 struct snd_ctl_elem_value
*ucontrol
)
5442 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
5443 struct alc_spec
*spec
= codec
->spec
;
5444 *ucontrol
->value
.integer
.value
= spec
->master_sw
;
5448 static int alc260_hp_master_sw_put(struct snd_kcontrol
*kcontrol
,
5449 struct snd_ctl_elem_value
*ucontrol
)
5451 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
5452 struct alc_spec
*spec
= codec
->spec
;
5453 int val
= !!*ucontrol
->value
.integer
.value
;
5454 hda_nid_t hp
, line
, mono
;
5456 if (val
== spec
->master_sw
)
5458 spec
->master_sw
= val
;
5459 hp
= (kcontrol
->private_value
>> 16) & 0xff;
5460 line
= (kcontrol
->private_value
>> 8) & 0xff;
5461 mono
= kcontrol
->private_value
& 0xff;
5462 alc260_hp_master_update(codec
, hp
, line
, mono
);
5466 static struct snd_kcontrol_new alc260_hp_output_mixer
[] = {
5468 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
5469 .name
= "Master Playback Switch",
5470 .subdevice
= HDA_SUBDEV_NID_FLAG
| 0x11,
5471 .info
= snd_ctl_boolean_mono_info
,
5472 .get
= alc260_hp_master_sw_get
,
5473 .put
= alc260_hp_master_sw_put
,
5474 .private_value
= (0x0f << 16) | (0x10 << 8) | 0x11
5476 HDA_CODEC_VOLUME("Front Playback Volume", 0x08, 0x0, HDA_OUTPUT
),
5477 HDA_BIND_MUTE("Front Playback Switch", 0x08, 2, HDA_INPUT
),
5478 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x09, 0x0, HDA_OUTPUT
),
5479 HDA_BIND_MUTE("Headphone Playback Switch", 0x09, 2, HDA_INPUT
),
5480 HDA_CODEC_VOLUME_MONO("Speaker Playback Volume", 0x0a, 1, 0x0,
5482 HDA_BIND_MUTE_MONO("Speaker Playback Switch", 0x0a, 1, 2, HDA_INPUT
),
5486 static struct hda_verb alc260_hp_unsol_verbs
[] = {
5487 {0x10, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
5491 static void alc260_hp_automute(struct hda_codec
*codec
)
5493 struct alc_spec
*spec
= codec
->spec
;
5495 spec
->jack_present
= snd_hda_jack_detect(codec
, 0x10);
5496 alc260_hp_master_update(codec
, 0x0f, 0x10, 0x11);
5499 static void alc260_hp_unsol_event(struct hda_codec
*codec
, unsigned int res
)
5501 if ((res
>> 26) == ALC880_HP_EVENT
)
5502 alc260_hp_automute(codec
);
5505 static struct snd_kcontrol_new alc260_hp_3013_mixer
[] = {
5507 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
5508 .name
= "Master Playback Switch",
5509 .subdevice
= HDA_SUBDEV_NID_FLAG
| 0x11,
5510 .info
= snd_ctl_boolean_mono_info
,
5511 .get
= alc260_hp_master_sw_get
,
5512 .put
= alc260_hp_master_sw_put
,
5513 .private_value
= (0x15 << 16) | (0x10 << 8) | 0x11
5515 HDA_CODEC_VOLUME("Front Playback Volume", 0x09, 0x0, HDA_OUTPUT
),
5516 HDA_CODEC_MUTE("Front Playback Switch", 0x10, 0x0, HDA_OUTPUT
),
5517 HDA_CODEC_VOLUME("Aux-In Playback Volume", 0x07, 0x06, HDA_INPUT
),
5518 HDA_CODEC_MUTE("Aux-In Playback Switch", 0x07, 0x06, HDA_INPUT
),
5519 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x08, 0x0, HDA_OUTPUT
),
5520 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
5521 HDA_CODEC_VOLUME_MONO("Speaker Playback Volume", 0x0a, 1, 0x0, HDA_OUTPUT
),
5522 HDA_CODEC_MUTE_MONO("Speaker Playback Switch", 0x11, 1, 0x0, HDA_OUTPUT
),
5526 static struct hda_bind_ctls alc260_dc7600_bind_master_vol
= {
5527 .ops
= &snd_hda_bind_vol
,
5529 HDA_COMPOSE_AMP_VAL(0x08, 3, 0, HDA_OUTPUT
),
5530 HDA_COMPOSE_AMP_VAL(0x09, 3, 0, HDA_OUTPUT
),
5531 HDA_COMPOSE_AMP_VAL(0x0a, 3, 0, HDA_OUTPUT
),
5536 static struct hda_bind_ctls alc260_dc7600_bind_switch
= {
5537 .ops
= &snd_hda_bind_sw
,
5539 HDA_COMPOSE_AMP_VAL(0x11, 3, 0, HDA_OUTPUT
),
5540 HDA_COMPOSE_AMP_VAL(0x15, 3, 0, HDA_OUTPUT
),
5545 static struct snd_kcontrol_new alc260_hp_dc7600_mixer
[] = {
5546 HDA_BIND_VOL("Master Playback Volume", &alc260_dc7600_bind_master_vol
),
5547 HDA_BIND_SW("LineOut Playback Switch", &alc260_dc7600_bind_switch
),
5548 HDA_CODEC_MUTE("Speaker Playback Switch", 0x0f, 0x0, HDA_OUTPUT
),
5549 HDA_CODEC_MUTE("Headphone Playback Switch", 0x10, 0x0, HDA_OUTPUT
),
5553 static struct hda_verb alc260_hp_3013_unsol_verbs
[] = {
5554 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
5558 static void alc260_hp_3013_automute(struct hda_codec
*codec
)
5560 struct alc_spec
*spec
= codec
->spec
;
5562 spec
->jack_present
= snd_hda_jack_detect(codec
, 0x15);
5563 alc260_hp_master_update(codec
, 0x15, 0x10, 0x11);
5566 static void alc260_hp_3013_unsol_event(struct hda_codec
*codec
,
5569 if ((res
>> 26) == ALC880_HP_EVENT
)
5570 alc260_hp_3013_automute(codec
);
5573 static void alc260_hp_3012_automute(struct hda_codec
*codec
)
5575 unsigned int bits
= snd_hda_jack_detect(codec
, 0x10) ? 0 : PIN_OUT
;
5577 snd_hda_codec_write(codec
, 0x0f, 0, AC_VERB_SET_PIN_WIDGET_CONTROL
,
5579 snd_hda_codec_write(codec
, 0x11, 0, AC_VERB_SET_PIN_WIDGET_CONTROL
,
5581 snd_hda_codec_write(codec
, 0x15, 0, AC_VERB_SET_PIN_WIDGET_CONTROL
,
5585 static void alc260_hp_3012_unsol_event(struct hda_codec
*codec
,
5588 if ((res
>> 26) == ALC880_HP_EVENT
)
5589 alc260_hp_3012_automute(codec
);
5592 /* Fujitsu S702x series laptops. ALC260 pin usage: Mic/Line jack = 0x12,
5593 * HP jack = 0x14, CD audio = 0x16, internal speaker = 0x10.
5595 static struct snd_kcontrol_new alc260_fujitsu_mixer
[] = {
5596 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x08, 0x0, HDA_OUTPUT
),
5597 HDA_BIND_MUTE("Headphone Playback Switch", 0x08, 2, HDA_INPUT
),
5598 ALC_PIN_MODE("Headphone Jack Mode", 0x14, ALC_PIN_DIR_INOUT
),
5599 HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT
),
5600 HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT
),
5601 HDA_CODEC_VOLUME("Mic/Line Playback Volume", 0x07, 0x0, HDA_INPUT
),
5602 HDA_CODEC_MUTE("Mic/Line Playback Switch", 0x07, 0x0, HDA_INPUT
),
5603 ALC_PIN_MODE("Mic/Line Jack Mode", 0x12, ALC_PIN_DIR_IN
),
5604 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x09, 0x0, HDA_OUTPUT
),
5605 HDA_BIND_MUTE("Speaker Playback Switch", 0x09, 2, HDA_INPUT
),
5609 /* Mixer for Acer TravelMate(/Extensa/Aspire) notebooks. Note that current
5610 * versions of the ALC260 don't act on requests to enable mic bias from NID
5611 * 0x0f (used to drive the headphone jack in these laptops). The ALC260
5612 * datasheet doesn't mention this restriction. At this stage it's not clear
5613 * whether this behaviour is intentional or is a hardware bug in chip
5614 * revisions available in early 2006. Therefore for now allow the
5615 * "Headphone Jack Mode" control to span all choices, but if it turns out
5616 * that the lack of mic bias for this NID is intentional we could change the
5617 * mode from ALC_PIN_DIR_INOUT to ALC_PIN_DIR_INOUT_NOMICBIAS.
5619 * In addition, Acer TravelMate(/Extensa/Aspire) notebooks in early 2006
5620 * don't appear to make the mic bias available from the "line" jack, even
5621 * though the NID used for this jack (0x14) can supply it. The theory is
5622 * that perhaps Acer have included blocking capacitors between the ALC260
5623 * and the output jack. If this turns out to be the case for all such
5624 * models the "Line Jack Mode" mode could be changed from ALC_PIN_DIR_INOUT
5625 * to ALC_PIN_DIR_INOUT_NOMICBIAS.
5627 * The C20x Tablet series have a mono internal speaker which is controlled
5628 * via the chip's Mono sum widget and pin complex, so include the necessary
5629 * controls for such models. On models without a "mono speaker" the control
5630 * won't do anything.
5632 static struct snd_kcontrol_new alc260_acer_mixer
[] = {
5633 HDA_CODEC_VOLUME("Master Playback Volume", 0x08, 0x0, HDA_OUTPUT
),
5634 HDA_BIND_MUTE("Master Playback Switch", 0x08, 2, HDA_INPUT
),
5635 ALC_PIN_MODE("Headphone Jack Mode", 0x0f, ALC_PIN_DIR_INOUT
),
5636 HDA_CODEC_VOLUME_MONO("Speaker Playback Volume", 0x0a, 1, 0x0,
5638 HDA_BIND_MUTE_MONO("Speaker Playback Switch", 0x0a, 1, 2,
5640 HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT
),
5641 HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT
),
5642 HDA_CODEC_VOLUME("Mic Playback Volume", 0x07, 0x0, HDA_INPUT
),
5643 HDA_CODEC_MUTE("Mic Playback Switch", 0x07, 0x0, HDA_INPUT
),
5644 ALC_PIN_MODE("Mic Jack Mode", 0x12, ALC_PIN_DIR_IN
),
5645 HDA_CODEC_VOLUME("Line Playback Volume", 0x07, 0x02, HDA_INPUT
),
5646 HDA_CODEC_MUTE("Line Playback Switch", 0x07, 0x02, HDA_INPUT
),
5647 ALC_PIN_MODE("Line Jack Mode", 0x14, ALC_PIN_DIR_INOUT
),
5651 /* Maxdata Favorit 100XS: one output and one input (0x12) jack
5653 static struct snd_kcontrol_new alc260_favorit100_mixer
[] = {
5654 HDA_CODEC_VOLUME("Master Playback Volume", 0x08, 0x0, HDA_OUTPUT
),
5655 HDA_BIND_MUTE("Master Playback Switch", 0x08, 2, HDA_INPUT
),
5656 ALC_PIN_MODE("Output Jack Mode", 0x0f, ALC_PIN_DIR_INOUT
),
5657 HDA_CODEC_VOLUME("Line/Mic Playback Volume", 0x07, 0x0, HDA_INPUT
),
5658 HDA_CODEC_MUTE("Line/Mic Playback Switch", 0x07, 0x0, HDA_INPUT
),
5659 ALC_PIN_MODE("Line/Mic Jack Mode", 0x12, ALC_PIN_DIR_IN
),
5663 /* Packard bell V7900 ALC260 pin usage: HP = 0x0f, Mic jack = 0x12,
5664 * Line In jack = 0x14, CD audio = 0x16, pc beep = 0x17.
5666 static struct snd_kcontrol_new alc260_will_mixer
[] = {
5667 HDA_CODEC_VOLUME("Master Playback Volume", 0x08, 0x0, HDA_OUTPUT
),
5668 HDA_BIND_MUTE("Master Playback Switch", 0x08, 0x2, HDA_INPUT
),
5669 HDA_CODEC_VOLUME("Mic Playback Volume", 0x07, 0x0, HDA_INPUT
),
5670 HDA_CODEC_MUTE("Mic Playback Switch", 0x07, 0x0, HDA_INPUT
),
5671 ALC_PIN_MODE("Mic Jack Mode", 0x12, ALC_PIN_DIR_IN
),
5672 HDA_CODEC_VOLUME("Line Playback Volume", 0x07, 0x02, HDA_INPUT
),
5673 HDA_CODEC_MUTE("Line Playback Switch", 0x07, 0x02, HDA_INPUT
),
5674 ALC_PIN_MODE("Line Jack Mode", 0x14, ALC_PIN_DIR_INOUT
),
5675 HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT
),
5676 HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT
),
5680 /* Replacer 672V ALC260 pin usage: Mic jack = 0x12,
5681 * Line In jack = 0x14, ATAPI Mic = 0x13, speaker = 0x0f.
5683 static struct snd_kcontrol_new alc260_replacer_672v_mixer
[] = {
5684 HDA_CODEC_VOLUME("Master Playback Volume", 0x08, 0x0, HDA_OUTPUT
),
5685 HDA_BIND_MUTE("Master Playback Switch", 0x08, 0x2, HDA_INPUT
),
5686 HDA_CODEC_VOLUME("Mic Playback Volume", 0x07, 0x0, HDA_INPUT
),
5687 HDA_CODEC_MUTE("Mic Playback Switch", 0x07, 0x0, HDA_INPUT
),
5688 ALC_PIN_MODE("Mic Jack Mode", 0x12, ALC_PIN_DIR_IN
),
5689 HDA_CODEC_VOLUME("ATAPI Mic Playback Volume", 0x07, 0x1, HDA_INPUT
),
5690 HDA_CODEC_MUTE("ATATI Mic Playback Switch", 0x07, 0x1, HDA_INPUT
),
5691 HDA_CODEC_VOLUME("Line Playback Volume", 0x07, 0x02, HDA_INPUT
),
5692 HDA_CODEC_MUTE("Line Playback Switch", 0x07, 0x02, HDA_INPUT
),
5693 ALC_PIN_MODE("Line Jack Mode", 0x14, ALC_PIN_DIR_INOUT
),
5698 * initialization verbs
5700 static struct hda_verb alc260_init_verbs
[] = {
5701 /* Line In pin widget for input */
5702 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
5703 /* CD pin widget for input */
5704 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
5705 /* Mic1 (rear panel) pin widget for input and vref at 80% */
5706 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
5707 /* Mic2 (front panel) pin widget for input and vref at 80% */
5708 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
5709 /* LINE-2 is used for line-out in rear */
5710 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
5711 /* select line-out */
5712 {0x0e, AC_VERB_SET_CONNECT_SEL
, 0x00},
5714 {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
5716 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
5718 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
5719 /* mute capture amp left and right */
5720 {0x04, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
5721 /* set connection select to line in (default select for this ADC) */
5722 {0x04, AC_VERB_SET_CONNECT_SEL
, 0x02},
5723 /* mute capture amp left and right */
5724 {0x05, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
5725 /* set connection select to line in (default select for this ADC) */
5726 {0x05, AC_VERB_SET_CONNECT_SEL
, 0x02},
5727 /* set vol=0 Line-Out mixer amp left and right */
5728 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
5729 /* unmute pin widget amp left and right (no gain on this amp) */
5730 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
5731 /* set vol=0 HP mixer amp left and right */
5732 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
5733 /* unmute pin widget amp left and right (no gain on this amp) */
5734 {0x10, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
5735 /* set vol=0 Mono mixer amp left and right */
5736 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
5737 /* unmute pin widget amp left and right (no gain on this amp) */
5738 {0x11, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
5739 /* unmute LINE-2 out pin */
5740 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
5741 /* Amp Indexes: CD = 0x04, Line In 1 = 0x02, Mic 1 = 0x00 &
5744 /* mute analog inputs */
5745 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
5746 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
5747 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
5748 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
5749 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
5750 /* Amp Indexes: DAC = 0x01 & mixer = 0x00 */
5751 /* mute Front out path */
5752 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
5753 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
5754 /* mute Headphone out path */
5755 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
5756 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
5757 /* mute Mono out path */
5758 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
5759 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
5763 #if 0 /* should be identical with alc260_init_verbs? */
5764 static struct hda_verb alc260_hp_init_verbs
[] = {
5765 /* Headphone and output */
5766 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0xc0},
5768 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40},
5769 /* Mic1 (rear panel) pin widget for input and vref at 80% */
5770 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24},
5771 /* Mic2 (front panel) pin widget for input and vref at 80% */
5772 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24},
5773 /* Line In pin widget for input */
5774 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20},
5775 /* Line-2 pin widget for output */
5776 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40},
5777 /* CD pin widget for input */
5778 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20},
5779 /* unmute amp left and right */
5780 {0x04, AC_VERB_SET_AMP_GAIN_MUTE
, 0x7000},
5781 /* set connection select to line in (default select for this ADC) */
5782 {0x04, AC_VERB_SET_CONNECT_SEL
, 0x02},
5783 /* unmute Line-Out mixer amp left and right (volume = 0) */
5784 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb000},
5785 /* mute pin widget amp left and right (no gain on this amp) */
5786 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, 0x0000},
5787 /* unmute HP mixer amp left and right (volume = 0) */
5788 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb000},
5789 /* mute pin widget amp left and right (no gain on this amp) */
5790 {0x10, AC_VERB_SET_AMP_GAIN_MUTE
, 0x0000},
5791 /* Amp Indexes: CD = 0x04, Line In 1 = 0x02, Mic 1 = 0x00 &
5794 /* mute analog inputs */
5795 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
5796 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
5797 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
5798 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
5799 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
5800 /* Amp Indexes: DAC = 0x01 & mixer = 0x00 */
5801 /* Unmute Front out path */
5802 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
5803 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x01 << 8))},
5804 /* Unmute Headphone out path */
5805 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
5806 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x01 << 8))},
5807 /* Unmute Mono out path */
5808 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
5809 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x01 << 8))},
5814 static struct hda_verb alc260_hp_3013_init_verbs
[] = {
5815 /* Line out and output */
5816 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40},
5818 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40},
5819 /* Mic1 (rear panel) pin widget for input and vref at 80% */
5820 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24},
5821 /* Mic2 (front panel) pin widget for input and vref at 80% */
5822 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24},
5823 /* Line In pin widget for input */
5824 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20},
5825 /* Headphone pin widget for output */
5826 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0xc0},
5827 /* CD pin widget for input */
5828 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20},
5829 /* unmute amp left and right */
5830 {0x04, AC_VERB_SET_AMP_GAIN_MUTE
, 0x7000},
5831 /* set connection select to line in (default select for this ADC) */
5832 {0x04, AC_VERB_SET_CONNECT_SEL
, 0x02},
5833 /* unmute Line-Out mixer amp left and right (volume = 0) */
5834 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb000},
5835 /* mute pin widget amp left and right (no gain on this amp) */
5836 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, 0x0000},
5837 /* unmute HP mixer amp left and right (volume = 0) */
5838 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb000},
5839 /* mute pin widget amp left and right (no gain on this amp) */
5840 {0x10, AC_VERB_SET_AMP_GAIN_MUTE
, 0x0000},
5841 /* Amp Indexes: CD = 0x04, Line In 1 = 0x02, Mic 1 = 0x00 &
5844 /* mute analog inputs */
5845 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
5846 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
5847 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
5848 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
5849 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
5850 /* Amp Indexes: DAC = 0x01 & mixer = 0x00 */
5851 /* Unmute Front out path */
5852 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
5853 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x01 << 8))},
5854 /* Unmute Headphone out path */
5855 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
5856 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x01 << 8))},
5857 /* Unmute Mono out path */
5858 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
5859 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x01 << 8))},
5863 /* Initialisation sequence for ALC260 as configured in Fujitsu S702x
5864 * laptops. ALC260 pin usage: Mic/Line jack = 0x12, HP jack = 0x14, CD
5865 * audio = 0x16, internal speaker = 0x10.
5867 static struct hda_verb alc260_fujitsu_init_verbs
[] = {
5868 /* Disable all GPIOs */
5869 {0x01, AC_VERB_SET_GPIO_MASK
, 0},
5870 /* Internal speaker is connected to headphone pin */
5871 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
5872 /* Headphone/Line-out jack connects to Line1 pin; make it an output */
5873 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
5874 /* Mic/Line-in jack is connected to mic1 pin, so make it an input */
5875 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
5876 /* Ensure all other unused pins are disabled and muted. */
5877 {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
5878 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
5879 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
5880 {0x11, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
5881 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
5882 {0x13, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
5883 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
5884 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
5886 /* Disable digital (SPDIF) pins */
5887 {0x03, AC_VERB_SET_DIGI_CONVERT_1
, 0},
5888 {0x06, AC_VERB_SET_DIGI_CONVERT_1
, 0},
5890 /* Ensure Line1 pin widget takes its input from the OUT1 sum bus
5891 * when acting as an output.
5893 {0x0d, AC_VERB_SET_CONNECT_SEL
, 0},
5895 /* Start with output sum widgets muted and their output gains at min */
5896 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
5897 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
5898 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
5899 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
5900 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
5901 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
5902 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
5903 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
5904 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
5906 /* Unmute HP pin widget amp left and right (no equiv mixer ctrl) */
5907 {0x10, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
5908 /* Unmute Line1 pin widget output buffer since it starts as an output.
5909 * If the pin mode is changed by the user the pin mode control will
5910 * take care of enabling the pin's input/output buffers as needed.
5911 * Therefore there's no need to enable the input buffer at this
5914 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
5915 /* Unmute input buffer of pin widget used for Line-in (no equiv
5918 {0x12, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
5920 /* Mute capture amp left and right */
5921 {0x04, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
5922 /* Set ADC connection select to match default mixer setting - line
5925 {0x04, AC_VERB_SET_CONNECT_SEL
, 0x00},
5927 /* Do the same for the second ADC: mute capture input amp and
5928 * set ADC connection to line in (on mic1 pin)
5930 {0x05, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
5931 {0x05, AC_VERB_SET_CONNECT_SEL
, 0x00},
5933 /* Mute all inputs to mixer widget (even unconnected ones) */
5934 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)}, /* mic1 pin */
5935 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)}, /* mic2 pin */
5936 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)}, /* line1 pin */
5937 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)}, /* line2 pin */
5938 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)}, /* CD pin */
5939 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(5)}, /* Beep-gen pin */
5940 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(6)}, /* Line-out pin */
5941 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(7)}, /* HP-pin pin */
5946 /* Initialisation sequence for ALC260 as configured in Acer TravelMate and
5947 * similar laptops (adapted from Fujitsu init verbs).
5949 static struct hda_verb alc260_acer_init_verbs
[] = {
5950 /* On TravelMate laptops, GPIO 0 enables the internal speaker and
5951 * the headphone jack. Turn this on and rely on the standard mute
5952 * methods whenever the user wants to turn these outputs off.
5954 {0x01, AC_VERB_SET_GPIO_MASK
, 0x01},
5955 {0x01, AC_VERB_SET_GPIO_DIRECTION
, 0x01},
5956 {0x01, AC_VERB_SET_GPIO_DATA
, 0x01},
5957 /* Internal speaker/Headphone jack is connected to Line-out pin */
5958 {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
5959 /* Internal microphone/Mic jack is connected to Mic1 pin */
5960 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF50
},
5961 /* Line In jack is connected to Line1 pin */
5962 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
5963 /* Some Acers (eg: C20x Tablets) use Mono pin for internal speaker */
5964 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
5965 /* Ensure all other unused pins are disabled and muted. */
5966 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
5967 {0x10, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
5968 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
5969 {0x13, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
5970 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
5971 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
5972 /* Disable digital (SPDIF) pins */
5973 {0x03, AC_VERB_SET_DIGI_CONVERT_1
, 0},
5974 {0x06, AC_VERB_SET_DIGI_CONVERT_1
, 0},
5976 /* Ensure Mic1 and Line1 pin widgets take input from the OUT1 sum
5977 * bus when acting as outputs.
5979 {0x0b, AC_VERB_SET_CONNECT_SEL
, 0},
5980 {0x0d, AC_VERB_SET_CONNECT_SEL
, 0},
5982 /* Start with output sum widgets muted and their output gains at min */
5983 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
5984 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
5985 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
5986 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
5987 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
5988 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
5989 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
5990 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
5991 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
5993 /* Unmute Line-out pin widget amp left and right
5994 * (no equiv mixer ctrl)
5996 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
5997 /* Unmute mono pin widget amp output (no equiv mixer ctrl) */
5998 {0x11, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
5999 /* Unmute Mic1 and Line1 pin widget input buffers since they start as
6000 * inputs. If the pin mode is changed by the user the pin mode control
6001 * will take care of enabling the pin's input/output buffers as needed.
6002 * Therefore there's no need to enable the input buffer at this
6005 {0x12, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
6006 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
6008 /* Mute capture amp left and right */
6009 {0x04, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6010 /* Set ADC connection select to match default mixer setting - mic
6013 {0x04, AC_VERB_SET_CONNECT_SEL
, 0x00},
6015 /* Do similar with the second ADC: mute capture input amp and
6016 * set ADC connection to mic to match ALSA's default state.
6018 {0x05, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6019 {0x05, AC_VERB_SET_CONNECT_SEL
, 0x00},
6021 /* Mute all inputs to mixer widget (even unconnected ones) */
6022 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)}, /* mic1 pin */
6023 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)}, /* mic2 pin */
6024 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)}, /* line1 pin */
6025 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)}, /* line2 pin */
6026 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)}, /* CD pin */
6027 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(5)}, /* Beep-gen pin */
6028 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(6)}, /* Line-out pin */
6029 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(7)}, /* HP-pin pin */
6034 /* Initialisation sequence for Maxdata Favorit 100XS
6035 * (adapted from Acer init verbs).
6037 static struct hda_verb alc260_favorit100_init_verbs
[] = {
6038 /* GPIO 0 enables the output jack.
6039 * Turn this on and rely on the standard mute
6040 * methods whenever the user wants to turn these outputs off.
6042 {0x01, AC_VERB_SET_GPIO_MASK
, 0x01},
6043 {0x01, AC_VERB_SET_GPIO_DIRECTION
, 0x01},
6044 {0x01, AC_VERB_SET_GPIO_DATA
, 0x01},
6045 /* Line/Mic input jack is connected to Mic1 pin */
6046 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF50
},
6047 /* Ensure all other unused pins are disabled and muted. */
6048 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
6049 {0x10, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6050 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
6051 {0x11, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6052 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
6053 {0x13, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6054 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
6055 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6056 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
6057 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6058 /* Disable digital (SPDIF) pins */
6059 {0x03, AC_VERB_SET_DIGI_CONVERT_1
, 0},
6060 {0x06, AC_VERB_SET_DIGI_CONVERT_1
, 0},
6062 /* Ensure Mic1 and Line1 pin widgets take input from the OUT1 sum
6063 * bus when acting as outputs.
6065 {0x0b, AC_VERB_SET_CONNECT_SEL
, 0},
6066 {0x0d, AC_VERB_SET_CONNECT_SEL
, 0},
6068 /* Start with output sum widgets muted and their output gains at min */
6069 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6070 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
6071 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
6072 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6073 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
6074 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
6075 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6076 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
6077 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
6079 /* Unmute Line-out pin widget amp left and right
6080 * (no equiv mixer ctrl)
6082 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
6083 /* Unmute Mic1 and Line1 pin widget input buffers since they start as
6084 * inputs. If the pin mode is changed by the user the pin mode control
6085 * will take care of enabling the pin's input/output buffers as needed.
6086 * Therefore there's no need to enable the input buffer at this
6089 {0x12, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
6091 /* Mute capture amp left and right */
6092 {0x04, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6093 /* Set ADC connection select to match default mixer setting - mic
6096 {0x04, AC_VERB_SET_CONNECT_SEL
, 0x00},
6098 /* Do similar with the second ADC: mute capture input amp and
6099 * set ADC connection to mic to match ALSA's default state.
6101 {0x05, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6102 {0x05, AC_VERB_SET_CONNECT_SEL
, 0x00},
6104 /* Mute all inputs to mixer widget (even unconnected ones) */
6105 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)}, /* mic1 pin */
6106 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)}, /* mic2 pin */
6107 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)}, /* line1 pin */
6108 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)}, /* line2 pin */
6109 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)}, /* CD pin */
6110 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(5)}, /* Beep-gen pin */
6111 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(6)}, /* Line-out pin */
6112 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(7)}, /* HP-pin pin */
6117 static struct hda_verb alc260_will_verbs
[] = {
6118 {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
6119 {0x0b, AC_VERB_SET_CONNECT_SEL
, 0x00},
6120 {0x0d, AC_VERB_SET_CONNECT_SEL
, 0x00},
6121 {0x0f, AC_VERB_SET_EAPD_BTLENABLE
, 0x02},
6122 {0x1a, AC_VERB_SET_COEF_INDEX
, 0x07},
6123 {0x1a, AC_VERB_SET_PROC_COEF
, 0x3040},
6127 static struct hda_verb alc260_replacer_672v_verbs
[] = {
6128 {0x0f, AC_VERB_SET_EAPD_BTLENABLE
, 0x02},
6129 {0x1a, AC_VERB_SET_COEF_INDEX
, 0x07},
6130 {0x1a, AC_VERB_SET_PROC_COEF
, 0x3050},
6132 {0x01, AC_VERB_SET_GPIO_MASK
, 0x01},
6133 {0x01, AC_VERB_SET_GPIO_DIRECTION
, 0x01},
6134 {0x01, AC_VERB_SET_GPIO_DATA
, 0x00},
6136 {0x0f, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
6140 /* toggle speaker-output according to the hp-jack state */
6141 static void alc260_replacer_672v_automute(struct hda_codec
*codec
)
6143 unsigned int present
;
6145 /* speaker --> GPIO Data 0, hp or spdif --> GPIO data 1 */
6146 present
= snd_hda_jack_detect(codec
, 0x0f);
6148 snd_hda_codec_write_cache(codec
, 0x01, 0,
6149 AC_VERB_SET_GPIO_DATA
, 1);
6150 snd_hda_codec_write_cache(codec
, 0x0f, 0,
6151 AC_VERB_SET_PIN_WIDGET_CONTROL
,
6154 snd_hda_codec_write_cache(codec
, 0x01, 0,
6155 AC_VERB_SET_GPIO_DATA
, 0);
6156 snd_hda_codec_write_cache(codec
, 0x0f, 0,
6157 AC_VERB_SET_PIN_WIDGET_CONTROL
,
6162 static void alc260_replacer_672v_unsol_event(struct hda_codec
*codec
,
6165 if ((res
>> 26) == ALC880_HP_EVENT
)
6166 alc260_replacer_672v_automute(codec
);
6169 static struct hda_verb alc260_hp_dc7600_verbs
[] = {
6170 {0x05, AC_VERB_SET_CONNECT_SEL
, 0x01},
6171 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x01},
6172 {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
6173 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
6174 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
6175 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
6176 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
6177 {0x10, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
6178 {0x11, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
6179 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
6183 /* Test configuration for debugging, modelled after the ALC880 test
6186 #ifdef CONFIG_SND_DEBUG
6187 static hda_nid_t alc260_test_dac_nids
[1] = {
6190 static hda_nid_t alc260_test_adc_nids
[2] = {
6193 /* For testing the ALC260, each input MUX needs its own definition since
6194 * the signal assignments are different. This assumes that the first ADC
6197 static struct hda_input_mux alc260_test_capture_sources
[2] = {
6201 { "MIC1 pin", 0x0 },
6202 { "MIC2 pin", 0x1 },
6203 { "LINE1 pin", 0x2 },
6204 { "LINE2 pin", 0x3 },
6206 { "LINE-OUT pin", 0x5 },
6207 { "HP-OUT pin", 0x6 },
6213 { "MIC1 pin", 0x0 },
6214 { "MIC2 pin", 0x1 },
6215 { "LINE1 pin", 0x2 },
6216 { "LINE2 pin", 0x3 },
6219 { "LINE-OUT pin", 0x6 },
6220 { "HP-OUT pin", 0x7 },
6224 static struct snd_kcontrol_new alc260_test_mixer
[] = {
6225 /* Output driver widgets */
6226 HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x0a, 1, 0x0, HDA_OUTPUT
),
6227 HDA_BIND_MUTE_MONO("Mono Playback Switch", 0x0a, 1, 2, HDA_INPUT
),
6228 HDA_CODEC_VOLUME("LOUT2 Playback Volume", 0x09, 0x0, HDA_OUTPUT
),
6229 HDA_BIND_MUTE("LOUT2 Playback Switch", 0x09, 2, HDA_INPUT
),
6230 HDA_CODEC_VOLUME("LOUT1 Playback Volume", 0x08, 0x0, HDA_OUTPUT
),
6231 HDA_BIND_MUTE("LOUT1 Playback Switch", 0x08, 2, HDA_INPUT
),
6233 /* Modes for retasking pin widgets
6234 * Note: the ALC260 doesn't seem to act on requests to enable mic
6235 * bias from NIDs 0x0f and 0x10. The ALC260 datasheet doesn't
6236 * mention this restriction. At this stage it's not clear whether
6237 * this behaviour is intentional or is a hardware bug in chip
6238 * revisions available at least up until early 2006. Therefore for
6239 * now allow the "HP-OUT" and "LINE-OUT" Mode controls to span all
6240 * choices, but if it turns out that the lack of mic bias for these
6241 * NIDs is intentional we could change their modes from
6242 * ALC_PIN_DIR_INOUT to ALC_PIN_DIR_INOUT_NOMICBIAS.
6244 ALC_PIN_MODE("HP-OUT pin mode", 0x10, ALC_PIN_DIR_INOUT
),
6245 ALC_PIN_MODE("LINE-OUT pin mode", 0x0f, ALC_PIN_DIR_INOUT
),
6246 ALC_PIN_MODE("LINE2 pin mode", 0x15, ALC_PIN_DIR_INOUT
),
6247 ALC_PIN_MODE("LINE1 pin mode", 0x14, ALC_PIN_DIR_INOUT
),
6248 ALC_PIN_MODE("MIC2 pin mode", 0x13, ALC_PIN_DIR_INOUT
),
6249 ALC_PIN_MODE("MIC1 pin mode", 0x12, ALC_PIN_DIR_INOUT
),
6251 /* Loopback mixer controls */
6252 HDA_CODEC_VOLUME("MIC1 Playback Volume", 0x07, 0x00, HDA_INPUT
),
6253 HDA_CODEC_MUTE("MIC1 Playback Switch", 0x07, 0x00, HDA_INPUT
),
6254 HDA_CODEC_VOLUME("MIC2 Playback Volume", 0x07, 0x01, HDA_INPUT
),
6255 HDA_CODEC_MUTE("MIC2 Playback Switch", 0x07, 0x01, HDA_INPUT
),
6256 HDA_CODEC_VOLUME("LINE1 Playback Volume", 0x07, 0x02, HDA_INPUT
),
6257 HDA_CODEC_MUTE("LINE1 Playback Switch", 0x07, 0x02, HDA_INPUT
),
6258 HDA_CODEC_VOLUME("LINE2 Playback Volume", 0x07, 0x03, HDA_INPUT
),
6259 HDA_CODEC_MUTE("LINE2 Playback Switch", 0x07, 0x03, HDA_INPUT
),
6260 HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT
),
6261 HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT
),
6262 HDA_CODEC_VOLUME("LINE-OUT loopback Playback Volume", 0x07, 0x06, HDA_INPUT
),
6263 HDA_CODEC_MUTE("LINE-OUT loopback Playback Switch", 0x07, 0x06, HDA_INPUT
),
6264 HDA_CODEC_VOLUME("HP-OUT loopback Playback Volume", 0x07, 0x7, HDA_INPUT
),
6265 HDA_CODEC_MUTE("HP-OUT loopback Playback Switch", 0x07, 0x7, HDA_INPUT
),
6267 /* Controls for GPIO pins, assuming they are configured as outputs */
6268 ALC_GPIO_DATA_SWITCH("GPIO pin 0", 0x01, 0x01),
6269 ALC_GPIO_DATA_SWITCH("GPIO pin 1", 0x01, 0x02),
6270 ALC_GPIO_DATA_SWITCH("GPIO pin 2", 0x01, 0x04),
6271 ALC_GPIO_DATA_SWITCH("GPIO pin 3", 0x01, 0x08),
6273 /* Switches to allow the digital IO pins to be enabled. The datasheet
6274 * is ambigious as to which NID is which; testing on laptops which
6275 * make this output available should provide clarification.
6277 ALC_SPDIF_CTRL_SWITCH("SPDIF Playback Switch", 0x03, 0x01),
6278 ALC_SPDIF_CTRL_SWITCH("SPDIF Capture Switch", 0x06, 0x01),
6280 /* A switch allowing EAPD to be enabled. Some laptops seem to use
6281 * this output to turn on an external amplifier.
6283 ALC_EAPD_CTRL_SWITCH("LINE-OUT EAPD Enable Switch", 0x0f, 0x02),
6284 ALC_EAPD_CTRL_SWITCH("HP-OUT EAPD Enable Switch", 0x10, 0x02),
6288 static struct hda_verb alc260_test_init_verbs
[] = {
6289 /* Enable all GPIOs as outputs with an initial value of 0 */
6290 {0x01, AC_VERB_SET_GPIO_DIRECTION
, 0x0f},
6291 {0x01, AC_VERB_SET_GPIO_DATA
, 0x00},
6292 {0x01, AC_VERB_SET_GPIO_MASK
, 0x0f},
6294 /* Enable retasking pins as output, initially without power amp */
6295 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
6296 {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
6297 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
6298 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
6299 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
6300 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
6302 /* Disable digital (SPDIF) pins initially, but users can enable
6303 * them via a mixer switch. In the case of SPDIF-out, this initverb
6304 * payload also sets the generation to 0, output to be in "consumer"
6305 * PCM format, copyright asserted, no pre-emphasis and no validity
6308 {0x03, AC_VERB_SET_DIGI_CONVERT_1
, 0},
6309 {0x06, AC_VERB_SET_DIGI_CONVERT_1
, 0},
6311 /* Ensure mic1, mic2, line1 and line2 pin widgets take input from the
6312 * OUT1 sum bus when acting as an output.
6314 {0x0b, AC_VERB_SET_CONNECT_SEL
, 0},
6315 {0x0c, AC_VERB_SET_CONNECT_SEL
, 0},
6316 {0x0d, AC_VERB_SET_CONNECT_SEL
, 0},
6317 {0x0e, AC_VERB_SET_CONNECT_SEL
, 0},
6319 /* Start with output sum widgets muted and their output gains at min */
6320 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6321 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
6322 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
6323 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6324 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
6325 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
6326 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6327 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
6328 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
6330 /* Unmute retasking pin widget output buffers since the default
6331 * state appears to be output. As the pin mode is changed by the
6332 * user the pin mode control will take care of enabling the pin's
6333 * input/output buffers as needed.
6335 {0x10, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
6336 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
6337 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
6338 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
6339 {0x13, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
6340 {0x12, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
6341 /* Also unmute the mono-out pin widget */
6342 {0x11, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
6344 /* Mute capture amp left and right */
6345 {0x04, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6346 /* Set ADC connection select to match default mixer setting (mic1
6349 {0x04, AC_VERB_SET_CONNECT_SEL
, 0x00},
6351 /* Do the same for the second ADC: mute capture input amp and
6352 * set ADC connection to mic1 pin
6354 {0x05, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6355 {0x05, AC_VERB_SET_CONNECT_SEL
, 0x00},
6357 /* Mute all inputs to mixer widget (even unconnected ones) */
6358 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)}, /* mic1 pin */
6359 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)}, /* mic2 pin */
6360 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)}, /* line1 pin */
6361 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)}, /* line2 pin */
6362 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)}, /* CD pin */
6363 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(5)}, /* Beep-gen pin */
6364 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(6)}, /* Line-out pin */
6365 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(7)}, /* HP-pin pin */
6371 #define alc260_pcm_analog_playback alc880_pcm_analog_alt_playback
6372 #define alc260_pcm_analog_capture alc880_pcm_analog_capture
6374 #define alc260_pcm_digital_playback alc880_pcm_digital_playback
6375 #define alc260_pcm_digital_capture alc880_pcm_digital_capture
6378 * for BIOS auto-configuration
6381 static int alc260_add_playback_controls(struct alc_spec
*spec
, hda_nid_t nid
,
6382 const char *pfx
, int *vol_bits
)
6385 unsigned long vol_val
, sw_val
;
6388 if (nid
>= 0x0f && nid
< 0x11) {
6389 nid_vol
= nid
- 0x7;
6390 vol_val
= HDA_COMPOSE_AMP_VAL(nid_vol
, 3, 0, HDA_OUTPUT
);
6391 sw_val
= HDA_COMPOSE_AMP_VAL(nid
, 3, 0, HDA_OUTPUT
);
6392 } else if (nid
== 0x11) {
6393 nid_vol
= nid
- 0x7;
6394 vol_val
= HDA_COMPOSE_AMP_VAL(nid_vol
, 2, 0, HDA_OUTPUT
);
6395 sw_val
= HDA_COMPOSE_AMP_VAL(nid
, 2, 0, HDA_OUTPUT
);
6396 } else if (nid
>= 0x12 && nid
<= 0x15) {
6398 vol_val
= HDA_COMPOSE_AMP_VAL(nid_vol
, 3, 0, HDA_OUTPUT
);
6399 sw_val
= HDA_COMPOSE_AMP_VAL(nid
, 3, 0, HDA_OUTPUT
);
6403 if (!(*vol_bits
& (1 << nid_vol
))) {
6404 /* first control for the volume widget */
6405 err
= add_pb_vol_ctrl(spec
, ALC_CTL_WIDGET_VOL
, pfx
, vol_val
);
6408 *vol_bits
|= (1 << nid_vol
);
6410 err
= add_pb_sw_ctrl(spec
, ALC_CTL_WIDGET_MUTE
, pfx
, sw_val
);
6416 /* add playback controls from the parsed DAC table */
6417 static int alc260_auto_create_multi_out_ctls(struct alc_spec
*spec
,
6418 const struct auto_pin_cfg
*cfg
)
6424 spec
->multiout
.num_dacs
= 1;
6425 spec
->multiout
.dac_nids
= spec
->private_dac_nids
;
6426 spec
->multiout
.dac_nids
[0] = 0x02;
6428 nid
= cfg
->line_out_pins
[0];
6431 if (!cfg
->speaker_pins
[0] && !cfg
->hp_pins
[0])
6433 else if (cfg
->line_out_type
== AUTO_PIN_SPEAKER_OUT
)
6437 err
= alc260_add_playback_controls(spec
, nid
, pfx
, &vols
);
6442 nid
= cfg
->speaker_pins
[0];
6444 err
= alc260_add_playback_controls(spec
, nid
, "Speaker", &vols
);
6449 nid
= cfg
->hp_pins
[0];
6451 err
= alc260_add_playback_controls(spec
, nid
, "Headphone",
6459 /* create playback/capture controls for input pins */
6460 static int alc260_auto_create_input_ctls(struct hda_codec
*codec
,
6461 const struct auto_pin_cfg
*cfg
)
6463 return alc_auto_create_input_ctls(codec
, cfg
, 0x07, 0x04, 0x05);
6466 static void alc260_auto_set_output_and_unmute(struct hda_codec
*codec
,
6467 hda_nid_t nid
, int pin_type
,
6470 alc_set_pin_output(codec
, nid
, pin_type
);
6471 /* need the manual connection? */
6473 int idx
= nid
- 0x12;
6474 snd_hda_codec_write(codec
, idx
+ 0x0b, 0,
6475 AC_VERB_SET_CONNECT_SEL
, sel_idx
);
6479 static void alc260_auto_init_multi_out(struct hda_codec
*codec
)
6481 struct alc_spec
*spec
= codec
->spec
;
6484 nid
= spec
->autocfg
.line_out_pins
[0];
6486 int pin_type
= get_pin_type(spec
->autocfg
.line_out_type
);
6487 alc260_auto_set_output_and_unmute(codec
, nid
, pin_type
, 0);
6490 nid
= spec
->autocfg
.speaker_pins
[0];
6492 alc260_auto_set_output_and_unmute(codec
, nid
, PIN_OUT
, 0);
6494 nid
= spec
->autocfg
.hp_pins
[0];
6496 alc260_auto_set_output_and_unmute(codec
, nid
, PIN_HP
, 0);
6499 #define ALC260_PIN_CD_NID 0x16
6500 static void alc260_auto_init_analog_input(struct hda_codec
*codec
)
6502 struct alc_spec
*spec
= codec
->spec
;
6505 for (i
= 0; i
< AUTO_PIN_LAST
; i
++) {
6506 hda_nid_t nid
= spec
->autocfg
.input_pins
[i
];
6508 alc_set_input_pin(codec
, nid
, i
);
6509 if (nid
!= ALC260_PIN_CD_NID
&&
6510 (get_wcaps(codec
, nid
) & AC_WCAP_OUT_AMP
))
6511 snd_hda_codec_write(codec
, nid
, 0,
6512 AC_VERB_SET_AMP_GAIN_MUTE
,
6518 #define alc260_auto_init_input_src alc880_auto_init_input_src
6521 * generic initialization of ADC, input mixers and output mixers
6523 static struct hda_verb alc260_volume_init_verbs
[] = {
6525 * Unmute ADC0-1 and set the default input to mic-in
6527 {0x04, AC_VERB_SET_CONNECT_SEL
, 0x00},
6528 {0x04, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
6529 {0x05, AC_VERB_SET_CONNECT_SEL
, 0x00},
6530 {0x05, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
6532 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
6534 * Note: PASD motherboards uses the Line In 2 as the input for
6535 * front panel mic (mic 2)
6537 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
6538 /* mute analog inputs */
6539 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6540 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
6541 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
6542 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
6543 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
6546 * Set up output mixers (0x08 - 0x0a)
6548 /* set vol=0 to output mixers */
6549 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
6550 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
6551 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
6552 /* set up input amps for analog loopback */
6553 /* Amp Indices: DAC = 0, mixer = 1 */
6554 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
6555 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
6556 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
6557 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
6558 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
6559 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
6564 static int alc260_parse_auto_config(struct hda_codec
*codec
)
6566 struct alc_spec
*spec
= codec
->spec
;
6568 static hda_nid_t alc260_ignore
[] = { 0x17, 0 };
6570 err
= snd_hda_parse_pin_def_config(codec
, &spec
->autocfg
,
6574 err
= alc260_auto_create_multi_out_ctls(spec
, &spec
->autocfg
);
6577 if (!spec
->kctls
.list
)
6578 return 0; /* can't find valid BIOS pin config */
6579 err
= alc260_auto_create_input_ctls(codec
, &spec
->autocfg
);
6583 spec
->multiout
.max_channels
= 2;
6585 if (spec
->autocfg
.dig_outs
)
6586 spec
->multiout
.dig_out_nid
= ALC260_DIGOUT_NID
;
6587 if (spec
->kctls
.list
)
6588 add_mixer(spec
, spec
->kctls
.list
);
6590 add_verb(spec
, alc260_volume_init_verbs
);
6592 spec
->num_mux_defs
= 1;
6593 spec
->input_mux
= &spec
->private_imux
[0];
6595 alc_ssid_check(codec
, 0x10, 0x15, 0x0f, 0);
6600 /* additional initialization for auto-configuration model */
6601 static void alc260_auto_init(struct hda_codec
*codec
)
6603 struct alc_spec
*spec
= codec
->spec
;
6604 alc260_auto_init_multi_out(codec
);
6605 alc260_auto_init_analog_input(codec
);
6606 alc260_auto_init_input_src(codec
);
6607 if (spec
->unsol_event
)
6608 alc_inithook(codec
);
6611 #ifdef CONFIG_SND_HDA_POWER_SAVE
6612 static struct hda_amp_list alc260_loopbacks
[] = {
6613 { 0x07, HDA_INPUT
, 0 },
6614 { 0x07, HDA_INPUT
, 1 },
6615 { 0x07, HDA_INPUT
, 2 },
6616 { 0x07, HDA_INPUT
, 3 },
6617 { 0x07, HDA_INPUT
, 4 },
6623 * ALC260 configurations
6625 static const char *alc260_models
[ALC260_MODEL_LAST
] = {
6626 [ALC260_BASIC
] = "basic",
6628 [ALC260_HP_3013
] = "hp-3013",
6629 [ALC260_HP_DC7600
] = "hp-dc7600",
6630 [ALC260_FUJITSU_S702X
] = "fujitsu",
6631 [ALC260_ACER
] = "acer",
6632 [ALC260_WILL
] = "will",
6633 [ALC260_REPLACER_672V
] = "replacer",
6634 [ALC260_FAVORIT100
] = "favorit100",
6635 #ifdef CONFIG_SND_DEBUG
6636 [ALC260_TEST
] = "test",
6638 [ALC260_AUTO
] = "auto",
6641 static struct snd_pci_quirk alc260_cfg_tbl
[] = {
6642 SND_PCI_QUIRK(0x1025, 0x007b, "Acer C20x", ALC260_ACER
),
6643 SND_PCI_QUIRK(0x1025, 0x007f, "Acer", ALC260_WILL
),
6644 SND_PCI_QUIRK(0x1025, 0x008f, "Acer", ALC260_ACER
),
6645 SND_PCI_QUIRK(0x1509, 0x4540, "Favorit 100XS", ALC260_FAVORIT100
),
6646 SND_PCI_QUIRK(0x103c, 0x2808, "HP d5700", ALC260_HP_3013
),
6647 SND_PCI_QUIRK(0x103c, 0x280a, "HP d5750", ALC260_AUTO
), /* no quirk */
6648 SND_PCI_QUIRK(0x103c, 0x3010, "HP", ALC260_HP_3013
),
6649 SND_PCI_QUIRK(0x103c, 0x3011, "HP", ALC260_HP_3013
),
6650 SND_PCI_QUIRK(0x103c, 0x3012, "HP", ALC260_HP_DC7600
),
6651 SND_PCI_QUIRK(0x103c, 0x3013, "HP", ALC260_HP_3013
),
6652 SND_PCI_QUIRK(0x103c, 0x3014, "HP", ALC260_HP
),
6653 SND_PCI_QUIRK(0x103c, 0x3015, "HP", ALC260_HP
),
6654 SND_PCI_QUIRK(0x103c, 0x3016, "HP", ALC260_HP
),
6655 SND_PCI_QUIRK(0x104d, 0x81bb, "Sony VAIO", ALC260_BASIC
),
6656 SND_PCI_QUIRK(0x104d, 0x81cc, "Sony VAIO", ALC260_BASIC
),
6657 SND_PCI_QUIRK(0x104d, 0x81cd, "Sony VAIO", ALC260_BASIC
),
6658 SND_PCI_QUIRK(0x10cf, 0x1326, "Fujitsu S702X", ALC260_FUJITSU_S702X
),
6659 SND_PCI_QUIRK(0x152d, 0x0729, "CTL U553W", ALC260_BASIC
),
6660 SND_PCI_QUIRK(0x161f, 0x2057, "Replacer 672V", ALC260_REPLACER_672V
),
6661 SND_PCI_QUIRK(0x1631, 0xc017, "PB V7900", ALC260_WILL
),
6665 static struct alc_config_preset alc260_presets
[] = {
6667 .mixers
= { alc260_base_output_mixer
,
6668 alc260_input_mixer
},
6669 .init_verbs
= { alc260_init_verbs
},
6670 .num_dacs
= ARRAY_SIZE(alc260_dac_nids
),
6671 .dac_nids
= alc260_dac_nids
,
6672 .num_adc_nids
= ARRAY_SIZE(alc260_dual_adc_nids
),
6673 .adc_nids
= alc260_dual_adc_nids
,
6674 .num_channel_mode
= ARRAY_SIZE(alc260_modes
),
6675 .channel_mode
= alc260_modes
,
6676 .input_mux
= &alc260_capture_source
,
6679 .mixers
= { alc260_hp_output_mixer
,
6680 alc260_input_mixer
},
6681 .init_verbs
= { alc260_init_verbs
,
6682 alc260_hp_unsol_verbs
},
6683 .num_dacs
= ARRAY_SIZE(alc260_dac_nids
),
6684 .dac_nids
= alc260_dac_nids
,
6685 .num_adc_nids
= ARRAY_SIZE(alc260_adc_nids_alt
),
6686 .adc_nids
= alc260_adc_nids_alt
,
6687 .num_channel_mode
= ARRAY_SIZE(alc260_modes
),
6688 .channel_mode
= alc260_modes
,
6689 .input_mux
= &alc260_capture_source
,
6690 .unsol_event
= alc260_hp_unsol_event
,
6691 .init_hook
= alc260_hp_automute
,
6693 [ALC260_HP_DC7600
] = {
6694 .mixers
= { alc260_hp_dc7600_mixer
,
6695 alc260_input_mixer
},
6696 .init_verbs
= { alc260_init_verbs
,
6697 alc260_hp_dc7600_verbs
},
6698 .num_dacs
= ARRAY_SIZE(alc260_dac_nids
),
6699 .dac_nids
= alc260_dac_nids
,
6700 .num_adc_nids
= ARRAY_SIZE(alc260_adc_nids_alt
),
6701 .adc_nids
= alc260_adc_nids_alt
,
6702 .num_channel_mode
= ARRAY_SIZE(alc260_modes
),
6703 .channel_mode
= alc260_modes
,
6704 .input_mux
= &alc260_capture_source
,
6705 .unsol_event
= alc260_hp_3012_unsol_event
,
6706 .init_hook
= alc260_hp_3012_automute
,
6708 [ALC260_HP_3013
] = {
6709 .mixers
= { alc260_hp_3013_mixer
,
6710 alc260_input_mixer
},
6711 .init_verbs
= { alc260_hp_3013_init_verbs
,
6712 alc260_hp_3013_unsol_verbs
},
6713 .num_dacs
= ARRAY_SIZE(alc260_dac_nids
),
6714 .dac_nids
= alc260_dac_nids
,
6715 .num_adc_nids
= ARRAY_SIZE(alc260_adc_nids_alt
),
6716 .adc_nids
= alc260_adc_nids_alt
,
6717 .num_channel_mode
= ARRAY_SIZE(alc260_modes
),
6718 .channel_mode
= alc260_modes
,
6719 .input_mux
= &alc260_capture_source
,
6720 .unsol_event
= alc260_hp_3013_unsol_event
,
6721 .init_hook
= alc260_hp_3013_automute
,
6723 [ALC260_FUJITSU_S702X
] = {
6724 .mixers
= { alc260_fujitsu_mixer
},
6725 .init_verbs
= { alc260_fujitsu_init_verbs
},
6726 .num_dacs
= ARRAY_SIZE(alc260_dac_nids
),
6727 .dac_nids
= alc260_dac_nids
,
6728 .num_adc_nids
= ARRAY_SIZE(alc260_dual_adc_nids
),
6729 .adc_nids
= alc260_dual_adc_nids
,
6730 .num_channel_mode
= ARRAY_SIZE(alc260_modes
),
6731 .channel_mode
= alc260_modes
,
6732 .num_mux_defs
= ARRAY_SIZE(alc260_fujitsu_capture_sources
),
6733 .input_mux
= alc260_fujitsu_capture_sources
,
6736 .mixers
= { alc260_acer_mixer
},
6737 .init_verbs
= { alc260_acer_init_verbs
},
6738 .num_dacs
= ARRAY_SIZE(alc260_dac_nids
),
6739 .dac_nids
= alc260_dac_nids
,
6740 .num_adc_nids
= ARRAY_SIZE(alc260_dual_adc_nids
),
6741 .adc_nids
= alc260_dual_adc_nids
,
6742 .num_channel_mode
= ARRAY_SIZE(alc260_modes
),
6743 .channel_mode
= alc260_modes
,
6744 .num_mux_defs
= ARRAY_SIZE(alc260_acer_capture_sources
),
6745 .input_mux
= alc260_acer_capture_sources
,
6747 [ALC260_FAVORIT100
] = {
6748 .mixers
= { alc260_favorit100_mixer
},
6749 .init_verbs
= { alc260_favorit100_init_verbs
},
6750 .num_dacs
= ARRAY_SIZE(alc260_dac_nids
),
6751 .dac_nids
= alc260_dac_nids
,
6752 .num_adc_nids
= ARRAY_SIZE(alc260_dual_adc_nids
),
6753 .adc_nids
= alc260_dual_adc_nids
,
6754 .num_channel_mode
= ARRAY_SIZE(alc260_modes
),
6755 .channel_mode
= alc260_modes
,
6756 .num_mux_defs
= ARRAY_SIZE(alc260_favorit100_capture_sources
),
6757 .input_mux
= alc260_favorit100_capture_sources
,
6760 .mixers
= { alc260_will_mixer
},
6761 .init_verbs
= { alc260_init_verbs
, alc260_will_verbs
},
6762 .num_dacs
= ARRAY_SIZE(alc260_dac_nids
),
6763 .dac_nids
= alc260_dac_nids
,
6764 .num_adc_nids
= ARRAY_SIZE(alc260_adc_nids
),
6765 .adc_nids
= alc260_adc_nids
,
6766 .dig_out_nid
= ALC260_DIGOUT_NID
,
6767 .num_channel_mode
= ARRAY_SIZE(alc260_modes
),
6768 .channel_mode
= alc260_modes
,
6769 .input_mux
= &alc260_capture_source
,
6771 [ALC260_REPLACER_672V
] = {
6772 .mixers
= { alc260_replacer_672v_mixer
},
6773 .init_verbs
= { alc260_init_verbs
, alc260_replacer_672v_verbs
},
6774 .num_dacs
= ARRAY_SIZE(alc260_dac_nids
),
6775 .dac_nids
= alc260_dac_nids
,
6776 .num_adc_nids
= ARRAY_SIZE(alc260_adc_nids
),
6777 .adc_nids
= alc260_adc_nids
,
6778 .dig_out_nid
= ALC260_DIGOUT_NID
,
6779 .num_channel_mode
= ARRAY_SIZE(alc260_modes
),
6780 .channel_mode
= alc260_modes
,
6781 .input_mux
= &alc260_capture_source
,
6782 .unsol_event
= alc260_replacer_672v_unsol_event
,
6783 .init_hook
= alc260_replacer_672v_automute
,
6785 #ifdef CONFIG_SND_DEBUG
6787 .mixers
= { alc260_test_mixer
},
6788 .init_verbs
= { alc260_test_init_verbs
},
6789 .num_dacs
= ARRAY_SIZE(alc260_test_dac_nids
),
6790 .dac_nids
= alc260_test_dac_nids
,
6791 .num_adc_nids
= ARRAY_SIZE(alc260_test_adc_nids
),
6792 .adc_nids
= alc260_test_adc_nids
,
6793 .num_channel_mode
= ARRAY_SIZE(alc260_modes
),
6794 .channel_mode
= alc260_modes
,
6795 .num_mux_defs
= ARRAY_SIZE(alc260_test_capture_sources
),
6796 .input_mux
= alc260_test_capture_sources
,
6801 static int patch_alc260(struct hda_codec
*codec
)
6803 struct alc_spec
*spec
;
6804 int err
, board_config
;
6806 spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
6812 board_config
= snd_hda_check_board_config(codec
, ALC260_MODEL_LAST
,
6815 if (board_config
< 0) {
6816 snd_printd(KERN_INFO
"hda_codec: %s: BIOS auto-probing.\n",
6818 board_config
= ALC260_AUTO
;
6821 if (board_config
== ALC260_AUTO
) {
6822 /* automatic parse from the BIOS config */
6823 err
= alc260_parse_auto_config(codec
);
6829 "hda_codec: Cannot set up configuration "
6830 "from BIOS. Using base mode...\n");
6831 board_config
= ALC260_BASIC
;
6835 err
= snd_hda_attach_beep_device(codec
, 0x1);
6841 if (board_config
!= ALC260_AUTO
)
6842 setup_preset(codec
, &alc260_presets
[board_config
]);
6844 spec
->stream_analog_playback
= &alc260_pcm_analog_playback
;
6845 spec
->stream_analog_capture
= &alc260_pcm_analog_capture
;
6847 spec
->stream_digital_playback
= &alc260_pcm_digital_playback
;
6848 spec
->stream_digital_capture
= &alc260_pcm_digital_capture
;
6850 if (!spec
->adc_nids
&& spec
->input_mux
) {
6851 /* check whether NID 0x04 is valid */
6852 unsigned int wcap
= get_wcaps(codec
, 0x04);
6853 wcap
= get_wcaps_type(wcap
);
6855 if (wcap
!= AC_WID_AUD_IN
|| spec
->input_mux
->num_items
== 1) {
6856 spec
->adc_nids
= alc260_adc_nids_alt
;
6857 spec
->num_adc_nids
= ARRAY_SIZE(alc260_adc_nids_alt
);
6859 spec
->adc_nids
= alc260_adc_nids
;
6860 spec
->num_adc_nids
= ARRAY_SIZE(alc260_adc_nids
);
6863 set_capture_mixer(codec
);
6864 set_beep_amp(spec
, 0x07, 0x05, HDA_INPUT
);
6866 spec
->vmaster_nid
= 0x08;
6868 codec
->patch_ops
= alc_patch_ops
;
6869 if (board_config
== ALC260_AUTO
)
6870 spec
->init_hook
= alc260_auto_init
;
6871 #ifdef CONFIG_SND_HDA_POWER_SAVE
6872 if (!spec
->loopback
.amplist
)
6873 spec
->loopback
.amplist
= alc260_loopbacks
;
6881 * ALC882/883/885/888/889 support
6883 * ALC882 is almost identical with ALC880 but has cleaner and more flexible
6884 * configuration. Each pin widget can choose any input DACs and a mixer.
6885 * Each ADC is connected from a mixer of all inputs. This makes possible
6886 * 6-channel independent captures.
6888 * In addition, an independent DAC for the multi-playback (not used in this
6891 #define ALC882_DIGOUT_NID 0x06
6892 #define ALC882_DIGIN_NID 0x0a
6893 #define ALC883_DIGOUT_NID ALC882_DIGOUT_NID
6894 #define ALC883_DIGIN_NID ALC882_DIGIN_NID
6895 #define ALC1200_DIGOUT_NID 0x10
6898 static struct hda_channel_mode alc882_ch_modes
[1] = {
6903 static hda_nid_t alc882_dac_nids
[4] = {
6904 /* front, rear, clfe, rear_surr */
6905 0x02, 0x03, 0x04, 0x05
6907 #define alc883_dac_nids alc882_dac_nids
6910 #define alc882_adc_nids alc880_adc_nids
6911 #define alc882_adc_nids_alt alc880_adc_nids_alt
6912 #define alc883_adc_nids alc882_adc_nids_alt
6913 static hda_nid_t alc883_adc_nids_alt
[1] = { 0x08 };
6914 static hda_nid_t alc883_adc_nids_rev
[2] = { 0x09, 0x08 };
6915 #define alc889_adc_nids alc880_adc_nids
6917 static hda_nid_t alc882_capsrc_nids
[3] = { 0x24, 0x23, 0x22 };
6918 static hda_nid_t alc882_capsrc_nids_alt
[2] = { 0x23, 0x22 };
6919 #define alc883_capsrc_nids alc882_capsrc_nids_alt
6920 static hda_nid_t alc883_capsrc_nids_rev
[2] = { 0x22, 0x23 };
6921 #define alc889_capsrc_nids alc882_capsrc_nids
6924 /* FIXME: should be a matrix-type input source selection */
6926 static struct hda_input_mux alc882_capture_source
= {
6930 { "Front Mic", 0x1 },
6936 #define alc883_capture_source alc882_capture_source
6938 static struct hda_input_mux alc889_capture_source
= {
6941 { "Front Mic", 0x0 },
6947 static struct hda_input_mux mb5_capture_source
= {
6956 static struct hda_input_mux macmini3_capture_source
= {
6964 static struct hda_input_mux alc883_3stack_6ch_intel
= {
6968 { "Front Mic", 0x0 },
6974 static struct hda_input_mux alc883_lenovo_101e_capture_source
= {
6982 static struct hda_input_mux alc883_lenovo_nb0763_capture_source
= {
6992 static struct hda_input_mux alc883_fujitsu_pi2515_capture_source
= {
7000 static struct hda_input_mux alc883_lenovo_sky_capture_source
= {
7004 { "Front Mic", 0x1 },
7009 static struct hda_input_mux alc883_asus_eee1601_capture_source
= {
7017 static struct hda_input_mux alc889A_mb31_capture_source
= {
7021 /* Front Mic (0x01) unused */
7023 /* Line 2 (0x03) unused */
7024 /* CD (0x04) unused? */
7028 static struct hda_input_mux alc889A_imac91_capture_source
= {
7032 { "Line", 0x2 }, /* Not sure! */
7039 static struct hda_channel_mode alc883_3ST_2ch_modes
[1] = {
7046 static struct hda_verb alc882_3ST_ch2_init
[] = {
7047 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
7048 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
7049 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
7050 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
7057 static struct hda_verb alc882_3ST_ch4_init
[] = {
7058 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
7059 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
7060 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7061 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7062 { 0x1a, AC_VERB_SET_CONNECT_SEL
, 0x01 },
7069 static struct hda_verb alc882_3ST_ch6_init
[] = {
7070 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7071 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7072 { 0x18, AC_VERB_SET_CONNECT_SEL
, 0x02 },
7073 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7074 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7075 { 0x1a, AC_VERB_SET_CONNECT_SEL
, 0x01 },
7079 static struct hda_channel_mode alc882_3ST_6ch_modes
[3] = {
7080 { 2, alc882_3ST_ch2_init
},
7081 { 4, alc882_3ST_ch4_init
},
7082 { 6, alc882_3ST_ch6_init
},
7085 #define alc883_3ST_6ch_modes alc882_3ST_6ch_modes
7090 static struct hda_verb alc883_3ST_ch2_clevo_init
[] = {
7091 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
7092 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
7093 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
7094 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
7095 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
7102 static struct hda_verb alc883_3ST_ch4_clevo_init
[] = {
7103 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7104 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
7105 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
7106 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7107 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7108 { 0x1a, AC_VERB_SET_CONNECT_SEL
, 0x01 },
7115 static struct hda_verb alc883_3ST_ch6_clevo_init
[] = {
7116 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7117 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7118 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7119 { 0x18, AC_VERB_SET_CONNECT_SEL
, 0x02 },
7120 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7121 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7122 { 0x1a, AC_VERB_SET_CONNECT_SEL
, 0x01 },
7126 static struct hda_channel_mode alc883_3ST_6ch_clevo_modes
[3] = {
7127 { 2, alc883_3ST_ch2_clevo_init
},
7128 { 4, alc883_3ST_ch4_clevo_init
},
7129 { 6, alc883_3ST_ch6_clevo_init
},
7136 static struct hda_verb alc882_sixstack_ch6_init
[] = {
7137 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x00 },
7138 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7139 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7140 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7147 static struct hda_verb alc882_sixstack_ch8_init
[] = {
7148 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7149 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7150 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7151 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7155 static struct hda_channel_mode alc882_sixstack_modes
[2] = {
7156 { 6, alc882_sixstack_ch6_init
},
7157 { 8, alc882_sixstack_ch8_init
},
7161 /* Macbook Air 2,1 */
7163 static struct hda_channel_mode alc885_mba21_ch_modes
[1] = {
7168 * macbook pro ALC885 can switch LineIn to LineOut without losing Mic
7174 static struct hda_verb alc885_mbp_ch2_init
[] = {
7175 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
7176 { 0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
7177 { 0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
7184 static struct hda_verb alc885_mbp_ch4_init
[] = {
7185 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7186 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7187 { 0x1a, AC_VERB_SET_CONNECT_SEL
, 0x01 },
7188 { 0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
7189 { 0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
7193 static struct hda_channel_mode alc885_mbp_4ch_modes
[2] = {
7194 { 2, alc885_mbp_ch2_init
},
7195 { 4, alc885_mbp_ch4_init
},
7200 * Speakers/Woofer/HP = Front
7203 static struct hda_verb alc885_mb5_ch2_init
[] = {
7204 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
7205 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
7211 * Speakers/HP = Front
7215 static struct hda_verb alc885_mb5_ch6_init
[] = {
7216 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7217 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7218 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x01},
7222 static struct hda_channel_mode alc885_mb5_6ch_modes
[2] = {
7223 { 2, alc885_mb5_ch2_init
},
7224 { 6, alc885_mb5_ch6_init
},
7227 #define alc885_macmini3_6ch_modes alc885_mb5_6ch_modes
7232 static struct hda_verb alc883_4ST_ch2_init
[] = {
7233 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7234 { 0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7235 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
7236 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
7237 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
7238 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
7245 static struct hda_verb alc883_4ST_ch4_init
[] = {
7246 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7247 { 0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7248 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
7249 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
7250 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7251 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7252 { 0x1a, AC_VERB_SET_CONNECT_SEL
, 0x01 },
7259 static struct hda_verb alc883_4ST_ch6_init
[] = {
7260 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7261 { 0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7262 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7263 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7264 { 0x18, AC_VERB_SET_CONNECT_SEL
, 0x02 },
7265 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7266 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7267 { 0x1a, AC_VERB_SET_CONNECT_SEL
, 0x01 },
7274 static struct hda_verb alc883_4ST_ch8_init
[] = {
7275 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7276 { 0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7277 { 0x17, AC_VERB_SET_CONNECT_SEL
, 0x03 },
7278 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7279 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7280 { 0x18, AC_VERB_SET_CONNECT_SEL
, 0x02 },
7281 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7282 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7283 { 0x1a, AC_VERB_SET_CONNECT_SEL
, 0x01 },
7287 static struct hda_channel_mode alc883_4ST_8ch_modes
[4] = {
7288 { 2, alc883_4ST_ch2_init
},
7289 { 4, alc883_4ST_ch4_init
},
7290 { 6, alc883_4ST_ch6_init
},
7291 { 8, alc883_4ST_ch8_init
},
7298 static struct hda_verb alc883_3ST_ch2_intel_init
[] = {
7299 { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
7300 { 0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
7301 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
7302 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
7309 static struct hda_verb alc883_3ST_ch4_intel_init
[] = {
7310 { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
7311 { 0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
7312 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7313 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7314 { 0x1a, AC_VERB_SET_CONNECT_SEL
, 0x01 },
7321 static struct hda_verb alc883_3ST_ch6_intel_init
[] = {
7322 { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7323 { 0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7324 { 0x19, AC_VERB_SET_CONNECT_SEL
, 0x02 },
7325 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7326 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7327 { 0x1a, AC_VERB_SET_CONNECT_SEL
, 0x01 },
7331 static struct hda_channel_mode alc883_3ST_6ch_intel_modes
[3] = {
7332 { 2, alc883_3ST_ch2_intel_init
},
7333 { 4, alc883_3ST_ch4_intel_init
},
7334 { 6, alc883_3ST_ch6_intel_init
},
7340 static struct hda_verb alc889_ch2_intel_init
[] = {
7341 { 0x14, AC_VERB_SET_CONNECT_SEL
, 0x00 },
7342 { 0x19, AC_VERB_SET_CONNECT_SEL
, 0x00 },
7343 { 0x16, AC_VERB_SET_CONNECT_SEL
, 0x00 },
7344 { 0x17, AC_VERB_SET_CONNECT_SEL
, 0x00 },
7345 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
7346 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
7353 static struct hda_verb alc889_ch6_intel_init
[] = {
7354 { 0x14, AC_VERB_SET_CONNECT_SEL
, 0x00 },
7355 { 0x19, AC_VERB_SET_CONNECT_SEL
, 0x01 },
7356 { 0x16, AC_VERB_SET_CONNECT_SEL
, 0x02 },
7357 { 0x17, AC_VERB_SET_CONNECT_SEL
, 0x03 },
7358 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
7359 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
7366 static struct hda_verb alc889_ch8_intel_init
[] = {
7367 { 0x14, AC_VERB_SET_CONNECT_SEL
, 0x00 },
7368 { 0x19, AC_VERB_SET_CONNECT_SEL
, 0x01 },
7369 { 0x16, AC_VERB_SET_CONNECT_SEL
, 0x02 },
7370 { 0x17, AC_VERB_SET_CONNECT_SEL
, 0x03 },
7371 { 0x1a, AC_VERB_SET_CONNECT_SEL
, 0x03 },
7372 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7373 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7377 static struct hda_channel_mode alc889_8ch_intel_modes
[3] = {
7378 { 2, alc889_ch2_intel_init
},
7379 { 6, alc889_ch6_intel_init
},
7380 { 8, alc889_ch8_intel_init
},
7386 static struct hda_verb alc883_sixstack_ch6_init
[] = {
7387 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x00 },
7388 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7389 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7390 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7397 static struct hda_verb alc883_sixstack_ch8_init
[] = {
7398 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7399 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7400 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7401 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7405 static struct hda_channel_mode alc883_sixstack_modes
[2] = {
7406 { 6, alc883_sixstack_ch6_init
},
7407 { 8, alc883_sixstack_ch8_init
},
7411 /* Pin assignment: Front=0x14, Rear=0x15, CLFE=0x16, Side=0x17
7412 * Mic=0x18, Front Mic=0x19, Line-In=0x1a, HP=0x1b
7414 static struct snd_kcontrol_new alc882_base_mixer
[] = {
7415 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
7416 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
7417 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
7418 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT
),
7419 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT
),
7420 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT
),
7421 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT
),
7422 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT
),
7423 HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT
),
7424 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT
),
7425 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
7426 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
7427 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
7428 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
7429 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
7430 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
7431 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
7432 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
7433 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
7434 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT
),
7435 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
7439 /* Macbook Air 2,1 same control for HP and internal Speaker */
7441 static struct snd_kcontrol_new alc885_mba21_mixer
[] = {
7442 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0c, 0x00, HDA_OUTPUT
),
7443 HDA_BIND_MUTE("Speaker Playback Switch", 0x0c, 0x02, HDA_OUTPUT
),
7448 static struct snd_kcontrol_new alc885_mbp3_mixer
[] = {
7449 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0c, 0x00, HDA_OUTPUT
),
7450 HDA_BIND_MUTE ("Speaker Playback Switch", 0x0c, 0x02, HDA_INPUT
),
7451 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0e, 0x00, HDA_OUTPUT
),
7452 HDA_BIND_MUTE ("Headphone Playback Switch", 0x0e, 0x02, HDA_INPUT
),
7453 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x00, HDA_OUTPUT
),
7454 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
7455 HDA_CODEC_MUTE ("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
7456 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x00, HDA_INPUT
),
7457 HDA_CODEC_MUTE ("Mic Playback Switch", 0x0b, 0x00, HDA_INPUT
),
7458 HDA_CODEC_VOLUME("Line Boost", 0x1a, 0x00, HDA_INPUT
),
7459 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0x00, HDA_INPUT
),
7463 static struct snd_kcontrol_new alc885_mb5_mixer
[] = {
7464 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x00, HDA_OUTPUT
),
7465 HDA_BIND_MUTE ("Front Playback Switch", 0x0c, 0x02, HDA_INPUT
),
7466 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x00, HDA_OUTPUT
),
7467 HDA_BIND_MUTE ("Surround Playback Switch", 0x0d, 0x02, HDA_INPUT
),
7468 HDA_CODEC_VOLUME("LFE Playback Volume", 0x0e, 0x00, HDA_OUTPUT
),
7469 HDA_BIND_MUTE ("LFE Playback Switch", 0x0e, 0x02, HDA_INPUT
),
7470 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0f, 0x00, HDA_OUTPUT
),
7471 HDA_BIND_MUTE ("Headphone Playback Switch", 0x0f, 0x02, HDA_INPUT
),
7472 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
7473 HDA_CODEC_MUTE ("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
7474 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x01, HDA_INPUT
),
7475 HDA_CODEC_MUTE ("Mic Playback Switch", 0x0b, 0x01, HDA_INPUT
),
7476 HDA_CODEC_VOLUME("Line Boost", 0x15, 0x00, HDA_INPUT
),
7477 HDA_CODEC_VOLUME("Mic Boost", 0x19, 0x00, HDA_INPUT
),
7481 static struct snd_kcontrol_new alc885_macmini3_mixer
[] = {
7482 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x00, HDA_OUTPUT
),
7483 HDA_BIND_MUTE ("Front Playback Switch", 0x0c, 0x02, HDA_INPUT
),
7484 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x00, HDA_OUTPUT
),
7485 HDA_BIND_MUTE ("Surround Playback Switch", 0x0d, 0x02, HDA_INPUT
),
7486 HDA_CODEC_VOLUME("LFE Playback Volume", 0x0e, 0x00, HDA_OUTPUT
),
7487 HDA_BIND_MUTE ("LFE Playback Switch", 0x0e, 0x02, HDA_INPUT
),
7488 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0f, 0x00, HDA_OUTPUT
),
7489 HDA_BIND_MUTE ("Headphone Playback Switch", 0x0f, 0x02, HDA_INPUT
),
7490 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x07, HDA_INPUT
),
7491 HDA_CODEC_MUTE ("Line Playback Switch", 0x0b, 0x07, HDA_INPUT
),
7492 HDA_CODEC_VOLUME("Line Boost", 0x15, 0x00, HDA_INPUT
),
7496 static struct snd_kcontrol_new alc885_imac91_mixer
[] = {
7497 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0c, 0x00, HDA_OUTPUT
),
7498 HDA_BIND_MUTE("Speaker Playback Switch", 0x0c, 0x02, HDA_INPUT
),
7503 static struct snd_kcontrol_new alc882_w2jc_mixer
[] = {
7504 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
7505 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
7506 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
7507 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
7508 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
7509 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
7510 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
7511 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
7512 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
7516 static struct snd_kcontrol_new alc882_targa_mixer
[] = {
7517 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
7518 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
7519 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
7520 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
7521 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
7522 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
7523 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
7524 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
7525 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
7526 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
7527 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
7528 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
7529 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT
),
7533 /* Pin assignment: Front=0x14, HP = 0x15, Front = 0x16, ???
7534 * Front Mic=0x18, Line In = 0x1a, Line In = 0x1b, CD = 0x1c
7536 static struct snd_kcontrol_new alc882_asus_a7j_mixer
[] = {
7537 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
7538 HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
7539 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
7540 HDA_CODEC_MUTE("Mobile Front Playback Switch", 0x16, 0x0, HDA_OUTPUT
),
7541 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
7542 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
7543 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
7544 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
7545 HDA_CODEC_VOLUME("Mobile Line Playback Volume", 0x0b, 0x03, HDA_INPUT
),
7546 HDA_CODEC_MUTE("Mobile Line Playback Switch", 0x0b, 0x03, HDA_INPUT
),
7547 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
7548 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
7549 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
7553 static struct snd_kcontrol_new alc882_asus_a7m_mixer
[] = {
7554 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
7555 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
7556 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
7557 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
7558 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
7559 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
7560 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
7561 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
7562 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
7563 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
7567 static struct snd_kcontrol_new alc882_chmode_mixer
[] = {
7569 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
7570 .name
= "Channel Mode",
7571 .info
= alc_ch_mode_info
,
7572 .get
= alc_ch_mode_get
,
7573 .put
= alc_ch_mode_put
,
7578 static struct hda_verb alc882_base_init_verbs
[] = {
7579 /* Front mixer: unmute input/output amp left and right (volume = 0) */
7580 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
7581 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
7583 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
7584 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
7586 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
7587 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
7589 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
7590 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
7592 /* Front Pin: output 0 (0x0c) */
7593 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7594 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7595 {0x14, AC_VERB_SET_CONNECT_SEL
, 0x00},
7596 /* Rear Pin: output 1 (0x0d) */
7597 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7598 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7599 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x01},
7600 /* CLFE Pin: output 2 (0x0e) */
7601 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7602 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7603 {0x16, AC_VERB_SET_CONNECT_SEL
, 0x02},
7604 /* Side Pin: output 3 (0x0f) */
7605 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7606 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7607 {0x17, AC_VERB_SET_CONNECT_SEL
, 0x03},
7608 /* Mic (rear) pin: input vref at 80% */
7609 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
7610 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
7611 /* Front Mic pin: input vref at 80% */
7612 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
7613 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
7614 /* Line In pin: input */
7615 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
7616 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
7617 /* Line-2 In: Headphone output (output 0 - 0x0c) */
7618 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
7619 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7620 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0x00},
7621 /* CD pin widget for input */
7622 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
7624 /* FIXME: use matrix-type input source selection */
7625 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
7627 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
7629 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
7630 /* ADC2: mute amp left and right */
7631 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
7632 {0x08, AC_VERB_SET_CONNECT_SEL
, 0x00},
7633 /* ADC3: mute amp left and right */
7634 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
7635 {0x09, AC_VERB_SET_CONNECT_SEL
, 0x00},
7640 static struct hda_verb alc882_adc1_init_verbs
[] = {
7641 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
7642 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
7643 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
7644 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
7645 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
7646 /* ADC1: mute amp left and right */
7647 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
7648 {0x07, AC_VERB_SET_CONNECT_SEL
, 0x00},
7652 static struct hda_verb alc882_eapd_verbs
[] = {
7653 /* change to EAPD mode */
7654 {0x20, AC_VERB_SET_COEF_INDEX
, 0x07},
7655 {0x20, AC_VERB_SET_PROC_COEF
, 0x3060},
7659 static struct hda_verb alc889_eapd_verbs
[] = {
7660 {0x14, AC_VERB_SET_EAPD_BTLENABLE
, 2},
7661 {0x15, AC_VERB_SET_EAPD_BTLENABLE
, 2},
7665 static struct hda_verb alc_hp15_unsol_verbs
[] = {
7666 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
7667 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
7671 static struct hda_verb alc885_init_verbs
[] = {
7672 /* Front mixer: unmute input/output amp left and right (volume = 0) */
7673 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
7674 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
7676 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
7677 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
7679 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
7680 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
7682 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
7683 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
7685 /* Front HP Pin: output 0 (0x0c) */
7686 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
7687 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7688 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00},
7689 /* Front Pin: output 0 (0x0c) */
7690 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7691 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7692 {0x14, AC_VERB_SET_CONNECT_SEL
, 0x00},
7693 /* Rear Pin: output 1 (0x0d) */
7694 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7695 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7696 {0x19, AC_VERB_SET_CONNECT_SEL
, 0x01},
7697 /* CLFE Pin: output 2 (0x0e) */
7698 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7699 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7700 {0x16, AC_VERB_SET_CONNECT_SEL
, 0x02},
7701 /* Side Pin: output 3 (0x0f) */
7702 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7703 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7704 {0x17, AC_VERB_SET_CONNECT_SEL
, 0x03},
7705 /* Mic (rear) pin: input vref at 80% */
7706 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
7707 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
7708 /* Front Mic pin: input vref at 80% */
7709 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
7710 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
7711 /* Line In pin: input */
7712 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
7713 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
7715 /* Mixer elements: 0x18, , 0x1a, 0x1b */
7717 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
7719 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
7721 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
7722 /* ADC2: mute amp left and right */
7723 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
7724 /* ADC3: mute amp left and right */
7725 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
7730 static struct hda_verb alc885_init_input_verbs
[] = {
7731 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
7732 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(2)},
7733 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(3)},
7738 /* Unmute Selector 24h and set the default input to front mic */
7739 static struct hda_verb alc889_init_input_verbs
[] = {
7740 {0x24, AC_VERB_SET_CONNECT_SEL
, 0x00},
7741 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7746 #define alc883_init_verbs alc882_base_init_verbs
7749 static struct snd_kcontrol_new alc882_macpro_mixer
[] = {
7750 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
7751 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
7752 HDA_CODEC_MUTE("Headphone Playback Switch", 0x18, 0x0, HDA_OUTPUT
),
7753 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x01, HDA_INPUT
),
7754 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x01, HDA_INPUT
),
7755 /* FIXME: this looks suspicious...
7756 HDA_CODEC_VOLUME("Beep Playback Volume", 0x0b, 0x02, HDA_INPUT),
7757 HDA_CODEC_MUTE("Beep Playback Switch", 0x0b, 0x02, HDA_INPUT),
7762 static struct hda_verb alc882_macpro_init_verbs
[] = {
7763 /* Front mixer: unmute input/output amp left and right (volume = 0) */
7764 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
7765 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
7766 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
7767 /* Front Pin: output 0 (0x0c) */
7768 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7769 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7770 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00},
7771 /* Front Mic pin: input vref at 80% */
7772 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
7773 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
7774 /* Speaker: output */
7775 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7776 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7777 {0x1a, AC_VERB_SET_CONNECT_SEL
, 0x04},
7778 /* Headphone output (output 0 - 0x0c) */
7779 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
7780 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7781 {0x18, AC_VERB_SET_CONNECT_SEL
, 0x00},
7783 /* FIXME: use matrix-type input source selection */
7784 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
7785 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
7786 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
7787 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
7788 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
7789 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
7791 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
7792 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
7793 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
7794 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
7796 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
7797 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
7798 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
7799 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
7800 /* ADC1: mute amp left and right */
7801 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
7802 {0x07, AC_VERB_SET_CONNECT_SEL
, 0x00},
7803 /* ADC2: mute amp left and right */
7804 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
7805 {0x08, AC_VERB_SET_CONNECT_SEL
, 0x00},
7806 /* ADC3: mute amp left and right */
7807 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
7808 {0x09, AC_VERB_SET_CONNECT_SEL
, 0x00},
7814 static struct hda_verb alc885_mb5_init_verbs
[] = {
7816 {0x02, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7817 {0x03, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7818 {0x04, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7819 {0x05, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7821 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
7822 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
7823 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
7824 /* Surround mixer */
7825 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
7826 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
7827 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
7829 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
7830 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
7831 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
7833 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
7834 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
7835 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
7836 /* Front Pin (0x0c) */
7837 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
| 0x01},
7838 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7839 {0x18, AC_VERB_SET_CONNECT_SEL
, 0x00},
7840 /* LFE Pin (0x0e) */
7841 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
| 0x01},
7842 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7843 {0x1a, AC_VERB_SET_CONNECT_SEL
, 0x02},
7845 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7846 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7847 {0x14, AC_VERB_SET_CONNECT_SEL
, 0x03},
7848 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
7849 /* Front Mic pin: input vref at 80% */
7850 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
7851 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
7853 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
7854 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
7856 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
7857 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
7858 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
7859 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
7864 static struct hda_verb alc885_macmini3_init_verbs
[] = {
7866 {0x02, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7867 {0x03, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7868 {0x04, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7869 {0x05, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7871 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
7872 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
7873 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
7874 /* Surround mixer */
7875 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
7876 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
7877 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
7879 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
7880 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
7881 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
7883 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
7884 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
7885 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
7886 /* Front Pin (0x0c) */
7887 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
| 0x01},
7888 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7889 {0x18, AC_VERB_SET_CONNECT_SEL
, 0x00},
7890 /* LFE Pin (0x0e) */
7891 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
| 0x01},
7892 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7893 {0x1a, AC_VERB_SET_CONNECT_SEL
, 0x02},
7895 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7896 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7897 {0x14, AC_VERB_SET_CONNECT_SEL
, 0x03},
7898 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
7900 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
7901 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
7903 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
7904 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
7905 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
7906 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
7911 static struct hda_verb alc885_mba21_init_verbs
[] = {
7912 /*Internal and HP Speaker Mixer*/
7913 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
7914 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
7915 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
7916 /*Internal Speaker Pin (0x0c)*/
7917 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, (PIN_OUT
| AC_PINCTL_VREF_50
) },
7918 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7919 {0x18, AC_VERB_SET_CONNECT_SEL
, 0x00},
7920 /* HP Pin: output 0 (0x0e) */
7921 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0xc4},
7922 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7923 {0x14, AC_VERB_SET_CONNECT_SEL
, 0x00},
7924 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE
, (ALC880_HP_EVENT
| AC_USRSP_EN
)},
7925 /* Line in (is hp when jack connected)*/
7926 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, AC_PINCTL_VREF_50
},
7927 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
7933 /* Macbook Pro rev3 */
7934 static struct hda_verb alc885_mbp3_init_verbs
[] = {
7935 /* Front mixer: unmute input/output amp left and right (volume = 0) */
7936 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
7937 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
7938 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
7940 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
7941 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
7942 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
7944 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
7945 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
7946 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
7947 /* Front Pin: output 0 (0x0c) */
7948 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7949 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7950 {0x14, AC_VERB_SET_CONNECT_SEL
, 0x00},
7951 /* HP Pin: output 0 (0x0e) */
7952 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0xc4},
7953 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7954 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x02},
7955 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
7956 /* Mic (rear) pin: input vref at 80% */
7957 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
7958 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
7959 /* Front Mic pin: input vref at 80% */
7960 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
7961 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
7962 /* Line In pin: use output 1 when in LineOut mode */
7963 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
7964 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
7965 {0x1a, AC_VERB_SET_CONNECT_SEL
, 0x01},
7967 /* FIXME: use matrix-type input source selection */
7968 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
7969 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
7970 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
7971 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
7972 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
7973 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
7975 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
7976 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
7977 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
7978 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
7980 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
7981 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
7982 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
7983 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
7984 /* ADC1: mute amp left and right */
7985 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
7986 {0x07, AC_VERB_SET_CONNECT_SEL
, 0x00},
7987 /* ADC2: mute amp left and right */
7988 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
7989 {0x08, AC_VERB_SET_CONNECT_SEL
, 0x00},
7990 /* ADC3: mute amp left and right */
7991 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
7992 {0x09, AC_VERB_SET_CONNECT_SEL
, 0x00},
7998 static struct hda_verb alc885_imac91_init_verbs
[] = {
7999 /* Internal Speaker Pin (0x0c) */
8000 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, (PIN_OUT
| AC_PINCTL_VREF_50
) },
8001 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
8002 {0x18, AC_VERB_SET_CONNECT_SEL
, 0x00},
8003 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, (PIN_OUT
| AC_PINCTL_VREF_50
) },
8004 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
8005 {0x1a, AC_VERB_SET_CONNECT_SEL
, 0x00},
8007 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
8008 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
8009 {0x14, AC_VERB_SET_CONNECT_SEL
, 0x00},
8010 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE
, (ALC880_HP_EVENT
| AC_USRSP_EN
)},
8012 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, AC_PINCTL_VREF_50
},
8013 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
8014 /* Front Mic pin: input vref at 80% */
8015 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
8016 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
8018 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
8019 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
8020 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
8021 /* Line-Out mixer: unmute input/output amp left and right (volume = 0) */
8022 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
8023 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
8024 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
8025 /* 0x24 [Audio Mixer] wcaps 0x20010b: Stereo Amp-In */
8026 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8027 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
8028 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
8029 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
8030 /* 0x23 [Audio Mixer] wcaps 0x20010b: Stereo Amp-In */
8031 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8032 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
8033 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
8034 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
8035 /* 0x22 [Audio Mixer] wcaps 0x20010b: Stereo Amp-In */
8036 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8037 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
8038 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
8039 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
8040 /* 0x07 [Audio Input] wcaps 0x10011b: Stereo Amp-In */
8041 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
8042 {0x07, AC_VERB_SET_CONNECT_SEL
, 0x00},
8043 /* 0x08 [Audio Input] wcaps 0x10011b: Stereo Amp-In */
8044 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
8045 {0x08, AC_VERB_SET_CONNECT_SEL
, 0x00},
8046 /* 0x09 [Audio Input] wcaps 0x10011b: Stereo Amp-In */
8047 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
8048 {0x09, AC_VERB_SET_CONNECT_SEL
, 0x00},
8052 /* iMac 24 mixer. */
8053 static struct snd_kcontrol_new alc885_imac24_mixer
[] = {
8054 HDA_CODEC_VOLUME("Master Playback Volume", 0x0c, 0x00, HDA_OUTPUT
),
8055 HDA_CODEC_MUTE("Master Playback Switch", 0x0c, 0x00, HDA_INPUT
),
8059 /* iMac 24 init verbs. */
8060 static struct hda_verb alc885_imac24_init_verbs
[] = {
8061 /* Internal speakers: output 0 (0x0c) */
8062 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
8063 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
8064 {0x18, AC_VERB_SET_CONNECT_SEL
, 0x00},
8065 /* Internal speakers: output 0 (0x0c) */
8066 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
8067 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
8068 {0x1a, AC_VERB_SET_CONNECT_SEL
, 0x00},
8069 /* Headphone: output 0 (0x0c) */
8070 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
8071 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
8072 {0x14, AC_VERB_SET_CONNECT_SEL
, 0x00},
8073 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
8074 /* Front Mic: input vref at 80% */
8075 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
8076 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
8080 /* Toggle speaker-output according to the hp-jack state */
8081 static void alc885_imac24_setup(struct hda_codec
*codec
)
8083 struct alc_spec
*spec
= codec
->spec
;
8085 spec
->autocfg
.hp_pins
[0] = 0x14;
8086 spec
->autocfg
.speaker_pins
[0] = 0x18;
8087 spec
->autocfg
.speaker_pins
[1] = 0x1a;
8090 #define alc885_mb5_setup alc885_imac24_setup
8091 #define alc885_macmini3_setup alc885_imac24_setup
8093 /* Macbook Air 2,1 */
8094 static void alc885_mba21_setup(struct hda_codec
*codec
)
8096 struct alc_spec
*spec
= codec
->spec
;
8098 spec
->autocfg
.hp_pins
[0] = 0x14;
8099 spec
->autocfg
.speaker_pins
[0] = 0x18;
8104 static void alc885_mbp3_setup(struct hda_codec
*codec
)
8106 struct alc_spec
*spec
= codec
->spec
;
8108 spec
->autocfg
.hp_pins
[0] = 0x15;
8109 spec
->autocfg
.speaker_pins
[0] = 0x14;
8112 static void alc885_imac91_setup(struct hda_codec
*codec
)
8114 struct alc_spec
*spec
= codec
->spec
;
8116 spec
->autocfg
.hp_pins
[0] = 0x14;
8117 spec
->autocfg
.speaker_pins
[0] = 0x18;
8118 spec
->autocfg
.speaker_pins
[1] = 0x1a;
8121 static struct hda_verb alc882_targa_verbs
[] = {
8122 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8123 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
8125 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
8126 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
8128 {0x18, AC_VERB_SET_CONNECT_SEL
, 0x02}, /* mic/clfe */
8129 {0x1a, AC_VERB_SET_CONNECT_SEL
, 0x01}, /* line/surround */
8130 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* HP */
8132 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
8136 /* toggle speaker-output according to the hp-jack state */
8137 static void alc882_targa_automute(struct hda_codec
*codec
)
8139 struct alc_spec
*spec
= codec
->spec
;
8140 alc_automute_amp(codec
);
8141 snd_hda_codec_write_cache(codec
, 1, 0, AC_VERB_SET_GPIO_DATA
,
8142 spec
->jack_present
? 1 : 3);
8145 static void alc882_targa_setup(struct hda_codec
*codec
)
8147 struct alc_spec
*spec
= codec
->spec
;
8149 spec
->autocfg
.hp_pins
[0] = 0x14;
8150 spec
->autocfg
.speaker_pins
[0] = 0x1b;
8153 static void alc882_targa_unsol_event(struct hda_codec
*codec
, unsigned int res
)
8155 if ((res
>> 26) == ALC880_HP_EVENT
)
8156 alc882_targa_automute(codec
);
8159 static struct hda_verb alc882_asus_a7j_verbs
[] = {
8160 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8161 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
8163 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
8164 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
8165 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
8167 {0x14, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* Front */
8168 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* HP */
8169 {0x16, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* Front */
8171 {0x18, AC_VERB_SET_CONNECT_SEL
, 0x02}, /* mic/clfe */
8172 {0x1a, AC_VERB_SET_CONNECT_SEL
, 0x01}, /* line/surround */
8173 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* HP */
8177 static struct hda_verb alc882_asus_a7m_verbs
[] = {
8178 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8179 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
8181 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
8182 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
8183 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
8185 {0x14, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* Front */
8186 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* HP */
8187 {0x16, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* Front */
8189 {0x18, AC_VERB_SET_CONNECT_SEL
, 0x02}, /* mic/clfe */
8190 {0x1a, AC_VERB_SET_CONNECT_SEL
, 0x01}, /* line/surround */
8191 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* HP */
8195 static void alc882_gpio_mute(struct hda_codec
*codec
, int pin
, int muted
)
8197 unsigned int gpiostate
, gpiomask
, gpiodir
;
8199 gpiostate
= snd_hda_codec_read(codec
, codec
->afg
, 0,
8200 AC_VERB_GET_GPIO_DATA
, 0);
8203 gpiostate
|= (1 << pin
);
8205 gpiostate
&= ~(1 << pin
);
8207 gpiomask
= snd_hda_codec_read(codec
, codec
->afg
, 0,
8208 AC_VERB_GET_GPIO_MASK
, 0);
8209 gpiomask
|= (1 << pin
);
8211 gpiodir
= snd_hda_codec_read(codec
, codec
->afg
, 0,
8212 AC_VERB_GET_GPIO_DIRECTION
, 0);
8213 gpiodir
|= (1 << pin
);
8216 snd_hda_codec_write(codec
, codec
->afg
, 0,
8217 AC_VERB_SET_GPIO_MASK
, gpiomask
);
8218 snd_hda_codec_write(codec
, codec
->afg
, 0,
8219 AC_VERB_SET_GPIO_DIRECTION
, gpiodir
);
8223 snd_hda_codec_write(codec
, codec
->afg
, 0,
8224 AC_VERB_SET_GPIO_DATA
, gpiostate
);
8227 /* set up GPIO at initialization */
8228 static void alc885_macpro_init_hook(struct hda_codec
*codec
)
8230 alc882_gpio_mute(codec
, 0, 0);
8231 alc882_gpio_mute(codec
, 1, 0);
8234 /* set up GPIO and update auto-muting at initialization */
8235 static void alc885_imac24_init_hook(struct hda_codec
*codec
)
8237 alc885_macpro_init_hook(codec
);
8238 alc_automute_amp(codec
);
8242 * generic initialization of ADC, input mixers and output mixers
8244 static struct hda_verb alc883_auto_init_verbs
[] = {
8246 * Unmute ADC0-2 and set the default input to mic-in
8248 {0x08, AC_VERB_SET_CONNECT_SEL
, 0x00},
8249 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8250 {0x09, AC_VERB_SET_CONNECT_SEL
, 0x00},
8251 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8254 * Set up output mixers (0x0c - 0x0f)
8256 /* set vol=0 to output mixers */
8257 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
8258 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
8259 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
8260 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
8261 /* set up input amps for analog loopback */
8262 /* Amp Indices: DAC = 0, mixer = 1 */
8263 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8264 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
8265 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8266 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
8267 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8268 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
8269 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8270 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
8271 {0x26, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8272 {0x26, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
8274 /* FIXME: use matrix-type input source selection */
8275 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
8277 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8279 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8283 /* 2ch mode (Speaker:front, Subwoofer:CLFE, Line:input, Headphones:front) */
8284 static struct hda_verb alc889A_mb31_ch2_init
[] = {
8285 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* HP as front */
8286 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
}, /* Subwoofer on */
8287 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
}, /* Line as input */
8288 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
}, /* Line off */
8292 /* 4ch mode (Speaker:front, Subwoofer:CLFE, Line:CLFE, Headphones:front) */
8293 static struct hda_verb alc889A_mb31_ch4_init
[] = {
8294 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* HP as front */
8295 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
}, /* Subwoofer on */
8296 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
}, /* Line as output */
8297 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
}, /* Line on */
8301 /* 5ch mode (Speaker:front, Subwoofer:CLFE, Line:input, Headphones:rear) */
8302 static struct hda_verb alc889A_mb31_ch5_init
[] = {
8303 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x01}, /* HP as rear */
8304 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
}, /* Subwoofer on */
8305 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
}, /* Line as input */
8306 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
}, /* Line off */
8310 /* 6ch mode (Speaker:front, Subwoofer:off, Line:CLFE, Headphones:Rear) */
8311 static struct hda_verb alc889A_mb31_ch6_init
[] = {
8312 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x01}, /* HP as front */
8313 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
}, /* Subwoofer off */
8314 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
}, /* Line as output */
8315 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
}, /* Line on */
8319 static struct hda_channel_mode alc889A_mb31_6ch_modes
[4] = {
8320 { 2, alc889A_mb31_ch2_init
},
8321 { 4, alc889A_mb31_ch4_init
},
8322 { 5, alc889A_mb31_ch5_init
},
8323 { 6, alc889A_mb31_ch6_init
},
8326 static struct hda_verb alc883_medion_eapd_verbs
[] = {
8327 /* eanable EAPD on medion laptop */
8328 {0x20, AC_VERB_SET_COEF_INDEX
, 0x07},
8329 {0x20, AC_VERB_SET_PROC_COEF
, 0x3070},
8333 #define alc883_base_mixer alc882_base_mixer
8335 static struct snd_kcontrol_new alc883_mitac_mixer
[] = {
8336 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
8337 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
8338 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT
),
8339 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT
),
8340 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT
),
8341 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT
),
8342 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
8343 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
8344 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
8345 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
8346 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
8347 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT
),
8348 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
8352 static struct snd_kcontrol_new alc883_clevo_m720_mixer
[] = {
8353 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
8354 HDA_BIND_MUTE("Headphone Playback Switch", 0x0c, 2, HDA_INPUT
),
8355 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
8356 HDA_BIND_MUTE("Speaker Playback Switch", 0x0d, 2, HDA_INPUT
),
8357 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
8358 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
8359 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
8360 HDA_CODEC_VOLUME("Int Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
8361 HDA_CODEC_VOLUME("Int Mic Boost", 0x19, 0, HDA_INPUT
),
8362 HDA_CODEC_MUTE("Int Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
8366 static struct snd_kcontrol_new alc883_2ch_fujitsu_pi2515_mixer
[] = {
8367 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
8368 HDA_BIND_MUTE("Headphone Playback Switch", 0x0c, 2, HDA_INPUT
),
8369 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
8370 HDA_BIND_MUTE("Speaker Playback Switch", 0x0d, 2, HDA_INPUT
),
8371 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
8372 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
8373 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
8374 HDA_CODEC_VOLUME("Int Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
8375 HDA_CODEC_VOLUME("Int Mic Boost", 0x19, 0, HDA_INPUT
),
8376 HDA_CODEC_MUTE("Int Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
8380 static struct snd_kcontrol_new alc883_3ST_2ch_mixer
[] = {
8381 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
8382 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
8383 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
8384 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
8385 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
8386 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
8387 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
8388 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
8389 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
8390 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
8391 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
8392 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT
),
8393 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
8397 static struct snd_kcontrol_new alc883_3ST_6ch_mixer
[] = {
8398 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
8399 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
8400 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
8401 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT
),
8402 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT
),
8403 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT
),
8404 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT
),
8405 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT
),
8406 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
8407 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
8408 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
8409 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
8410 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
8411 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
8412 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
8413 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
8414 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
8415 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT
),
8416 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
8420 static struct snd_kcontrol_new alc883_3ST_6ch_intel_mixer
[] = {
8421 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
8422 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
8423 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
8424 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT
),
8425 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0,
8427 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT
),
8428 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT
),
8429 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT
),
8430 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
8431 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
8432 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
8433 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
8434 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
8435 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
8436 HDA_CODEC_VOLUME("Mic Boost", 0x19, 0, HDA_INPUT
),
8437 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
8438 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
8439 HDA_CODEC_VOLUME("Front Mic Boost", 0x18, 0, HDA_INPUT
),
8440 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
8444 static struct snd_kcontrol_new alc885_8ch_intel_mixer
[] = {
8445 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
8446 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
8447 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
8448 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT
),
8449 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0,
8451 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT
),
8452 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT
),
8453 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT
),
8454 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0f, 0x0, HDA_OUTPUT
),
8455 HDA_BIND_MUTE("Speaker Playback Switch", 0x0f, 2, HDA_INPUT
),
8456 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
8457 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
8458 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
8459 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x3, HDA_INPUT
),
8460 HDA_CODEC_VOLUME("Mic Boost", 0x1b, 0, HDA_INPUT
),
8461 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x3, HDA_INPUT
),
8462 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
8463 HDA_CODEC_VOLUME("Front Mic Boost", 0x18, 0, HDA_INPUT
),
8464 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
8468 static struct snd_kcontrol_new alc883_fivestack_mixer
[] = {
8469 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
8470 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
8471 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
8472 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT
),
8473 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT
),
8474 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT
),
8475 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT
),
8476 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT
),
8477 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
8478 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
8479 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
8480 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
8481 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
8482 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
8483 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
8484 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
8485 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
8486 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT
),
8487 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
8491 static struct snd_kcontrol_new alc883_targa_mixer
[] = {
8492 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
8493 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
8494 HDA_CODEC_MUTE("Headphone Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
8495 HDA_CODEC_MUTE("Speaker Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
8496 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
8497 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT
),
8498 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT
),
8499 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT
),
8500 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT
),
8501 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT
),
8502 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
8503 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
8504 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
8505 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
8506 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
8507 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
8508 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
8512 static struct snd_kcontrol_new alc883_targa_2ch_mixer
[] = {
8513 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
8514 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
8515 HDA_CODEC_MUTE("Headphone Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
8516 HDA_CODEC_MUTE("Speaker Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
8517 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
8518 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
8519 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
8520 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
8521 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
8522 HDA_CODEC_VOLUME("Int Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
8523 HDA_CODEC_VOLUME("Int Mic Boost", 0x19, 0, HDA_INPUT
),
8524 HDA_CODEC_MUTE("Int Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
8528 static struct snd_kcontrol_new alc883_targa_8ch_mixer
[] = {
8529 HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT
),
8530 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT
),
8531 HDA_CODEC_VOLUME("Int Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
8532 HDA_CODEC_VOLUME("Int Mic Boost", 0x19, 0, HDA_INPUT
),
8533 HDA_CODEC_MUTE("Int Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
8537 static struct snd_kcontrol_new alc883_lenovo_101e_2ch_mixer
[] = {
8538 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
8539 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
8540 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
8541 HDA_BIND_MUTE("Speaker Playback Switch", 0x0d, 2, HDA_INPUT
),
8542 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
8543 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
8544 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
8545 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
8549 static struct snd_kcontrol_new alc883_lenovo_nb0763_mixer
[] = {
8550 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
8551 HDA_BIND_MUTE("Speaker Playback Switch", 0x0c, 2, HDA_INPUT
),
8552 HDA_CODEC_MUTE("Headphone Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
8553 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
8554 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
8555 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
8556 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
8557 HDA_CODEC_VOLUME("iMic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
8558 HDA_CODEC_MUTE("iMic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
8562 static struct snd_kcontrol_new alc883_medion_md2_mixer
[] = {
8563 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
8564 HDA_CODEC_MUTE("Headphone Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
8565 HDA_CODEC_MUTE("Front Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
8566 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
8567 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
8568 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
8569 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
8570 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
8571 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
8575 static struct snd_kcontrol_new alc883_medion_wim2160_mixer
[] = {
8576 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
8577 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
8578 HDA_CODEC_MUTE("Speaker Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
8579 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x0, HDA_OUTPUT
),
8580 HDA_CODEC_VOLUME("Line Playback Volume", 0x08, 0x0, HDA_INPUT
),
8581 HDA_CODEC_MUTE("Line Playback Switch", 0x08, 0x0, HDA_INPUT
),
8585 static struct hda_verb alc883_medion_wim2160_verbs
[] = {
8586 /* Unmute front mixer */
8587 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8588 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
8590 /* Set speaker pin to front mixer */
8591 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00},
8593 /* Init headphone pin */
8594 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
8595 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
8596 {0x1a, AC_VERB_SET_CONNECT_SEL
, 0x00},
8597 {0x1a, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
8602 /* toggle speaker-output according to the hp-jack state */
8603 static void alc883_medion_wim2160_setup(struct hda_codec
*codec
)
8605 struct alc_spec
*spec
= codec
->spec
;
8607 spec
->autocfg
.hp_pins
[0] = 0x1a;
8608 spec
->autocfg
.speaker_pins
[0] = 0x15;
8611 static struct snd_kcontrol_new alc883_acer_aspire_mixer
[] = {
8612 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
8613 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
8614 HDA_CODEC_MUTE("Headphone Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
8615 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
8616 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
8617 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
8618 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
8619 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
8623 static struct snd_kcontrol_new alc888_acer_aspire_6530_mixer
[] = {
8624 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
8625 HDA_CODEC_VOLUME("LFE Playback Volume", 0x0f, 0x0, HDA_OUTPUT
),
8626 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
8627 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
8628 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
8629 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
8630 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
8631 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
8632 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
8636 static struct snd_kcontrol_new alc888_lenovo_sky_mixer
[] = {
8637 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
8638 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
8639 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0e, 0x0, HDA_OUTPUT
),
8640 HDA_BIND_MUTE("Surround Playback Switch", 0x0e, 2, HDA_INPUT
),
8641 HDA_CODEC_VOLUME_MONO("Center Playback Volume",
8642 0x0d, 1, 0x0, HDA_OUTPUT
),
8643 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0d, 2, 0x0, HDA_OUTPUT
),
8644 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0d, 1, 2, HDA_INPUT
),
8645 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0d, 2, 2, HDA_INPUT
),
8646 HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT
),
8647 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT
),
8648 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
8649 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
8650 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
8651 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
8652 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
8653 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
8654 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
8655 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
8656 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT
),
8657 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
8661 static struct snd_kcontrol_new alc889A_mb31_mixer
[] = {
8663 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x00, HDA_OUTPUT
),
8664 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 0x02, HDA_INPUT
),
8665 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x00, HDA_OUTPUT
),
8666 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 0x02, HDA_INPUT
),
8667 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x00,
8669 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 0x02, HDA_INPUT
),
8670 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x00, HDA_OUTPUT
),
8671 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 0x02, HDA_INPUT
),
8672 /* Output switches */
8673 HDA_CODEC_MUTE("Enable Speaker", 0x14, 0x00, HDA_OUTPUT
),
8674 HDA_CODEC_MUTE("Enable Headphones", 0x15, 0x00, HDA_OUTPUT
),
8675 HDA_CODEC_MUTE_MONO("Enable LFE", 0x16, 2, 0x00, HDA_OUTPUT
),
8677 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0x00, HDA_INPUT
),
8678 HDA_CODEC_VOLUME("Line Boost", 0x1a, 0x00, HDA_INPUT
),
8680 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x00, HDA_INPUT
),
8681 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x00, HDA_INPUT
),
8682 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
8683 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
8687 static struct snd_kcontrol_new alc883_vaiott_mixer
[] = {
8688 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
8689 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
8690 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
8691 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
8692 HDA_CODEC_VOLUME("Mic Boost", 0x19, 0, HDA_INPUT
),
8693 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
8697 static struct hda_bind_ctls alc883_bind_cap_vol
= {
8698 .ops
= &snd_hda_bind_vol
,
8700 HDA_COMPOSE_AMP_VAL(0x08, 3, 0, HDA_INPUT
),
8701 HDA_COMPOSE_AMP_VAL(0x09, 3, 0, HDA_INPUT
),
8706 static struct hda_bind_ctls alc883_bind_cap_switch
= {
8707 .ops
= &snd_hda_bind_sw
,
8709 HDA_COMPOSE_AMP_VAL(0x08, 3, 0, HDA_INPUT
),
8710 HDA_COMPOSE_AMP_VAL(0x09, 3, 0, HDA_INPUT
),
8715 static struct snd_kcontrol_new alc883_asus_eee1601_mixer
[] = {
8716 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
8717 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
8718 HDA_CODEC_MUTE("Headphone Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
8719 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
8720 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
8721 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
8722 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
8723 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
8727 static struct snd_kcontrol_new alc883_asus_eee1601_cap_mixer
[] = {
8728 HDA_BIND_VOL("Capture Volume", &alc883_bind_cap_vol
),
8729 HDA_BIND_SW("Capture Switch", &alc883_bind_cap_switch
),
8731 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
8732 /* .name = "Capture Source", */
8733 .name
= "Input Source",
8735 .info
= alc_mux_enum_info
,
8736 .get
= alc_mux_enum_get
,
8737 .put
= alc_mux_enum_put
,
8742 static struct snd_kcontrol_new alc883_chmode_mixer
[] = {
8744 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
8745 .name
= "Channel Mode",
8746 .info
= alc_ch_mode_info
,
8747 .get
= alc_ch_mode_get
,
8748 .put
= alc_ch_mode_put
,
8753 /* toggle speaker-output according to the hp-jack state */
8754 static void alc883_mitac_setup(struct hda_codec
*codec
)
8756 struct alc_spec
*spec
= codec
->spec
;
8758 spec
->autocfg
.hp_pins
[0] = 0x15;
8759 spec
->autocfg
.speaker_pins
[0] = 0x14;
8760 spec
->autocfg
.speaker_pins
[1] = 0x17;
8763 /* auto-toggle front mic */
8765 static void alc883_mitac_mic_automute(struct hda_codec *codec)
8767 unsigned char bits = snd_hda_jack_detect(codec, 0x18) ? HDA_AMP_MUTE : 0;
8769 snd_hda_codec_amp_stereo(codec, 0x0b, HDA_INPUT, 1, HDA_AMP_MUTE, bits);
8773 static struct hda_verb alc883_mitac_verbs
[] = {
8775 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00},
8776 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
8778 {0x17, AC_VERB_SET_CONNECT_SEL
, 0x02},
8779 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
8781 /* enable unsolicited event */
8782 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
8783 /* {0x18, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_MIC_EVENT | AC_USRSP_EN}, */
8788 static struct hda_verb alc883_clevo_m540r_verbs
[] = {
8790 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00},
8791 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
8793 /*{0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},*/
8795 /* enable unsolicited event */
8797 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
8798 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_MIC_EVENT | AC_USRSP_EN},
8804 static struct hda_verb alc883_clevo_m720_verbs
[] = {
8806 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00},
8807 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
8809 {0x14, AC_VERB_SET_CONNECT_SEL
, 0x01},
8810 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
8812 /* enable unsolicited event */
8813 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
8814 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_MIC_EVENT
| AC_USRSP_EN
},
8819 static struct hda_verb alc883_2ch_fujitsu_pi2515_verbs
[] = {
8821 {0x14, AC_VERB_SET_CONNECT_SEL
, 0x00},
8822 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
8824 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x01},
8825 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
8827 /* enable unsolicited event */
8828 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
8833 static struct hda_verb alc883_targa_verbs
[] = {
8834 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8835 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
8837 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
8838 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
8840 /* Connect Line-Out side jack (SPDIF) to Side */
8841 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
8842 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
8843 {0x17, AC_VERB_SET_CONNECT_SEL
, 0x03},
8844 /* Connect Mic jack to CLFE */
8845 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
8846 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
8847 {0x18, AC_VERB_SET_CONNECT_SEL
, 0x02},
8848 /* Connect Line-in jack to Surround */
8849 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
8850 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
8851 {0x1a, AC_VERB_SET_CONNECT_SEL
, 0x01},
8852 /* Connect HP out jack to Front */
8853 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
8854 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
8855 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0x00},
8857 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
8862 static struct hda_verb alc883_lenovo_101e_verbs
[] = {
8863 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00},
8864 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_FRONT_EVENT
|AC_USRSP_EN
},
8865 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
|AC_USRSP_EN
},
8869 static struct hda_verb alc883_lenovo_nb0763_verbs
[] = {
8870 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00},
8871 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
8872 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
8873 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
8877 static struct hda_verb alc888_lenovo_ms7195_verbs
[] = {
8878 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8879 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
8880 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00},
8881 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_FRONT_EVENT
| AC_USRSP_EN
},
8882 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
8886 static struct hda_verb alc883_haier_w66_verbs
[] = {
8887 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8888 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
8890 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
8892 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0x00},
8893 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
8894 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
8895 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
8899 static struct hda_verb alc888_lenovo_sky_verbs
[] = {
8900 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8901 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
8902 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8903 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8904 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8905 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
8906 {0x1a, AC_VERB_SET_CONNECT_SEL
, 0x00},
8907 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
8911 static struct hda_verb alc888_6st_dell_verbs
[] = {
8912 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
8916 static struct hda_verb alc883_vaiott_verbs
[] = {
8918 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00},
8919 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
8921 /* enable unsolicited event */
8922 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
8927 static void alc888_3st_hp_setup(struct hda_codec
*codec
)
8929 struct alc_spec
*spec
= codec
->spec
;
8931 spec
->autocfg
.hp_pins
[0] = 0x1b;
8932 spec
->autocfg
.speaker_pins
[0] = 0x14;
8933 spec
->autocfg
.speaker_pins
[1] = 0x16;
8934 spec
->autocfg
.speaker_pins
[2] = 0x18;
8937 static struct hda_verb alc888_3st_hp_verbs
[] = {
8938 {0x14, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* Front: output 0 (0x0c) */
8939 {0x16, AC_VERB_SET_CONNECT_SEL
, 0x01}, /* Rear : output 1 (0x0d) */
8940 {0x18, AC_VERB_SET_CONNECT_SEL
, 0x02}, /* CLFE : output 2 (0x0e) */
8941 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
8948 static struct hda_verb alc888_3st_hp_2ch_init
[] = {
8949 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
8950 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
8951 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
8952 { 0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
8959 static struct hda_verb alc888_3st_hp_4ch_init
[] = {
8960 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
8961 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
8962 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
8963 { 0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
8964 { 0x16, AC_VERB_SET_CONNECT_SEL
, 0x01 },
8971 static struct hda_verb alc888_3st_hp_6ch_init
[] = {
8972 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
8973 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
8974 { 0x18, AC_VERB_SET_CONNECT_SEL
, 0x02 },
8975 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
8976 { 0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
8977 { 0x16, AC_VERB_SET_CONNECT_SEL
, 0x01 },
8981 static struct hda_channel_mode alc888_3st_hp_modes
[3] = {
8982 { 2, alc888_3st_hp_2ch_init
},
8983 { 4, alc888_3st_hp_4ch_init
},
8984 { 6, alc888_3st_hp_6ch_init
},
8987 /* toggle front-jack and RCA according to the hp-jack state */
8988 static void alc888_lenovo_ms7195_front_automute(struct hda_codec
*codec
)
8990 unsigned int present
= snd_hda_jack_detect(codec
, 0x1b);
8992 snd_hda_codec_amp_stereo(codec
, 0x14, HDA_OUTPUT
, 0,
8993 HDA_AMP_MUTE
, present
? HDA_AMP_MUTE
: 0);
8994 snd_hda_codec_amp_stereo(codec
, 0x15, HDA_OUTPUT
, 0,
8995 HDA_AMP_MUTE
, present
? HDA_AMP_MUTE
: 0);
8998 /* toggle RCA according to the front-jack state */
8999 static void alc888_lenovo_ms7195_rca_automute(struct hda_codec
*codec
)
9001 unsigned int present
= snd_hda_jack_detect(codec
, 0x14);
9003 snd_hda_codec_amp_stereo(codec
, 0x15, HDA_OUTPUT
, 0,
9004 HDA_AMP_MUTE
, present
? HDA_AMP_MUTE
: 0);
9007 static void alc883_lenovo_ms7195_unsol_event(struct hda_codec
*codec
,
9010 if ((res
>> 26) == ALC880_HP_EVENT
)
9011 alc888_lenovo_ms7195_front_automute(codec
);
9012 if ((res
>> 26) == ALC880_FRONT_EVENT
)
9013 alc888_lenovo_ms7195_rca_automute(codec
);
9016 static struct hda_verb alc883_medion_md2_verbs
[] = {
9017 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
9018 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
9020 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
9022 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
9026 /* toggle speaker-output according to the hp-jack state */
9027 static void alc883_medion_md2_setup(struct hda_codec
*codec
)
9029 struct alc_spec
*spec
= codec
->spec
;
9031 spec
->autocfg
.hp_pins
[0] = 0x14;
9032 spec
->autocfg
.speaker_pins
[0] = 0x15;
9035 /* toggle speaker-output according to the hp-jack state */
9036 #define alc883_targa_init_hook alc882_targa_init_hook
9037 #define alc883_targa_unsol_event alc882_targa_unsol_event
9039 static void alc883_clevo_m720_mic_automute(struct hda_codec
*codec
)
9041 unsigned int present
;
9043 present
= snd_hda_jack_detect(codec
, 0x18);
9044 snd_hda_codec_amp_stereo(codec
, 0x0b, HDA_INPUT
, 1,
9045 HDA_AMP_MUTE
, present
? HDA_AMP_MUTE
: 0);
9048 static void alc883_clevo_m720_setup(struct hda_codec
*codec
)
9050 struct alc_spec
*spec
= codec
->spec
;
9052 spec
->autocfg
.hp_pins
[0] = 0x15;
9053 spec
->autocfg
.speaker_pins
[0] = 0x14;
9056 static void alc883_clevo_m720_init_hook(struct hda_codec
*codec
)
9058 alc_automute_amp(codec
);
9059 alc883_clevo_m720_mic_automute(codec
);
9062 static void alc883_clevo_m720_unsol_event(struct hda_codec
*codec
,
9065 switch (res
>> 26) {
9066 case ALC880_MIC_EVENT
:
9067 alc883_clevo_m720_mic_automute(codec
);
9070 alc_automute_amp_unsol_event(codec
, res
);
9075 /* toggle speaker-output according to the hp-jack state */
9076 static void alc883_2ch_fujitsu_pi2515_setup(struct hda_codec
*codec
)
9078 struct alc_spec
*spec
= codec
->spec
;
9080 spec
->autocfg
.hp_pins
[0] = 0x14;
9081 spec
->autocfg
.speaker_pins
[0] = 0x15;
9084 static void alc883_haier_w66_setup(struct hda_codec
*codec
)
9086 struct alc_spec
*spec
= codec
->spec
;
9088 spec
->autocfg
.hp_pins
[0] = 0x1b;
9089 spec
->autocfg
.speaker_pins
[0] = 0x14;
9092 static void alc883_lenovo_101e_ispeaker_automute(struct hda_codec
*codec
)
9094 int bits
= snd_hda_jack_detect(codec
, 0x14) ? HDA_AMP_MUTE
: 0;
9096 snd_hda_codec_amp_stereo(codec
, 0x15, HDA_OUTPUT
, 0,
9097 HDA_AMP_MUTE
, bits
);
9100 static void alc883_lenovo_101e_all_automute(struct hda_codec
*codec
)
9102 int bits
= snd_hda_jack_detect(codec
, 0x1b) ? HDA_AMP_MUTE
: 0;
9104 snd_hda_codec_amp_stereo(codec
, 0x15, HDA_OUTPUT
, 0,
9105 HDA_AMP_MUTE
, bits
);
9106 snd_hda_codec_amp_stereo(codec
, 0x14, HDA_OUTPUT
, 0,
9107 HDA_AMP_MUTE
, bits
);
9110 static void alc883_lenovo_101e_unsol_event(struct hda_codec
*codec
,
9113 if ((res
>> 26) == ALC880_HP_EVENT
)
9114 alc883_lenovo_101e_all_automute(codec
);
9115 if ((res
>> 26) == ALC880_FRONT_EVENT
)
9116 alc883_lenovo_101e_ispeaker_automute(codec
);
9119 /* toggle speaker-output according to the hp-jack state */
9120 static void alc883_acer_aspire_setup(struct hda_codec
*codec
)
9122 struct alc_spec
*spec
= codec
->spec
;
9124 spec
->autocfg
.hp_pins
[0] = 0x14;
9125 spec
->autocfg
.speaker_pins
[0] = 0x15;
9126 spec
->autocfg
.speaker_pins
[1] = 0x16;
9129 static struct hda_verb alc883_acer_eapd_verbs
[] = {
9130 /* HP Pin: output 0 (0x0c) */
9131 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
9132 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
9133 {0x14, AC_VERB_SET_CONNECT_SEL
, 0x00},
9134 /* Front Pin: output 0 (0x0c) */
9135 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
9136 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00},
9137 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
9138 {0x16, AC_VERB_SET_CONNECT_SEL
, 0x00},
9139 /* eanable EAPD on medion laptop */
9140 {0x20, AC_VERB_SET_COEF_INDEX
, 0x07},
9141 {0x20, AC_VERB_SET_PROC_COEF
, 0x3050},
9142 /* enable unsolicited event */
9143 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
9147 static struct hda_verb alc888_acer_aspire_7730G_verbs
[] = {
9148 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00},
9149 {0x17, AC_VERB_SET_CONNECT_SEL
, 0x02},
9150 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
9154 static void alc888_6st_dell_setup(struct hda_codec
*codec
)
9156 struct alc_spec
*spec
= codec
->spec
;
9158 spec
->autocfg
.hp_pins
[0] = 0x1b;
9159 spec
->autocfg
.speaker_pins
[0] = 0x14;
9160 spec
->autocfg
.speaker_pins
[1] = 0x15;
9161 spec
->autocfg
.speaker_pins
[2] = 0x16;
9162 spec
->autocfg
.speaker_pins
[3] = 0x17;
9165 static void alc888_lenovo_sky_setup(struct hda_codec
*codec
)
9167 struct alc_spec
*spec
= codec
->spec
;
9169 spec
->autocfg
.hp_pins
[0] = 0x1b;
9170 spec
->autocfg
.speaker_pins
[0] = 0x14;
9171 spec
->autocfg
.speaker_pins
[1] = 0x15;
9172 spec
->autocfg
.speaker_pins
[2] = 0x16;
9173 spec
->autocfg
.speaker_pins
[3] = 0x17;
9174 spec
->autocfg
.speaker_pins
[4] = 0x1a;
9177 static void alc883_vaiott_setup(struct hda_codec
*codec
)
9179 struct alc_spec
*spec
= codec
->spec
;
9181 spec
->autocfg
.hp_pins
[0] = 0x15;
9182 spec
->autocfg
.speaker_pins
[0] = 0x14;
9183 spec
->autocfg
.speaker_pins
[1] = 0x17;
9186 static struct hda_verb alc888_asus_m90v_verbs
[] = {
9187 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
9188 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
9189 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
9190 /* enable unsolicited event */
9191 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
9192 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_MIC_EVENT
| AC_USRSP_EN
},
9196 static void alc883_mode2_setup(struct hda_codec
*codec
)
9198 struct alc_spec
*spec
= codec
->spec
;
9200 spec
->autocfg
.hp_pins
[0] = 0x1b;
9201 spec
->autocfg
.speaker_pins
[0] = 0x14;
9202 spec
->autocfg
.speaker_pins
[1] = 0x15;
9203 spec
->autocfg
.speaker_pins
[2] = 0x16;
9204 spec
->ext_mic
.pin
= 0x18;
9205 spec
->int_mic
.pin
= 0x19;
9206 spec
->ext_mic
.mux_idx
= 0;
9207 spec
->int_mic
.mux_idx
= 1;
9211 static struct hda_verb alc888_asus_eee1601_verbs
[] = {
9212 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
9213 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
9214 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
9215 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
9216 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
9217 {0x20, AC_VERB_SET_COEF_INDEX
, 0x0b},
9218 {0x20, AC_VERB_SET_PROC_COEF
, 0x0838},
9219 /* enable unsolicited event */
9220 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
9224 static void alc883_eee1601_inithook(struct hda_codec
*codec
)
9226 struct alc_spec
*spec
= codec
->spec
;
9228 spec
->autocfg
.hp_pins
[0] = 0x14;
9229 spec
->autocfg
.speaker_pins
[0] = 0x1b;
9230 alc_automute_pin(codec
);
9233 static struct hda_verb alc889A_mb31_verbs
[] = {
9234 /* Init rear pin (used as headphone output) */
9235 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0xc4}, /* Apple Headphones */
9236 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* Connect to front */
9237 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
9238 /* Init line pin (used as output in 4ch and 6ch mode) */
9239 {0x1a, AC_VERB_SET_CONNECT_SEL
, 0x02}, /* Connect to CLFE */
9240 /* Init line 2 pin (used as headphone out by default) */
9241 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
}, /* Use as input */
9242 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
}, /* Mute output */
9246 /* Mute speakers according to the headphone jack state */
9247 static void alc889A_mb31_automute(struct hda_codec
*codec
)
9249 unsigned int present
;
9251 /* Mute only in 2ch or 4ch mode */
9252 if (snd_hda_codec_read(codec
, 0x15, 0, AC_VERB_GET_CONNECT_SEL
, 0)
9254 present
= snd_hda_jack_detect(codec
, 0x15);
9255 snd_hda_codec_amp_stereo(codec
, 0x14, HDA_OUTPUT
, 0,
9256 HDA_AMP_MUTE
, present
? HDA_AMP_MUTE
: 0);
9257 snd_hda_codec_amp_stereo(codec
, 0x16, HDA_OUTPUT
, 0,
9258 HDA_AMP_MUTE
, present
? HDA_AMP_MUTE
: 0);
9262 static void alc889A_mb31_unsol_event(struct hda_codec
*codec
, unsigned int res
)
9264 if ((res
>> 26) == ALC880_HP_EVENT
)
9265 alc889A_mb31_automute(codec
);
9269 #ifdef CONFIG_SND_HDA_POWER_SAVE
9270 #define alc882_loopbacks alc880_loopbacks
9273 /* pcm configuration: identical with ALC880 */
9274 #define alc882_pcm_analog_playback alc880_pcm_analog_playback
9275 #define alc882_pcm_analog_capture alc880_pcm_analog_capture
9276 #define alc882_pcm_digital_playback alc880_pcm_digital_playback
9277 #define alc882_pcm_digital_capture alc880_pcm_digital_capture
9279 static hda_nid_t alc883_slave_dig_outs
[] = {
9280 ALC1200_DIGOUT_NID
, 0,
9283 static hda_nid_t alc1200_slave_dig_outs
[] = {
9284 ALC883_DIGOUT_NID
, 0,
9288 * configuration and preset
9290 static const char *alc882_models
[ALC882_MODEL_LAST
] = {
9291 [ALC882_3ST_DIG
] = "3stack-dig",
9292 [ALC882_6ST_DIG
] = "6stack-dig",
9293 [ALC882_ARIMA
] = "arima",
9294 [ALC882_W2JC
] = "w2jc",
9295 [ALC882_TARGA
] = "targa",
9296 [ALC882_ASUS_A7J
] = "asus-a7j",
9297 [ALC882_ASUS_A7M
] = "asus-a7m",
9298 [ALC885_MACPRO
] = "macpro",
9299 [ALC885_MB5
] = "mb5",
9300 [ALC885_MACMINI3
] = "macmini3",
9301 [ALC885_MBA21
] = "mba21",
9302 [ALC885_MBP3
] = "mbp3",
9303 [ALC885_IMAC24
] = "imac24",
9304 [ALC885_IMAC91
] = "imac91",
9305 [ALC883_3ST_2ch_DIG
] = "3stack-2ch-dig",
9306 [ALC883_3ST_6ch_DIG
] = "3stack-6ch-dig",
9307 [ALC883_3ST_6ch
] = "3stack-6ch",
9308 [ALC883_6ST_DIG
] = "alc883-6stack-dig",
9309 [ALC883_TARGA_DIG
] = "targa-dig",
9310 [ALC883_TARGA_2ch_DIG
] = "targa-2ch-dig",
9311 [ALC883_TARGA_8ch_DIG
] = "targa-8ch-dig",
9312 [ALC883_ACER
] = "acer",
9313 [ALC883_ACER_ASPIRE
] = "acer-aspire",
9314 [ALC888_ACER_ASPIRE_4930G
] = "acer-aspire-4930g",
9315 [ALC888_ACER_ASPIRE_6530G
] = "acer-aspire-6530g",
9316 [ALC888_ACER_ASPIRE_8930G
] = "acer-aspire-8930g",
9317 [ALC888_ACER_ASPIRE_7730G
] = "acer-aspire-7730g",
9318 [ALC883_MEDION
] = "medion",
9319 [ALC883_MEDION_MD2
] = "medion-md2",
9320 [ALC883_MEDION_WIM2160
] = "medion-wim2160",
9321 [ALC883_LAPTOP_EAPD
] = "laptop-eapd",
9322 [ALC883_LENOVO_101E_2ch
] = "lenovo-101e",
9323 [ALC883_LENOVO_NB0763
] = "lenovo-nb0763",
9324 [ALC888_LENOVO_MS7195_DIG
] = "lenovo-ms7195-dig",
9325 [ALC888_LENOVO_SKY
] = "lenovo-sky",
9326 [ALC883_HAIER_W66
] = "haier-w66",
9327 [ALC888_3ST_HP
] = "3stack-hp",
9328 [ALC888_6ST_DELL
] = "6stack-dell",
9329 [ALC883_MITAC
] = "mitac",
9330 [ALC883_CLEVO_M540R
] = "clevo-m540r",
9331 [ALC883_CLEVO_M720
] = "clevo-m720",
9332 [ALC883_FUJITSU_PI2515
] = "fujitsu-pi2515",
9333 [ALC888_FUJITSU_XA3530
] = "fujitsu-xa3530",
9334 [ALC883_3ST_6ch_INTEL
] = "3stack-6ch-intel",
9335 [ALC889A_INTEL
] = "intel-alc889a",
9336 [ALC889_INTEL
] = "intel-x58",
9337 [ALC1200_ASUS_P5Q
] = "asus-p5q",
9338 [ALC889A_MB31
] = "mb31",
9339 [ALC883_SONY_VAIO_TT
] = "sony-vaio-tt",
9340 [ALC882_AUTO
] = "auto",
9343 static struct snd_pci_quirk alc882_cfg_tbl
[] = {
9344 SND_PCI_QUIRK(0x1019, 0x6668, "ECS", ALC882_6ST_DIG
),
9346 SND_PCI_QUIRK(0x1025, 0x006c, "Acer Aspire 9810", ALC883_ACER_ASPIRE
),
9347 SND_PCI_QUIRK(0x1025, 0x0090, "Acer Aspire", ALC883_ACER_ASPIRE
),
9348 SND_PCI_QUIRK(0x1025, 0x010a, "Acer Ferrari 5000", ALC883_ACER_ASPIRE
),
9349 SND_PCI_QUIRK(0x1025, 0x0110, "Acer Aspire", ALC883_ACER_ASPIRE
),
9350 SND_PCI_QUIRK(0x1025, 0x0112, "Acer Aspire 9303", ALC883_ACER_ASPIRE
),
9351 SND_PCI_QUIRK(0x1025, 0x0121, "Acer Aspire 5920G", ALC883_ACER_ASPIRE
),
9352 SND_PCI_QUIRK(0x1025, 0x013e, "Acer Aspire 4930G",
9353 ALC888_ACER_ASPIRE_4930G
),
9354 SND_PCI_QUIRK(0x1025, 0x013f, "Acer Aspire 5930G",
9355 ALC888_ACER_ASPIRE_4930G
),
9356 SND_PCI_QUIRK(0x1025, 0x0145, "Acer Aspire 8930G",
9357 ALC888_ACER_ASPIRE_8930G
),
9358 SND_PCI_QUIRK(0x1025, 0x0146, "Acer Aspire 6935G",
9359 ALC888_ACER_ASPIRE_8930G
),
9360 SND_PCI_QUIRK(0x1025, 0x0157, "Acer X3200", ALC882_AUTO
),
9361 SND_PCI_QUIRK(0x1025, 0x0158, "Acer AX1700-U3700A", ALC882_AUTO
),
9362 SND_PCI_QUIRK(0x1025, 0x015e, "Acer Aspire 6930G",
9363 ALC888_ACER_ASPIRE_6530G
),
9364 SND_PCI_QUIRK(0x1025, 0x0166, "Acer Aspire 6530G",
9365 ALC888_ACER_ASPIRE_6530G
),
9366 SND_PCI_QUIRK(0x1025, 0x0142, "Acer Aspire 7730G",
9367 ALC888_ACER_ASPIRE_7730G
),
9368 /* default Acer -- disabled as it causes more problems.
9369 * model=auto should work fine now
9371 /* SND_PCI_QUIRK_VENDOR(0x1025, "Acer laptop", ALC883_ACER), */
9373 SND_PCI_QUIRK(0x1028, 0x020d, "Dell Inspiron 530", ALC888_6ST_DELL
),
9375 SND_PCI_QUIRK(0x103c, 0x2a3d, "HP Pavillion", ALC883_6ST_DIG
),
9376 SND_PCI_QUIRK(0x103c, 0x2a4f, "HP Samba", ALC888_3ST_HP
),
9377 SND_PCI_QUIRK(0x103c, 0x2a60, "HP Lucknow", ALC888_3ST_HP
),
9378 SND_PCI_QUIRK(0x103c, 0x2a61, "HP Nettle", ALC883_6ST_DIG
),
9379 SND_PCI_QUIRK(0x103c, 0x2a66, "HP Acacia", ALC888_3ST_HP
),
9380 SND_PCI_QUIRK(0x103c, 0x2a72, "HP Educ.ar", ALC888_3ST_HP
),
9382 SND_PCI_QUIRK(0x1043, 0x060d, "Asus A7J", ALC882_ASUS_A7J
),
9383 SND_PCI_QUIRK(0x1043, 0x1243, "Asus A7J", ALC882_ASUS_A7J
),
9384 SND_PCI_QUIRK(0x1043, 0x13c2, "Asus A7M", ALC882_ASUS_A7M
),
9385 SND_PCI_QUIRK(0x1043, 0x1873, "Asus M90V", ALC888_ASUS_M90V
),
9386 SND_PCI_QUIRK(0x1043, 0x1971, "Asus W2JC", ALC882_W2JC
),
9387 SND_PCI_QUIRK(0x1043, 0x817f, "Asus P5LD2", ALC882_6ST_DIG
),
9388 SND_PCI_QUIRK(0x1043, 0x81d8, "Asus P5WD", ALC882_6ST_DIG
),
9389 SND_PCI_QUIRK(0x1043, 0x8249, "Asus M2A-VM HDMI", ALC883_3ST_6ch_DIG
),
9390 SND_PCI_QUIRK(0x1043, 0x8284, "Asus Z37E", ALC883_6ST_DIG
),
9391 SND_PCI_QUIRK(0x1043, 0x82fe, "Asus P5Q-EM HDMI", ALC1200_ASUS_P5Q
),
9392 SND_PCI_QUIRK(0x1043, 0x835f, "Asus Eee 1601", ALC888_ASUS_EEE1601
),
9394 SND_PCI_QUIRK(0x104d, 0x9047, "Sony Vaio TT", ALC883_SONY_VAIO_TT
),
9395 SND_PCI_QUIRK(0x105b, 0x0ce8, "Foxconn P35AX-S", ALC883_6ST_DIG
),
9396 SND_PCI_QUIRK(0x105b, 0x6668, "Foxconn", ALC882_6ST_DIG
),
9397 SND_PCI_QUIRK(0x1071, 0x8227, "Mitac 82801H", ALC883_MITAC
),
9398 SND_PCI_QUIRK(0x1071, 0x8253, "Mitac 8252d", ALC883_MITAC
),
9399 SND_PCI_QUIRK(0x1071, 0x8258, "Evesham Voyaeger", ALC883_LAPTOP_EAPD
),
9400 SND_PCI_QUIRK(0x10f1, 0x2350, "TYAN-S2350", ALC888_6ST_DELL
),
9401 SND_PCI_QUIRK(0x108e, 0x534d, NULL
, ALC883_3ST_6ch
),
9402 SND_PCI_QUIRK(0x1458, 0xa002, "Gigabyte P35 DS3R", ALC882_6ST_DIG
),
9404 SND_PCI_QUIRK(0x1462, 0x0349, "MSI", ALC883_TARGA_2ch_DIG
),
9405 SND_PCI_QUIRK(0x1462, 0x040d, "MSI", ALC883_TARGA_2ch_DIG
),
9406 SND_PCI_QUIRK(0x1462, 0x0579, "MSI", ALC883_TARGA_2ch_DIG
),
9407 SND_PCI_QUIRK(0x1462, 0x28fb, "Targa T8", ALC882_TARGA
), /* MSI-1049 T8 */
9408 SND_PCI_QUIRK(0x1462, 0x2fb3, "MSI", ALC882_AUTO
),
9409 SND_PCI_QUIRK(0x1462, 0x6668, "MSI", ALC882_6ST_DIG
),
9410 SND_PCI_QUIRK(0x1462, 0x3729, "MSI S420", ALC883_TARGA_DIG
),
9411 SND_PCI_QUIRK(0x1462, 0x3783, "NEC S970", ALC883_TARGA_DIG
),
9412 SND_PCI_QUIRK(0x1462, 0x3b7f, "MSI", ALC883_TARGA_2ch_DIG
),
9413 SND_PCI_QUIRK(0x1462, 0x3ef9, "MSI", ALC883_TARGA_DIG
),
9414 SND_PCI_QUIRK(0x1462, 0x3fc1, "MSI", ALC883_TARGA_DIG
),
9415 SND_PCI_QUIRK(0x1462, 0x3fc3, "MSI", ALC883_TARGA_DIG
),
9416 SND_PCI_QUIRK(0x1462, 0x3fcc, "MSI", ALC883_TARGA_DIG
),
9417 SND_PCI_QUIRK(0x1462, 0x3fdf, "MSI", ALC883_TARGA_DIG
),
9418 SND_PCI_QUIRK(0x1462, 0x42cd, "MSI", ALC883_TARGA_DIG
),
9419 SND_PCI_QUIRK(0x1462, 0x4314, "MSI", ALC883_TARGA_DIG
),
9420 SND_PCI_QUIRK(0x1462, 0x4319, "MSI", ALC883_TARGA_DIG
),
9421 SND_PCI_QUIRK(0x1462, 0x4324, "MSI", ALC883_TARGA_DIG
),
9422 SND_PCI_QUIRK(0x1462, 0x4570, "MSI Wind Top AE2220", ALC883_TARGA_DIG
),
9423 SND_PCI_QUIRK(0x1462, 0x6510, "MSI GX620", ALC883_TARGA_8ch_DIG
),
9424 SND_PCI_QUIRK(0x1462, 0x6668, "MSI", ALC883_6ST_DIG
),
9425 SND_PCI_QUIRK(0x1462, 0x7187, "MSI", ALC883_6ST_DIG
),
9426 SND_PCI_QUIRK(0x1462, 0x7250, "MSI", ALC883_6ST_DIG
),
9427 SND_PCI_QUIRK(0x1462, 0x7260, "MSI 7260", ALC883_TARGA_DIG
),
9428 SND_PCI_QUIRK(0x1462, 0x7267, "MSI", ALC883_3ST_6ch_DIG
),
9429 SND_PCI_QUIRK(0x1462, 0x7280, "MSI", ALC883_6ST_DIG
),
9430 SND_PCI_QUIRK(0x1462, 0x7327, "MSI", ALC883_6ST_DIG
),
9431 SND_PCI_QUIRK(0x1462, 0x7350, "MSI", ALC883_6ST_DIG
),
9432 SND_PCI_QUIRK(0x1462, 0x7437, "MSI NetOn AP1900", ALC883_TARGA_DIG
),
9433 SND_PCI_QUIRK(0x1462, 0xa422, "MSI", ALC883_TARGA_2ch_DIG
),
9434 SND_PCI_QUIRK(0x1462, 0xaa08, "MSI", ALC883_TARGA_2ch_DIG
),
9436 SND_PCI_QUIRK(0x147b, 0x1083, "Abit IP35-PRO", ALC883_6ST_DIG
),
9437 SND_PCI_QUIRK(0x1558, 0x0571, "Clevo laptop M570U", ALC883_3ST_6ch_DIG
),
9438 SND_PCI_QUIRK(0x1558, 0x0721, "Clevo laptop M720R", ALC883_CLEVO_M720
),
9439 SND_PCI_QUIRK(0x1558, 0x0722, "Clevo laptop M720SR", ALC883_CLEVO_M720
),
9440 SND_PCI_QUIRK(0x1558, 0x5409, "Clevo laptop M540R", ALC883_CLEVO_M540R
),
9441 SND_PCI_QUIRK_VENDOR(0x1558, "Clevo laptop", ALC883_LAPTOP_EAPD
),
9442 SND_PCI_QUIRK(0x15d9, 0x8780, "Supermicro PDSBA", ALC883_3ST_6ch
),
9443 /* SND_PCI_QUIRK(0x161f, 0x2054, "Arima W820", ALC882_ARIMA), */
9444 SND_PCI_QUIRK(0x161f, 0x2054, "Medion laptop", ALC883_MEDION
),
9445 SND_PCI_QUIRK_MASK(0x1734, 0xfff0, 0x1100, "FSC AMILO Xi/Pi25xx",
9446 ALC883_FUJITSU_PI2515
),
9447 SND_PCI_QUIRK_MASK(0x1734, 0xfff0, 0x1130, "Fujitsu AMILO Xa35xx",
9448 ALC888_FUJITSU_XA3530
),
9449 SND_PCI_QUIRK(0x17aa, 0x101e, "Lenovo 101e", ALC883_LENOVO_101E_2ch
),
9450 SND_PCI_QUIRK(0x17aa, 0x2085, "Lenovo NB0763", ALC883_LENOVO_NB0763
),
9451 SND_PCI_QUIRK(0x17aa, 0x3bfc, "Lenovo NB0763", ALC883_LENOVO_NB0763
),
9452 SND_PCI_QUIRK(0x17aa, 0x3bfd, "Lenovo NB0763", ALC883_LENOVO_NB0763
),
9453 SND_PCI_QUIRK(0x17aa, 0x101d, "Lenovo Sky", ALC888_LENOVO_SKY
),
9454 SND_PCI_QUIRK(0x17c0, 0x4071, "MEDION MD2", ALC883_MEDION_MD2
),
9455 SND_PCI_QUIRK(0x17c0, 0x4085, "MEDION MD96630", ALC888_LENOVO_MS7195_DIG
),
9456 SND_PCI_QUIRK(0x17f2, 0x5000, "Albatron KI690-AM2", ALC883_6ST_DIG
),
9457 SND_PCI_QUIRK(0x1991, 0x5625, "Haier W66", ALC883_HAIER_W66
),
9459 SND_PCI_QUIRK(0x8086, 0x0001, "DG33BUC", ALC883_3ST_6ch_INTEL
),
9460 SND_PCI_QUIRK(0x8086, 0x0002, "DG33FBC", ALC883_3ST_6ch_INTEL
),
9461 SND_PCI_QUIRK(0x8086, 0x2503, "82801H", ALC883_MITAC
),
9462 SND_PCI_QUIRK(0x8086, 0x0022, "DX58SO", ALC889_INTEL
),
9463 SND_PCI_QUIRK(0x8086, 0x0021, "Intel IbexPeak", ALC889A_INTEL
),
9464 SND_PCI_QUIRK(0x8086, 0x3b56, "Intel IbexPeak", ALC889A_INTEL
),
9465 SND_PCI_QUIRK(0x8086, 0xd601, "D102GGC", ALC882_6ST_DIG
),
9470 /* codec SSID table for Intel Mac */
9471 static struct snd_pci_quirk alc882_ssid_cfg_tbl
[] = {
9472 SND_PCI_QUIRK(0x106b, 0x00a0, "MacBookPro 3,1", ALC885_MBP3
),
9473 SND_PCI_QUIRK(0x106b, 0x00a1, "Macbook", ALC885_MBP3
),
9474 SND_PCI_QUIRK(0x106b, 0x00a4, "MacbookPro 4,1", ALC885_MBP3
),
9475 SND_PCI_QUIRK(0x106b, 0x0c00, "Mac Pro", ALC885_MACPRO
),
9476 SND_PCI_QUIRK(0x106b, 0x1000, "iMac 24", ALC885_IMAC24
),
9477 SND_PCI_QUIRK(0x106b, 0x2800, "AppleTV", ALC885_IMAC24
),
9478 SND_PCI_QUIRK(0x106b, 0x2c00, "MacbookPro rev3", ALC885_MBP3
),
9479 SND_PCI_QUIRK(0x106b, 0x3000, "iMac", ALC889A_MB31
),
9480 SND_PCI_QUIRK(0x106b, 0x3600, "Macbook 3,1", ALC889A_MB31
),
9481 SND_PCI_QUIRK(0x106b, 0x3800, "MacbookPro 4,1", ALC885_MBP3
),
9482 SND_PCI_QUIRK(0x106b, 0x3e00, "iMac 24 Aluminum", ALC885_IMAC24
),
9483 SND_PCI_QUIRK(0x106b, 0x4900, "iMac 9,1 Aluminum", ALC885_IMAC91
),
9484 SND_PCI_QUIRK(0x106b, 0x3f00, "Macbook 5,1", ALC885_MB5
),
9485 /* FIXME: HP jack sense seems not working for MBP 5,1 or 5,2,
9486 * so apparently no perfect solution yet
9488 SND_PCI_QUIRK(0x106b, 0x4000, "MacbookPro 5,1", ALC885_MB5
),
9489 SND_PCI_QUIRK(0x106b, 0x4600, "MacbookPro 5,2", ALC885_MB5
),
9490 SND_PCI_QUIRK(0x106b, 0x4100, "Macmini 3,1", ALC885_MACMINI3
),
9494 static struct alc_config_preset alc882_presets
[] = {
9495 [ALC882_3ST_DIG
] = {
9496 .mixers
= { alc882_base_mixer
},
9497 .init_verbs
= { alc882_base_init_verbs
,
9498 alc882_adc1_init_verbs
},
9499 .num_dacs
= ARRAY_SIZE(alc882_dac_nids
),
9500 .dac_nids
= alc882_dac_nids
,
9501 .dig_out_nid
= ALC882_DIGOUT_NID
,
9502 .dig_in_nid
= ALC882_DIGIN_NID
,
9503 .num_channel_mode
= ARRAY_SIZE(alc882_ch_modes
),
9504 .channel_mode
= alc882_ch_modes
,
9506 .input_mux
= &alc882_capture_source
,
9508 [ALC882_6ST_DIG
] = {
9509 .mixers
= { alc882_base_mixer
, alc882_chmode_mixer
},
9510 .init_verbs
= { alc882_base_init_verbs
,
9511 alc882_adc1_init_verbs
},
9512 .num_dacs
= ARRAY_SIZE(alc882_dac_nids
),
9513 .dac_nids
= alc882_dac_nids
,
9514 .dig_out_nid
= ALC882_DIGOUT_NID
,
9515 .dig_in_nid
= ALC882_DIGIN_NID
,
9516 .num_channel_mode
= ARRAY_SIZE(alc882_sixstack_modes
),
9517 .channel_mode
= alc882_sixstack_modes
,
9518 .input_mux
= &alc882_capture_source
,
9521 .mixers
= { alc882_base_mixer
, alc882_chmode_mixer
},
9522 .init_verbs
= { alc882_base_init_verbs
, alc882_adc1_init_verbs
,
9523 alc882_eapd_verbs
},
9524 .num_dacs
= ARRAY_SIZE(alc882_dac_nids
),
9525 .dac_nids
= alc882_dac_nids
,
9526 .num_channel_mode
= ARRAY_SIZE(alc882_sixstack_modes
),
9527 .channel_mode
= alc882_sixstack_modes
,
9528 .input_mux
= &alc882_capture_source
,
9531 .mixers
= { alc882_w2jc_mixer
, alc882_chmode_mixer
},
9532 .init_verbs
= { alc882_base_init_verbs
, alc882_adc1_init_verbs
,
9533 alc882_eapd_verbs
, alc880_gpio1_init_verbs
},
9534 .num_dacs
= ARRAY_SIZE(alc882_dac_nids
),
9535 .dac_nids
= alc882_dac_nids
,
9536 .num_channel_mode
= ARRAY_SIZE(alc880_threestack_modes
),
9537 .channel_mode
= alc880_threestack_modes
,
9539 .input_mux
= &alc882_capture_source
,
9540 .dig_out_nid
= ALC882_DIGOUT_NID
,
9543 .mixers
= { alc885_mba21_mixer
},
9544 .init_verbs
= { alc885_mba21_init_verbs
, alc880_gpio1_init_verbs
},
9546 .dac_nids
= alc882_dac_nids
,
9547 .channel_mode
= alc885_mba21_ch_modes
,
9548 .num_channel_mode
= ARRAY_SIZE(alc885_mba21_ch_modes
),
9549 .input_mux
= &alc882_capture_source
,
9550 .unsol_event
= alc_automute_amp_unsol_event
,
9551 .setup
= alc885_mba21_setup
,
9552 .init_hook
= alc_automute_amp
,
9555 .mixers
= { alc885_mbp3_mixer
, alc882_chmode_mixer
},
9556 .init_verbs
= { alc885_mbp3_init_verbs
,
9557 alc880_gpio1_init_verbs
},
9559 .dac_nids
= alc882_dac_nids
,
9561 .channel_mode
= alc885_mbp_4ch_modes
,
9562 .num_channel_mode
= ARRAY_SIZE(alc885_mbp_4ch_modes
),
9563 .input_mux
= &alc882_capture_source
,
9564 .dig_out_nid
= ALC882_DIGOUT_NID
,
9565 .dig_in_nid
= ALC882_DIGIN_NID
,
9566 .unsol_event
= alc_automute_amp_unsol_event
,
9567 .setup
= alc885_mbp3_setup
,
9568 .init_hook
= alc_automute_amp
,
9571 .mixers
= { alc885_mb5_mixer
, alc882_chmode_mixer
},
9572 .init_verbs
= { alc885_mb5_init_verbs
,
9573 alc880_gpio1_init_verbs
},
9574 .num_dacs
= ARRAY_SIZE(alc882_dac_nids
),
9575 .dac_nids
= alc882_dac_nids
,
9576 .channel_mode
= alc885_mb5_6ch_modes
,
9577 .num_channel_mode
= ARRAY_SIZE(alc885_mb5_6ch_modes
),
9578 .input_mux
= &mb5_capture_source
,
9579 .dig_out_nid
= ALC882_DIGOUT_NID
,
9580 .dig_in_nid
= ALC882_DIGIN_NID
,
9581 .unsol_event
= alc_automute_amp_unsol_event
,
9582 .setup
= alc885_mb5_setup
,
9583 .init_hook
= alc_automute_amp
,
9585 [ALC885_MACMINI3
] = {
9586 .mixers
= { alc885_macmini3_mixer
, alc882_chmode_mixer
},
9587 .init_verbs
= { alc885_macmini3_init_verbs
,
9588 alc880_gpio1_init_verbs
},
9589 .num_dacs
= ARRAY_SIZE(alc882_dac_nids
),
9590 .dac_nids
= alc882_dac_nids
,
9591 .channel_mode
= alc885_macmini3_6ch_modes
,
9592 .num_channel_mode
= ARRAY_SIZE(alc885_macmini3_6ch_modes
),
9593 .input_mux
= &macmini3_capture_source
,
9594 .dig_out_nid
= ALC882_DIGOUT_NID
,
9595 .dig_in_nid
= ALC882_DIGIN_NID
,
9596 .unsol_event
= alc_automute_amp_unsol_event
,
9597 .setup
= alc885_macmini3_setup
,
9598 .init_hook
= alc_automute_amp
,
9601 .mixers
= { alc882_macpro_mixer
},
9602 .init_verbs
= { alc882_macpro_init_verbs
},
9603 .num_dacs
= ARRAY_SIZE(alc882_dac_nids
),
9604 .dac_nids
= alc882_dac_nids
,
9605 .dig_out_nid
= ALC882_DIGOUT_NID
,
9606 .dig_in_nid
= ALC882_DIGIN_NID
,
9607 .num_channel_mode
= ARRAY_SIZE(alc882_ch_modes
),
9608 .channel_mode
= alc882_ch_modes
,
9609 .input_mux
= &alc882_capture_source
,
9610 .init_hook
= alc885_macpro_init_hook
,
9613 .mixers
= { alc885_imac24_mixer
},
9614 .init_verbs
= { alc885_imac24_init_verbs
},
9615 .num_dacs
= ARRAY_SIZE(alc882_dac_nids
),
9616 .dac_nids
= alc882_dac_nids
,
9617 .dig_out_nid
= ALC882_DIGOUT_NID
,
9618 .dig_in_nid
= ALC882_DIGIN_NID
,
9619 .num_channel_mode
= ARRAY_SIZE(alc882_ch_modes
),
9620 .channel_mode
= alc882_ch_modes
,
9621 .input_mux
= &alc882_capture_source
,
9622 .unsol_event
= alc_automute_amp_unsol_event
,
9623 .setup
= alc885_imac24_setup
,
9624 .init_hook
= alc885_imac24_init_hook
,
9627 .mixers
= {alc885_imac91_mixer
},
9628 .init_verbs
= { alc885_imac91_init_verbs
,
9629 alc880_gpio1_init_verbs
},
9630 .num_dacs
= ARRAY_SIZE(alc882_dac_nids
),
9631 .dac_nids
= alc882_dac_nids
,
9632 .channel_mode
= alc885_mba21_ch_modes
,
9633 .num_channel_mode
= ARRAY_SIZE(alc885_mba21_ch_modes
),
9634 .input_mux
= &alc889A_imac91_capture_source
,
9635 .dig_out_nid
= ALC882_DIGOUT_NID
,
9636 .dig_in_nid
= ALC882_DIGIN_NID
,
9637 .unsol_event
= alc_automute_amp_unsol_event
,
9638 .setup
= alc885_imac91_setup
,
9639 .init_hook
= alc_automute_amp
,
9642 .mixers
= { alc882_targa_mixer
, alc882_chmode_mixer
},
9643 .init_verbs
= { alc882_base_init_verbs
, alc882_adc1_init_verbs
,
9644 alc880_gpio3_init_verbs
, alc882_targa_verbs
},
9645 .num_dacs
= ARRAY_SIZE(alc882_dac_nids
),
9646 .dac_nids
= alc882_dac_nids
,
9647 .dig_out_nid
= ALC882_DIGOUT_NID
,
9648 .num_adc_nids
= ARRAY_SIZE(alc882_adc_nids
),
9649 .adc_nids
= alc882_adc_nids
,
9650 .capsrc_nids
= alc882_capsrc_nids
,
9651 .num_channel_mode
= ARRAY_SIZE(alc882_3ST_6ch_modes
),
9652 .channel_mode
= alc882_3ST_6ch_modes
,
9654 .input_mux
= &alc882_capture_source
,
9655 .unsol_event
= alc882_targa_unsol_event
,
9656 .setup
= alc882_targa_setup
,
9657 .init_hook
= alc882_targa_automute
,
9659 [ALC882_ASUS_A7J
] = {
9660 .mixers
= { alc882_asus_a7j_mixer
, alc882_chmode_mixer
},
9661 .init_verbs
= { alc882_base_init_verbs
, alc882_adc1_init_verbs
,
9662 alc882_asus_a7j_verbs
},
9663 .num_dacs
= ARRAY_SIZE(alc882_dac_nids
),
9664 .dac_nids
= alc882_dac_nids
,
9665 .dig_out_nid
= ALC882_DIGOUT_NID
,
9666 .num_adc_nids
= ARRAY_SIZE(alc882_adc_nids
),
9667 .adc_nids
= alc882_adc_nids
,
9668 .capsrc_nids
= alc882_capsrc_nids
,
9669 .num_channel_mode
= ARRAY_SIZE(alc882_3ST_6ch_modes
),
9670 .channel_mode
= alc882_3ST_6ch_modes
,
9672 .input_mux
= &alc882_capture_source
,
9674 [ALC882_ASUS_A7M
] = {
9675 .mixers
= { alc882_asus_a7m_mixer
, alc882_chmode_mixer
},
9676 .init_verbs
= { alc882_base_init_verbs
, alc882_adc1_init_verbs
,
9677 alc882_eapd_verbs
, alc880_gpio1_init_verbs
,
9678 alc882_asus_a7m_verbs
},
9679 .num_dacs
= ARRAY_SIZE(alc882_dac_nids
),
9680 .dac_nids
= alc882_dac_nids
,
9681 .dig_out_nid
= ALC882_DIGOUT_NID
,
9682 .num_channel_mode
= ARRAY_SIZE(alc880_threestack_modes
),
9683 .channel_mode
= alc880_threestack_modes
,
9685 .input_mux
= &alc882_capture_source
,
9687 [ALC883_3ST_2ch_DIG
] = {
9688 .mixers
= { alc883_3ST_2ch_mixer
},
9689 .init_verbs
= { alc883_init_verbs
},
9690 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
9691 .dac_nids
= alc883_dac_nids
,
9692 .dig_out_nid
= ALC883_DIGOUT_NID
,
9693 .dig_in_nid
= ALC883_DIGIN_NID
,
9694 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_2ch_modes
),
9695 .channel_mode
= alc883_3ST_2ch_modes
,
9696 .input_mux
= &alc883_capture_source
,
9698 [ALC883_3ST_6ch_DIG
] = {
9699 .mixers
= { alc883_3ST_6ch_mixer
, alc883_chmode_mixer
},
9700 .init_verbs
= { alc883_init_verbs
},
9701 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
9702 .dac_nids
= alc883_dac_nids
,
9703 .dig_out_nid
= ALC883_DIGOUT_NID
,
9704 .dig_in_nid
= ALC883_DIGIN_NID
,
9705 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_6ch_modes
),
9706 .channel_mode
= alc883_3ST_6ch_modes
,
9708 .input_mux
= &alc883_capture_source
,
9710 [ALC883_3ST_6ch
] = {
9711 .mixers
= { alc883_3ST_6ch_mixer
, alc883_chmode_mixer
},
9712 .init_verbs
= { alc883_init_verbs
},
9713 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
9714 .dac_nids
= alc883_dac_nids
,
9715 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_6ch_modes
),
9716 .channel_mode
= alc883_3ST_6ch_modes
,
9718 .input_mux
= &alc883_capture_source
,
9720 [ALC883_3ST_6ch_INTEL
] = {
9721 .mixers
= { alc883_3ST_6ch_intel_mixer
, alc883_chmode_mixer
},
9722 .init_verbs
= { alc883_init_verbs
},
9723 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
9724 .dac_nids
= alc883_dac_nids
,
9725 .dig_out_nid
= ALC883_DIGOUT_NID
,
9726 .dig_in_nid
= ALC883_DIGIN_NID
,
9727 .slave_dig_outs
= alc883_slave_dig_outs
,
9728 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_6ch_intel_modes
),
9729 .channel_mode
= alc883_3ST_6ch_intel_modes
,
9731 .input_mux
= &alc883_3stack_6ch_intel
,
9734 .mixers
= { alc885_8ch_intel_mixer
, alc883_chmode_mixer
},
9735 .init_verbs
= { alc885_init_verbs
, alc885_init_input_verbs
,
9736 alc_hp15_unsol_verbs
},
9737 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
9738 .dac_nids
= alc883_dac_nids
,
9739 .num_adc_nids
= ARRAY_SIZE(alc889_adc_nids
),
9740 .adc_nids
= alc889_adc_nids
,
9741 .dig_out_nid
= ALC883_DIGOUT_NID
,
9742 .dig_in_nid
= ALC883_DIGIN_NID
,
9743 .slave_dig_outs
= alc883_slave_dig_outs
,
9744 .num_channel_mode
= ARRAY_SIZE(alc889_8ch_intel_modes
),
9745 .channel_mode
= alc889_8ch_intel_modes
,
9746 .capsrc_nids
= alc889_capsrc_nids
,
9747 .input_mux
= &alc889_capture_source
,
9748 .setup
= alc889_automute_setup
,
9749 .init_hook
= alc_automute_amp
,
9750 .unsol_event
= alc_automute_amp_unsol_event
,
9754 .mixers
= { alc885_8ch_intel_mixer
, alc883_chmode_mixer
},
9755 .init_verbs
= { alc885_init_verbs
, alc889_init_input_verbs
,
9756 alc889_eapd_verbs
, alc_hp15_unsol_verbs
},
9757 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
9758 .dac_nids
= alc883_dac_nids
,
9759 .num_adc_nids
= ARRAY_SIZE(alc889_adc_nids
),
9760 .adc_nids
= alc889_adc_nids
,
9761 .dig_out_nid
= ALC883_DIGOUT_NID
,
9762 .dig_in_nid
= ALC883_DIGIN_NID
,
9763 .slave_dig_outs
= alc883_slave_dig_outs
,
9764 .num_channel_mode
= ARRAY_SIZE(alc889_8ch_intel_modes
),
9765 .channel_mode
= alc889_8ch_intel_modes
,
9766 .capsrc_nids
= alc889_capsrc_nids
,
9767 .input_mux
= &alc889_capture_source
,
9768 .setup
= alc889_automute_setup
,
9769 .init_hook
= alc889_intel_init_hook
,
9770 .unsol_event
= alc_automute_amp_unsol_event
,
9773 [ALC883_6ST_DIG
] = {
9774 .mixers
= { alc883_base_mixer
, alc883_chmode_mixer
},
9775 .init_verbs
= { alc883_init_verbs
},
9776 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
9777 .dac_nids
= alc883_dac_nids
,
9778 .dig_out_nid
= ALC883_DIGOUT_NID
,
9779 .dig_in_nid
= ALC883_DIGIN_NID
,
9780 .num_channel_mode
= ARRAY_SIZE(alc883_sixstack_modes
),
9781 .channel_mode
= alc883_sixstack_modes
,
9782 .input_mux
= &alc883_capture_source
,
9784 [ALC883_TARGA_DIG
] = {
9785 .mixers
= { alc883_targa_mixer
, alc883_chmode_mixer
},
9786 .init_verbs
= { alc883_init_verbs
, alc880_gpio3_init_verbs
,
9787 alc883_targa_verbs
},
9788 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
9789 .dac_nids
= alc883_dac_nids
,
9790 .dig_out_nid
= ALC883_DIGOUT_NID
,
9791 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_6ch_modes
),
9792 .channel_mode
= alc883_3ST_6ch_modes
,
9794 .input_mux
= &alc883_capture_source
,
9795 .unsol_event
= alc883_targa_unsol_event
,
9796 .setup
= alc882_targa_setup
,
9797 .init_hook
= alc882_targa_automute
,
9799 [ALC883_TARGA_2ch_DIG
] = {
9800 .mixers
= { alc883_targa_2ch_mixer
},
9801 .init_verbs
= { alc883_init_verbs
, alc880_gpio3_init_verbs
,
9802 alc883_targa_verbs
},
9803 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
9804 .dac_nids
= alc883_dac_nids
,
9805 .adc_nids
= alc883_adc_nids_alt
,
9806 .num_adc_nids
= ARRAY_SIZE(alc883_adc_nids_alt
),
9807 .capsrc_nids
= alc883_capsrc_nids
,
9808 .dig_out_nid
= ALC883_DIGOUT_NID
,
9809 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_2ch_modes
),
9810 .channel_mode
= alc883_3ST_2ch_modes
,
9811 .input_mux
= &alc883_capture_source
,
9812 .unsol_event
= alc883_targa_unsol_event
,
9813 .setup
= alc882_targa_setup
,
9814 .init_hook
= alc882_targa_automute
,
9816 [ALC883_TARGA_8ch_DIG
] = {
9817 .mixers
= { alc883_targa_mixer
, alc883_targa_8ch_mixer
,
9818 alc883_chmode_mixer
},
9819 .init_verbs
= { alc883_init_verbs
, alc880_gpio3_init_verbs
,
9820 alc883_targa_verbs
},
9821 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
9822 .dac_nids
= alc883_dac_nids
,
9823 .num_adc_nids
= ARRAY_SIZE(alc883_adc_nids_rev
),
9824 .adc_nids
= alc883_adc_nids_rev
,
9825 .capsrc_nids
= alc883_capsrc_nids_rev
,
9826 .dig_out_nid
= ALC883_DIGOUT_NID
,
9827 .dig_in_nid
= ALC883_DIGIN_NID
,
9828 .num_channel_mode
= ARRAY_SIZE(alc883_4ST_8ch_modes
),
9829 .channel_mode
= alc883_4ST_8ch_modes
,
9831 .input_mux
= &alc883_capture_source
,
9832 .unsol_event
= alc883_targa_unsol_event
,
9833 .setup
= alc882_targa_setup
,
9834 .init_hook
= alc882_targa_automute
,
9837 .mixers
= { alc883_base_mixer
},
9838 /* On TravelMate laptops, GPIO 0 enables the internal speaker
9839 * and the headphone jack. Turn this on and rely on the
9840 * standard mute methods whenever the user wants to turn
9841 * these outputs off.
9843 .init_verbs
= { alc883_init_verbs
, alc880_gpio1_init_verbs
},
9844 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
9845 .dac_nids
= alc883_dac_nids
,
9846 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_2ch_modes
),
9847 .channel_mode
= alc883_3ST_2ch_modes
,
9848 .input_mux
= &alc883_capture_source
,
9850 [ALC883_ACER_ASPIRE
] = {
9851 .mixers
= { alc883_acer_aspire_mixer
},
9852 .init_verbs
= { alc883_init_verbs
, alc883_acer_eapd_verbs
},
9853 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
9854 .dac_nids
= alc883_dac_nids
,
9855 .dig_out_nid
= ALC883_DIGOUT_NID
,
9856 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_2ch_modes
),
9857 .channel_mode
= alc883_3ST_2ch_modes
,
9858 .input_mux
= &alc883_capture_source
,
9859 .unsol_event
= alc_automute_amp_unsol_event
,
9860 .setup
= alc883_acer_aspire_setup
,
9861 .init_hook
= alc_automute_amp
,
9863 [ALC888_ACER_ASPIRE_4930G
] = {
9864 .mixers
= { alc888_base_mixer
,
9865 alc883_chmode_mixer
},
9866 .init_verbs
= { alc883_init_verbs
, alc880_gpio1_init_verbs
,
9867 alc888_acer_aspire_4930g_verbs
},
9868 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
9869 .dac_nids
= alc883_dac_nids
,
9870 .num_adc_nids
= ARRAY_SIZE(alc883_adc_nids_rev
),
9871 .adc_nids
= alc883_adc_nids_rev
,
9872 .capsrc_nids
= alc883_capsrc_nids_rev
,
9873 .dig_out_nid
= ALC883_DIGOUT_NID
,
9874 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_6ch_modes
),
9875 .channel_mode
= alc883_3ST_6ch_modes
,
9877 .const_channel_count
= 6,
9879 ARRAY_SIZE(alc888_2_capture_sources
),
9880 .input_mux
= alc888_2_capture_sources
,
9881 .unsol_event
= alc_automute_amp_unsol_event
,
9882 .setup
= alc888_acer_aspire_4930g_setup
,
9883 .init_hook
= alc_automute_amp
,
9885 [ALC888_ACER_ASPIRE_6530G
] = {
9886 .mixers
= { alc888_acer_aspire_6530_mixer
},
9887 .init_verbs
= { alc883_init_verbs
, alc880_gpio1_init_verbs
,
9888 alc888_acer_aspire_6530g_verbs
},
9889 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
9890 .dac_nids
= alc883_dac_nids
,
9891 .num_adc_nids
= ARRAY_SIZE(alc883_adc_nids_rev
),
9892 .adc_nids
= alc883_adc_nids_rev
,
9893 .capsrc_nids
= alc883_capsrc_nids_rev
,
9894 .dig_out_nid
= ALC883_DIGOUT_NID
,
9895 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_2ch_modes
),
9896 .channel_mode
= alc883_3ST_2ch_modes
,
9898 ARRAY_SIZE(alc888_2_capture_sources
),
9899 .input_mux
= alc888_acer_aspire_6530_sources
,
9900 .unsol_event
= alc_automute_amp_unsol_event
,
9901 .setup
= alc888_acer_aspire_6530g_setup
,
9902 .init_hook
= alc_automute_amp
,
9904 [ALC888_ACER_ASPIRE_8930G
] = {
9905 .mixers
= { alc889_acer_aspire_8930g_mixer
,
9906 alc883_chmode_mixer
},
9907 .init_verbs
= { alc883_init_verbs
, alc880_gpio1_init_verbs
,
9908 alc889_acer_aspire_8930g_verbs
,
9910 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
9911 .dac_nids
= alc883_dac_nids
,
9912 .num_adc_nids
= ARRAY_SIZE(alc889_adc_nids
),
9913 .adc_nids
= alc889_adc_nids
,
9914 .capsrc_nids
= alc889_capsrc_nids
,
9915 .dig_out_nid
= ALC883_DIGOUT_NID
,
9916 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_6ch_modes
),
9917 .channel_mode
= alc883_3ST_6ch_modes
,
9919 .const_channel_count
= 6,
9921 ARRAY_SIZE(alc889_capture_sources
),
9922 .input_mux
= alc889_capture_sources
,
9923 .unsol_event
= alc_automute_amp_unsol_event
,
9924 .setup
= alc889_acer_aspire_8930g_setup
,
9925 .init_hook
= alc_automute_amp
,
9926 #ifdef CONFIG_SND_HDA_POWER_SAVE
9927 .power_hook
= alc_power_eapd
,
9930 [ALC888_ACER_ASPIRE_7730G
] = {
9931 .mixers
= { alc883_3ST_6ch_mixer
,
9932 alc883_chmode_mixer
},
9933 .init_verbs
= { alc883_init_verbs
, alc880_gpio1_init_verbs
,
9934 alc888_acer_aspire_7730G_verbs
},
9935 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
9936 .dac_nids
= alc883_dac_nids
,
9937 .num_adc_nids
= ARRAY_SIZE(alc883_adc_nids_rev
),
9938 .adc_nids
= alc883_adc_nids_rev
,
9939 .capsrc_nids
= alc883_capsrc_nids_rev
,
9940 .dig_out_nid
= ALC883_DIGOUT_NID
,
9941 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_6ch_modes
),
9942 .channel_mode
= alc883_3ST_6ch_modes
,
9944 .const_channel_count
= 6,
9945 .input_mux
= &alc883_capture_source
,
9946 .unsol_event
= alc_automute_amp_unsol_event
,
9947 .setup
= alc888_acer_aspire_6530g_setup
,
9948 .init_hook
= alc_automute_amp
,
9951 .mixers
= { alc883_fivestack_mixer
,
9952 alc883_chmode_mixer
},
9953 .init_verbs
= { alc883_init_verbs
,
9954 alc883_medion_eapd_verbs
},
9955 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
9956 .dac_nids
= alc883_dac_nids
,
9957 .adc_nids
= alc883_adc_nids_alt
,
9958 .num_adc_nids
= ARRAY_SIZE(alc883_adc_nids_alt
),
9959 .capsrc_nids
= alc883_capsrc_nids
,
9960 .num_channel_mode
= ARRAY_SIZE(alc883_sixstack_modes
),
9961 .channel_mode
= alc883_sixstack_modes
,
9962 .input_mux
= &alc883_capture_source
,
9964 [ALC883_MEDION_MD2
] = {
9965 .mixers
= { alc883_medion_md2_mixer
},
9966 .init_verbs
= { alc883_init_verbs
, alc883_medion_md2_verbs
},
9967 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
9968 .dac_nids
= alc883_dac_nids
,
9969 .dig_out_nid
= ALC883_DIGOUT_NID
,
9970 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_2ch_modes
),
9971 .channel_mode
= alc883_3ST_2ch_modes
,
9972 .input_mux
= &alc883_capture_source
,
9973 .unsol_event
= alc_automute_amp_unsol_event
,
9974 .setup
= alc883_medion_md2_setup
,
9975 .init_hook
= alc_automute_amp
,
9977 [ALC883_MEDION_WIM2160
] = {
9978 .mixers
= { alc883_medion_wim2160_mixer
},
9979 .init_verbs
= { alc883_init_verbs
, alc883_medion_wim2160_verbs
},
9980 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
9981 .dac_nids
= alc883_dac_nids
,
9982 .dig_out_nid
= ALC883_DIGOUT_NID
,
9983 .num_adc_nids
= ARRAY_SIZE(alc883_adc_nids
),
9984 .adc_nids
= alc883_adc_nids
,
9985 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_2ch_modes
),
9986 .channel_mode
= alc883_3ST_2ch_modes
,
9987 .input_mux
= &alc883_capture_source
,
9988 .unsol_event
= alc_automute_amp_unsol_event
,
9989 .setup
= alc883_medion_wim2160_setup
,
9990 .init_hook
= alc_automute_amp
,
9992 [ALC883_LAPTOP_EAPD
] = {
9993 .mixers
= { alc883_base_mixer
},
9994 .init_verbs
= { alc883_init_verbs
, alc882_eapd_verbs
},
9995 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
9996 .dac_nids
= alc883_dac_nids
,
9997 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_2ch_modes
),
9998 .channel_mode
= alc883_3ST_2ch_modes
,
9999 .input_mux
= &alc883_capture_source
,
10001 [ALC883_CLEVO_M540R
] = {
10002 .mixers
= { alc883_3ST_6ch_mixer
, alc883_chmode_mixer
},
10003 .init_verbs
= { alc883_init_verbs
, alc883_clevo_m540r_verbs
},
10004 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
10005 .dac_nids
= alc883_dac_nids
,
10006 .dig_out_nid
= ALC883_DIGOUT_NID
,
10007 .dig_in_nid
= ALC883_DIGIN_NID
,
10008 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_6ch_clevo_modes
),
10009 .channel_mode
= alc883_3ST_6ch_clevo_modes
,
10011 .input_mux
= &alc883_capture_source
,
10012 /* This machine has the hardware HP auto-muting, thus
10013 * we need no software mute via unsol event
10016 [ALC883_CLEVO_M720
] = {
10017 .mixers
= { alc883_clevo_m720_mixer
},
10018 .init_verbs
= { alc883_init_verbs
, alc883_clevo_m720_verbs
},
10019 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
10020 .dac_nids
= alc883_dac_nids
,
10021 .dig_out_nid
= ALC883_DIGOUT_NID
,
10022 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_2ch_modes
),
10023 .channel_mode
= alc883_3ST_2ch_modes
,
10024 .input_mux
= &alc883_capture_source
,
10025 .unsol_event
= alc883_clevo_m720_unsol_event
,
10026 .setup
= alc883_clevo_m720_setup
,
10027 .init_hook
= alc883_clevo_m720_init_hook
,
10029 [ALC883_LENOVO_101E_2ch
] = {
10030 .mixers
= { alc883_lenovo_101e_2ch_mixer
},
10031 .init_verbs
= { alc883_init_verbs
, alc883_lenovo_101e_verbs
},
10032 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
10033 .dac_nids
= alc883_dac_nids
,
10034 .adc_nids
= alc883_adc_nids_alt
,
10035 .num_adc_nids
= ARRAY_SIZE(alc883_adc_nids_alt
),
10036 .capsrc_nids
= alc883_capsrc_nids
,
10037 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_2ch_modes
),
10038 .channel_mode
= alc883_3ST_2ch_modes
,
10039 .input_mux
= &alc883_lenovo_101e_capture_source
,
10040 .unsol_event
= alc883_lenovo_101e_unsol_event
,
10041 .init_hook
= alc883_lenovo_101e_all_automute
,
10043 [ALC883_LENOVO_NB0763
] = {
10044 .mixers
= { alc883_lenovo_nb0763_mixer
},
10045 .init_verbs
= { alc883_init_verbs
, alc883_lenovo_nb0763_verbs
},
10046 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
10047 .dac_nids
= alc883_dac_nids
,
10048 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_2ch_modes
),
10049 .channel_mode
= alc883_3ST_2ch_modes
,
10051 .input_mux
= &alc883_lenovo_nb0763_capture_source
,
10052 .unsol_event
= alc_automute_amp_unsol_event
,
10053 .setup
= alc883_medion_md2_setup
,
10054 .init_hook
= alc_automute_amp
,
10056 [ALC888_LENOVO_MS7195_DIG
] = {
10057 .mixers
= { alc883_3ST_6ch_mixer
, alc883_chmode_mixer
},
10058 .init_verbs
= { alc883_init_verbs
, alc888_lenovo_ms7195_verbs
},
10059 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
10060 .dac_nids
= alc883_dac_nids
,
10061 .dig_out_nid
= ALC883_DIGOUT_NID
,
10062 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_6ch_modes
),
10063 .channel_mode
= alc883_3ST_6ch_modes
,
10065 .input_mux
= &alc883_capture_source
,
10066 .unsol_event
= alc883_lenovo_ms7195_unsol_event
,
10067 .init_hook
= alc888_lenovo_ms7195_front_automute
,
10069 [ALC883_HAIER_W66
] = {
10070 .mixers
= { alc883_targa_2ch_mixer
},
10071 .init_verbs
= { alc883_init_verbs
, alc883_haier_w66_verbs
},
10072 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
10073 .dac_nids
= alc883_dac_nids
,
10074 .dig_out_nid
= ALC883_DIGOUT_NID
,
10075 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_2ch_modes
),
10076 .channel_mode
= alc883_3ST_2ch_modes
,
10077 .input_mux
= &alc883_capture_source
,
10078 .unsol_event
= alc_automute_amp_unsol_event
,
10079 .setup
= alc883_haier_w66_setup
,
10080 .init_hook
= alc_automute_amp
,
10082 [ALC888_3ST_HP
] = {
10083 .mixers
= { alc883_3ST_6ch_mixer
, alc883_chmode_mixer
},
10084 .init_verbs
= { alc883_init_verbs
, alc888_3st_hp_verbs
},
10085 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
10086 .dac_nids
= alc883_dac_nids
,
10087 .num_channel_mode
= ARRAY_SIZE(alc888_3st_hp_modes
),
10088 .channel_mode
= alc888_3st_hp_modes
,
10090 .input_mux
= &alc883_capture_source
,
10091 .unsol_event
= alc_automute_amp_unsol_event
,
10092 .setup
= alc888_3st_hp_setup
,
10093 .init_hook
= alc_automute_amp
,
10095 [ALC888_6ST_DELL
] = {
10096 .mixers
= { alc883_base_mixer
, alc883_chmode_mixer
},
10097 .init_verbs
= { alc883_init_verbs
, alc888_6st_dell_verbs
},
10098 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
10099 .dac_nids
= alc883_dac_nids
,
10100 .dig_out_nid
= ALC883_DIGOUT_NID
,
10101 .dig_in_nid
= ALC883_DIGIN_NID
,
10102 .num_channel_mode
= ARRAY_SIZE(alc883_sixstack_modes
),
10103 .channel_mode
= alc883_sixstack_modes
,
10104 .input_mux
= &alc883_capture_source
,
10105 .unsol_event
= alc_automute_amp_unsol_event
,
10106 .setup
= alc888_6st_dell_setup
,
10107 .init_hook
= alc_automute_amp
,
10110 .mixers
= { alc883_mitac_mixer
},
10111 .init_verbs
= { alc883_init_verbs
, alc883_mitac_verbs
},
10112 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
10113 .dac_nids
= alc883_dac_nids
,
10114 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_2ch_modes
),
10115 .channel_mode
= alc883_3ST_2ch_modes
,
10116 .input_mux
= &alc883_capture_source
,
10117 .unsol_event
= alc_automute_amp_unsol_event
,
10118 .setup
= alc883_mitac_setup
,
10119 .init_hook
= alc_automute_amp
,
10121 [ALC883_FUJITSU_PI2515
] = {
10122 .mixers
= { alc883_2ch_fujitsu_pi2515_mixer
},
10123 .init_verbs
= { alc883_init_verbs
,
10124 alc883_2ch_fujitsu_pi2515_verbs
},
10125 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
10126 .dac_nids
= alc883_dac_nids
,
10127 .dig_out_nid
= ALC883_DIGOUT_NID
,
10128 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_2ch_modes
),
10129 .channel_mode
= alc883_3ST_2ch_modes
,
10130 .input_mux
= &alc883_fujitsu_pi2515_capture_source
,
10131 .unsol_event
= alc_automute_amp_unsol_event
,
10132 .setup
= alc883_2ch_fujitsu_pi2515_setup
,
10133 .init_hook
= alc_automute_amp
,
10135 [ALC888_FUJITSU_XA3530
] = {
10136 .mixers
= { alc888_base_mixer
, alc883_chmode_mixer
},
10137 .init_verbs
= { alc883_init_verbs
,
10138 alc888_fujitsu_xa3530_verbs
},
10139 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
10140 .dac_nids
= alc883_dac_nids
,
10141 .num_adc_nids
= ARRAY_SIZE(alc883_adc_nids_rev
),
10142 .adc_nids
= alc883_adc_nids_rev
,
10143 .capsrc_nids
= alc883_capsrc_nids_rev
,
10144 .dig_out_nid
= ALC883_DIGOUT_NID
,
10145 .num_channel_mode
= ARRAY_SIZE(alc888_4ST_8ch_intel_modes
),
10146 .channel_mode
= alc888_4ST_8ch_intel_modes
,
10148 ARRAY_SIZE(alc888_2_capture_sources
),
10149 .input_mux
= alc888_2_capture_sources
,
10150 .unsol_event
= alc_automute_amp_unsol_event
,
10151 .setup
= alc888_fujitsu_xa3530_setup
,
10152 .init_hook
= alc_automute_amp
,
10154 [ALC888_LENOVO_SKY
] = {
10155 .mixers
= { alc888_lenovo_sky_mixer
, alc883_chmode_mixer
},
10156 .init_verbs
= { alc883_init_verbs
, alc888_lenovo_sky_verbs
},
10157 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
10158 .dac_nids
= alc883_dac_nids
,
10159 .dig_out_nid
= ALC883_DIGOUT_NID
,
10160 .num_channel_mode
= ARRAY_SIZE(alc883_sixstack_modes
),
10161 .channel_mode
= alc883_sixstack_modes
,
10163 .input_mux
= &alc883_lenovo_sky_capture_source
,
10164 .unsol_event
= alc_automute_amp_unsol_event
,
10165 .setup
= alc888_lenovo_sky_setup
,
10166 .init_hook
= alc_automute_amp
,
10168 [ALC888_ASUS_M90V
] = {
10169 .mixers
= { alc883_3ST_6ch_mixer
, alc883_chmode_mixer
},
10170 .init_verbs
= { alc883_init_verbs
, alc888_asus_m90v_verbs
},
10171 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
10172 .dac_nids
= alc883_dac_nids
,
10173 .dig_out_nid
= ALC883_DIGOUT_NID
,
10174 .dig_in_nid
= ALC883_DIGIN_NID
,
10175 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_6ch_modes
),
10176 .channel_mode
= alc883_3ST_6ch_modes
,
10178 .input_mux
= &alc883_fujitsu_pi2515_capture_source
,
10179 .unsol_event
= alc_sku_unsol_event
,
10180 .setup
= alc883_mode2_setup
,
10181 .init_hook
= alc_inithook
,
10183 [ALC888_ASUS_EEE1601
] = {
10184 .mixers
= { alc883_asus_eee1601_mixer
},
10185 .cap_mixer
= alc883_asus_eee1601_cap_mixer
,
10186 .init_verbs
= { alc883_init_verbs
, alc888_asus_eee1601_verbs
},
10187 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
10188 .dac_nids
= alc883_dac_nids
,
10189 .dig_out_nid
= ALC883_DIGOUT_NID
,
10190 .dig_in_nid
= ALC883_DIGIN_NID
,
10191 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_2ch_modes
),
10192 .channel_mode
= alc883_3ST_2ch_modes
,
10194 .input_mux
= &alc883_asus_eee1601_capture_source
,
10195 .unsol_event
= alc_sku_unsol_event
,
10196 .init_hook
= alc883_eee1601_inithook
,
10198 [ALC1200_ASUS_P5Q
] = {
10199 .mixers
= { alc883_base_mixer
, alc883_chmode_mixer
},
10200 .init_verbs
= { alc883_init_verbs
},
10201 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
10202 .dac_nids
= alc883_dac_nids
,
10203 .dig_out_nid
= ALC1200_DIGOUT_NID
,
10204 .dig_in_nid
= ALC883_DIGIN_NID
,
10205 .slave_dig_outs
= alc1200_slave_dig_outs
,
10206 .num_channel_mode
= ARRAY_SIZE(alc883_sixstack_modes
),
10207 .channel_mode
= alc883_sixstack_modes
,
10208 .input_mux
= &alc883_capture_source
,
10211 .mixers
= { alc889A_mb31_mixer
, alc883_chmode_mixer
},
10212 .init_verbs
= { alc883_init_verbs
, alc889A_mb31_verbs
,
10213 alc880_gpio1_init_verbs
},
10214 .adc_nids
= alc883_adc_nids
,
10215 .num_adc_nids
= ARRAY_SIZE(alc883_adc_nids
),
10216 .capsrc_nids
= alc883_capsrc_nids
,
10217 .dac_nids
= alc883_dac_nids
,
10218 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
10219 .channel_mode
= alc889A_mb31_6ch_modes
,
10220 .num_channel_mode
= ARRAY_SIZE(alc889A_mb31_6ch_modes
),
10221 .input_mux
= &alc889A_mb31_capture_source
,
10222 .dig_out_nid
= ALC883_DIGOUT_NID
,
10223 .unsol_event
= alc889A_mb31_unsol_event
,
10224 .init_hook
= alc889A_mb31_automute
,
10226 [ALC883_SONY_VAIO_TT
] = {
10227 .mixers
= { alc883_vaiott_mixer
},
10228 .init_verbs
= { alc883_init_verbs
, alc883_vaiott_verbs
},
10229 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
10230 .dac_nids
= alc883_dac_nids
,
10231 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_2ch_modes
),
10232 .channel_mode
= alc883_3ST_2ch_modes
,
10233 .input_mux
= &alc883_capture_source
,
10234 .unsol_event
= alc_automute_amp_unsol_event
,
10235 .setup
= alc883_vaiott_setup
,
10236 .init_hook
= alc_automute_amp
,
10245 PINFIX_ABIT_AW9D_MAX
10248 static struct alc_pincfg alc882_abit_aw9d_pinfix
[] = {
10249 { 0x15, 0x01080104 }, /* side */
10250 { 0x16, 0x01011012 }, /* rear */
10251 { 0x17, 0x01016011 }, /* clfe */
10255 static const struct alc_fixup alc882_fixups
[] = {
10256 [PINFIX_ABIT_AW9D_MAX
] = {
10257 .pins
= alc882_abit_aw9d_pinfix
10261 static struct snd_pci_quirk alc882_fixup_tbl
[] = {
10262 SND_PCI_QUIRK(0x147b, 0x107a, "Abit AW9D-MAX", PINFIX_ABIT_AW9D_MAX
),
10267 * BIOS auto configuration
10269 static int alc882_auto_create_input_ctls(struct hda_codec
*codec
,
10270 const struct auto_pin_cfg
*cfg
)
10272 return alc_auto_create_input_ctls(codec
, cfg
, 0x0b, 0x23, 0x22);
10275 static void alc882_auto_set_output_and_unmute(struct hda_codec
*codec
,
10276 hda_nid_t nid
, int pin_type
,
10281 /* set as output */
10282 alc_set_pin_output(codec
, nid
, pin_type
);
10286 else if (dac
>= 0x02 && dac
<= 0x05)
10290 snd_hda_codec_write(codec
, nid
, 0, AC_VERB_SET_CONNECT_SEL
, idx
);
10293 static void alc882_auto_init_multi_out(struct hda_codec
*codec
)
10295 struct alc_spec
*spec
= codec
->spec
;
10298 for (i
= 0; i
<= HDA_SIDE
; i
++) {
10299 hda_nid_t nid
= spec
->autocfg
.line_out_pins
[i
];
10300 int pin_type
= get_pin_type(spec
->autocfg
.line_out_type
);
10302 alc882_auto_set_output_and_unmute(codec
, nid
, pin_type
,
10303 spec
->multiout
.dac_nids
[i
]);
10307 static void alc882_auto_init_hp_out(struct hda_codec
*codec
)
10309 struct alc_spec
*spec
= codec
->spec
;
10310 hda_nid_t pin
, dac
;
10312 pin
= spec
->autocfg
.hp_pins
[0];
10314 dac
= spec
->multiout
.hp_nid
;
10316 dac
= spec
->multiout
.dac_nids
[0]; /* to front */
10317 alc882_auto_set_output_and_unmute(codec
, pin
, PIN_HP
, dac
);
10319 pin
= spec
->autocfg
.speaker_pins
[0];
10321 dac
= spec
->multiout
.extra_out_nid
[0];
10323 dac
= spec
->multiout
.dac_nids
[0]; /* to front */
10324 alc882_auto_set_output_and_unmute(codec
, pin
, PIN_OUT
, dac
);
10328 static void alc882_auto_init_analog_input(struct hda_codec
*codec
)
10330 struct alc_spec
*spec
= codec
->spec
;
10333 for (i
= 0; i
< AUTO_PIN_LAST
; i
++) {
10334 hda_nid_t nid
= spec
->autocfg
.input_pins
[i
];
10337 alc_set_input_pin(codec
, nid
, i
);
10338 if (get_wcaps(codec
, nid
) & AC_WCAP_OUT_AMP
)
10339 snd_hda_codec_write(codec
, nid
, 0,
10340 AC_VERB_SET_AMP_GAIN_MUTE
,
10345 static void alc882_auto_init_input_src(struct hda_codec
*codec
)
10347 struct alc_spec
*spec
= codec
->spec
;
10350 for (c
= 0; c
< spec
->num_adc_nids
; c
++) {
10351 hda_nid_t conn_list
[HDA_MAX_NUM_INPUTS
];
10352 hda_nid_t nid
= spec
->capsrc_nids
[c
];
10353 unsigned int mux_idx
;
10354 const struct hda_input_mux
*imux
;
10355 int conns
, mute
, idx
, item
;
10357 conns
= snd_hda_get_connections(codec
, nid
, conn_list
,
10358 ARRAY_SIZE(conn_list
));
10361 mux_idx
= c
>= spec
->num_mux_defs
? 0 : c
;
10362 imux
= &spec
->input_mux
[mux_idx
];
10363 if (!imux
->num_items
&& mux_idx
> 0)
10364 imux
= &spec
->input_mux
[0];
10365 for (idx
= 0; idx
< conns
; idx
++) {
10366 /* if the current connection is the selected one,
10367 * unmute it as default - otherwise mute it
10369 mute
= AMP_IN_MUTE(idx
);
10370 for (item
= 0; item
< imux
->num_items
; item
++) {
10371 if (imux
->items
[item
].index
== idx
) {
10372 if (spec
->cur_mux
[c
] == item
)
10373 mute
= AMP_IN_UNMUTE(idx
);
10377 /* check if we have a selector or mixer
10378 * we could check for the widget type instead, but
10379 * just check for Amp-In presence (in case of mixer
10380 * without amp-in there is something wrong, this
10381 * function shouldn't be used or capsrc nid is wrong)
10383 if (get_wcaps(codec
, nid
) & AC_WCAP_IN_AMP
)
10384 snd_hda_codec_write(codec
, nid
, 0,
10385 AC_VERB_SET_AMP_GAIN_MUTE
,
10387 else if (mute
!= AMP_IN_MUTE(idx
))
10388 snd_hda_codec_write(codec
, nid
, 0,
10389 AC_VERB_SET_CONNECT_SEL
,
10395 /* add mic boosts if needed */
10396 static int alc_auto_add_mic_boost(struct hda_codec
*codec
)
10398 struct alc_spec
*spec
= codec
->spec
;
10402 nid
= spec
->autocfg
.input_pins
[AUTO_PIN_MIC
];
10403 if (nid
&& (get_wcaps(codec
, nid
) & AC_WCAP_IN_AMP
)) {
10404 err
= add_control(spec
, ALC_CTL_WIDGET_VOL
,
10406 HDA_COMPOSE_AMP_VAL(nid
, 3, 0, HDA_INPUT
));
10410 nid
= spec
->autocfg
.input_pins
[AUTO_PIN_FRONT_MIC
];
10411 if (nid
&& (get_wcaps(codec
, nid
) & AC_WCAP_IN_AMP
)) {
10412 err
= add_control(spec
, ALC_CTL_WIDGET_VOL
,
10414 HDA_COMPOSE_AMP_VAL(nid
, 3, 0, HDA_INPUT
));
10421 /* almost identical with ALC880 parser... */
10422 static int alc882_parse_auto_config(struct hda_codec
*codec
)
10424 struct alc_spec
*spec
= codec
->spec
;
10425 static hda_nid_t alc882_ignore
[] = { 0x1d, 0 };
10428 err
= snd_hda_parse_pin_def_config(codec
, &spec
->autocfg
,
10432 if (!spec
->autocfg
.line_outs
)
10433 return 0; /* can't find valid BIOS pin config */
10435 err
= alc880_auto_fill_dac_nids(spec
, &spec
->autocfg
);
10438 err
= alc880_auto_create_multi_out_ctls(spec
, &spec
->autocfg
);
10441 err
= alc880_auto_create_extra_out(spec
, spec
->autocfg
.hp_pins
[0],
10445 err
= alc880_auto_create_extra_out(spec
,
10446 spec
->autocfg
.speaker_pins
[0],
10450 err
= alc882_auto_create_input_ctls(codec
, &spec
->autocfg
);
10454 spec
->multiout
.max_channels
= spec
->multiout
.num_dacs
* 2;
10456 /* check multiple SPDIF-out (for recent codecs) */
10457 for (i
= 0; i
< spec
->autocfg
.dig_outs
; i
++) {
10459 err
= snd_hda_get_connections(codec
,
10460 spec
->autocfg
.dig_out_pins
[i
],
10465 spec
->multiout
.dig_out_nid
= dig_nid
;
10467 spec
->multiout
.slave_dig_outs
= spec
->slave_dig_outs
;
10468 if (i
>= ARRAY_SIZE(spec
->slave_dig_outs
) - 1)
10470 spec
->slave_dig_outs
[i
- 1] = dig_nid
;
10473 if (spec
->autocfg
.dig_in_pin
)
10474 spec
->dig_in_nid
= ALC880_DIGIN_NID
;
10476 if (spec
->kctls
.list
)
10477 add_mixer(spec
, spec
->kctls
.list
);
10479 add_verb(spec
, alc883_auto_init_verbs
);
10480 /* if ADC 0x07 is available, initialize it, too */
10481 if (get_wcaps_type(get_wcaps(codec
, 0x07)) == AC_WID_AUD_IN
)
10482 add_verb(spec
, alc882_adc1_init_verbs
);
10484 spec
->num_mux_defs
= 1;
10485 spec
->input_mux
= &spec
->private_imux
[0];
10487 alc_ssid_check(codec
, 0x15, 0x1b, 0x14, 0);
10489 err
= alc_auto_add_mic_boost(codec
);
10493 return 1; /* config found */
10496 /* additional initialization for auto-configuration model */
10497 static void alc882_auto_init(struct hda_codec
*codec
)
10499 struct alc_spec
*spec
= codec
->spec
;
10500 alc882_auto_init_multi_out(codec
);
10501 alc882_auto_init_hp_out(codec
);
10502 alc882_auto_init_analog_input(codec
);
10503 alc882_auto_init_input_src(codec
);
10504 if (spec
->unsol_event
)
10505 alc_inithook(codec
);
10508 static int patch_alc882(struct hda_codec
*codec
)
10510 struct alc_spec
*spec
;
10511 int err
, board_config
;
10513 spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
10517 codec
->spec
= spec
;
10519 alc_auto_parse_customize_define(codec
);
10521 switch (codec
->vendor_id
) {
10526 /* ALC883 and variants */
10527 alc_fix_pll_init(codec
, 0x20, 0x0a, 10);
10531 board_config
= snd_hda_check_board_config(codec
, ALC882_MODEL_LAST
,
10535 if (board_config
< 0 || board_config
>= ALC882_MODEL_LAST
)
10536 board_config
= snd_hda_check_board_codec_sid_config(codec
,
10537 ALC882_MODEL_LAST
, alc882_models
, alc882_ssid_cfg_tbl
);
10539 if (board_config
< 0 || board_config
>= ALC882_MODEL_LAST
) {
10540 printk(KERN_INFO
"hda_codec: %s: BIOS auto-probing.\n",
10542 board_config
= ALC882_AUTO
;
10545 if (board_config
== ALC882_AUTO
)
10546 alc_pick_fixup(codec
, alc882_fixup_tbl
, alc882_fixups
, 1);
10548 if (board_config
== ALC882_AUTO
) {
10549 /* automatic parse from the BIOS config */
10550 err
= alc882_parse_auto_config(codec
);
10556 "hda_codec: Cannot set up configuration "
10557 "from BIOS. Using base mode...\n");
10558 board_config
= ALC882_3ST_DIG
;
10562 err
= snd_hda_attach_beep_device(codec
, 0x1);
10568 if (board_config
!= ALC882_AUTO
)
10569 setup_preset(codec
, &alc882_presets
[board_config
]);
10571 spec
->stream_analog_playback
= &alc882_pcm_analog_playback
;
10572 spec
->stream_analog_capture
= &alc882_pcm_analog_capture
;
10573 /* FIXME: setup DAC5 */
10574 /*spec->stream_analog_alt_playback = &alc880_pcm_analog_alt_playback;*/
10575 spec
->stream_analog_alt_capture
= &alc880_pcm_analog_alt_capture
;
10577 spec
->stream_digital_playback
= &alc882_pcm_digital_playback
;
10578 spec
->stream_digital_capture
= &alc882_pcm_digital_capture
;
10580 if (!spec
->adc_nids
&& spec
->input_mux
) {
10582 spec
->num_adc_nids
= 0;
10583 for (i
= 0; i
< ARRAY_SIZE(alc882_adc_nids
); i
++) {
10584 const struct hda_input_mux
*imux
= spec
->input_mux
;
10586 hda_nid_t items
[16];
10587 hda_nid_t nid
= alc882_adc_nids
[i
];
10588 unsigned int wcap
= get_wcaps(codec
, nid
);
10590 wcap
= get_wcaps_type(wcap
);
10591 if (wcap
!= AC_WID_AUD_IN
)
10593 spec
->private_adc_nids
[spec
->num_adc_nids
] = nid
;
10594 err
= snd_hda_get_connections(codec
, nid
, &cap
, 1);
10597 err
= snd_hda_get_connections(codec
, cap
, items
,
10598 ARRAY_SIZE(items
));
10601 for (j
= 0; j
< imux
->num_items
; j
++)
10602 if (imux
->items
[j
].index
>= err
)
10604 if (j
< imux
->num_items
)
10606 spec
->private_capsrc_nids
[spec
->num_adc_nids
] = cap
;
10607 spec
->num_adc_nids
++;
10609 spec
->adc_nids
= spec
->private_adc_nids
;
10610 spec
->capsrc_nids
= spec
->private_capsrc_nids
;
10613 set_capture_mixer(codec
);
10615 if (spec
->cdefine
.enable_pcbeep
)
10616 set_beep_amp(spec
, 0x0b, 0x05, HDA_INPUT
);
10618 if (board_config
== ALC882_AUTO
)
10619 alc_pick_fixup(codec
, alc882_fixup_tbl
, alc882_fixups
, 0);
10621 spec
->vmaster_nid
= 0x0c;
10623 codec
->patch_ops
= alc_patch_ops
;
10624 if (board_config
== ALC882_AUTO
)
10625 spec
->init_hook
= alc882_auto_init
;
10626 #ifdef CONFIG_SND_HDA_POWER_SAVE
10627 if (!spec
->loopback
.amplist
)
10628 spec
->loopback
.amplist
= alc882_loopbacks
;
10639 #define ALC262_DIGOUT_NID ALC880_DIGOUT_NID
10640 #define ALC262_DIGIN_NID ALC880_DIGIN_NID
10642 #define alc262_dac_nids alc260_dac_nids
10643 #define alc262_adc_nids alc882_adc_nids
10644 #define alc262_adc_nids_alt alc882_adc_nids_alt
10645 #define alc262_capsrc_nids alc882_capsrc_nids
10646 #define alc262_capsrc_nids_alt alc882_capsrc_nids_alt
10648 #define alc262_modes alc260_modes
10649 #define alc262_capture_source alc882_capture_source
10651 static hda_nid_t alc262_dmic_adc_nids
[1] = {
10656 static hda_nid_t alc262_dmic_capsrc_nids
[1] = { 0x22 };
10658 static struct snd_kcontrol_new alc262_base_mixer
[] = {
10659 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
10660 HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
10661 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
10662 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
10663 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
10664 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
10665 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
10666 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
10667 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
10668 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x01, HDA_INPUT
),
10669 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x01, HDA_INPUT
),
10670 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT
),
10671 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0D, 0x0, HDA_OUTPUT
),
10672 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
10673 HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT
),
10674 HDA_CODEC_MUTE_MONO("Mono Playback Switch", 0x16, 2, 0x0, HDA_OUTPUT
),
10678 /* update HP, line and mono-out pins according to the master switch */
10679 static void alc262_hp_master_update(struct hda_codec
*codec
)
10681 struct alc_spec
*spec
= codec
->spec
;
10682 int val
= spec
->master_sw
;
10684 /* HP & line-out */
10685 snd_hda_codec_write_cache(codec
, 0x1b, 0,
10686 AC_VERB_SET_PIN_WIDGET_CONTROL
,
10688 snd_hda_codec_write_cache(codec
, 0x15, 0,
10689 AC_VERB_SET_PIN_WIDGET_CONTROL
,
10691 /* mono (speaker) depending on the HP jack sense */
10692 val
= val
&& !spec
->jack_present
;
10693 snd_hda_codec_write_cache(codec
, 0x16, 0,
10694 AC_VERB_SET_PIN_WIDGET_CONTROL
,
10695 val
? PIN_OUT
: 0);
10698 static void alc262_hp_bpc_automute(struct hda_codec
*codec
)
10700 struct alc_spec
*spec
= codec
->spec
;
10702 spec
->jack_present
= snd_hda_jack_detect(codec
, 0x1b);
10703 alc262_hp_master_update(codec
);
10706 static void alc262_hp_bpc_unsol_event(struct hda_codec
*codec
, unsigned int res
)
10708 if ((res
>> 26) != ALC880_HP_EVENT
)
10710 alc262_hp_bpc_automute(codec
);
10713 static void alc262_hp_wildwest_automute(struct hda_codec
*codec
)
10715 struct alc_spec
*spec
= codec
->spec
;
10717 spec
->jack_present
= snd_hda_jack_detect(codec
, 0x15);
10718 alc262_hp_master_update(codec
);
10721 static void alc262_hp_wildwest_unsol_event(struct hda_codec
*codec
,
10724 if ((res
>> 26) != ALC880_HP_EVENT
)
10726 alc262_hp_wildwest_automute(codec
);
10729 #define alc262_hp_master_sw_get alc260_hp_master_sw_get
10731 static int alc262_hp_master_sw_put(struct snd_kcontrol
*kcontrol
,
10732 struct snd_ctl_elem_value
*ucontrol
)
10734 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
10735 struct alc_spec
*spec
= codec
->spec
;
10736 int val
= !!*ucontrol
->value
.integer
.value
;
10738 if (val
== spec
->master_sw
)
10740 spec
->master_sw
= val
;
10741 alc262_hp_master_update(codec
);
10745 #define ALC262_HP_MASTER_SWITCH \
10747 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
10748 .name = "Master Playback Switch", \
10749 .info = snd_ctl_boolean_mono_info, \
10750 .get = alc262_hp_master_sw_get, \
10751 .put = alc262_hp_master_sw_put, \
10754 .iface = NID_MAPPING, \
10755 .name = "Master Playback Switch", \
10756 .private_value = 0x15 | (0x16 << 8) | (0x1b << 16), \
10760 static struct snd_kcontrol_new alc262_HP_BPC_mixer
[] = {
10761 ALC262_HP_MASTER_SWITCH
,
10762 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
10763 HDA_CODEC_MUTE("Front Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
10764 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
10765 HDA_CODEC_VOLUME_MONO("Speaker Playback Volume", 0x0e, 2, 0x0,
10767 HDA_CODEC_MUTE_MONO("Speaker Playback Switch", 0x16, 2, 0x0,
10769 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
10770 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
10771 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
10772 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x01, HDA_INPUT
),
10773 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x01, HDA_INPUT
),
10774 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT
),
10775 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
10776 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
10777 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
10778 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
10779 HDA_CODEC_VOLUME("AUX IN Playback Volume", 0x0b, 0x06, HDA_INPUT
),
10780 HDA_CODEC_MUTE("AUX IN Playback Switch", 0x0b, 0x06, HDA_INPUT
),
10784 static struct snd_kcontrol_new alc262_HP_BPC_WildWest_mixer
[] = {
10785 ALC262_HP_MASTER_SWITCH
,
10786 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
10787 HDA_CODEC_MUTE("Front Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
10788 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
10789 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
10790 HDA_CODEC_VOLUME_MONO("Speaker Playback Volume", 0x0e, 2, 0x0,
10792 HDA_CODEC_MUTE_MONO("Speaker Playback Switch", 0x16, 2, 0x0,
10794 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x02, HDA_INPUT
),
10795 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x02, HDA_INPUT
),
10796 HDA_CODEC_VOLUME("Front Mic Boost", 0x1a, 0, HDA_INPUT
),
10797 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x01, HDA_INPUT
),
10798 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x01, HDA_INPUT
),
10799 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
10800 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
10804 static struct snd_kcontrol_new alc262_HP_BPC_WildWest_option_mixer
[] = {
10805 HDA_CODEC_VOLUME("Rear Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
10806 HDA_CODEC_MUTE("Rear Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
10807 HDA_CODEC_VOLUME("Rear Mic Boost", 0x18, 0, HDA_INPUT
),
10811 /* mute/unmute internal speaker according to the hp jack and mute state */
10812 static void alc262_hp_t5735_setup(struct hda_codec
*codec
)
10814 struct alc_spec
*spec
= codec
->spec
;
10816 spec
->autocfg
.hp_pins
[0] = 0x15;
10817 spec
->autocfg
.speaker_pins
[0] = 0x14;
10820 static struct snd_kcontrol_new alc262_hp_t5735_mixer
[] = {
10821 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
10822 HDA_CODEC_MUTE("Speaker Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
10823 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
10824 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
10825 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
10826 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
10827 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
10831 static struct hda_verb alc262_hp_t5735_verbs
[] = {
10832 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
10833 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
10835 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
10839 static struct snd_kcontrol_new alc262_hp_rp5700_mixer
[] = {
10840 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
10841 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
10842 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0e, 0x0, HDA_OUTPUT
),
10843 HDA_CODEC_MUTE("Speaker Playback Switch", 0x16, 0x0, HDA_OUTPUT
),
10844 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x01, HDA_INPUT
),
10845 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x01, HDA_INPUT
),
10849 static struct hda_verb alc262_hp_rp5700_verbs
[] = {
10850 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
10851 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
10852 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
10853 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
10854 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
10855 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0x00},
10856 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x01 << 8))},
10857 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x01 << 8))},
10858 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x00 << 8))},
10859 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x00 << 8))},
10863 static struct hda_input_mux alc262_hp_rp5700_capture_source
= {
10870 /* bind hp and internal speaker mute (with plug check) as master switch */
10871 static void alc262_hippo_master_update(struct hda_codec
*codec
)
10873 struct alc_spec
*spec
= codec
->spec
;
10874 hda_nid_t hp_nid
= spec
->autocfg
.hp_pins
[0];
10875 hda_nid_t line_nid
= spec
->autocfg
.line_out_pins
[0];
10876 hda_nid_t speaker_nid
= spec
->autocfg
.speaker_pins
[0];
10880 mute
= spec
->master_sw
? 0 : HDA_AMP_MUTE
;
10881 snd_hda_codec_amp_stereo(codec
, hp_nid
, HDA_OUTPUT
, 0,
10882 HDA_AMP_MUTE
, mute
);
10883 /* mute internal speaker per jack sense */
10884 if (spec
->jack_present
)
10885 mute
= HDA_AMP_MUTE
;
10887 snd_hda_codec_amp_stereo(codec
, line_nid
, HDA_OUTPUT
, 0,
10888 HDA_AMP_MUTE
, mute
);
10889 if (speaker_nid
&& speaker_nid
!= line_nid
)
10890 snd_hda_codec_amp_stereo(codec
, speaker_nid
, HDA_OUTPUT
, 0,
10891 HDA_AMP_MUTE
, mute
);
10894 #define alc262_hippo_master_sw_get alc262_hp_master_sw_get
10896 static int alc262_hippo_master_sw_put(struct snd_kcontrol
*kcontrol
,
10897 struct snd_ctl_elem_value
*ucontrol
)
10899 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
10900 struct alc_spec
*spec
= codec
->spec
;
10901 int val
= !!*ucontrol
->value
.integer
.value
;
10903 if (val
== spec
->master_sw
)
10905 spec
->master_sw
= val
;
10906 alc262_hippo_master_update(codec
);
10910 #define ALC262_HIPPO_MASTER_SWITCH \
10912 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
10913 .name = "Master Playback Switch", \
10914 .info = snd_ctl_boolean_mono_info, \
10915 .get = alc262_hippo_master_sw_get, \
10916 .put = alc262_hippo_master_sw_put, \
10919 .iface = NID_MAPPING, \
10920 .name = "Master Playback Switch", \
10921 .subdevice = SUBDEV_HP(0) | (SUBDEV_LINE(0) << 8) | \
10922 (SUBDEV_SPEAKER(0) << 16), \
10925 static struct snd_kcontrol_new alc262_hippo_mixer
[] = {
10926 ALC262_HIPPO_MASTER_SWITCH
,
10927 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
10928 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
10929 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
10930 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
10931 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
10932 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
10933 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
10934 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
10935 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x01, HDA_INPUT
),
10936 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x01, HDA_INPUT
),
10937 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT
),
10938 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
10942 static struct snd_kcontrol_new alc262_hippo1_mixer
[] = {
10943 HDA_CODEC_VOLUME("Master Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
10944 ALC262_HIPPO_MASTER_SWITCH
,
10945 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
10946 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
10947 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
10948 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
10949 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
10950 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
10951 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
10952 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x01, HDA_INPUT
),
10953 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x01, HDA_INPUT
),
10954 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT
),
10958 /* mute/unmute internal speaker according to the hp jack and mute state */
10959 static void alc262_hippo_automute(struct hda_codec
*codec
)
10961 struct alc_spec
*spec
= codec
->spec
;
10962 hda_nid_t hp_nid
= spec
->autocfg
.hp_pins
[0];
10964 spec
->jack_present
= snd_hda_jack_detect(codec
, hp_nid
);
10965 alc262_hippo_master_update(codec
);
10968 static void alc262_hippo_unsol_event(struct hda_codec
*codec
, unsigned int res
)
10970 if ((res
>> 26) != ALC880_HP_EVENT
)
10972 alc262_hippo_automute(codec
);
10975 static void alc262_hippo_setup(struct hda_codec
*codec
)
10977 struct alc_spec
*spec
= codec
->spec
;
10979 spec
->autocfg
.hp_pins
[0] = 0x15;
10980 spec
->autocfg
.speaker_pins
[0] = 0x14;
10983 static void alc262_hippo1_setup(struct hda_codec
*codec
)
10985 struct alc_spec
*spec
= codec
->spec
;
10987 spec
->autocfg
.hp_pins
[0] = 0x1b;
10988 spec
->autocfg
.speaker_pins
[0] = 0x14;
10992 static struct snd_kcontrol_new alc262_sony_mixer
[] = {
10993 HDA_CODEC_VOLUME("Master Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
10994 ALC262_HIPPO_MASTER_SWITCH
,
10995 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
10996 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
10997 HDA_CODEC_VOLUME("ATAPI Mic Playback Volume", 0x0b, 0x01, HDA_INPUT
),
10998 HDA_CODEC_MUTE("ATAPI Mic Playback Switch", 0x0b, 0x01, HDA_INPUT
),
11002 static struct snd_kcontrol_new alc262_benq_t31_mixer
[] = {
11003 HDA_CODEC_VOLUME("Master Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
11004 ALC262_HIPPO_MASTER_SWITCH
,
11005 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
11006 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
11007 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
11008 HDA_CODEC_VOLUME("ATAPI Mic Playback Volume", 0x0b, 0x01, HDA_INPUT
),
11009 HDA_CODEC_MUTE("ATAPI Mic Playback Switch", 0x0b, 0x01, HDA_INPUT
),
11013 static struct snd_kcontrol_new alc262_tyan_mixer
[] = {
11014 HDA_CODEC_VOLUME("Master Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
11015 HDA_BIND_MUTE("Master Playback Switch", 0x0c, 2, HDA_INPUT
),
11016 HDA_CODEC_VOLUME("Aux Playback Volume", 0x0b, 0x06, HDA_INPUT
),
11017 HDA_CODEC_MUTE("Aux Playback Switch", 0x0b, 0x06, HDA_INPUT
),
11018 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
11019 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
11020 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
11021 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
11022 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
11023 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x01, HDA_INPUT
),
11024 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x01, HDA_INPUT
),
11025 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT
),
11029 static struct hda_verb alc262_tyan_verbs
[] = {
11030 /* Headphone automute */
11031 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
11032 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
11033 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00},
11035 /* P11 AUX_IN, white 4-pin connector */
11036 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
11037 {0x14, AC_VERB_SET_CONFIG_DEFAULT_BYTES_1
, 0xe1},
11038 {0x14, AC_VERB_SET_CONFIG_DEFAULT_BYTES_2
, 0x93},
11039 {0x14, AC_VERB_SET_CONFIG_DEFAULT_BYTES_3
, 0x19},
11044 /* unsolicited event for HP jack sensing */
11045 static void alc262_tyan_setup(struct hda_codec
*codec
)
11047 struct alc_spec
*spec
= codec
->spec
;
11049 spec
->autocfg
.hp_pins
[0] = 0x1b;
11050 spec
->autocfg
.speaker_pins
[0] = 0x15;
11054 #define alc262_capture_mixer alc882_capture_mixer
11055 #define alc262_capture_alt_mixer alc882_capture_alt_mixer
11058 * generic initialization of ADC, input mixers and output mixers
11060 static struct hda_verb alc262_init_verbs
[] = {
11062 * Unmute ADC0-2 and set the default input to mic-in
11064 {0x07, AC_VERB_SET_CONNECT_SEL
, 0x00},
11065 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
11066 {0x08, AC_VERB_SET_CONNECT_SEL
, 0x00},
11067 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
11068 {0x09, AC_VERB_SET_CONNECT_SEL
, 0x00},
11069 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
11071 /* Mute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
11073 * Note: PASD motherboards uses the Line In 2 as the input for
11074 * front panel mic (mic 2)
11076 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
11077 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
11078 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
11079 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
11080 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
11081 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
11084 * Set up output mixers (0x0c - 0x0e)
11086 /* set vol=0 to output mixers */
11087 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
11088 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
11089 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
11090 /* set up input amps for analog loopback */
11091 /* Amp Indices: DAC = 0, mixer = 1 */
11092 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
11093 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
11094 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
11095 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
11096 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
11097 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
11099 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40},
11100 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0xc0},
11101 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40},
11102 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24},
11103 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20},
11104 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20},
11106 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, 0x0000},
11107 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, 0x0000},
11108 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, 0x0000},
11109 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, 0x0000},
11110 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, 0x0000},
11112 {0x14, AC_VERB_SET_CONNECT_SEL
, 0x00},
11113 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x01},
11115 /* FIXME: use matrix-type input source selection */
11116 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
11117 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
11118 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
11119 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x03 << 8))},
11120 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x02 << 8))},
11121 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x04 << 8))},
11123 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
11124 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x03 << 8))},
11125 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x02 << 8))},
11126 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x04 << 8))},
11128 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
11129 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x03 << 8))},
11130 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x02 << 8))},
11131 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x04 << 8))},
11136 static struct hda_verb alc262_eapd_verbs
[] = {
11137 {0x14, AC_VERB_SET_EAPD_BTLENABLE
, 2},
11138 {0x15, AC_VERB_SET_EAPD_BTLENABLE
, 2},
11142 static struct hda_verb alc262_hippo1_unsol_verbs
[] = {
11143 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0xc0},
11144 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0x00},
11145 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, 0x0000},
11147 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
11148 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
11152 static struct hda_verb alc262_sony_unsol_verbs
[] = {
11153 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0xc0},
11154 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00},
11155 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24}, // Front Mic
11157 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
11158 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
11162 static struct snd_kcontrol_new alc262_toshiba_s06_mixer
[] = {
11163 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
11164 HDA_CODEC_MUTE("Speaker Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
11165 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
11166 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
11167 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
11171 static struct hda_verb alc262_toshiba_s06_verbs
[] = {
11172 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
11173 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
11174 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
11175 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00},
11176 {0x22, AC_VERB_SET_CONNECT_SEL
, 0x09},
11177 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24},
11178 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
11179 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
11183 static void alc262_toshiba_s06_setup(struct hda_codec
*codec
)
11185 struct alc_spec
*spec
= codec
->spec
;
11187 spec
->autocfg
.hp_pins
[0] = 0x15;
11188 spec
->autocfg
.speaker_pins
[0] = 0x14;
11189 spec
->ext_mic
.pin
= 0x18;
11190 spec
->ext_mic
.mux_idx
= 0;
11191 spec
->int_mic
.pin
= 0x12;
11192 spec
->int_mic
.mux_idx
= 9;
11193 spec
->auto_mic
= 1;
11199 * 0x16 = internal speaker
11200 * 0x18 = external mic
11203 static struct snd_kcontrol_new alc262_nec_mixer
[] = {
11204 HDA_CODEC_VOLUME_MONO("Speaker Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT
),
11205 HDA_CODEC_MUTE_MONO("Speaker Playback Switch", 0x16, 0, 0x0, HDA_OUTPUT
),
11207 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
11208 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
11209 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
11211 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
11212 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
11216 static struct hda_verb alc262_nec_verbs
[] = {
11217 /* Unmute Speaker */
11218 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
11221 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
11222 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
11224 /* External mic to headphone */
11225 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
11226 /* External mic to speaker */
11227 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
11233 * 0x14 = headphone/spdif-out, 0x15 = internal speaker,
11234 * 0x1b = port replicator headphone out
11237 #define ALC_HP_EVENT 0x37
11239 static struct hda_verb alc262_fujitsu_unsol_verbs
[] = {
11240 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC_HP_EVENT
},
11241 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
11242 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC_HP_EVENT
},
11243 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
11247 static struct hda_verb alc262_lenovo_3000_unsol_verbs
[] = {
11248 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC_HP_EVENT
},
11249 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
11253 static struct hda_verb alc262_lenovo_3000_init_verbs
[] = {
11254 /* Front Mic pin: input vref at 50% */
11255 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF50
},
11256 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
11260 static struct hda_input_mux alc262_fujitsu_capture_source
= {
11264 { "Int Mic", 0x1 },
11269 static struct hda_input_mux alc262_HP_capture_source
= {
11273 { "Front Mic", 0x1 },
11280 static struct hda_input_mux alc262_HP_D7000_capture_source
= {
11284 { "Front Mic", 0x2 },
11290 /* mute/unmute internal speaker according to the hp jacks and mute state */
11291 static void alc262_fujitsu_automute(struct hda_codec
*codec
, int force
)
11293 struct alc_spec
*spec
= codec
->spec
;
11296 if (force
|| !spec
->sense_updated
) {
11297 spec
->jack_present
= snd_hda_jack_detect(codec
, 0x14) ||
11298 snd_hda_jack_detect(codec
, 0x1b);
11299 spec
->sense_updated
= 1;
11301 /* unmute internal speaker only if both HPs are unplugged and
11302 * master switch is on
11304 if (spec
->jack_present
)
11305 mute
= HDA_AMP_MUTE
;
11307 mute
= snd_hda_codec_amp_read(codec
, 0x14, 0, HDA_OUTPUT
, 0);
11308 snd_hda_codec_amp_stereo(codec
, 0x15, HDA_OUTPUT
, 0,
11309 HDA_AMP_MUTE
, mute
);
11312 /* unsolicited event for HP jack sensing */
11313 static void alc262_fujitsu_unsol_event(struct hda_codec
*codec
,
11316 if ((res
>> 26) != ALC_HP_EVENT
)
11318 alc262_fujitsu_automute(codec
, 1);
11321 static void alc262_fujitsu_init_hook(struct hda_codec
*codec
)
11323 alc262_fujitsu_automute(codec
, 1);
11326 /* bind volumes of both NID 0x0c and 0x0d */
11327 static struct hda_bind_ctls alc262_fujitsu_bind_master_vol
= {
11328 .ops
= &snd_hda_bind_vol
,
11330 HDA_COMPOSE_AMP_VAL(0x0c, 3, 0, HDA_OUTPUT
),
11331 HDA_COMPOSE_AMP_VAL(0x0d, 3, 0, HDA_OUTPUT
),
11336 /* mute/unmute internal speaker according to the hp jack and mute state */
11337 static void alc262_lenovo_3000_automute(struct hda_codec
*codec
, int force
)
11339 struct alc_spec
*spec
= codec
->spec
;
11342 if (force
|| !spec
->sense_updated
) {
11343 spec
->jack_present
= snd_hda_jack_detect(codec
, 0x1b);
11344 spec
->sense_updated
= 1;
11346 if (spec
->jack_present
) {
11347 /* mute internal speaker */
11348 snd_hda_codec_amp_stereo(codec
, 0x14, HDA_OUTPUT
, 0,
11349 HDA_AMP_MUTE
, HDA_AMP_MUTE
);
11350 snd_hda_codec_amp_stereo(codec
, 0x16, HDA_OUTPUT
, 0,
11351 HDA_AMP_MUTE
, HDA_AMP_MUTE
);
11353 /* unmute internal speaker if necessary */
11354 mute
= snd_hda_codec_amp_read(codec
, 0x1b, 0, HDA_OUTPUT
, 0);
11355 snd_hda_codec_amp_stereo(codec
, 0x14, HDA_OUTPUT
, 0,
11356 HDA_AMP_MUTE
, mute
);
11357 snd_hda_codec_amp_stereo(codec
, 0x16, HDA_OUTPUT
, 0,
11358 HDA_AMP_MUTE
, mute
);
11362 /* unsolicited event for HP jack sensing */
11363 static void alc262_lenovo_3000_unsol_event(struct hda_codec
*codec
,
11366 if ((res
>> 26) != ALC_HP_EVENT
)
11368 alc262_lenovo_3000_automute(codec
, 1);
11371 static int amp_stereo_mute_update(struct hda_codec
*codec
, hda_nid_t nid
,
11372 int dir
, int idx
, long *valp
)
11376 for (i
= 0; i
< 2; i
++, valp
++)
11377 change
|= snd_hda_codec_amp_update(codec
, nid
, i
, dir
, idx
,
11379 *valp
? 0 : HDA_AMP_MUTE
);
11383 /* bind hp and internal speaker mute (with plug check) */
11384 static int alc262_fujitsu_master_sw_put(struct snd_kcontrol
*kcontrol
,
11385 struct snd_ctl_elem_value
*ucontrol
)
11387 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
11388 long *valp
= ucontrol
->value
.integer
.value
;
11391 change
= amp_stereo_mute_update(codec
, 0x14, HDA_OUTPUT
, 0, valp
);
11392 change
|= amp_stereo_mute_update(codec
, 0x1b, HDA_OUTPUT
, 0, valp
);
11394 alc262_fujitsu_automute(codec
, 0);
11398 static struct snd_kcontrol_new alc262_fujitsu_mixer
[] = {
11399 HDA_BIND_VOL("Master Playback Volume", &alc262_fujitsu_bind_master_vol
),
11401 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
11402 .name
= "Master Playback Switch",
11403 .subdevice
= HDA_SUBDEV_AMP_FLAG
,
11404 .info
= snd_hda_mixer_amp_switch_info
,
11405 .get
= snd_hda_mixer_amp_switch_get
,
11406 .put
= alc262_fujitsu_master_sw_put
,
11407 .private_value
= HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT
),
11410 .iface
= NID_MAPPING
,
11411 .name
= "Master Playback Switch",
11412 .private_value
= 0x1b,
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("Mic Boost", 0x18, 0, HDA_INPUT
),
11417 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
11418 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
11419 HDA_CODEC_VOLUME("Int Mic Boost", 0x19, 0, HDA_INPUT
),
11420 HDA_CODEC_VOLUME("Int Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
11421 HDA_CODEC_MUTE("Int Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
11425 /* bind hp and internal speaker mute (with plug check) */
11426 static int alc262_lenovo_3000_master_sw_put(struct snd_kcontrol
*kcontrol
,
11427 struct snd_ctl_elem_value
*ucontrol
)
11429 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
11430 long *valp
= ucontrol
->value
.integer
.value
;
11433 change
= amp_stereo_mute_update(codec
, 0x1b, HDA_OUTPUT
, 0, valp
);
11435 alc262_lenovo_3000_automute(codec
, 0);
11439 static struct snd_kcontrol_new alc262_lenovo_3000_mixer
[] = {
11440 HDA_BIND_VOL("Master Playback Volume", &alc262_fujitsu_bind_master_vol
),
11442 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
11443 .name
= "Master Playback Switch",
11444 .subdevice
= HDA_SUBDEV_AMP_FLAG
,
11445 .info
= snd_hda_mixer_amp_switch_info
,
11446 .get
= snd_hda_mixer_amp_switch_get
,
11447 .put
= alc262_lenovo_3000_master_sw_put
,
11448 .private_value
= HDA_COMPOSE_AMP_VAL(0x1b, 3, 0, HDA_OUTPUT
),
11450 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
11451 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
11452 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
11453 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
11454 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
11455 HDA_CODEC_VOLUME("Int Mic Boost", 0x19, 0, HDA_INPUT
),
11456 HDA_CODEC_VOLUME("Int Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
11457 HDA_CODEC_MUTE("Int Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
11461 static struct snd_kcontrol_new alc262_toshiba_rx1_mixer
[] = {
11462 HDA_BIND_VOL("Master Playback Volume", &alc262_fujitsu_bind_master_vol
),
11463 ALC262_HIPPO_MASTER_SWITCH
,
11464 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
11465 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
11466 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
11467 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x01, HDA_INPUT
),
11468 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x01, HDA_INPUT
),
11469 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT
),
11473 /* additional init verbs for Benq laptops */
11474 static struct hda_verb alc262_EAPD_verbs
[] = {
11475 {0x20, AC_VERB_SET_COEF_INDEX
, 0x07},
11476 {0x20, AC_VERB_SET_PROC_COEF
, 0x3070},
11480 static struct hda_verb alc262_benq_t31_EAPD_verbs
[] = {
11481 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00},
11482 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24},
11484 {0x20, AC_VERB_SET_COEF_INDEX
, 0x07},
11485 {0x20, AC_VERB_SET_PROC_COEF
, 0x3050},
11489 /* Samsung Q1 Ultra Vista model setup */
11490 static struct snd_kcontrol_new alc262_ultra_mixer
[] = {
11491 HDA_CODEC_VOLUME("Master Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
11492 HDA_BIND_MUTE("Master Playback Switch", 0x0c, 2, HDA_INPUT
),
11493 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x01, HDA_INPUT
),
11494 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x01, HDA_INPUT
),
11495 HDA_CODEC_VOLUME("Mic Boost", 0x19, 0, HDA_INPUT
),
11496 HDA_CODEC_VOLUME("Headphone Mic Boost", 0x15, 0, HDA_INPUT
),
11500 static struct hda_verb alc262_ultra_verbs
[] = {
11502 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
11503 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
11504 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
11506 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
11507 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
11508 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
11509 {0x14, AC_VERB_SET_CONNECT_SEL
, 0x00},
11511 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
11512 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
11513 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
11514 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00},
11515 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
11517 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
11518 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
11519 /* ADC, choose mic */
11520 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
11521 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
11522 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
11523 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
11524 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
11525 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
11526 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(5)},
11527 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(6)},
11528 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(7)},
11529 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(8)},
11533 /* mute/unmute internal speaker according to the hp jack and mute state */
11534 static void alc262_ultra_automute(struct hda_codec
*codec
)
11536 struct alc_spec
*spec
= codec
->spec
;
11540 /* auto-mute only when HP is used as HP */
11541 if (!spec
->cur_mux
[0]) {
11542 spec
->jack_present
= snd_hda_jack_detect(codec
, 0x15);
11543 if (spec
->jack_present
)
11544 mute
= HDA_AMP_MUTE
;
11546 /* mute/unmute internal speaker */
11547 snd_hda_codec_amp_stereo(codec
, 0x14, HDA_OUTPUT
, 0,
11548 HDA_AMP_MUTE
, mute
);
11549 /* mute/unmute HP */
11550 snd_hda_codec_amp_stereo(codec
, 0x15, HDA_OUTPUT
, 0,
11551 HDA_AMP_MUTE
, mute
? 0 : HDA_AMP_MUTE
);
11554 /* unsolicited event for HP jack sensing */
11555 static void alc262_ultra_unsol_event(struct hda_codec
*codec
,
11558 if ((res
>> 26) != ALC880_HP_EVENT
)
11560 alc262_ultra_automute(codec
);
11563 static struct hda_input_mux alc262_ultra_capture_source
= {
11567 { "Headphone", 0x7 },
11571 static int alc262_ultra_mux_enum_put(struct snd_kcontrol
*kcontrol
,
11572 struct snd_ctl_elem_value
*ucontrol
)
11574 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
11575 struct alc_spec
*spec
= codec
->spec
;
11578 ret
= alc_mux_enum_put(kcontrol
, ucontrol
);
11581 /* reprogram the HP pin as mic or HP according to the input source */
11582 snd_hda_codec_write_cache(codec
, 0x15, 0,
11583 AC_VERB_SET_PIN_WIDGET_CONTROL
,
11584 spec
->cur_mux
[0] ? PIN_VREF80
: PIN_HP
);
11585 alc262_ultra_automute(codec
); /* mute/unmute HP */
11589 static struct snd_kcontrol_new alc262_ultra_capture_mixer
[] = {
11590 HDA_CODEC_VOLUME("Capture Volume", 0x07, 0x0, HDA_INPUT
),
11591 HDA_CODEC_MUTE("Capture Switch", 0x07, 0x0, HDA_INPUT
),
11593 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
11594 .name
= "Capture Source",
11595 .info
= alc_mux_enum_info
,
11596 .get
= alc_mux_enum_get
,
11597 .put
= alc262_ultra_mux_enum_put
,
11600 .iface
= NID_MAPPING
,
11601 .name
= "Capture Source",
11602 .private_value
= 0x15,
11607 /* We use two mixers depending on the output pin; 0x16 is a mono output
11608 * and thus it's bound with a different mixer.
11609 * This function returns which mixer amp should be used.
11611 static int alc262_check_volbit(hda_nid_t nid
)
11615 else if (nid
== 0x16)
11621 static int alc262_add_out_vol_ctl(struct alc_spec
*spec
, hda_nid_t nid
,
11622 const char *pfx
, int *vbits
)
11627 vbit
= alc262_check_volbit(nid
);
11630 if (*vbits
& vbit
) /* a volume control for this mixer already there */
11634 val
= HDA_COMPOSE_AMP_VAL(0x0e, 2, 0, HDA_OUTPUT
);
11636 val
= HDA_COMPOSE_AMP_VAL(0x0c, 3, 0, HDA_OUTPUT
);
11637 return add_pb_vol_ctrl(spec
, ALC_CTL_WIDGET_VOL
, pfx
, val
);
11640 static int alc262_add_out_sw_ctl(struct alc_spec
*spec
, hda_nid_t nid
,
11648 val
= HDA_COMPOSE_AMP_VAL(nid
, 2, 0, HDA_OUTPUT
);
11650 val
= HDA_COMPOSE_AMP_VAL(nid
, 3, 0, HDA_OUTPUT
);
11651 return add_pb_sw_ctrl(spec
, ALC_CTL_WIDGET_MUTE
, pfx
, val
);
11654 /* add playback controls from the parsed DAC table */
11655 static int alc262_auto_create_multi_out_ctls(struct alc_spec
*spec
,
11656 const struct auto_pin_cfg
*cfg
)
11662 spec
->multiout
.num_dacs
= 1; /* only use one dac */
11663 spec
->multiout
.dac_nids
= spec
->private_dac_nids
;
11664 spec
->multiout
.dac_nids
[0] = 2;
11666 if (!cfg
->speaker_pins
[0] && !cfg
->hp_pins
[0])
11668 else if (cfg
->line_out_type
== AUTO_PIN_SPEAKER_OUT
)
11672 err
= alc262_add_out_sw_ctl(spec
, cfg
->line_out_pins
[0], pfx
);
11675 err
= alc262_add_out_sw_ctl(spec
, cfg
->speaker_pins
[0], "Speaker");
11678 err
= alc262_add_out_sw_ctl(spec
, cfg
->hp_pins
[0], "Headphone");
11682 vbits
= alc262_check_volbit(cfg
->line_out_pins
[0]) |
11683 alc262_check_volbit(cfg
->speaker_pins
[0]) |
11684 alc262_check_volbit(cfg
->hp_pins
[0]);
11685 if (vbits
== 1 || vbits
== 2)
11686 pfx
= "Master"; /* only one mixer is used */
11687 else if (cfg
->line_out_type
== AUTO_PIN_SPEAKER_OUT
)
11692 err
= alc262_add_out_vol_ctl(spec
, cfg
->line_out_pins
[0], pfx
, &vbits
);
11695 err
= alc262_add_out_vol_ctl(spec
, cfg
->speaker_pins
[0], "Speaker",
11699 err
= alc262_add_out_vol_ctl(spec
, cfg
->hp_pins
[0], "Headphone",
11706 #define alc262_auto_create_input_ctls \
11707 alc882_auto_create_input_ctls
11710 * generic initialization of ADC, input mixers and output mixers
11712 static struct hda_verb alc262_volume_init_verbs
[] = {
11714 * Unmute ADC0-2 and set the default input to mic-in
11716 {0x07, AC_VERB_SET_CONNECT_SEL
, 0x00},
11717 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
11718 {0x08, AC_VERB_SET_CONNECT_SEL
, 0x00},
11719 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
11720 {0x09, AC_VERB_SET_CONNECT_SEL
, 0x00},
11721 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
11723 /* Mute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
11725 * Note: PASD motherboards uses the Line In 2 as the input for
11726 * front panel mic (mic 2)
11728 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
11729 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
11730 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
11731 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
11732 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
11733 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
11736 * Set up output mixers (0x0c - 0x0f)
11738 /* set vol=0 to output mixers */
11739 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
11740 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
11741 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
11743 /* set up input amps for analog loopback */
11744 /* Amp Indices: DAC = 0, mixer = 1 */
11745 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
11746 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
11747 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
11748 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
11749 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
11750 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
11752 /* FIXME: use matrix-type input source selection */
11753 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
11754 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
11755 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
11756 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x03 << 8))},
11757 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x02 << 8))},
11758 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x04 << 8))},
11760 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
11761 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x03 << 8))},
11762 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x02 << 8))},
11763 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x04 << 8))},
11765 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
11766 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x03 << 8))},
11767 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x02 << 8))},
11768 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x04 << 8))},
11773 static struct hda_verb alc262_HP_BPC_init_verbs
[] = {
11775 * Unmute ADC0-2 and set the default input to mic-in
11777 {0x07, AC_VERB_SET_CONNECT_SEL
, 0x00},
11778 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
11779 {0x08, AC_VERB_SET_CONNECT_SEL
, 0x00},
11780 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
11781 {0x09, AC_VERB_SET_CONNECT_SEL
, 0x00},
11782 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
11784 /* Mute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
11786 * Note: PASD motherboards uses the Line In 2 as the input for
11787 * front panel mic (mic 2)
11789 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
11790 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
11791 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
11792 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
11793 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
11794 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
11795 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(5)},
11796 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(6)},
11799 * Set up output mixers (0x0c - 0x0e)
11801 /* set vol=0 to output mixers */
11802 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
11803 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
11804 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
11806 /* set up input amps for analog loopback */
11807 /* Amp Indices: DAC = 0, mixer = 1 */
11808 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
11809 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
11810 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
11811 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
11812 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
11813 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
11815 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
11816 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
11817 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
11819 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
11820 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
11822 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0x00},
11823 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00},
11825 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20},
11826 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24},
11827 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24},
11828 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20},
11829 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20},
11831 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, 0x7000 },
11832 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, 0x7000 },
11833 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, 0x7000 },
11834 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, 0x7000 },
11835 {0x1c, AC_VERB_SET_AMP_GAIN_MUTE
, 0x7000 },
11836 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE
, 0x7000 },
11839 /* FIXME: use matrix-type input source selection */
11840 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 0b, 12 */
11841 /* Input mixer1: only unmute Mic */
11842 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
11843 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x01 << 8))},
11844 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x02 << 8))},
11845 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x03 << 8))},
11846 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x04 << 8))},
11847 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x05 << 8))},
11848 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x06 << 8))},
11849 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x07 << 8))},
11850 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x08 << 8))},
11852 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
11853 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x01 << 8))},
11854 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x02 << 8))},
11855 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x03 << 8))},
11856 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x04 << 8))},
11857 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x05 << 8))},
11858 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x06 << 8))},
11859 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x07 << 8))},
11860 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x08 << 8))},
11862 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
11863 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x01 << 8))},
11864 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x02 << 8))},
11865 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x03 << 8))},
11866 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x04 << 8))},
11867 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x05 << 8))},
11868 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x06 << 8))},
11869 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x07 << 8))},
11870 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x08 << 8))},
11872 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
11877 static struct hda_verb alc262_HP_BPC_WildWest_init_verbs
[] = {
11879 * Unmute ADC0-2 and set the default input to mic-in
11881 {0x07, AC_VERB_SET_CONNECT_SEL
, 0x00},
11882 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
11883 {0x08, AC_VERB_SET_CONNECT_SEL
, 0x00},
11884 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
11885 {0x09, AC_VERB_SET_CONNECT_SEL
, 0x00},
11886 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
11888 /* Mute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
11890 * Note: PASD motherboards uses the Line In 2 as the input for front
11891 * panel mic (mic 2)
11893 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
11894 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
11895 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
11896 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
11897 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
11898 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
11899 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(5)},
11900 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(6)},
11901 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(7)},
11903 * Set up output mixers (0x0c - 0x0e)
11905 /* set vol=0 to output mixers */
11906 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
11907 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
11908 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
11910 /* set up input amps for analog loopback */
11911 /* Amp Indices: DAC = 0, mixer = 1 */
11912 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
11913 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
11914 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
11915 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
11916 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
11917 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
11920 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
}, /* HP */
11921 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
}, /* Mono */
11922 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
}, /* rear MIC */
11923 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
}, /* Line in */
11924 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
}, /* Front MIC */
11925 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
}, /* Line out */
11926 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
}, /* CD in */
11928 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
11929 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
11931 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0x00},
11932 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x01},
11934 /* {0x14, AC_VERB_SET_AMP_GAIN_MUTE, 0x7023 }, */
11935 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, 0x7000 },
11936 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, 0x7000 },
11937 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, 0x7023 },
11938 {0x1c, AC_VERB_SET_AMP_GAIN_MUTE
, 0x7000 },
11939 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE
, 0x7000 },
11941 /* FIXME: use matrix-type input source selection */
11942 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
11943 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
11944 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))}, /*rear MIC*/
11945 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x01 << 8))}, /*Line in*/
11946 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x02 << 8))}, /*F MIC*/
11947 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x03 << 8))}, /*Front*/
11948 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x04 << 8))}, /*CD*/
11949 /* {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x06 << 8))}, */
11950 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x07 << 8))}, /*HP*/
11952 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
11953 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x01 << 8))},
11954 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x02 << 8))},
11955 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x03 << 8))},
11956 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x04 << 8))},
11957 /* {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x06 << 8))}, */
11958 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x07 << 8))},
11960 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
11961 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x01 << 8))},
11962 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x02 << 8))},
11963 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x03 << 8))},
11964 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x04 << 8))},
11965 /* {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x06 << 8))}, */
11966 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x07 << 8))},
11968 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
11973 static struct hda_verb alc262_toshiba_rx1_unsol_verbs
[] = {
11975 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
}, /* Front Speaker */
11976 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
11977 {0x14, AC_VERB_SET_CONNECT_SEL
, 0x01},
11979 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
}, /* MIC jack */
11980 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
}, /* Front MIC */
11981 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0) },
11982 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0) },
11984 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
}, /* HP jack */
11985 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00},
11986 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
11991 #ifdef CONFIG_SND_HDA_POWER_SAVE
11992 #define alc262_loopbacks alc880_loopbacks
11995 /* pcm configuration: identical with ALC880 */
11996 #define alc262_pcm_analog_playback alc880_pcm_analog_playback
11997 #define alc262_pcm_analog_capture alc880_pcm_analog_capture
11998 #define alc262_pcm_digital_playback alc880_pcm_digital_playback
11999 #define alc262_pcm_digital_capture alc880_pcm_digital_capture
12002 * BIOS auto configuration
12004 static int alc262_parse_auto_config(struct hda_codec
*codec
)
12006 struct alc_spec
*spec
= codec
->spec
;
12008 static hda_nid_t alc262_ignore
[] = { 0x1d, 0 };
12010 err
= snd_hda_parse_pin_def_config(codec
, &spec
->autocfg
,
12014 if (!spec
->autocfg
.line_outs
) {
12015 if (spec
->autocfg
.dig_outs
|| spec
->autocfg
.dig_in_pin
) {
12016 spec
->multiout
.max_channels
= 2;
12017 spec
->no_analog
= 1;
12020 return 0; /* can't find valid BIOS pin config */
12022 err
= alc262_auto_create_multi_out_ctls(spec
, &spec
->autocfg
);
12025 err
= alc262_auto_create_input_ctls(codec
, &spec
->autocfg
);
12029 spec
->multiout
.max_channels
= spec
->multiout
.num_dacs
* 2;
12032 if (spec
->autocfg
.dig_outs
) {
12033 spec
->multiout
.dig_out_nid
= ALC262_DIGOUT_NID
;
12034 spec
->dig_out_type
= spec
->autocfg
.dig_out_type
[0];
12036 if (spec
->autocfg
.dig_in_pin
)
12037 spec
->dig_in_nid
= ALC262_DIGIN_NID
;
12039 if (spec
->kctls
.list
)
12040 add_mixer(spec
, spec
->kctls
.list
);
12042 add_verb(spec
, alc262_volume_init_verbs
);
12043 spec
->num_mux_defs
= 1;
12044 spec
->input_mux
= &spec
->private_imux
[0];
12046 err
= alc_auto_add_mic_boost(codec
);
12050 alc_ssid_check(codec
, 0x15, 0x1b, 0x14, 0);
12055 #define alc262_auto_init_multi_out alc882_auto_init_multi_out
12056 #define alc262_auto_init_hp_out alc882_auto_init_hp_out
12057 #define alc262_auto_init_analog_input alc882_auto_init_analog_input
12058 #define alc262_auto_init_input_src alc882_auto_init_input_src
12061 /* init callback for auto-configuration model -- overriding the default init */
12062 static void alc262_auto_init(struct hda_codec
*codec
)
12064 struct alc_spec
*spec
= codec
->spec
;
12065 alc262_auto_init_multi_out(codec
);
12066 alc262_auto_init_hp_out(codec
);
12067 alc262_auto_init_analog_input(codec
);
12068 alc262_auto_init_input_src(codec
);
12069 if (spec
->unsol_event
)
12070 alc_inithook(codec
);
12074 * configuration and preset
12076 static const char *alc262_models
[ALC262_MODEL_LAST
] = {
12077 [ALC262_BASIC
] = "basic",
12078 [ALC262_HIPPO
] = "hippo",
12079 [ALC262_HIPPO_1
] = "hippo_1",
12080 [ALC262_FUJITSU
] = "fujitsu",
12081 [ALC262_HP_BPC
] = "hp-bpc",
12082 [ALC262_HP_BPC_D7000_WL
]= "hp-bpc-d7000",
12083 [ALC262_HP_TC_T5735
] = "hp-tc-t5735",
12084 [ALC262_HP_RP5700
] = "hp-rp5700",
12085 [ALC262_BENQ_ED8
] = "benq",
12086 [ALC262_BENQ_T31
] = "benq-t31",
12087 [ALC262_SONY_ASSAMD
] = "sony-assamd",
12088 [ALC262_TOSHIBA_S06
] = "toshiba-s06",
12089 [ALC262_TOSHIBA_RX1
] = "toshiba-rx1",
12090 [ALC262_ULTRA
] = "ultra",
12091 [ALC262_LENOVO_3000
] = "lenovo-3000",
12092 [ALC262_NEC
] = "nec",
12093 [ALC262_TYAN
] = "tyan",
12094 [ALC262_AUTO
] = "auto",
12097 static struct snd_pci_quirk alc262_cfg_tbl
[] = {
12098 SND_PCI_QUIRK(0x1002, 0x437b, "Hippo", ALC262_HIPPO
),
12099 SND_PCI_QUIRK(0x1033, 0x8895, "NEC Versa S9100", ALC262_NEC
),
12100 SND_PCI_QUIRK_MASK(0x103c, 0xff00, 0x1200, "HP xw series",
12102 SND_PCI_QUIRK_MASK(0x103c, 0xff00, 0x1300, "HP xw series",
12104 SND_PCI_QUIRK_MASK(0x103c, 0xff00, 0x1700, "HP xw series",
12106 SND_PCI_QUIRK(0x103c, 0x2800, "HP D7000", ALC262_HP_BPC_D7000_WL
),
12107 SND_PCI_QUIRK(0x103c, 0x2801, "HP D7000", ALC262_HP_BPC_D7000_WF
),
12108 SND_PCI_QUIRK(0x103c, 0x2802, "HP D7000", ALC262_HP_BPC_D7000_WL
),
12109 SND_PCI_QUIRK(0x103c, 0x2803, "HP D7000", ALC262_HP_BPC_D7000_WF
),
12110 SND_PCI_QUIRK(0x103c, 0x2804, "HP D7000", ALC262_HP_BPC_D7000_WL
),
12111 SND_PCI_QUIRK(0x103c, 0x2805, "HP D7000", ALC262_HP_BPC_D7000_WF
),
12112 SND_PCI_QUIRK(0x103c, 0x2806, "HP D7000", ALC262_HP_BPC_D7000_WL
),
12113 SND_PCI_QUIRK(0x103c, 0x2807, "HP D7000", ALC262_HP_BPC_D7000_WF
),
12114 SND_PCI_QUIRK(0x103c, 0x280c, "HP xw4400", ALC262_HP_BPC
),
12115 SND_PCI_QUIRK(0x103c, 0x3014, "HP xw6400", ALC262_HP_BPC
),
12116 SND_PCI_QUIRK(0x103c, 0x3015, "HP xw8400", ALC262_HP_BPC
),
12117 SND_PCI_QUIRK(0x103c, 0x302f, "HP Thin Client T5735",
12118 ALC262_HP_TC_T5735
),
12119 SND_PCI_QUIRK(0x103c, 0x2817, "HP RP5700", ALC262_HP_RP5700
),
12120 SND_PCI_QUIRK(0x104d, 0x1f00, "Sony ASSAMD", ALC262_SONY_ASSAMD
),
12121 SND_PCI_QUIRK(0x104d, 0x8203, "Sony UX-90", ALC262_HIPPO
),
12122 SND_PCI_QUIRK(0x104d, 0x820f, "Sony ASSAMD", ALC262_SONY_ASSAMD
),
12123 SND_PCI_QUIRK(0x104d, 0x9016, "Sony VAIO", ALC262_AUTO
), /* dig-only */
12124 SND_PCI_QUIRK(0x104d, 0x9025, "Sony VAIO Z21MN", ALC262_TOSHIBA_S06
),
12125 SND_PCI_QUIRK(0x104d, 0x9035, "Sony VAIO VGN-FW170J", ALC262_AUTO
),
12126 SND_PCI_QUIRK(0x104d, 0x9047, "Sony VAIO Type G", ALC262_AUTO
),
12127 #if 0 /* disable the quirk since model=auto works better in recent versions */
12128 SND_PCI_QUIRK_MASK(0x104d, 0xff00, 0x9000, "Sony VAIO",
12129 ALC262_SONY_ASSAMD
),
12131 SND_PCI_QUIRK(0x1179, 0x0001, "Toshiba dynabook SS RX1",
12132 ALC262_TOSHIBA_RX1
),
12133 SND_PCI_QUIRK(0x1179, 0xff7b, "Toshiba S06", ALC262_TOSHIBA_S06
),
12134 SND_PCI_QUIRK(0x10cf, 0x1397, "Fujitsu", ALC262_FUJITSU
),
12135 SND_PCI_QUIRK(0x10cf, 0x142d, "Fujitsu Lifebook E8410", ALC262_FUJITSU
),
12136 SND_PCI_QUIRK(0x10f1, 0x2915, "Tyan Thunder n6650W", ALC262_TYAN
),
12137 SND_PCI_QUIRK_MASK(0x144d, 0xff00, 0xc032, "Samsung Q1",
12139 SND_PCI_QUIRK(0x144d, 0xc510, "Samsung Q45", ALC262_HIPPO
),
12140 SND_PCI_QUIRK(0x17aa, 0x384e, "Lenovo 3000 y410", ALC262_LENOVO_3000
),
12141 SND_PCI_QUIRK(0x17ff, 0x0560, "Benq ED8", ALC262_BENQ_ED8
),
12142 SND_PCI_QUIRK(0x17ff, 0x058d, "Benq T31-16", ALC262_BENQ_T31
),
12143 SND_PCI_QUIRK(0x17ff, 0x058f, "Benq Hippo", ALC262_HIPPO_1
),
12147 static struct alc_config_preset alc262_presets
[] = {
12149 .mixers
= { alc262_base_mixer
},
12150 .init_verbs
= { alc262_init_verbs
},
12151 .num_dacs
= ARRAY_SIZE(alc262_dac_nids
),
12152 .dac_nids
= alc262_dac_nids
,
12154 .num_channel_mode
= ARRAY_SIZE(alc262_modes
),
12155 .channel_mode
= alc262_modes
,
12156 .input_mux
= &alc262_capture_source
,
12159 .mixers
= { alc262_hippo_mixer
},
12160 .init_verbs
= { alc262_init_verbs
, alc_hp15_unsol_verbs
},
12161 .num_dacs
= ARRAY_SIZE(alc262_dac_nids
),
12162 .dac_nids
= alc262_dac_nids
,
12164 .dig_out_nid
= ALC262_DIGOUT_NID
,
12165 .num_channel_mode
= ARRAY_SIZE(alc262_modes
),
12166 .channel_mode
= alc262_modes
,
12167 .input_mux
= &alc262_capture_source
,
12168 .unsol_event
= alc262_hippo_unsol_event
,
12169 .setup
= alc262_hippo_setup
,
12170 .init_hook
= alc262_hippo_automute
,
12172 [ALC262_HIPPO_1
] = {
12173 .mixers
= { alc262_hippo1_mixer
},
12174 .init_verbs
= { alc262_init_verbs
, alc262_hippo1_unsol_verbs
},
12175 .num_dacs
= ARRAY_SIZE(alc262_dac_nids
),
12176 .dac_nids
= alc262_dac_nids
,
12178 .dig_out_nid
= ALC262_DIGOUT_NID
,
12179 .num_channel_mode
= ARRAY_SIZE(alc262_modes
),
12180 .channel_mode
= alc262_modes
,
12181 .input_mux
= &alc262_capture_source
,
12182 .unsol_event
= alc262_hippo_unsol_event
,
12183 .setup
= alc262_hippo1_setup
,
12184 .init_hook
= alc262_hippo_automute
,
12186 [ALC262_FUJITSU
] = {
12187 .mixers
= { alc262_fujitsu_mixer
},
12188 .init_verbs
= { alc262_init_verbs
, alc262_EAPD_verbs
,
12189 alc262_fujitsu_unsol_verbs
},
12190 .num_dacs
= ARRAY_SIZE(alc262_dac_nids
),
12191 .dac_nids
= alc262_dac_nids
,
12193 .dig_out_nid
= ALC262_DIGOUT_NID
,
12194 .num_channel_mode
= ARRAY_SIZE(alc262_modes
),
12195 .channel_mode
= alc262_modes
,
12196 .input_mux
= &alc262_fujitsu_capture_source
,
12197 .unsol_event
= alc262_fujitsu_unsol_event
,
12198 .init_hook
= alc262_fujitsu_init_hook
,
12200 [ALC262_HP_BPC
] = {
12201 .mixers
= { alc262_HP_BPC_mixer
},
12202 .init_verbs
= { alc262_HP_BPC_init_verbs
},
12203 .num_dacs
= ARRAY_SIZE(alc262_dac_nids
),
12204 .dac_nids
= alc262_dac_nids
,
12206 .num_channel_mode
= ARRAY_SIZE(alc262_modes
),
12207 .channel_mode
= alc262_modes
,
12208 .input_mux
= &alc262_HP_capture_source
,
12209 .unsol_event
= alc262_hp_bpc_unsol_event
,
12210 .init_hook
= alc262_hp_bpc_automute
,
12212 [ALC262_HP_BPC_D7000_WF
] = {
12213 .mixers
= { alc262_HP_BPC_WildWest_mixer
},
12214 .init_verbs
= { alc262_HP_BPC_WildWest_init_verbs
},
12215 .num_dacs
= ARRAY_SIZE(alc262_dac_nids
),
12216 .dac_nids
= alc262_dac_nids
,
12218 .num_channel_mode
= ARRAY_SIZE(alc262_modes
),
12219 .channel_mode
= alc262_modes
,
12220 .input_mux
= &alc262_HP_D7000_capture_source
,
12221 .unsol_event
= alc262_hp_wildwest_unsol_event
,
12222 .init_hook
= alc262_hp_wildwest_automute
,
12224 [ALC262_HP_BPC_D7000_WL
] = {
12225 .mixers
= { alc262_HP_BPC_WildWest_mixer
,
12226 alc262_HP_BPC_WildWest_option_mixer
},
12227 .init_verbs
= { alc262_HP_BPC_WildWest_init_verbs
},
12228 .num_dacs
= ARRAY_SIZE(alc262_dac_nids
),
12229 .dac_nids
= alc262_dac_nids
,
12231 .num_channel_mode
= ARRAY_SIZE(alc262_modes
),
12232 .channel_mode
= alc262_modes
,
12233 .input_mux
= &alc262_HP_D7000_capture_source
,
12234 .unsol_event
= alc262_hp_wildwest_unsol_event
,
12235 .init_hook
= alc262_hp_wildwest_automute
,
12237 [ALC262_HP_TC_T5735
] = {
12238 .mixers
= { alc262_hp_t5735_mixer
},
12239 .init_verbs
= { alc262_init_verbs
, alc262_hp_t5735_verbs
},
12240 .num_dacs
= ARRAY_SIZE(alc262_dac_nids
),
12241 .dac_nids
= alc262_dac_nids
,
12243 .num_channel_mode
= ARRAY_SIZE(alc262_modes
),
12244 .channel_mode
= alc262_modes
,
12245 .input_mux
= &alc262_capture_source
,
12246 .unsol_event
= alc_sku_unsol_event
,
12247 .setup
= alc262_hp_t5735_setup
,
12248 .init_hook
= alc_inithook
,
12250 [ALC262_HP_RP5700
] = {
12251 .mixers
= { alc262_hp_rp5700_mixer
},
12252 .init_verbs
= { alc262_init_verbs
, alc262_hp_rp5700_verbs
},
12253 .num_dacs
= ARRAY_SIZE(alc262_dac_nids
),
12254 .dac_nids
= alc262_dac_nids
,
12255 .num_channel_mode
= ARRAY_SIZE(alc262_modes
),
12256 .channel_mode
= alc262_modes
,
12257 .input_mux
= &alc262_hp_rp5700_capture_source
,
12259 [ALC262_BENQ_ED8
] = {
12260 .mixers
= { alc262_base_mixer
},
12261 .init_verbs
= { alc262_init_verbs
, alc262_EAPD_verbs
},
12262 .num_dacs
= ARRAY_SIZE(alc262_dac_nids
),
12263 .dac_nids
= alc262_dac_nids
,
12265 .num_channel_mode
= ARRAY_SIZE(alc262_modes
),
12266 .channel_mode
= alc262_modes
,
12267 .input_mux
= &alc262_capture_source
,
12269 [ALC262_SONY_ASSAMD
] = {
12270 .mixers
= { alc262_sony_mixer
},
12271 .init_verbs
= { alc262_init_verbs
, alc262_sony_unsol_verbs
},
12272 .num_dacs
= ARRAY_SIZE(alc262_dac_nids
),
12273 .dac_nids
= alc262_dac_nids
,
12275 .num_channel_mode
= ARRAY_SIZE(alc262_modes
),
12276 .channel_mode
= alc262_modes
,
12277 .input_mux
= &alc262_capture_source
,
12278 .unsol_event
= alc262_hippo_unsol_event
,
12279 .setup
= alc262_hippo_setup
,
12280 .init_hook
= alc262_hippo_automute
,
12282 [ALC262_BENQ_T31
] = {
12283 .mixers
= { alc262_benq_t31_mixer
},
12284 .init_verbs
= { alc262_init_verbs
, alc262_benq_t31_EAPD_verbs
,
12285 alc_hp15_unsol_verbs
},
12286 .num_dacs
= ARRAY_SIZE(alc262_dac_nids
),
12287 .dac_nids
= alc262_dac_nids
,
12289 .num_channel_mode
= ARRAY_SIZE(alc262_modes
),
12290 .channel_mode
= alc262_modes
,
12291 .input_mux
= &alc262_capture_source
,
12292 .unsol_event
= alc262_hippo_unsol_event
,
12293 .setup
= alc262_hippo_setup
,
12294 .init_hook
= alc262_hippo_automute
,
12297 .mixers
= { alc262_ultra_mixer
},
12298 .cap_mixer
= alc262_ultra_capture_mixer
,
12299 .init_verbs
= { alc262_ultra_verbs
},
12300 .num_dacs
= ARRAY_SIZE(alc262_dac_nids
),
12301 .dac_nids
= alc262_dac_nids
,
12302 .num_channel_mode
= ARRAY_SIZE(alc262_modes
),
12303 .channel_mode
= alc262_modes
,
12304 .input_mux
= &alc262_ultra_capture_source
,
12305 .adc_nids
= alc262_adc_nids
, /* ADC0 */
12306 .capsrc_nids
= alc262_capsrc_nids
,
12307 .num_adc_nids
= 1, /* single ADC */
12308 .unsol_event
= alc262_ultra_unsol_event
,
12309 .init_hook
= alc262_ultra_automute
,
12311 [ALC262_LENOVO_3000
] = {
12312 .mixers
= { alc262_lenovo_3000_mixer
},
12313 .init_verbs
= { alc262_init_verbs
, alc262_EAPD_verbs
,
12314 alc262_lenovo_3000_unsol_verbs
,
12315 alc262_lenovo_3000_init_verbs
},
12316 .num_dacs
= ARRAY_SIZE(alc262_dac_nids
),
12317 .dac_nids
= alc262_dac_nids
,
12319 .dig_out_nid
= ALC262_DIGOUT_NID
,
12320 .num_channel_mode
= ARRAY_SIZE(alc262_modes
),
12321 .channel_mode
= alc262_modes
,
12322 .input_mux
= &alc262_fujitsu_capture_source
,
12323 .unsol_event
= alc262_lenovo_3000_unsol_event
,
12326 .mixers
= { alc262_nec_mixer
},
12327 .init_verbs
= { alc262_nec_verbs
},
12328 .num_dacs
= ARRAY_SIZE(alc262_dac_nids
),
12329 .dac_nids
= alc262_dac_nids
,
12331 .num_channel_mode
= ARRAY_SIZE(alc262_modes
),
12332 .channel_mode
= alc262_modes
,
12333 .input_mux
= &alc262_capture_source
,
12335 [ALC262_TOSHIBA_S06
] = {
12336 .mixers
= { alc262_toshiba_s06_mixer
},
12337 .init_verbs
= { alc262_init_verbs
, alc262_toshiba_s06_verbs
,
12338 alc262_eapd_verbs
},
12339 .num_dacs
= ARRAY_SIZE(alc262_dac_nids
),
12340 .capsrc_nids
= alc262_dmic_capsrc_nids
,
12341 .dac_nids
= alc262_dac_nids
,
12342 .adc_nids
= alc262_dmic_adc_nids
, /* ADC0 */
12343 .num_adc_nids
= 1, /* single ADC */
12344 .dig_out_nid
= ALC262_DIGOUT_NID
,
12345 .num_channel_mode
= ARRAY_SIZE(alc262_modes
),
12346 .channel_mode
= alc262_modes
,
12347 .unsol_event
= alc_sku_unsol_event
,
12348 .setup
= alc262_toshiba_s06_setup
,
12349 .init_hook
= alc_inithook
,
12351 [ALC262_TOSHIBA_RX1
] = {
12352 .mixers
= { alc262_toshiba_rx1_mixer
},
12353 .init_verbs
= { alc262_init_verbs
, alc262_toshiba_rx1_unsol_verbs
},
12354 .num_dacs
= ARRAY_SIZE(alc262_dac_nids
),
12355 .dac_nids
= alc262_dac_nids
,
12357 .num_channel_mode
= ARRAY_SIZE(alc262_modes
),
12358 .channel_mode
= alc262_modes
,
12359 .input_mux
= &alc262_capture_source
,
12360 .unsol_event
= alc262_hippo_unsol_event
,
12361 .setup
= alc262_hippo_setup
,
12362 .init_hook
= alc262_hippo_automute
,
12365 .mixers
= { alc262_tyan_mixer
},
12366 .init_verbs
= { alc262_init_verbs
, alc262_tyan_verbs
},
12367 .num_dacs
= ARRAY_SIZE(alc262_dac_nids
),
12368 .dac_nids
= alc262_dac_nids
,
12370 .dig_out_nid
= ALC262_DIGOUT_NID
,
12371 .num_channel_mode
= ARRAY_SIZE(alc262_modes
),
12372 .channel_mode
= alc262_modes
,
12373 .input_mux
= &alc262_capture_source
,
12374 .unsol_event
= alc_automute_amp_unsol_event
,
12375 .setup
= alc262_tyan_setup
,
12376 .init_hook
= alc_automute_amp
,
12380 static int patch_alc262(struct hda_codec
*codec
)
12382 struct alc_spec
*spec
;
12386 spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
12390 codec
->spec
= spec
;
12392 /* pshou 07/11/05 set a zero PCM sample to DAC when FIFO is
12397 snd_hda_codec_write(codec
, 0x1a, 0, AC_VERB_SET_COEF_INDEX
, 7);
12398 tmp
= snd_hda_codec_read(codec
, 0x20, 0, AC_VERB_GET_PROC_COEF
, 0);
12399 snd_hda_codec_write(codec
, 0x1a, 0, AC_VERB_SET_COEF_INDEX
, 7);
12400 snd_hda_codec_write(codec
, 0x1a, 0, AC_VERB_SET_PROC_COEF
, tmp
| 0x80);
12403 alc_auto_parse_customize_define(codec
);
12405 alc_fix_pll_init(codec
, 0x20, 0x0a, 10);
12407 board_config
= snd_hda_check_board_config(codec
, ALC262_MODEL_LAST
,
12411 if (board_config
< 0) {
12412 printk(KERN_INFO
"hda_codec: %s: BIOS auto-probing.\n",
12414 board_config
= ALC262_AUTO
;
12417 if (board_config
== ALC262_AUTO
) {
12418 /* automatic parse from the BIOS config */
12419 err
= alc262_parse_auto_config(codec
);
12425 "hda_codec: Cannot set up configuration "
12426 "from BIOS. Using base mode...\n");
12427 board_config
= ALC262_BASIC
;
12431 if (!spec
->no_analog
) {
12432 err
= snd_hda_attach_beep_device(codec
, 0x1);
12439 if (board_config
!= ALC262_AUTO
)
12440 setup_preset(codec
, &alc262_presets
[board_config
]);
12442 spec
->stream_analog_playback
= &alc262_pcm_analog_playback
;
12443 spec
->stream_analog_capture
= &alc262_pcm_analog_capture
;
12445 spec
->stream_digital_playback
= &alc262_pcm_digital_playback
;
12446 spec
->stream_digital_capture
= &alc262_pcm_digital_capture
;
12448 if (!spec
->adc_nids
&& spec
->input_mux
) {
12450 /* check whether the digital-mic has to be supported */
12451 for (i
= 0; i
< spec
->input_mux
->num_items
; i
++) {
12452 if (spec
->input_mux
->items
[i
].index
>= 9)
12455 if (i
< spec
->input_mux
->num_items
) {
12456 /* use only ADC0 */
12457 spec
->adc_nids
= alc262_dmic_adc_nids
;
12458 spec
->num_adc_nids
= 1;
12459 spec
->capsrc_nids
= alc262_dmic_capsrc_nids
;
12461 /* all analog inputs */
12462 /* check whether NID 0x07 is valid */
12463 unsigned int wcap
= get_wcaps(codec
, 0x07);
12466 wcap
= get_wcaps_type(wcap
);
12467 if (wcap
!= AC_WID_AUD_IN
) {
12468 spec
->adc_nids
= alc262_adc_nids_alt
;
12469 spec
->num_adc_nids
=
12470 ARRAY_SIZE(alc262_adc_nids_alt
);
12471 spec
->capsrc_nids
= alc262_capsrc_nids_alt
;
12473 spec
->adc_nids
= alc262_adc_nids
;
12474 spec
->num_adc_nids
=
12475 ARRAY_SIZE(alc262_adc_nids
);
12476 spec
->capsrc_nids
= alc262_capsrc_nids
;
12480 if (!spec
->cap_mixer
&& !spec
->no_analog
)
12481 set_capture_mixer(codec
);
12482 if (!spec
->no_analog
&& spec
->cdefine
.enable_pcbeep
)
12483 set_beep_amp(spec
, 0x0b, 0x05, HDA_INPUT
);
12485 spec
->vmaster_nid
= 0x0c;
12487 codec
->patch_ops
= alc_patch_ops
;
12488 if (board_config
== ALC262_AUTO
)
12489 spec
->init_hook
= alc262_auto_init
;
12490 #ifdef CONFIG_SND_HDA_POWER_SAVE
12491 if (!spec
->loopback
.amplist
)
12492 spec
->loopback
.amplist
= alc262_loopbacks
;
12499 * ALC268 channel source setting (2 channel)
12501 #define ALC268_DIGOUT_NID ALC880_DIGOUT_NID
12502 #define alc268_modes alc260_modes
12504 static hda_nid_t alc268_dac_nids
[2] = {
12509 static hda_nid_t alc268_adc_nids
[2] = {
12514 static hda_nid_t alc268_adc_nids_alt
[1] = {
12519 static hda_nid_t alc268_capsrc_nids
[2] = { 0x23, 0x24 };
12521 static struct snd_kcontrol_new alc268_base_mixer
[] = {
12522 /* output mixer control */
12523 HDA_CODEC_VOLUME("Front Playback Volume", 0x2, 0x0, HDA_OUTPUT
),
12524 HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
12525 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x3, 0x0, HDA_OUTPUT
),
12526 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
12527 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
12528 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT
),
12529 HDA_CODEC_VOLUME("Line In Boost", 0x1a, 0, HDA_INPUT
),
12533 static struct snd_kcontrol_new alc268_toshiba_mixer
[] = {
12534 /* output mixer control */
12535 HDA_CODEC_VOLUME("Front Playback Volume", 0x2, 0x0, HDA_OUTPUT
),
12536 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x3, 0x0, HDA_OUTPUT
),
12537 ALC262_HIPPO_MASTER_SWITCH
,
12538 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
12539 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT
),
12540 HDA_CODEC_VOLUME("Line In Boost", 0x1a, 0, HDA_INPUT
),
12544 /* bind Beep switches of both NID 0x0f and 0x10 */
12545 static struct hda_bind_ctls alc268_bind_beep_sw
= {
12546 .ops
= &snd_hda_bind_sw
,
12548 HDA_COMPOSE_AMP_VAL(0x0f, 3, 1, HDA_INPUT
),
12549 HDA_COMPOSE_AMP_VAL(0x10, 3, 1, HDA_INPUT
),
12554 static struct snd_kcontrol_new alc268_beep_mixer
[] = {
12555 HDA_CODEC_VOLUME("Beep Playback Volume", 0x1d, 0x0, HDA_INPUT
),
12556 HDA_BIND_SW("Beep Playback Switch", &alc268_bind_beep_sw
),
12560 static struct hda_verb alc268_eapd_verbs
[] = {
12561 {0x14, AC_VERB_SET_EAPD_BTLENABLE
, 2},
12562 {0x15, AC_VERB_SET_EAPD_BTLENABLE
, 2},
12566 /* Toshiba specific */
12567 static struct hda_verb alc268_toshiba_verbs
[] = {
12568 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
12572 /* Acer specific */
12573 /* bind volumes of both NID 0x02 and 0x03 */
12574 static struct hda_bind_ctls alc268_acer_bind_master_vol
= {
12575 .ops
= &snd_hda_bind_vol
,
12577 HDA_COMPOSE_AMP_VAL(0x02, 3, 0, HDA_OUTPUT
),
12578 HDA_COMPOSE_AMP_VAL(0x03, 3, 0, HDA_OUTPUT
),
12583 /* mute/unmute internal speaker according to the hp jack and mute state */
12584 static void alc268_acer_automute(struct hda_codec
*codec
, int force
)
12586 struct alc_spec
*spec
= codec
->spec
;
12589 if (force
|| !spec
->sense_updated
) {
12590 spec
->jack_present
= snd_hda_jack_detect(codec
, 0x14);
12591 spec
->sense_updated
= 1;
12593 if (spec
->jack_present
)
12594 mute
= HDA_AMP_MUTE
; /* mute internal speaker */
12595 else /* unmute internal speaker if necessary */
12596 mute
= snd_hda_codec_amp_read(codec
, 0x14, 0, HDA_OUTPUT
, 0);
12597 snd_hda_codec_amp_stereo(codec
, 0x15, HDA_OUTPUT
, 0,
12598 HDA_AMP_MUTE
, mute
);
12602 /* bind hp and internal speaker mute (with plug check) */
12603 static int alc268_acer_master_sw_put(struct snd_kcontrol
*kcontrol
,
12604 struct snd_ctl_elem_value
*ucontrol
)
12606 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
12607 long *valp
= ucontrol
->value
.integer
.value
;
12610 change
= amp_stereo_mute_update(codec
, 0x14, HDA_OUTPUT
, 0, valp
);
12612 alc268_acer_automute(codec
, 0);
12616 static struct snd_kcontrol_new alc268_acer_aspire_one_mixer
[] = {
12617 /* output mixer control */
12618 HDA_BIND_VOL("Master Playback Volume", &alc268_acer_bind_master_vol
),
12620 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
12621 .name
= "Master Playback Switch",
12622 .subdevice
= HDA_SUBDEV_AMP_FLAG
,
12623 .info
= snd_hda_mixer_amp_switch_info
,
12624 .get
= snd_hda_mixer_amp_switch_get
,
12625 .put
= alc268_acer_master_sw_put
,
12626 .private_value
= HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT
),
12628 HDA_CODEC_VOLUME("Mic Boost Capture Volume", 0x18, 0, HDA_INPUT
),
12632 static struct snd_kcontrol_new alc268_acer_mixer
[] = {
12633 /* output mixer control */
12634 HDA_BIND_VOL("Master Playback Volume", &alc268_acer_bind_master_vol
),
12636 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
12637 .name
= "Master Playback Switch",
12638 .subdevice
= HDA_SUBDEV_AMP_FLAG
,
12639 .info
= snd_hda_mixer_amp_switch_info
,
12640 .get
= snd_hda_mixer_amp_switch_get
,
12641 .put
= alc268_acer_master_sw_put
,
12642 .private_value
= HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT
),
12644 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
12645 HDA_CODEC_VOLUME("Internal Mic Boost", 0x19, 0, HDA_INPUT
),
12646 HDA_CODEC_VOLUME("Line In Boost", 0x1a, 0, HDA_INPUT
),
12650 static struct snd_kcontrol_new alc268_acer_dmic_mixer
[] = {
12651 /* output mixer control */
12652 HDA_BIND_VOL("Master Playback Volume", &alc268_acer_bind_master_vol
),
12654 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
12655 .name
= "Master Playback Switch",
12656 .subdevice
= HDA_SUBDEV_AMP_FLAG
,
12657 .info
= snd_hda_mixer_amp_switch_info
,
12658 .get
= snd_hda_mixer_amp_switch_get
,
12659 .put
= alc268_acer_master_sw_put
,
12660 .private_value
= HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT
),
12662 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
12663 HDA_CODEC_VOLUME("Line In Boost", 0x1a, 0, HDA_INPUT
),
12667 static struct hda_verb alc268_acer_aspire_one_verbs
[] = {
12668 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
12669 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
12670 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
12671 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
12672 {0x23, AC_VERB_SET_CONNECT_SEL
, 0x06},
12673 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, 0xa017},
12677 static struct hda_verb alc268_acer_verbs
[] = {
12678 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
}, /* internal dmic? */
12679 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
12680 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
12681 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
12682 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
12683 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
12684 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
12688 /* unsolicited event for HP jack sensing */
12689 #define alc268_toshiba_unsol_event alc262_hippo_unsol_event
12690 #define alc268_toshiba_setup alc262_hippo_setup
12691 #define alc268_toshiba_automute alc262_hippo_automute
12693 static void alc268_acer_unsol_event(struct hda_codec
*codec
,
12696 if ((res
>> 26) != ALC880_HP_EVENT
)
12698 alc268_acer_automute(codec
, 1);
12701 static void alc268_acer_init_hook(struct hda_codec
*codec
)
12703 alc268_acer_automute(codec
, 1);
12706 /* toggle speaker-output according to the hp-jack state */
12707 static void alc268_aspire_one_speaker_automute(struct hda_codec
*codec
)
12709 unsigned int present
;
12710 unsigned char bits
;
12712 present
= snd_hda_jack_detect(codec
, 0x15);
12713 bits
= present
? HDA_AMP_MUTE
: 0;
12714 snd_hda_codec_amp_stereo(codec
, 0x0f, HDA_INPUT
, 0,
12715 HDA_AMP_MUTE
, bits
);
12716 snd_hda_codec_amp_stereo(codec
, 0x0f, HDA_INPUT
, 1,
12717 HDA_AMP_MUTE
, bits
);
12720 static void alc268_acer_lc_unsol_event(struct hda_codec
*codec
,
12723 switch (res
>> 26) {
12724 case ALC880_HP_EVENT
:
12725 alc268_aspire_one_speaker_automute(codec
);
12727 case ALC880_MIC_EVENT
:
12728 alc_mic_automute(codec
);
12733 static void alc268_acer_lc_setup(struct hda_codec
*codec
)
12735 struct alc_spec
*spec
= codec
->spec
;
12736 spec
->ext_mic
.pin
= 0x18;
12737 spec
->ext_mic
.mux_idx
= 0;
12738 spec
->int_mic
.pin
= 0x12;
12739 spec
->int_mic
.mux_idx
= 6;
12740 spec
->auto_mic
= 1;
12743 static void alc268_acer_lc_init_hook(struct hda_codec
*codec
)
12745 alc268_aspire_one_speaker_automute(codec
);
12746 alc_mic_automute(codec
);
12749 static struct snd_kcontrol_new alc268_dell_mixer
[] = {
12750 /* output mixer control */
12751 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
12752 HDA_CODEC_MUTE("Speaker Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
12753 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x03, 0x0, HDA_OUTPUT
),
12754 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
12755 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
12756 HDA_CODEC_VOLUME("Internal Mic Boost", 0x19, 0, HDA_INPUT
),
12760 static struct hda_verb alc268_dell_verbs
[] = {
12761 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
12762 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
12763 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
12764 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_MIC_EVENT
| AC_USRSP_EN
},
12768 /* mute/unmute internal speaker according to the hp jack and mute state */
12769 static void alc268_dell_setup(struct hda_codec
*codec
)
12771 struct alc_spec
*spec
= codec
->spec
;
12773 spec
->autocfg
.hp_pins
[0] = 0x15;
12774 spec
->autocfg
.speaker_pins
[0] = 0x14;
12775 spec
->ext_mic
.pin
= 0x18;
12776 spec
->ext_mic
.mux_idx
= 0;
12777 spec
->int_mic
.pin
= 0x19;
12778 spec
->int_mic
.mux_idx
= 1;
12779 spec
->auto_mic
= 1;
12782 static struct snd_kcontrol_new alc267_quanta_il1_mixer
[] = {
12783 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x2, 0x0, HDA_OUTPUT
),
12784 HDA_CODEC_MUTE("Speaker Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
12785 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x3, 0x0, HDA_OUTPUT
),
12786 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
12787 HDA_CODEC_VOLUME("Mic Capture Volume", 0x23, 0x0, HDA_OUTPUT
),
12788 HDA_BIND_MUTE("Mic Capture Switch", 0x23, 2, HDA_OUTPUT
),
12789 HDA_CODEC_VOLUME("Ext Mic Boost", 0x18, 0, HDA_INPUT
),
12790 HDA_CODEC_VOLUME("Int Mic Boost", 0x19, 0, HDA_INPUT
),
12794 static struct hda_verb alc267_quanta_il1_verbs
[] = {
12795 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
12796 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_MIC_EVENT
| AC_USRSP_EN
},
12800 static void alc267_quanta_il1_setup(struct hda_codec
*codec
)
12802 struct alc_spec
*spec
= codec
->spec
;
12803 spec
->autocfg
.hp_pins
[0] = 0x15;
12804 spec
->autocfg
.speaker_pins
[0] = 0x14;
12805 spec
->ext_mic
.pin
= 0x18;
12806 spec
->ext_mic
.mux_idx
= 0;
12807 spec
->int_mic
.pin
= 0x19;
12808 spec
->int_mic
.mux_idx
= 1;
12809 spec
->auto_mic
= 1;
12813 * generic initialization of ADC, input mixers and output mixers
12815 static struct hda_verb alc268_base_init_verbs
[] = {
12816 /* Unmute DAC0-1 and set vol = 0 */
12817 {0x02, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
12818 {0x03, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
12821 * Set up output mixers (0x0c - 0x0e)
12823 /* set vol=0 to output mixers */
12824 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
12825 {0x0e, AC_VERB_SET_CONNECT_SEL
, 0x00},
12827 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
12828 {0x10, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
12830 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40},
12831 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0xc0},
12832 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40},
12833 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24},
12834 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24},
12835 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20},
12836 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20},
12837 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20},
12839 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
12840 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
12841 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
12842 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
12843 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
12845 /* set PCBEEP vol = 0, mute connections */
12846 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
12847 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
12848 {0x10, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
12850 /* Unmute Selector 23h,24h and set the default input to mic-in */
12852 {0x23, AC_VERB_SET_CONNECT_SEL
, 0x00},
12853 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
12854 {0x24, AC_VERB_SET_CONNECT_SEL
, 0x00},
12855 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
12861 * generic initialization of ADC, input mixers and output mixers
12863 static struct hda_verb alc268_volume_init_verbs
[] = {
12864 /* set output DAC */
12865 {0x02, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
12866 {0x03, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
12868 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24},
12869 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24},
12870 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20},
12871 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20},
12872 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20},
12874 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
12875 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
12876 {0x10, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
12878 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
12879 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
12881 /* set PCBEEP vol = 0, mute connections */
12882 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
12883 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
12884 {0x10, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
12889 static struct snd_kcontrol_new alc268_capture_nosrc_mixer
[] = {
12890 HDA_CODEC_VOLUME("Capture Volume", 0x23, 0x0, HDA_OUTPUT
),
12891 HDA_CODEC_MUTE("Capture Switch", 0x23, 0x0, HDA_OUTPUT
),
12895 static struct snd_kcontrol_new alc268_capture_alt_mixer
[] = {
12896 HDA_CODEC_VOLUME("Capture Volume", 0x23, 0x0, HDA_OUTPUT
),
12897 HDA_CODEC_MUTE("Capture Switch", 0x23, 0x0, HDA_OUTPUT
),
12902 static struct snd_kcontrol_new alc268_capture_mixer
[] = {
12903 HDA_CODEC_VOLUME("Capture Volume", 0x23, 0x0, HDA_OUTPUT
),
12904 HDA_CODEC_MUTE("Capture Switch", 0x23, 0x0, HDA_OUTPUT
),
12905 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x24, 0x0, HDA_OUTPUT
),
12906 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x24, 0x0, HDA_OUTPUT
),
12911 static struct hda_input_mux alc268_capture_source
= {
12915 { "Front Mic", 0x1 },
12921 static struct hda_input_mux alc268_acer_capture_source
= {
12925 { "Internal Mic", 0x1 },
12930 static struct hda_input_mux alc268_acer_dmic_capture_source
= {
12934 { "Internal Mic", 0x6 },
12939 #ifdef CONFIG_SND_DEBUG
12940 static struct snd_kcontrol_new alc268_test_mixer
[] = {
12941 /* Volume widgets */
12942 HDA_CODEC_VOLUME("LOUT1 Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
12943 HDA_CODEC_VOLUME("LOUT2 Playback Volume", 0x03, 0x0, HDA_OUTPUT
),
12944 HDA_BIND_MUTE_MONO("Mono sum Playback Switch", 0x0e, 1, 2, HDA_INPUT
),
12945 HDA_BIND_MUTE("LINE-OUT sum Playback Switch", 0x0f, 2, HDA_INPUT
),
12946 HDA_BIND_MUTE("HP-OUT sum Playback Switch", 0x10, 2, HDA_INPUT
),
12947 HDA_BIND_MUTE("LINE-OUT Playback Switch", 0x14, 2, HDA_OUTPUT
),
12948 HDA_BIND_MUTE("HP-OUT Playback Switch", 0x15, 2, HDA_OUTPUT
),
12949 HDA_BIND_MUTE("Mono Playback Switch", 0x16, 2, HDA_OUTPUT
),
12950 HDA_CODEC_VOLUME("MIC1 Capture Volume", 0x18, 0x0, HDA_INPUT
),
12951 HDA_BIND_MUTE("MIC1 Capture Switch", 0x18, 2, HDA_OUTPUT
),
12952 HDA_CODEC_VOLUME("MIC2 Capture Volume", 0x19, 0x0, HDA_INPUT
),
12953 HDA_CODEC_VOLUME("LINE1 Capture Volume", 0x1a, 0x0, HDA_INPUT
),
12954 HDA_BIND_MUTE("LINE1 Capture Switch", 0x1a, 2, HDA_OUTPUT
),
12955 /* The below appears problematic on some hardwares */
12956 /*HDA_CODEC_VOLUME("PCBEEP Playback Volume", 0x1d, 0x0, HDA_INPUT),*/
12957 HDA_CODEC_VOLUME("PCM-IN1 Capture Volume", 0x23, 0x0, HDA_OUTPUT
),
12958 HDA_BIND_MUTE("PCM-IN1 Capture Switch", 0x23, 2, HDA_OUTPUT
),
12959 HDA_CODEC_VOLUME("PCM-IN2 Capture Volume", 0x24, 0x0, HDA_OUTPUT
),
12960 HDA_BIND_MUTE("PCM-IN2 Capture Switch", 0x24, 2, HDA_OUTPUT
),
12962 /* Modes for retasking pin widgets */
12963 ALC_PIN_MODE("LINE-OUT pin mode", 0x14, ALC_PIN_DIR_INOUT
),
12964 ALC_PIN_MODE("HP-OUT pin mode", 0x15, ALC_PIN_DIR_INOUT
),
12965 ALC_PIN_MODE("MIC1 pin mode", 0x18, ALC_PIN_DIR_INOUT
),
12966 ALC_PIN_MODE("LINE1 pin mode", 0x1a, ALC_PIN_DIR_INOUT
),
12968 /* Controls for GPIO pins, assuming they are configured as outputs */
12969 ALC_GPIO_DATA_SWITCH("GPIO pin 0", 0x01, 0x01),
12970 ALC_GPIO_DATA_SWITCH("GPIO pin 1", 0x01, 0x02),
12971 ALC_GPIO_DATA_SWITCH("GPIO pin 2", 0x01, 0x04),
12972 ALC_GPIO_DATA_SWITCH("GPIO pin 3", 0x01, 0x08),
12974 /* Switches to allow the digital SPDIF output pin to be enabled.
12975 * The ALC268 does not have an SPDIF input.
12977 ALC_SPDIF_CTRL_SWITCH("SPDIF Playback Switch", 0x06, 0x01),
12979 /* A switch allowing EAPD to be enabled. Some laptops seem to use
12980 * this output to turn on an external amplifier.
12982 ALC_EAPD_CTRL_SWITCH("LINE-OUT EAPD Enable Switch", 0x0f, 0x02),
12983 ALC_EAPD_CTRL_SWITCH("HP-OUT EAPD Enable Switch", 0x10, 0x02),
12989 /* create input playback/capture controls for the given pin */
12990 static int alc268_new_analog_output(struct alc_spec
*spec
, hda_nid_t nid
,
12991 const char *ctlname
, int idx
)
13002 case 0x21: /* ALC269vb has this pin, too */
13008 if (spec
->multiout
.dac_nids
[0] != dac
&&
13009 spec
->multiout
.dac_nids
[1] != dac
) {
13010 err
= add_pb_vol_ctrl(spec
, ALC_CTL_WIDGET_VOL
, ctlname
,
13011 HDA_COMPOSE_AMP_VAL(dac
, 3, idx
,
13015 spec
->multiout
.dac_nids
[spec
->multiout
.num_dacs
++] = dac
;
13019 err
= add_pb_sw_ctrl(spec
, ALC_CTL_WIDGET_MUTE
, ctlname
,
13020 HDA_COMPOSE_AMP_VAL(nid
, 3, idx
, HDA_OUTPUT
));
13022 err
= add_pb_sw_ctrl(spec
, ALC_CTL_WIDGET_MUTE
, ctlname
,
13023 HDA_COMPOSE_AMP_VAL(nid
, 2, idx
, HDA_OUTPUT
));
13029 /* add playback controls from the parsed DAC table */
13030 static int alc268_auto_create_multi_out_ctls(struct alc_spec
*spec
,
13031 const struct auto_pin_cfg
*cfg
)
13036 spec
->multiout
.dac_nids
= spec
->private_dac_nids
;
13038 nid
= cfg
->line_out_pins
[0];
13041 if (cfg
->line_out_type
== AUTO_PIN_SPEAKER_OUT
)
13045 err
= alc268_new_analog_output(spec
, nid
, name
, 0);
13050 nid
= cfg
->speaker_pins
[0];
13052 err
= add_pb_vol_ctrl(spec
, ALC_CTL_WIDGET_VOL
, "Speaker",
13053 HDA_COMPOSE_AMP_VAL(nid
, 3, 0, HDA_INPUT
));
13057 err
= alc268_new_analog_output(spec
, nid
, "Speaker", 0);
13061 nid
= cfg
->hp_pins
[0];
13063 err
= alc268_new_analog_output(spec
, nid
, "Headphone", 0);
13068 nid
= cfg
->line_out_pins
[1] | cfg
->line_out_pins
[2];
13070 err
= add_pb_sw_ctrl(spec
, ALC_CTL_WIDGET_MUTE
, "Mono",
13071 HDA_COMPOSE_AMP_VAL(nid
, 2, 0, HDA_OUTPUT
));
13078 /* create playback/capture controls for input pins */
13079 static int alc268_auto_create_input_ctls(struct hda_codec
*codec
,
13080 const struct auto_pin_cfg
*cfg
)
13082 return alc_auto_create_input_ctls(codec
, cfg
, 0, 0x23, 0x24);
13085 static void alc268_auto_set_output_and_unmute(struct hda_codec
*codec
,
13086 hda_nid_t nid
, int pin_type
)
13090 alc_set_pin_output(codec
, nid
, pin_type
);
13091 if (nid
== 0x14 || nid
== 0x16)
13095 snd_hda_codec_write(codec
, nid
, 0, AC_VERB_SET_CONNECT_SEL
, idx
);
13098 static void alc268_auto_init_multi_out(struct hda_codec
*codec
)
13100 struct alc_spec
*spec
= codec
->spec
;
13101 hda_nid_t nid
= spec
->autocfg
.line_out_pins
[0];
13103 int pin_type
= get_pin_type(spec
->autocfg
.line_out_type
);
13104 alc268_auto_set_output_and_unmute(codec
, nid
, pin_type
);
13108 static void alc268_auto_init_hp_out(struct hda_codec
*codec
)
13110 struct alc_spec
*spec
= codec
->spec
;
13113 pin
= spec
->autocfg
.hp_pins
[0];
13115 alc268_auto_set_output_and_unmute(codec
, pin
, PIN_HP
);
13116 pin
= spec
->autocfg
.speaker_pins
[0];
13118 alc268_auto_set_output_and_unmute(codec
, pin
, PIN_OUT
);
13121 static void alc268_auto_init_mono_speaker_out(struct hda_codec
*codec
)
13123 struct alc_spec
*spec
= codec
->spec
;
13124 hda_nid_t speaker_nid
= spec
->autocfg
.speaker_pins
[0];
13125 hda_nid_t hp_nid
= spec
->autocfg
.hp_pins
[0];
13126 hda_nid_t line_nid
= spec
->autocfg
.line_out_pins
[0];
13127 unsigned int dac_vol1
, dac_vol2
;
13129 if (line_nid
== 0x1d || speaker_nid
== 0x1d) {
13130 snd_hda_codec_write(codec
, speaker_nid
, 0,
13131 AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
);
13132 /* mute mixer inputs from 0x1d */
13133 snd_hda_codec_write(codec
, 0x0f, 0,
13134 AC_VERB_SET_AMP_GAIN_MUTE
,
13136 snd_hda_codec_write(codec
, 0x10, 0,
13137 AC_VERB_SET_AMP_GAIN_MUTE
,
13140 /* unmute mixer inputs from 0x1d */
13141 snd_hda_codec_write(codec
, 0x0f, 0,
13142 AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1));
13143 snd_hda_codec_write(codec
, 0x10, 0,
13144 AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1));
13147 dac_vol1
= dac_vol2
= 0xb000 | 0x40; /* set max volume */
13148 if (line_nid
== 0x14)
13149 dac_vol2
= AMP_OUT_ZERO
;
13150 else if (line_nid
== 0x15)
13151 dac_vol1
= AMP_OUT_ZERO
;
13152 if (hp_nid
== 0x14)
13153 dac_vol2
= AMP_OUT_ZERO
;
13154 else if (hp_nid
== 0x15)
13155 dac_vol1
= AMP_OUT_ZERO
;
13156 if (line_nid
!= 0x16 || hp_nid
!= 0x16 ||
13157 spec
->autocfg
.line_out_pins
[1] != 0x16 ||
13158 spec
->autocfg
.line_out_pins
[2] != 0x16)
13159 dac_vol1
= dac_vol2
= AMP_OUT_ZERO
;
13161 snd_hda_codec_write(codec
, 0x02, 0,
13162 AC_VERB_SET_AMP_GAIN_MUTE
, dac_vol1
);
13163 snd_hda_codec_write(codec
, 0x03, 0,
13164 AC_VERB_SET_AMP_GAIN_MUTE
, dac_vol2
);
13167 /* pcm configuration: identical with ALC880 */
13168 #define alc268_pcm_analog_playback alc880_pcm_analog_playback
13169 #define alc268_pcm_analog_capture alc880_pcm_analog_capture
13170 #define alc268_pcm_analog_alt_capture alc880_pcm_analog_alt_capture
13171 #define alc268_pcm_digital_playback alc880_pcm_digital_playback
13174 * BIOS auto configuration
13176 static int alc268_parse_auto_config(struct hda_codec
*codec
)
13178 struct alc_spec
*spec
= codec
->spec
;
13180 static hda_nid_t alc268_ignore
[] = { 0 };
13182 err
= snd_hda_parse_pin_def_config(codec
, &spec
->autocfg
,
13186 if (!spec
->autocfg
.line_outs
) {
13187 if (spec
->autocfg
.dig_outs
|| spec
->autocfg
.dig_in_pin
) {
13188 spec
->multiout
.max_channels
= 2;
13189 spec
->no_analog
= 1;
13192 return 0; /* can't find valid BIOS pin config */
13194 err
= alc268_auto_create_multi_out_ctls(spec
, &spec
->autocfg
);
13197 err
= alc268_auto_create_input_ctls(codec
, &spec
->autocfg
);
13201 spec
->multiout
.max_channels
= 2;
13204 /* digital only support output */
13205 if (spec
->autocfg
.dig_outs
) {
13206 spec
->multiout
.dig_out_nid
= ALC268_DIGOUT_NID
;
13207 spec
->dig_out_type
= spec
->autocfg
.dig_out_type
[0];
13209 if (spec
->kctls
.list
)
13210 add_mixer(spec
, spec
->kctls
.list
);
13212 if (!spec
->no_analog
&& spec
->autocfg
.speaker_pins
[0] != 0x1d)
13213 add_mixer(spec
, alc268_beep_mixer
);
13215 add_verb(spec
, alc268_volume_init_verbs
);
13216 spec
->num_mux_defs
= 2;
13217 spec
->input_mux
= &spec
->private_imux
[0];
13219 err
= alc_auto_add_mic_boost(codec
);
13223 alc_ssid_check(codec
, 0x15, 0x1b, 0x14, 0);
13228 #define alc268_auto_init_analog_input alc882_auto_init_analog_input
13230 /* init callback for auto-configuration model -- overriding the default init */
13231 static void alc268_auto_init(struct hda_codec
*codec
)
13233 struct alc_spec
*spec
= codec
->spec
;
13234 alc268_auto_init_multi_out(codec
);
13235 alc268_auto_init_hp_out(codec
);
13236 alc268_auto_init_mono_speaker_out(codec
);
13237 alc268_auto_init_analog_input(codec
);
13238 if (spec
->unsol_event
)
13239 alc_inithook(codec
);
13243 * configuration and preset
13245 static const char *alc268_models
[ALC268_MODEL_LAST
] = {
13246 [ALC267_QUANTA_IL1
] = "quanta-il1",
13247 [ALC268_3ST
] = "3stack",
13248 [ALC268_TOSHIBA
] = "toshiba",
13249 [ALC268_ACER
] = "acer",
13250 [ALC268_ACER_DMIC
] = "acer-dmic",
13251 [ALC268_ACER_ASPIRE_ONE
] = "acer-aspire",
13252 [ALC268_DELL
] = "dell",
13253 [ALC268_ZEPTO
] = "zepto",
13254 #ifdef CONFIG_SND_DEBUG
13255 [ALC268_TEST
] = "test",
13257 [ALC268_AUTO
] = "auto",
13260 static struct snd_pci_quirk alc268_cfg_tbl
[] = {
13261 SND_PCI_QUIRK(0x1025, 0x011e, "Acer Aspire 5720z", ALC268_ACER
),
13262 SND_PCI_QUIRK(0x1025, 0x0126, "Acer", ALC268_ACER
),
13263 SND_PCI_QUIRK(0x1025, 0x012e, "Acer Aspire 5310", ALC268_ACER
),
13264 SND_PCI_QUIRK(0x1025, 0x0130, "Acer Extensa 5210", ALC268_ACER
),
13265 SND_PCI_QUIRK(0x1025, 0x0136, "Acer Aspire 5315", ALC268_ACER
),
13266 SND_PCI_QUIRK(0x1025, 0x015b, "Acer Aspire One",
13267 ALC268_ACER_ASPIRE_ONE
),
13268 SND_PCI_QUIRK(0x1028, 0x0253, "Dell OEM", ALC268_DELL
),
13269 SND_PCI_QUIRK_MASK(0x1028, 0xfff0, 0x02b0,
13270 "Dell Inspiron Mini9/Vostro A90", ALC268_DELL
),
13271 /* almost compatible with toshiba but with optional digital outs;
13272 * auto-probing seems working fine
13274 SND_PCI_QUIRK_MASK(0x103c, 0xff00, 0x3000, "HP TX25xx series",
13276 SND_PCI_QUIRK(0x1043, 0x1205, "ASUS W7J", ALC268_3ST
),
13277 SND_PCI_QUIRK(0x1170, 0x0040, "ZEPTO", ALC268_ZEPTO
),
13278 SND_PCI_QUIRK(0x14c0, 0x0025, "COMPAL IFL90/JFL-92", ALC268_TOSHIBA
),
13279 SND_PCI_QUIRK(0x152d, 0x0763, "Diverse (CPR2000)", ALC268_ACER
),
13280 SND_PCI_QUIRK(0x152d, 0x0771, "Quanta IL1", ALC267_QUANTA_IL1
),
13281 SND_PCI_QUIRK(0x1854, 0x1775, "LG R510", ALC268_DELL
),
13285 /* Toshiba laptops have no unique PCI SSID but only codec SSID */
13286 static struct snd_pci_quirk alc268_ssid_cfg_tbl
[] = {
13287 SND_PCI_QUIRK(0x1179, 0xff0a, "TOSHIBA X-200", ALC268_AUTO
),
13288 SND_PCI_QUIRK(0x1179, 0xff0e, "TOSHIBA X-200 HDMI", ALC268_AUTO
),
13289 SND_PCI_QUIRK_MASK(0x1179, 0xff00, 0xff00, "TOSHIBA A/Lx05",
13294 static struct alc_config_preset alc268_presets
[] = {
13295 [ALC267_QUANTA_IL1
] = {
13296 .mixers
= { alc267_quanta_il1_mixer
, alc268_beep_mixer
,
13297 alc268_capture_nosrc_mixer
},
13298 .init_verbs
= { alc268_base_init_verbs
, alc268_eapd_verbs
,
13299 alc267_quanta_il1_verbs
},
13300 .num_dacs
= ARRAY_SIZE(alc268_dac_nids
),
13301 .dac_nids
= alc268_dac_nids
,
13302 .num_adc_nids
= ARRAY_SIZE(alc268_adc_nids_alt
),
13303 .adc_nids
= alc268_adc_nids_alt
,
13305 .num_channel_mode
= ARRAY_SIZE(alc268_modes
),
13306 .channel_mode
= alc268_modes
,
13307 .unsol_event
= alc_sku_unsol_event
,
13308 .setup
= alc267_quanta_il1_setup
,
13309 .init_hook
= alc_inithook
,
13312 .mixers
= { alc268_base_mixer
, alc268_capture_alt_mixer
,
13313 alc268_beep_mixer
},
13314 .init_verbs
= { alc268_base_init_verbs
},
13315 .num_dacs
= ARRAY_SIZE(alc268_dac_nids
),
13316 .dac_nids
= alc268_dac_nids
,
13317 .num_adc_nids
= ARRAY_SIZE(alc268_adc_nids_alt
),
13318 .adc_nids
= alc268_adc_nids_alt
,
13319 .capsrc_nids
= alc268_capsrc_nids
,
13321 .dig_out_nid
= ALC268_DIGOUT_NID
,
13322 .num_channel_mode
= ARRAY_SIZE(alc268_modes
),
13323 .channel_mode
= alc268_modes
,
13324 .input_mux
= &alc268_capture_source
,
13326 [ALC268_TOSHIBA
] = {
13327 .mixers
= { alc268_toshiba_mixer
, alc268_capture_alt_mixer
,
13328 alc268_beep_mixer
},
13329 .init_verbs
= { alc268_base_init_verbs
, alc268_eapd_verbs
,
13330 alc268_toshiba_verbs
},
13331 .num_dacs
= ARRAY_SIZE(alc268_dac_nids
),
13332 .dac_nids
= alc268_dac_nids
,
13333 .num_adc_nids
= ARRAY_SIZE(alc268_adc_nids_alt
),
13334 .adc_nids
= alc268_adc_nids_alt
,
13335 .capsrc_nids
= alc268_capsrc_nids
,
13337 .num_channel_mode
= ARRAY_SIZE(alc268_modes
),
13338 .channel_mode
= alc268_modes
,
13339 .input_mux
= &alc268_capture_source
,
13340 .unsol_event
= alc268_toshiba_unsol_event
,
13341 .setup
= alc268_toshiba_setup
,
13342 .init_hook
= alc268_toshiba_automute
,
13345 .mixers
= { alc268_acer_mixer
, alc268_capture_alt_mixer
,
13346 alc268_beep_mixer
},
13347 .init_verbs
= { alc268_base_init_verbs
, alc268_eapd_verbs
,
13348 alc268_acer_verbs
},
13349 .num_dacs
= ARRAY_SIZE(alc268_dac_nids
),
13350 .dac_nids
= alc268_dac_nids
,
13351 .num_adc_nids
= ARRAY_SIZE(alc268_adc_nids_alt
),
13352 .adc_nids
= alc268_adc_nids_alt
,
13353 .capsrc_nids
= alc268_capsrc_nids
,
13355 .num_channel_mode
= ARRAY_SIZE(alc268_modes
),
13356 .channel_mode
= alc268_modes
,
13357 .input_mux
= &alc268_acer_capture_source
,
13358 .unsol_event
= alc268_acer_unsol_event
,
13359 .init_hook
= alc268_acer_init_hook
,
13361 [ALC268_ACER_DMIC
] = {
13362 .mixers
= { alc268_acer_dmic_mixer
, alc268_capture_alt_mixer
,
13363 alc268_beep_mixer
},
13364 .init_verbs
= { alc268_base_init_verbs
, alc268_eapd_verbs
,
13365 alc268_acer_verbs
},
13366 .num_dacs
= ARRAY_SIZE(alc268_dac_nids
),
13367 .dac_nids
= alc268_dac_nids
,
13368 .num_adc_nids
= ARRAY_SIZE(alc268_adc_nids_alt
),
13369 .adc_nids
= alc268_adc_nids_alt
,
13370 .capsrc_nids
= alc268_capsrc_nids
,
13372 .num_channel_mode
= ARRAY_SIZE(alc268_modes
),
13373 .channel_mode
= alc268_modes
,
13374 .input_mux
= &alc268_acer_dmic_capture_source
,
13375 .unsol_event
= alc268_acer_unsol_event
,
13376 .init_hook
= alc268_acer_init_hook
,
13378 [ALC268_ACER_ASPIRE_ONE
] = {
13379 .mixers
= { alc268_acer_aspire_one_mixer
,
13381 alc268_capture_nosrc_mixer
},
13382 .init_verbs
= { alc268_base_init_verbs
, alc268_eapd_verbs
,
13383 alc268_acer_aspire_one_verbs
},
13384 .num_dacs
= ARRAY_SIZE(alc268_dac_nids
),
13385 .dac_nids
= alc268_dac_nids
,
13386 .num_adc_nids
= ARRAY_SIZE(alc268_adc_nids_alt
),
13387 .adc_nids
= alc268_adc_nids_alt
,
13388 .capsrc_nids
= alc268_capsrc_nids
,
13390 .num_channel_mode
= ARRAY_SIZE(alc268_modes
),
13391 .channel_mode
= alc268_modes
,
13392 .unsol_event
= alc268_acer_lc_unsol_event
,
13393 .setup
= alc268_acer_lc_setup
,
13394 .init_hook
= alc268_acer_lc_init_hook
,
13397 .mixers
= { alc268_dell_mixer
, alc268_beep_mixer
,
13398 alc268_capture_nosrc_mixer
},
13399 .init_verbs
= { alc268_base_init_verbs
, alc268_eapd_verbs
,
13400 alc268_dell_verbs
},
13401 .num_dacs
= ARRAY_SIZE(alc268_dac_nids
),
13402 .dac_nids
= alc268_dac_nids
,
13403 .num_adc_nids
= ARRAY_SIZE(alc268_adc_nids_alt
),
13404 .adc_nids
= alc268_adc_nids_alt
,
13405 .capsrc_nids
= alc268_capsrc_nids
,
13407 .num_channel_mode
= ARRAY_SIZE(alc268_modes
),
13408 .channel_mode
= alc268_modes
,
13409 .unsol_event
= alc_sku_unsol_event
,
13410 .setup
= alc268_dell_setup
,
13411 .init_hook
= alc_inithook
,
13414 .mixers
= { alc268_base_mixer
, alc268_capture_alt_mixer
,
13415 alc268_beep_mixer
},
13416 .init_verbs
= { alc268_base_init_verbs
, alc268_eapd_verbs
,
13417 alc268_toshiba_verbs
},
13418 .num_dacs
= ARRAY_SIZE(alc268_dac_nids
),
13419 .dac_nids
= alc268_dac_nids
,
13420 .num_adc_nids
= ARRAY_SIZE(alc268_adc_nids_alt
),
13421 .adc_nids
= alc268_adc_nids_alt
,
13422 .capsrc_nids
= alc268_capsrc_nids
,
13424 .dig_out_nid
= ALC268_DIGOUT_NID
,
13425 .num_channel_mode
= ARRAY_SIZE(alc268_modes
),
13426 .channel_mode
= alc268_modes
,
13427 .input_mux
= &alc268_capture_source
,
13428 .setup
= alc268_toshiba_setup
,
13429 .init_hook
= alc268_toshiba_automute
,
13431 #ifdef CONFIG_SND_DEBUG
13433 .mixers
= { alc268_test_mixer
, alc268_capture_mixer
},
13434 .init_verbs
= { alc268_base_init_verbs
, alc268_eapd_verbs
,
13435 alc268_volume_init_verbs
},
13436 .num_dacs
= ARRAY_SIZE(alc268_dac_nids
),
13437 .dac_nids
= alc268_dac_nids
,
13438 .num_adc_nids
= ARRAY_SIZE(alc268_adc_nids_alt
),
13439 .adc_nids
= alc268_adc_nids_alt
,
13440 .capsrc_nids
= alc268_capsrc_nids
,
13442 .dig_out_nid
= ALC268_DIGOUT_NID
,
13443 .num_channel_mode
= ARRAY_SIZE(alc268_modes
),
13444 .channel_mode
= alc268_modes
,
13445 .input_mux
= &alc268_capture_source
,
13450 static int patch_alc268(struct hda_codec
*codec
)
13452 struct alc_spec
*spec
;
13454 int i
, has_beep
, err
;
13456 spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
13460 codec
->spec
= spec
;
13462 board_config
= snd_hda_check_board_config(codec
, ALC268_MODEL_LAST
,
13466 if (board_config
< 0 || board_config
>= ALC268_MODEL_LAST
)
13467 board_config
= snd_hda_check_board_codec_sid_config(codec
,
13468 ALC268_MODEL_LAST
, alc268_models
, alc268_ssid_cfg_tbl
);
13470 if (board_config
< 0 || board_config
>= ALC268_MODEL_LAST
) {
13471 printk(KERN_INFO
"hda_codec: %s: BIOS auto-probing.\n",
13473 board_config
= ALC268_AUTO
;
13476 if (board_config
== ALC268_AUTO
) {
13477 /* automatic parse from the BIOS config */
13478 err
= alc268_parse_auto_config(codec
);
13484 "hda_codec: Cannot set up configuration "
13485 "from BIOS. Using base mode...\n");
13486 board_config
= ALC268_3ST
;
13490 if (board_config
!= ALC268_AUTO
)
13491 setup_preset(codec
, &alc268_presets
[board_config
]);
13493 spec
->stream_analog_playback
= &alc268_pcm_analog_playback
;
13494 spec
->stream_analog_capture
= &alc268_pcm_analog_capture
;
13495 spec
->stream_analog_alt_capture
= &alc268_pcm_analog_alt_capture
;
13497 spec
->stream_digital_playback
= &alc268_pcm_digital_playback
;
13500 for (i
= 0; i
< spec
->num_mixers
; i
++) {
13501 if (spec
->mixers
[i
] == alc268_beep_mixer
) {
13508 err
= snd_hda_attach_beep_device(codec
, 0x1);
13513 if (!query_amp_caps(codec
, 0x1d, HDA_INPUT
))
13514 /* override the amp caps for beep generator */
13515 snd_hda_override_amp_caps(codec
, 0x1d, HDA_INPUT
,
13516 (0x0c << AC_AMPCAP_OFFSET_SHIFT
) |
13517 (0x0c << AC_AMPCAP_NUM_STEPS_SHIFT
) |
13518 (0x07 << AC_AMPCAP_STEP_SIZE_SHIFT
) |
13519 (0 << AC_AMPCAP_MUTE_SHIFT
));
13522 if (!spec
->no_analog
&& !spec
->adc_nids
&& spec
->input_mux
) {
13523 /* check whether NID 0x07 is valid */
13524 unsigned int wcap
= get_wcaps(codec
, 0x07);
13527 spec
->capsrc_nids
= alc268_capsrc_nids
;
13529 wcap
= get_wcaps_type(wcap
);
13530 if (spec
->auto_mic
||
13531 wcap
!= AC_WID_AUD_IN
|| spec
->input_mux
->num_items
== 1) {
13532 spec
->adc_nids
= alc268_adc_nids_alt
;
13533 spec
->num_adc_nids
= ARRAY_SIZE(alc268_adc_nids_alt
);
13534 if (spec
->auto_mic
)
13535 fixup_automic_adc(codec
);
13536 if (spec
->auto_mic
|| spec
->input_mux
->num_items
== 1)
13537 add_mixer(spec
, alc268_capture_nosrc_mixer
);
13539 add_mixer(spec
, alc268_capture_alt_mixer
);
13541 spec
->adc_nids
= alc268_adc_nids
;
13542 spec
->num_adc_nids
= ARRAY_SIZE(alc268_adc_nids
);
13543 add_mixer(spec
, alc268_capture_mixer
);
13545 /* set default input source */
13546 for (i
= 0; i
< spec
->num_adc_nids
; i
++)
13547 snd_hda_codec_write_cache(codec
, alc268_capsrc_nids
[i
],
13548 0, AC_VERB_SET_CONNECT_SEL
,
13549 i
< spec
->num_mux_defs
?
13550 spec
->input_mux
[i
].items
[0].index
:
13551 spec
->input_mux
->items
[0].index
);
13554 spec
->vmaster_nid
= 0x02;
13556 codec
->patch_ops
= alc_patch_ops
;
13557 if (board_config
== ALC268_AUTO
)
13558 spec
->init_hook
= alc268_auto_init
;
13564 * ALC269 channel source setting (2 channel)
13566 #define ALC269_DIGOUT_NID ALC880_DIGOUT_NID
13568 #define alc269_dac_nids alc260_dac_nids
13570 static hda_nid_t alc269_adc_nids
[1] = {
13575 static hda_nid_t alc269_capsrc_nids
[1] = {
13579 static hda_nid_t alc269vb_adc_nids
[1] = {
13584 static hda_nid_t alc269vb_capsrc_nids
[1] = {
13588 static hda_nid_t alc269_adc_candidates
[] = {
13592 #define alc269_modes alc260_modes
13593 #define alc269_capture_source alc880_lg_lw_capture_source
13595 static struct snd_kcontrol_new alc269_base_mixer
[] = {
13596 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
13597 HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
13598 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
13599 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
13600 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
13601 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
13602 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
13603 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x01, HDA_INPUT
),
13604 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x01, HDA_INPUT
),
13605 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT
),
13606 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
13607 HDA_CODEC_MUTE_MONO("Mono Playback Switch", 0x16, 2, 0x0, HDA_OUTPUT
),
13611 static struct snd_kcontrol_new alc269_quanta_fl1_mixer
[] = {
13612 /* output mixer control */
13613 HDA_BIND_VOL("Master Playback Volume", &alc268_acer_bind_master_vol
),
13615 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
13616 .name
= "Master Playback Switch",
13617 .subdevice
= HDA_SUBDEV_AMP_FLAG
,
13618 .info
= snd_hda_mixer_amp_switch_info
,
13619 .get
= snd_hda_mixer_amp_switch_get
,
13620 .put
= alc268_acer_master_sw_put
,
13621 .private_value
= HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT
),
13623 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
13624 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
13625 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
13626 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x0b, 0x01, HDA_INPUT
),
13627 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x0b, 0x01, HDA_INPUT
),
13628 HDA_CODEC_VOLUME("Internal Mic Boost", 0x19, 0, HDA_INPUT
),
13632 static struct snd_kcontrol_new alc269_lifebook_mixer
[] = {
13633 /* output mixer control */
13634 HDA_BIND_VOL("Master Playback Volume", &alc268_acer_bind_master_vol
),
13636 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
13637 .name
= "Master Playback Switch",
13638 .subdevice
= HDA_SUBDEV_AMP_FLAG
,
13639 .info
= snd_hda_mixer_amp_switch_info
,
13640 .get
= snd_hda_mixer_amp_switch_get
,
13641 .put
= alc268_acer_master_sw_put
,
13642 .private_value
= HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT
),
13644 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
13645 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
13646 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
13647 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x0b, 0x01, HDA_INPUT
),
13648 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x0b, 0x01, HDA_INPUT
),
13649 HDA_CODEC_VOLUME("Internal Mic Boost", 0x19, 0, HDA_INPUT
),
13650 HDA_CODEC_VOLUME("Dock Mic Playback Volume", 0x0b, 0x03, HDA_INPUT
),
13651 HDA_CODEC_MUTE("Dock Mic Playback Switch", 0x0b, 0x03, HDA_INPUT
),
13652 HDA_CODEC_VOLUME("Dock Mic Boost", 0x1b, 0, HDA_INPUT
),
13656 static struct snd_kcontrol_new alc269_laptop_mixer
[] = {
13657 HDA_CODEC_MUTE("Speaker Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
13658 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
13659 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
13660 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x03, 0x0, HDA_OUTPUT
),
13664 static struct snd_kcontrol_new alc269vb_laptop_mixer
[] = {
13665 HDA_CODEC_MUTE("Speaker Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
13666 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
13667 HDA_CODEC_MUTE("Headphone Playback Switch", 0x21, 0x0, HDA_OUTPUT
),
13668 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x03, 0x0, HDA_OUTPUT
),
13672 /* capture mixer elements */
13673 static struct snd_kcontrol_new alc269_laptop_analog_capture_mixer
[] = {
13674 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT
),
13675 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT
),
13676 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
13677 HDA_CODEC_VOLUME("IntMic Boost", 0x19, 0, HDA_INPUT
),
13681 static struct snd_kcontrol_new alc269_laptop_digital_capture_mixer
[] = {
13682 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT
),
13683 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT
),
13684 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
13688 static struct snd_kcontrol_new alc269vb_laptop_analog_capture_mixer
[] = {
13689 HDA_CODEC_VOLUME("Capture Volume", 0x09, 0x0, HDA_INPUT
),
13690 HDA_CODEC_MUTE("Capture Switch", 0x09, 0x0, HDA_INPUT
),
13691 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
13692 HDA_CODEC_VOLUME("IntMic Boost", 0x19, 0, HDA_INPUT
),
13696 static struct snd_kcontrol_new alc269vb_laptop_digital_capture_mixer
[] = {
13697 HDA_CODEC_VOLUME("Capture Volume", 0x09, 0x0, HDA_INPUT
),
13698 HDA_CODEC_MUTE("Capture Switch", 0x09, 0x0, HDA_INPUT
),
13699 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
13704 #define alc269_fujitsu_mixer alc269_laptop_mixer
13706 static struct hda_verb alc269_quanta_fl1_verbs
[] = {
13707 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x01},
13708 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
13709 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
13710 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
13711 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
13712 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
13716 static struct hda_verb alc269_lifebook_verbs
[] = {
13717 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x01},
13718 {0x1a, AC_VERB_SET_CONNECT_SEL
, 0x01},
13719 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
13720 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
13721 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
13722 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
13723 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
13724 {0x1a, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
13725 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
13726 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
13730 /* toggle speaker-output according to the hp-jack state */
13731 static void alc269_quanta_fl1_speaker_automute(struct hda_codec
*codec
)
13733 unsigned int present
;
13734 unsigned char bits
;
13736 present
= snd_hda_jack_detect(codec
, 0x15);
13737 bits
= present
? HDA_AMP_MUTE
: 0;
13738 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 0,
13739 HDA_AMP_MUTE
, bits
);
13740 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 1,
13741 HDA_AMP_MUTE
, bits
);
13743 snd_hda_codec_write(codec
, 0x20, 0,
13744 AC_VERB_SET_COEF_INDEX
, 0x0c);
13745 snd_hda_codec_write(codec
, 0x20, 0,
13746 AC_VERB_SET_PROC_COEF
, 0x680);
13748 snd_hda_codec_write(codec
, 0x20, 0,
13749 AC_VERB_SET_COEF_INDEX
, 0x0c);
13750 snd_hda_codec_write(codec
, 0x20, 0,
13751 AC_VERB_SET_PROC_COEF
, 0x480);
13754 /* toggle speaker-output according to the hp-jacks state */
13755 static void alc269_lifebook_speaker_automute(struct hda_codec
*codec
)
13757 unsigned int present
;
13758 unsigned char bits
;
13760 /* Check laptop headphone socket */
13761 present
= snd_hda_jack_detect(codec
, 0x15);
13763 /* Check port replicator headphone socket */
13764 present
|= snd_hda_jack_detect(codec
, 0x1a);
13766 bits
= present
? HDA_AMP_MUTE
: 0;
13767 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 0,
13768 HDA_AMP_MUTE
, bits
);
13769 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 1,
13770 HDA_AMP_MUTE
, bits
);
13772 snd_hda_codec_write(codec
, 0x20, 0,
13773 AC_VERB_SET_COEF_INDEX
, 0x0c);
13774 snd_hda_codec_write(codec
, 0x20, 0,
13775 AC_VERB_SET_PROC_COEF
, 0x680);
13777 snd_hda_codec_write(codec
, 0x20, 0,
13778 AC_VERB_SET_COEF_INDEX
, 0x0c);
13779 snd_hda_codec_write(codec
, 0x20, 0,
13780 AC_VERB_SET_PROC_COEF
, 0x480);
13783 static void alc269_lifebook_mic_autoswitch(struct hda_codec
*codec
)
13785 unsigned int present_laptop
;
13786 unsigned int present_dock
;
13788 present_laptop
= snd_hda_jack_detect(codec
, 0x18);
13789 present_dock
= snd_hda_jack_detect(codec
, 0x1b);
13791 /* Laptop mic port overrides dock mic port, design decision */
13793 snd_hda_codec_write(codec
, 0x23, 0,
13794 AC_VERB_SET_CONNECT_SEL
, 0x3);
13795 if (present_laptop
)
13796 snd_hda_codec_write(codec
, 0x23, 0,
13797 AC_VERB_SET_CONNECT_SEL
, 0x0);
13798 if (!present_dock
&& !present_laptop
)
13799 snd_hda_codec_write(codec
, 0x23, 0,
13800 AC_VERB_SET_CONNECT_SEL
, 0x1);
13803 static void alc269_quanta_fl1_unsol_event(struct hda_codec
*codec
,
13806 switch (res
>> 26) {
13807 case ALC880_HP_EVENT
:
13808 alc269_quanta_fl1_speaker_automute(codec
);
13810 case ALC880_MIC_EVENT
:
13811 alc_mic_automute(codec
);
13816 static void alc269_lifebook_unsol_event(struct hda_codec
*codec
,
13819 if ((res
>> 26) == ALC880_HP_EVENT
)
13820 alc269_lifebook_speaker_automute(codec
);
13821 if ((res
>> 26) == ALC880_MIC_EVENT
)
13822 alc269_lifebook_mic_autoswitch(codec
);
13825 static void alc269_quanta_fl1_setup(struct hda_codec
*codec
)
13827 struct alc_spec
*spec
= codec
->spec
;
13828 spec
->autocfg
.hp_pins
[0] = 0x15;
13829 spec
->autocfg
.speaker_pins
[0] = 0x14;
13830 spec
->ext_mic
.pin
= 0x18;
13831 spec
->ext_mic
.mux_idx
= 0;
13832 spec
->int_mic
.pin
= 0x19;
13833 spec
->int_mic
.mux_idx
= 1;
13834 spec
->auto_mic
= 1;
13837 static void alc269_quanta_fl1_init_hook(struct hda_codec
*codec
)
13839 alc269_quanta_fl1_speaker_automute(codec
);
13840 alc_mic_automute(codec
);
13843 static void alc269_lifebook_init_hook(struct hda_codec
*codec
)
13845 alc269_lifebook_speaker_automute(codec
);
13846 alc269_lifebook_mic_autoswitch(codec
);
13849 static struct hda_verb alc269_laptop_dmic_init_verbs
[] = {
13850 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x01},
13851 {0x23, AC_VERB_SET_CONNECT_SEL
, 0x05},
13852 {0x02, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb026 },
13853 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7019 | (0x00 << 8))},
13854 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
13855 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
13856 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
13860 static struct hda_verb alc269_laptop_amic_init_verbs
[] = {
13861 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x01},
13862 {0x23, AC_VERB_SET_CONNECT_SEL
, 0x01},
13863 {0x02, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb026 },
13864 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, (0x701b | (0x00 << 8))},
13865 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
13866 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
13870 static struct hda_verb alc269vb_laptop_dmic_init_verbs
[] = {
13871 {0x21, AC_VERB_SET_CONNECT_SEL
, 0x01},
13872 {0x22, AC_VERB_SET_CONNECT_SEL
, 0x06},
13873 {0x02, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb026 },
13874 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7019 | (0x00 << 8))},
13875 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
13876 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
13877 {0x21, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
13881 static struct hda_verb alc269vb_laptop_amic_init_verbs
[] = {
13882 {0x21, AC_VERB_SET_CONNECT_SEL
, 0x01},
13883 {0x22, AC_VERB_SET_CONNECT_SEL
, 0x01},
13884 {0x02, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb026 },
13885 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7019 | (0x00 << 8))},
13886 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
13887 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
13888 {0x21, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
13892 /* toggle speaker-output according to the hp-jack state */
13893 static void alc269_speaker_automute(struct hda_codec
*codec
)
13895 struct alc_spec
*spec
= codec
->spec
;
13896 unsigned int nid
= spec
->autocfg
.hp_pins
[0];
13897 unsigned int present
;
13898 unsigned char bits
;
13900 present
= snd_hda_jack_detect(codec
, nid
);
13901 bits
= present
? HDA_AMP_MUTE
: 0;
13902 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 0,
13903 HDA_AMP_MUTE
, bits
);
13904 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 1,
13905 HDA_AMP_MUTE
, bits
);
13908 /* unsolicited event for HP jack sensing */
13909 static void alc269_laptop_unsol_event(struct hda_codec
*codec
,
13912 switch (res
>> 26) {
13913 case ALC880_HP_EVENT
:
13914 alc269_speaker_automute(codec
);
13916 case ALC880_MIC_EVENT
:
13917 alc_mic_automute(codec
);
13922 static void alc269_laptop_amic_setup(struct hda_codec
*codec
)
13924 struct alc_spec
*spec
= codec
->spec
;
13925 spec
->autocfg
.hp_pins
[0] = 0x15;
13926 spec
->autocfg
.speaker_pins
[0] = 0x14;
13927 spec
->ext_mic
.pin
= 0x18;
13928 spec
->ext_mic
.mux_idx
= 0;
13929 spec
->int_mic
.pin
= 0x19;
13930 spec
->int_mic
.mux_idx
= 1;
13931 spec
->auto_mic
= 1;
13934 static void alc269_laptop_dmic_setup(struct hda_codec
*codec
)
13936 struct alc_spec
*spec
= codec
->spec
;
13937 spec
->autocfg
.hp_pins
[0] = 0x15;
13938 spec
->autocfg
.speaker_pins
[0] = 0x14;
13939 spec
->ext_mic
.pin
= 0x18;
13940 spec
->ext_mic
.mux_idx
= 0;
13941 spec
->int_mic
.pin
= 0x12;
13942 spec
->int_mic
.mux_idx
= 5;
13943 spec
->auto_mic
= 1;
13946 static void alc269vb_laptop_amic_setup(struct hda_codec
*codec
)
13948 struct alc_spec
*spec
= codec
->spec
;
13949 spec
->autocfg
.hp_pins
[0] = 0x21;
13950 spec
->autocfg
.speaker_pins
[0] = 0x14;
13951 spec
->ext_mic
.pin
= 0x18;
13952 spec
->ext_mic
.mux_idx
= 0;
13953 spec
->int_mic
.pin
= 0x19;
13954 spec
->int_mic
.mux_idx
= 1;
13955 spec
->auto_mic
= 1;
13958 static void alc269vb_laptop_dmic_setup(struct hda_codec
*codec
)
13960 struct alc_spec
*spec
= codec
->spec
;
13961 spec
->autocfg
.hp_pins
[0] = 0x21;
13962 spec
->autocfg
.speaker_pins
[0] = 0x14;
13963 spec
->ext_mic
.pin
= 0x18;
13964 spec
->ext_mic
.mux_idx
= 0;
13965 spec
->int_mic
.pin
= 0x12;
13966 spec
->int_mic
.mux_idx
= 6;
13967 spec
->auto_mic
= 1;
13970 static void alc269_laptop_inithook(struct hda_codec
*codec
)
13972 alc269_speaker_automute(codec
);
13973 alc_mic_automute(codec
);
13977 * generic initialization of ADC, input mixers and output mixers
13979 static struct hda_verb alc269_init_verbs
[] = {
13981 * Unmute ADC0 and set the default input to mic-in
13983 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
13986 * Set up output mixers (0x02 - 0x03)
13988 /* set vol=0 to output mixers */
13989 {0x02, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
13990 {0x03, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
13992 /* set up input amps for analog loopback */
13993 /* Amp Indices: DAC = 0, mixer = 1 */
13994 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
13995 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
13996 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
13997 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
13998 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
13999 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14001 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
14002 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
14003 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
14004 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
14005 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
14006 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
14007 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
14009 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
14010 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
14012 /* FIXME: use Mux-type input source selection */
14013 /* Mixer elements: 0x18, 19, 1a, 1b, 1d, 0b */
14014 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
14015 {0x23, AC_VERB_SET_CONNECT_SEL
, 0x00},
14018 {0x14, AC_VERB_SET_EAPD_BTLENABLE
, 2},
14022 static struct hda_verb alc269vb_init_verbs
[] = {
14024 * Unmute ADC0 and set the default input to mic-in
14026 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14029 * Set up output mixers (0x02 - 0x03)
14031 /* set vol=0 to output mixers */
14032 {0x02, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
14033 {0x03, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
14035 /* set up input amps for analog loopback */
14036 /* Amp Indices: DAC = 0, mixer = 1 */
14037 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14038 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14039 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14040 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14041 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14042 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14044 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
14045 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
14046 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
14047 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
14048 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
14049 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
14050 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
14052 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
14053 {0x21, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
14055 /* FIXME: use Mux-type input source selection */
14056 /* Mixer elements: 0x18, 19, 1a, 1b, 1d, 0b */
14057 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
14058 {0x22, AC_VERB_SET_CONNECT_SEL
, 0x00},
14061 {0x14, AC_VERB_SET_EAPD_BTLENABLE
, 2},
14065 #define alc269_auto_create_multi_out_ctls \
14066 alc268_auto_create_multi_out_ctls
14067 #define alc269_auto_create_input_ctls \
14068 alc268_auto_create_input_ctls
14070 #ifdef CONFIG_SND_HDA_POWER_SAVE
14071 #define alc269_loopbacks alc880_loopbacks
14074 /* pcm configuration: identical with ALC880 */
14075 #define alc269_pcm_analog_playback alc880_pcm_analog_playback
14076 #define alc269_pcm_analog_capture alc880_pcm_analog_capture
14077 #define alc269_pcm_digital_playback alc880_pcm_digital_playback
14078 #define alc269_pcm_digital_capture alc880_pcm_digital_capture
14080 static struct hda_pcm_stream alc269_44k_pcm_analog_playback
= {
14084 .rates
= SNDRV_PCM_RATE_44100
, /* fixed rate */
14085 /* NID is set in alc_build_pcms */
14087 .open
= alc880_playback_pcm_open
,
14088 .prepare
= alc880_playback_pcm_prepare
,
14089 .cleanup
= alc880_playback_pcm_cleanup
14093 static struct hda_pcm_stream alc269_44k_pcm_analog_capture
= {
14097 .rates
= SNDRV_PCM_RATE_44100
, /* fixed rate */
14098 /* NID is set in alc_build_pcms */
14101 #ifdef CONFIG_SND_HDA_POWER_SAVE
14102 static int alc269_mic2_for_mute_led(struct hda_codec
*codec
)
14104 switch (codec
->subsystem_id
) {
14111 static int alc269_mic2_mute_check_ps(struct hda_codec
*codec
, hda_nid_t nid
)
14113 /* update mute-LED according to the speaker mute state */
14114 if (nid
== 0x01 || nid
== 0x14) {
14116 if (snd_hda_codec_amp_read(codec
, 0x14, 0, HDA_OUTPUT
, 0) &
14121 /* mic2 vref pin is used for mute LED control */
14122 snd_hda_codec_update_cache(codec
, 0x19, 0,
14123 AC_VERB_SET_PIN_WIDGET_CONTROL
,
14126 return alc_check_power_status(codec
, nid
);
14128 #endif /* CONFIG_SND_HDA_POWER_SAVE */
14131 * BIOS auto configuration
14133 static int alc269_parse_auto_config(struct hda_codec
*codec
)
14135 struct alc_spec
*spec
= codec
->spec
;
14137 static hda_nid_t alc269_ignore
[] = { 0x1d, 0 };
14139 err
= snd_hda_parse_pin_def_config(codec
, &spec
->autocfg
,
14144 err
= alc269_auto_create_multi_out_ctls(spec
, &spec
->autocfg
);
14147 err
= alc269_auto_create_input_ctls(codec
, &spec
->autocfg
);
14151 spec
->multiout
.max_channels
= spec
->multiout
.num_dacs
* 2;
14153 if (spec
->autocfg
.dig_outs
)
14154 spec
->multiout
.dig_out_nid
= ALC269_DIGOUT_NID
;
14156 if (spec
->kctls
.list
)
14157 add_mixer(spec
, spec
->kctls
.list
);
14159 if ((alc_read_coef_idx(codec
, 0) & 0x00f0) == 0x0010) {
14160 add_verb(spec
, alc269vb_init_verbs
);
14161 alc_ssid_check(codec
, 0, 0x1b, 0x14, 0x21);
14163 add_verb(spec
, alc269_init_verbs
);
14164 alc_ssid_check(codec
, 0x15, 0x1b, 0x14, 0);
14167 spec
->num_mux_defs
= 1;
14168 spec
->input_mux
= &spec
->private_imux
[0];
14169 fillup_priv_adc_nids(codec
, alc269_adc_candidates
,
14170 sizeof(alc269_adc_candidates
));
14172 /* set default input source */
14173 snd_hda_codec_write_cache(codec
, spec
->capsrc_nids
[0],
14174 0, AC_VERB_SET_CONNECT_SEL
,
14175 spec
->input_mux
->items
[0].index
);
14177 err
= alc_auto_add_mic_boost(codec
);
14181 if (!spec
->cap_mixer
&& !spec
->no_analog
)
14182 set_capture_mixer(codec
);
14187 #define alc269_auto_init_multi_out alc268_auto_init_multi_out
14188 #define alc269_auto_init_hp_out alc268_auto_init_hp_out
14189 #define alc269_auto_init_analog_input alc882_auto_init_analog_input
14192 /* init callback for auto-configuration model -- overriding the default init */
14193 static void alc269_auto_init(struct hda_codec
*codec
)
14195 struct alc_spec
*spec
= codec
->spec
;
14196 alc269_auto_init_multi_out(codec
);
14197 alc269_auto_init_hp_out(codec
);
14198 alc269_auto_init_analog_input(codec
);
14199 if (spec
->unsol_event
)
14200 alc_inithook(codec
);
14204 ALC269_FIXUP_SONY_VAIO
,
14207 static const struct hda_verb alc269_sony_vaio_fixup_verbs
[] = {
14208 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREFGRD
},
14212 static const struct alc_fixup alc269_fixups
[] = {
14213 [ALC269_FIXUP_SONY_VAIO
] = {
14214 .verbs
= alc269_sony_vaio_fixup_verbs
14218 static struct snd_pci_quirk alc269_fixup_tbl
[] = {
14219 SND_PCI_QUIRK(0x104d, 0x9071, "Sony VAIO", ALC269_FIXUP_SONY_VAIO
),
14225 * configuration and preset
14227 static const char *alc269_models
[ALC269_MODEL_LAST
] = {
14228 [ALC269_BASIC
] = "basic",
14229 [ALC269_QUANTA_FL1
] = "quanta",
14230 [ALC269_AMIC
] = "laptop-amic",
14231 [ALC269_DMIC
] = "laptop-dmic",
14232 [ALC269_FUJITSU
] = "fujitsu",
14233 [ALC269_LIFEBOOK
] = "lifebook",
14234 [ALC269_AUTO
] = "auto",
14237 static struct snd_pci_quirk alc269_cfg_tbl
[] = {
14238 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_QUANTA_FL1
),
14239 SND_PCI_QUIRK(0x1043, 0x8330, "ASUS Eeepc P703 P900A",
14241 SND_PCI_QUIRK(0x1043, 0x1013, "ASUS N61Da", ALC269VB_AMIC
),
14242 SND_PCI_QUIRK(0x1043, 0x1113, "ASUS N63Jn", ALC269VB_AMIC
),
14243 SND_PCI_QUIRK(0x1043, 0x1143, "ASUS B53f", ALC269VB_AMIC
),
14244 SND_PCI_QUIRK(0x1043, 0x1133, "ASUS UJ20ft", ALC269_AMIC
),
14245 SND_PCI_QUIRK(0x1043, 0x1183, "ASUS K72DR", ALC269VB_AMIC
),
14246 SND_PCI_QUIRK(0x1043, 0x11b3, "ASUS K52DR", ALC269VB_AMIC
),
14247 SND_PCI_QUIRK(0x1043, 0x11e3, "ASUS U33Jc", ALC269VB_AMIC
),
14248 SND_PCI_QUIRK(0x1043, 0x1273, "ASUS UL80Jt", ALC269VB_AMIC
),
14249 SND_PCI_QUIRK(0x1043, 0x1283, "ASUS U53Jc", ALC269_AMIC
),
14250 SND_PCI_QUIRK(0x1043, 0x12b3, "ASUS N82Jv", ALC269_AMIC
),
14251 SND_PCI_QUIRK(0x1043, 0x12d3, "ASUS N61Jv", ALC269_AMIC
),
14252 SND_PCI_QUIRK(0x1043, 0x13a3, "ASUS UL30Vt", ALC269_AMIC
),
14253 SND_PCI_QUIRK(0x1043, 0x1373, "ASUS G73JX", ALC269_AMIC
),
14254 SND_PCI_QUIRK(0x1043, 0x1383, "ASUS UJ30Jc", ALC269_AMIC
),
14255 SND_PCI_QUIRK(0x1043, 0x13d3, "ASUS N61JA", ALC269_AMIC
),
14256 SND_PCI_QUIRK(0x1043, 0x1413, "ASUS UL50", ALC269_AMIC
),
14257 SND_PCI_QUIRK(0x1043, 0x1443, "ASUS UL30", ALC269_AMIC
),
14258 SND_PCI_QUIRK(0x1043, 0x1453, "ASUS M60Jv", ALC269_AMIC
),
14259 SND_PCI_QUIRK(0x1043, 0x1483, "ASUS UL80", ALC269_AMIC
),
14260 SND_PCI_QUIRK(0x1043, 0x14f3, "ASUS F83Vf", ALC269_AMIC
),
14261 SND_PCI_QUIRK(0x1043, 0x14e3, "ASUS UL20", ALC269_AMIC
),
14262 SND_PCI_QUIRK(0x1043, 0x1513, "ASUS UX30", ALC269_AMIC
),
14263 SND_PCI_QUIRK(0x1043, 0x1593, "ASUS N51Vn", ALC269_AMIC
),
14264 SND_PCI_QUIRK(0x1043, 0x15a3, "ASUS N60Jv", ALC269_AMIC
),
14265 SND_PCI_QUIRK(0x1043, 0x15b3, "ASUS N60Dp", ALC269_AMIC
),
14266 SND_PCI_QUIRK(0x1043, 0x15c3, "ASUS N70De", ALC269_AMIC
),
14267 SND_PCI_QUIRK(0x1043, 0x15e3, "ASUS F83T", ALC269_AMIC
),
14268 SND_PCI_QUIRK(0x1043, 0x1643, "ASUS M60J", ALC269_AMIC
),
14269 SND_PCI_QUIRK(0x1043, 0x1653, "ASUS U50", ALC269_AMIC
),
14270 SND_PCI_QUIRK(0x1043, 0x1693, "ASUS F50N", ALC269_AMIC
),
14271 SND_PCI_QUIRK(0x1043, 0x16a3, "ASUS F5Q", ALC269_AMIC
),
14272 SND_PCI_QUIRK(0x1043, 0x16e3, "ASUS UX50", ALC269_DMIC
),
14273 SND_PCI_QUIRK(0x1043, 0x1723, "ASUS P80", ALC269_AMIC
),
14274 SND_PCI_QUIRK(0x1043, 0x1743, "ASUS U80", ALC269_AMIC
),
14275 SND_PCI_QUIRK(0x1043, 0x1773, "ASUS U20A", ALC269_AMIC
),
14276 SND_PCI_QUIRK(0x1043, 0x1883, "ASUS F81Se", ALC269_AMIC
),
14277 SND_PCI_QUIRK(0x1043, 0x831a, "ASUS Eeepc P901",
14279 SND_PCI_QUIRK(0x1043, 0x834a, "ASUS Eeepc S101",
14281 SND_PCI_QUIRK(0x1043, 0x8398, "ASUS P1005HA", ALC269_DMIC
),
14282 SND_PCI_QUIRK(0x1043, 0x83ce, "ASUS P1005HA", ALC269_DMIC
),
14283 SND_PCI_QUIRK(0x104d, 0x9071, "Sony VAIO", ALC269_AUTO
),
14284 SND_PCI_QUIRK(0x10cf, 0x1475, "Lifebook ICH9M-based", ALC269_LIFEBOOK
),
14285 SND_PCI_QUIRK(0x152d, 0x1778, "Quanta ON1", ALC269_DMIC
),
14286 SND_PCI_QUIRK(0x1734, 0x115d, "FSC Amilo", ALC269_FUJITSU
),
14287 SND_PCI_QUIRK(0x17aa, 0x3be9, "Quanta Wistron", ALC269_AMIC
),
14288 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_AMIC
),
14289 SND_PCI_QUIRK(0x17ff, 0x059a, "Quanta EL3", ALC269_DMIC
),
14290 SND_PCI_QUIRK(0x17ff, 0x059b, "Quanta JR1", ALC269_DMIC
),
14294 static struct alc_config_preset alc269_presets
[] = {
14296 .mixers
= { alc269_base_mixer
},
14297 .init_verbs
= { alc269_init_verbs
},
14298 .num_dacs
= ARRAY_SIZE(alc269_dac_nids
),
14299 .dac_nids
= alc269_dac_nids
,
14301 .num_channel_mode
= ARRAY_SIZE(alc269_modes
),
14302 .channel_mode
= alc269_modes
,
14303 .input_mux
= &alc269_capture_source
,
14305 [ALC269_QUANTA_FL1
] = {
14306 .mixers
= { alc269_quanta_fl1_mixer
},
14307 .init_verbs
= { alc269_init_verbs
, alc269_quanta_fl1_verbs
},
14308 .num_dacs
= ARRAY_SIZE(alc269_dac_nids
),
14309 .dac_nids
= alc269_dac_nids
,
14311 .num_channel_mode
= ARRAY_SIZE(alc269_modes
),
14312 .channel_mode
= alc269_modes
,
14313 .input_mux
= &alc269_capture_source
,
14314 .unsol_event
= alc269_quanta_fl1_unsol_event
,
14315 .setup
= alc269_quanta_fl1_setup
,
14316 .init_hook
= alc269_quanta_fl1_init_hook
,
14319 .mixers
= { alc269_laptop_mixer
},
14320 .cap_mixer
= alc269_laptop_analog_capture_mixer
,
14321 .init_verbs
= { alc269_init_verbs
,
14322 alc269_laptop_amic_init_verbs
},
14323 .num_dacs
= ARRAY_SIZE(alc269_dac_nids
),
14324 .dac_nids
= alc269_dac_nids
,
14326 .num_channel_mode
= ARRAY_SIZE(alc269_modes
),
14327 .channel_mode
= alc269_modes
,
14328 .unsol_event
= alc269_laptop_unsol_event
,
14329 .setup
= alc269_laptop_amic_setup
,
14330 .init_hook
= alc269_laptop_inithook
,
14333 .mixers
= { alc269_laptop_mixer
},
14334 .cap_mixer
= alc269_laptop_digital_capture_mixer
,
14335 .init_verbs
= { alc269_init_verbs
,
14336 alc269_laptop_dmic_init_verbs
},
14337 .num_dacs
= ARRAY_SIZE(alc269_dac_nids
),
14338 .dac_nids
= alc269_dac_nids
,
14340 .num_channel_mode
= ARRAY_SIZE(alc269_modes
),
14341 .channel_mode
= alc269_modes
,
14342 .unsol_event
= alc269_laptop_unsol_event
,
14343 .setup
= alc269_laptop_dmic_setup
,
14344 .init_hook
= alc269_laptop_inithook
,
14346 [ALC269VB_AMIC
] = {
14347 .mixers
= { alc269vb_laptop_mixer
},
14348 .cap_mixer
= alc269vb_laptop_analog_capture_mixer
,
14349 .init_verbs
= { alc269vb_init_verbs
,
14350 alc269vb_laptop_amic_init_verbs
},
14351 .num_dacs
= ARRAY_SIZE(alc269_dac_nids
),
14352 .dac_nids
= alc269_dac_nids
,
14354 .num_channel_mode
= ARRAY_SIZE(alc269_modes
),
14355 .channel_mode
= alc269_modes
,
14356 .unsol_event
= alc269_laptop_unsol_event
,
14357 .setup
= alc269vb_laptop_amic_setup
,
14358 .init_hook
= alc269_laptop_inithook
,
14360 [ALC269VB_DMIC
] = {
14361 .mixers
= { alc269vb_laptop_mixer
},
14362 .cap_mixer
= alc269vb_laptop_digital_capture_mixer
,
14363 .init_verbs
= { alc269vb_init_verbs
,
14364 alc269vb_laptop_dmic_init_verbs
},
14365 .num_dacs
= ARRAY_SIZE(alc269_dac_nids
),
14366 .dac_nids
= alc269_dac_nids
,
14368 .num_channel_mode
= ARRAY_SIZE(alc269_modes
),
14369 .channel_mode
= alc269_modes
,
14370 .unsol_event
= alc269_laptop_unsol_event
,
14371 .setup
= alc269vb_laptop_dmic_setup
,
14372 .init_hook
= alc269_laptop_inithook
,
14374 [ALC269_FUJITSU
] = {
14375 .mixers
= { alc269_fujitsu_mixer
},
14376 .cap_mixer
= alc269_laptop_digital_capture_mixer
,
14377 .init_verbs
= { alc269_init_verbs
,
14378 alc269_laptop_dmic_init_verbs
},
14379 .num_dacs
= ARRAY_SIZE(alc269_dac_nids
),
14380 .dac_nids
= alc269_dac_nids
,
14382 .num_channel_mode
= ARRAY_SIZE(alc269_modes
),
14383 .channel_mode
= alc269_modes
,
14384 .unsol_event
= alc269_laptop_unsol_event
,
14385 .setup
= alc269_laptop_dmic_setup
,
14386 .init_hook
= alc269_laptop_inithook
,
14388 [ALC269_LIFEBOOK
] = {
14389 .mixers
= { alc269_lifebook_mixer
},
14390 .init_verbs
= { alc269_init_verbs
, alc269_lifebook_verbs
},
14391 .num_dacs
= ARRAY_SIZE(alc269_dac_nids
),
14392 .dac_nids
= alc269_dac_nids
,
14394 .num_channel_mode
= ARRAY_SIZE(alc269_modes
),
14395 .channel_mode
= alc269_modes
,
14396 .input_mux
= &alc269_capture_source
,
14397 .unsol_event
= alc269_lifebook_unsol_event
,
14398 .init_hook
= alc269_lifebook_init_hook
,
14402 static int patch_alc269(struct hda_codec
*codec
)
14404 struct alc_spec
*spec
;
14407 int is_alc269vb
= 0;
14409 spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
14413 codec
->spec
= spec
;
14415 alc_auto_parse_customize_define(codec
);
14417 if ((alc_read_coef_idx(codec
, 0) & 0x00f0) == 0x0010){
14418 if (codec
->bus
->pci
->subsystem_vendor
== 0x1025 &&
14419 spec
->cdefine
.platform_type
== 1)
14420 alc_codec_rename(codec
, "ALC271X");
14422 alc_codec_rename(codec
, "ALC259");
14425 alc_fix_pll_init(codec
, 0x20, 0x04, 15);
14427 board_config
= snd_hda_check_board_config(codec
, ALC269_MODEL_LAST
,
14431 if (board_config
< 0) {
14432 printk(KERN_INFO
"hda_codec: %s: BIOS auto-probing.\n",
14434 board_config
= ALC269_AUTO
;
14437 if (board_config
== ALC269_AUTO
)
14438 alc_pick_fixup(codec
, alc269_fixup_tbl
, alc269_fixups
, 1);
14440 if (board_config
== ALC269_AUTO
) {
14441 /* automatic parse from the BIOS config */
14442 err
= alc269_parse_auto_config(codec
);
14448 "hda_codec: Cannot set up configuration "
14449 "from BIOS. Using base mode...\n");
14450 board_config
= ALC269_BASIC
;
14454 err
= snd_hda_attach_beep_device(codec
, 0x1);
14460 if (board_config
!= ALC269_AUTO
)
14461 setup_preset(codec
, &alc269_presets
[board_config
]);
14463 if (board_config
== ALC269_QUANTA_FL1
) {
14464 /* Due to a hardware problem on Lenovo Ideadpad, we need to
14465 * fix the sample rate of analog I/O to 44.1kHz
14467 spec
->stream_analog_playback
= &alc269_44k_pcm_analog_playback
;
14468 spec
->stream_analog_capture
= &alc269_44k_pcm_analog_capture
;
14470 spec
->stream_analog_playback
= &alc269_pcm_analog_playback
;
14471 spec
->stream_analog_capture
= &alc269_pcm_analog_capture
;
14473 spec
->stream_digital_playback
= &alc269_pcm_digital_playback
;
14474 spec
->stream_digital_capture
= &alc269_pcm_digital_capture
;
14476 if (!spec
->adc_nids
) { /* wasn't filled automatically? use default */
14477 if (!is_alc269vb
) {
14478 spec
->adc_nids
= alc269_adc_nids
;
14479 spec
->num_adc_nids
= ARRAY_SIZE(alc269_adc_nids
);
14480 spec
->capsrc_nids
= alc269_capsrc_nids
;
14482 spec
->adc_nids
= alc269vb_adc_nids
;
14483 spec
->num_adc_nids
= ARRAY_SIZE(alc269vb_adc_nids
);
14484 spec
->capsrc_nids
= alc269vb_capsrc_nids
;
14488 if (!spec
->cap_mixer
)
14489 set_capture_mixer(codec
);
14490 if (spec
->cdefine
.enable_pcbeep
)
14491 set_beep_amp(spec
, 0x0b, 0x04, HDA_INPUT
);
14493 if (board_config
== ALC269_AUTO
)
14494 alc_pick_fixup(codec
, alc269_fixup_tbl
, alc269_fixups
, 0);
14496 spec
->vmaster_nid
= 0x02;
14498 codec
->patch_ops
= alc_patch_ops
;
14499 if (board_config
== ALC269_AUTO
)
14500 spec
->init_hook
= alc269_auto_init
;
14501 #ifdef CONFIG_SND_HDA_POWER_SAVE
14502 if (!spec
->loopback
.amplist
)
14503 spec
->loopback
.amplist
= alc269_loopbacks
;
14504 if (alc269_mic2_for_mute_led(codec
))
14505 codec
->patch_ops
.check_power_status
= alc269_mic2_mute_check_ps
;
14512 * ALC861 channel source setting (2/6 channel selection for 3-stack)
14516 * set the path ways for 2 channel output
14517 * need to set the codec line out and mic 1 pin widgets to inputs
14519 static struct hda_verb alc861_threestack_ch2_init
[] = {
14520 /* set pin widget 1Ah (line in) for input */
14521 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20 },
14522 /* set pin widget 18h (mic1/2) for input, for mic also enable
14525 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24 },
14527 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb00c },
14529 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x01 << 8)) }, /*mic*/
14530 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x02 << 8)) }, /*line-in*/
14536 * need to set the codec line out and mic 1 pin widgets to outputs
14538 static struct hda_verb alc861_threestack_ch6_init
[] = {
14539 /* set pin widget 1Ah (line in) for output (Back Surround)*/
14540 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40 },
14541 /* set pin widget 18h (mic1) for output (CLFE)*/
14542 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40 },
14544 { 0x0c, AC_VERB_SET_CONNECT_SEL
, 0x00 },
14545 { 0x0d, AC_VERB_SET_CONNECT_SEL
, 0x00 },
14547 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb080 },
14549 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x01 << 8)) }, /*mic*/
14550 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x02 << 8)) }, /*line in*/
14555 static struct hda_channel_mode alc861_threestack_modes
[2] = {
14556 { 2, alc861_threestack_ch2_init
},
14557 { 6, alc861_threestack_ch6_init
},
14559 /* Set mic1 as input and unmute the mixer */
14560 static struct hda_verb alc861_uniwill_m31_ch2_init
[] = {
14561 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24 },
14562 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x01 << 8)) }, /*mic*/
14565 /* Set mic1 as output and mute mixer */
14566 static struct hda_verb alc861_uniwill_m31_ch4_init
[] = {
14567 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40 },
14568 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x01 << 8)) }, /*mic*/
14572 static struct hda_channel_mode alc861_uniwill_m31_modes
[2] = {
14573 { 2, alc861_uniwill_m31_ch2_init
},
14574 { 4, alc861_uniwill_m31_ch4_init
},
14577 /* Set mic1 and line-in as input and unmute the mixer */
14578 static struct hda_verb alc861_asus_ch2_init
[] = {
14579 /* set pin widget 1Ah (line in) for input */
14580 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20 },
14581 /* set pin widget 18h (mic1/2) for input, for mic also enable
14584 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24 },
14586 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb00c },
14588 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x01 << 8)) }, /*mic*/
14589 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x02 << 8)) }, /*line-in*/
14593 /* Set mic1 nad line-in as output and mute mixer */
14594 static struct hda_verb alc861_asus_ch6_init
[] = {
14595 /* set pin widget 1Ah (line in) for output (Back Surround)*/
14596 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40 },
14597 /* { 0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE }, */
14598 /* set pin widget 18h (mic1) for output (CLFE)*/
14599 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40 },
14600 /* { 0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE }, */
14601 { 0x0c, AC_VERB_SET_CONNECT_SEL
, 0x00 },
14602 { 0x0d, AC_VERB_SET_CONNECT_SEL
, 0x00 },
14604 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb080 },
14606 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x01 << 8)) }, /*mic*/
14607 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x02 << 8)) }, /*line in*/
14612 static struct hda_channel_mode alc861_asus_modes
[2] = {
14613 { 2, alc861_asus_ch2_init
},
14614 { 6, alc861_asus_ch6_init
},
14619 static struct snd_kcontrol_new alc861_base_mixer
[] = {
14620 /* output mixer control */
14621 HDA_CODEC_MUTE("Front Playback Switch", 0x03, 0x0, HDA_OUTPUT
),
14622 HDA_CODEC_MUTE("Surround Playback Switch", 0x06, 0x0, HDA_OUTPUT
),
14623 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x05, 1, 0x0, HDA_OUTPUT
),
14624 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x05, 2, 0x0, HDA_OUTPUT
),
14625 HDA_CODEC_MUTE("Side Playback Switch", 0x04, 0x0, HDA_OUTPUT
),
14627 /*Input mixer control */
14628 /* HDA_CODEC_VOLUME("Input Playback Volume", 0x15, 0x0, HDA_OUTPUT),
14629 HDA_CODEC_MUTE("Input Playback Switch", 0x15, 0x0, HDA_OUTPUT), */
14630 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT
),
14631 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT
),
14632 HDA_CODEC_VOLUME("Line Playback Volume", 0x15, 0x02, HDA_INPUT
),
14633 HDA_CODEC_MUTE("Line Playback Switch", 0x15, 0x02, HDA_INPUT
),
14634 HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT
),
14635 HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT
),
14636 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x10, 0x01, HDA_OUTPUT
),
14637 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x03, HDA_INPUT
),
14642 static struct snd_kcontrol_new alc861_3ST_mixer
[] = {
14643 /* output mixer control */
14644 HDA_CODEC_MUTE("Front Playback Switch", 0x03, 0x0, HDA_OUTPUT
),
14645 HDA_CODEC_MUTE("Surround Playback Switch", 0x06, 0x0, HDA_OUTPUT
),
14646 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x05, 1, 0x0, HDA_OUTPUT
),
14647 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x05, 2, 0x0, HDA_OUTPUT
),
14648 /*HDA_CODEC_MUTE("Side Playback Switch", 0x04, 0x0, HDA_OUTPUT), */
14650 /* Input mixer control */
14651 /* HDA_CODEC_VOLUME("Input Playback Volume", 0x15, 0x0, HDA_OUTPUT),
14652 HDA_CODEC_MUTE("Input Playback Switch", 0x15, 0x0, HDA_OUTPUT), */
14653 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT
),
14654 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT
),
14655 HDA_CODEC_VOLUME("Line Playback Volume", 0x15, 0x02, HDA_INPUT
),
14656 HDA_CODEC_MUTE("Line Playback Switch", 0x15, 0x02, HDA_INPUT
),
14657 HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT
),
14658 HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT
),
14659 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x10, 0x01, HDA_OUTPUT
),
14660 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x03, HDA_INPUT
),
14663 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
14664 .name
= "Channel Mode",
14665 .info
= alc_ch_mode_info
,
14666 .get
= alc_ch_mode_get
,
14667 .put
= alc_ch_mode_put
,
14668 .private_value
= ARRAY_SIZE(alc861_threestack_modes
),
14673 static struct snd_kcontrol_new alc861_toshiba_mixer
[] = {
14674 /* output mixer control */
14675 HDA_CODEC_MUTE("Master Playback Switch", 0x03, 0x0, HDA_OUTPUT
),
14676 HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT
),
14677 HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT
),
14682 static struct snd_kcontrol_new alc861_uniwill_m31_mixer
[] = {
14683 /* output mixer control */
14684 HDA_CODEC_MUTE("Front Playback Switch", 0x03, 0x0, HDA_OUTPUT
),
14685 HDA_CODEC_MUTE("Surround Playback Switch", 0x06, 0x0, HDA_OUTPUT
),
14686 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x05, 1, 0x0, HDA_OUTPUT
),
14687 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x05, 2, 0x0, HDA_OUTPUT
),
14688 /*HDA_CODEC_MUTE("Side Playback Switch", 0x04, 0x0, HDA_OUTPUT), */
14690 /* Input mixer control */
14691 /* HDA_CODEC_VOLUME("Input Playback Volume", 0x15, 0x0, HDA_OUTPUT),
14692 HDA_CODEC_MUTE("Input Playback Switch", 0x15, 0x0, HDA_OUTPUT), */
14693 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT
),
14694 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT
),
14695 HDA_CODEC_VOLUME("Line Playback Volume", 0x15, 0x02, HDA_INPUT
),
14696 HDA_CODEC_MUTE("Line Playback Switch", 0x15, 0x02, HDA_INPUT
),
14697 HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT
),
14698 HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT
),
14699 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x10, 0x01, HDA_OUTPUT
),
14700 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x03, HDA_INPUT
),
14703 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
14704 .name
= "Channel Mode",
14705 .info
= alc_ch_mode_info
,
14706 .get
= alc_ch_mode_get
,
14707 .put
= alc_ch_mode_put
,
14708 .private_value
= ARRAY_SIZE(alc861_uniwill_m31_modes
),
14713 static struct snd_kcontrol_new alc861_asus_mixer
[] = {
14714 /* output mixer control */
14715 HDA_CODEC_MUTE("Front Playback Switch", 0x03, 0x0, HDA_OUTPUT
),
14716 HDA_CODEC_MUTE("Surround Playback Switch", 0x06, 0x0, HDA_OUTPUT
),
14717 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x05, 1, 0x0, HDA_OUTPUT
),
14718 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x05, 2, 0x0, HDA_OUTPUT
),
14719 HDA_CODEC_MUTE("Side Playback Switch", 0x04, 0x0, HDA_OUTPUT
),
14721 /* Input mixer control */
14722 HDA_CODEC_VOLUME("Input Playback Volume", 0x15, 0x0, HDA_OUTPUT
),
14723 HDA_CODEC_MUTE("Input Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
14724 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT
),
14725 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT
),
14726 HDA_CODEC_VOLUME("Line Playback Volume", 0x15, 0x02, HDA_INPUT
),
14727 HDA_CODEC_MUTE("Line Playback Switch", 0x15, 0x02, HDA_INPUT
),
14728 HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT
),
14729 HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT
),
14730 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x10, 0x01, HDA_OUTPUT
),
14731 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x03, HDA_OUTPUT
),
14734 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
14735 .name
= "Channel Mode",
14736 .info
= alc_ch_mode_info
,
14737 .get
= alc_ch_mode_get
,
14738 .put
= alc_ch_mode_put
,
14739 .private_value
= ARRAY_SIZE(alc861_asus_modes
),
14744 /* additional mixer */
14745 static struct snd_kcontrol_new alc861_asus_laptop_mixer
[] = {
14746 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT
),
14747 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT
),
14752 * generic initialization of ADC, input mixers and output mixers
14754 static struct hda_verb alc861_base_init_verbs
[] = {
14756 * Unmute ADC0 and set the default input to mic-in
14758 /* port-A for surround (rear panel) */
14759 { 0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40 },
14760 { 0x0e, AC_VERB_SET_CONNECT_SEL
, 0x00 },
14761 /* port-B for mic-in (rear panel) with vref */
14762 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24 },
14763 /* port-C for line-in (rear panel) */
14764 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20 },
14765 /* port-D for Front */
14766 { 0x0b, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40 },
14767 { 0x0b, AC_VERB_SET_CONNECT_SEL
, 0x00 },
14768 /* port-E for HP out (front panel) */
14769 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0xc0 },
14770 /* route front PCM to HP */
14771 { 0x0f, AC_VERB_SET_CONNECT_SEL
, 0x00 },
14772 /* port-F for mic-in (front panel) with vref */
14773 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24 },
14774 /* port-G for CLFE (rear panel) */
14775 { 0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40 },
14776 { 0x1f, AC_VERB_SET_CONNECT_SEL
, 0x00 },
14777 /* port-H for side (rear panel) */
14778 { 0x20, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40 },
14779 { 0x20, AC_VERB_SET_CONNECT_SEL
, 0x00 },
14781 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20 },
14782 /* route front mic to ADC1*/
14783 {0x08, AC_VERB_SET_CONNECT_SEL
, 0x00},
14784 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14786 /* Unmute DAC0~3 & spdif out*/
14787 {0x03, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
14788 {0x04, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
14789 {0x05, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
14790 {0x06, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
14791 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
14793 /* Unmute Mixer 14 (mic) 1c (Line in)*/
14794 {0x014, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14795 {0x014, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14796 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14797 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14799 /* Unmute Stereo Mixer 15 */
14800 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14801 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14802 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(2)},
14803 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb00c}, /* Output 0~12 step */
14805 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14806 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14807 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14808 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14809 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14810 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14811 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14812 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14813 /* hp used DAC 3 (Front) */
14814 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(3)},
14815 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(2)},
14820 static struct hda_verb alc861_threestack_init_verbs
[] = {
14822 * Unmute ADC0 and set the default input to mic-in
14824 /* port-A for surround (rear panel) */
14825 { 0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x00 },
14826 /* port-B for mic-in (rear panel) with vref */
14827 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24 },
14828 /* port-C for line-in (rear panel) */
14829 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20 },
14830 /* port-D for Front */
14831 { 0x0b, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40 },
14832 { 0x0b, AC_VERB_SET_CONNECT_SEL
, 0x00 },
14833 /* port-E for HP out (front panel) */
14834 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0xc0 },
14835 /* route front PCM to HP */
14836 { 0x0f, AC_VERB_SET_CONNECT_SEL
, 0x00 },
14837 /* port-F for mic-in (front panel) with vref */
14838 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24 },
14839 /* port-G for CLFE (rear panel) */
14840 { 0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x00 },
14841 /* port-H for side (rear panel) */
14842 { 0x20, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x00 },
14844 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20 },
14845 /* route front mic to ADC1*/
14846 {0x08, AC_VERB_SET_CONNECT_SEL
, 0x00},
14847 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14848 /* Unmute DAC0~3 & spdif out*/
14849 {0x03, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
14850 {0x04, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
14851 {0x05, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
14852 {0x06, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
14853 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
14855 /* Unmute Mixer 14 (mic) 1c (Line in)*/
14856 {0x014, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14857 {0x014, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14858 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14859 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14861 /* Unmute Stereo Mixer 15 */
14862 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14863 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14864 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(2)},
14865 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb00c}, /* Output 0~12 step */
14867 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14868 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14869 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14870 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14871 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14872 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14873 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14874 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14875 /* hp used DAC 3 (Front) */
14876 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(3)},
14877 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(2)},
14881 static struct hda_verb alc861_uniwill_m31_init_verbs
[] = {
14883 * Unmute ADC0 and set the default input to mic-in
14885 /* port-A for surround (rear panel) */
14886 { 0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x00 },
14887 /* port-B for mic-in (rear panel) with vref */
14888 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24 },
14889 /* port-C for line-in (rear panel) */
14890 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20 },
14891 /* port-D for Front */
14892 { 0x0b, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40 },
14893 { 0x0b, AC_VERB_SET_CONNECT_SEL
, 0x00 },
14894 /* port-E for HP out (front panel) */
14895 /* this has to be set to VREF80 */
14896 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24 },
14897 /* route front PCM to HP */
14898 { 0x0f, AC_VERB_SET_CONNECT_SEL
, 0x00 },
14899 /* port-F for mic-in (front panel) with vref */
14900 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24 },
14901 /* port-G for CLFE (rear panel) */
14902 { 0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x00 },
14903 /* port-H for side (rear panel) */
14904 { 0x20, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x00 },
14906 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20 },
14907 /* route front mic to ADC1*/
14908 {0x08, AC_VERB_SET_CONNECT_SEL
, 0x00},
14909 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14910 /* Unmute DAC0~3 & spdif out*/
14911 {0x03, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
14912 {0x04, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
14913 {0x05, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
14914 {0x06, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
14915 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
14917 /* Unmute Mixer 14 (mic) 1c (Line in)*/
14918 {0x014, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14919 {0x014, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14920 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14921 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14923 /* Unmute Stereo Mixer 15 */
14924 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14925 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14926 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(2)},
14927 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb00c}, /* Output 0~12 step */
14929 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14930 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14931 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14932 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14933 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14934 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14935 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14936 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14937 /* hp used DAC 3 (Front) */
14938 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(3)},
14939 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(2)},
14943 static struct hda_verb alc861_asus_init_verbs
[] = {
14945 * Unmute ADC0 and set the default input to mic-in
14947 /* port-A for surround (rear panel)
14948 * according to codec#0 this is the HP jack
14950 { 0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0xc0 }, /* was 0x00 */
14951 /* route front PCM to HP */
14952 { 0x0e, AC_VERB_SET_CONNECT_SEL
, 0x01 },
14953 /* port-B for mic-in (rear panel) with vref */
14954 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24 },
14955 /* port-C for line-in (rear panel) */
14956 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20 },
14957 /* port-D for Front */
14958 { 0x0b, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40 },
14959 { 0x0b, AC_VERB_SET_CONNECT_SEL
, 0x00 },
14960 /* port-E for HP out (front panel) */
14961 /* this has to be set to VREF80 */
14962 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24 },
14963 /* route front PCM to HP */
14964 { 0x0f, AC_VERB_SET_CONNECT_SEL
, 0x00 },
14965 /* port-F for mic-in (front panel) with vref */
14966 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24 },
14967 /* port-G for CLFE (rear panel) */
14968 { 0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40 },
14969 /* port-H for side (rear panel) */
14970 { 0x20, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40 },
14972 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20 },
14973 /* route front mic to ADC1*/
14974 {0x08, AC_VERB_SET_CONNECT_SEL
, 0x00},
14975 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14976 /* Unmute DAC0~3 & spdif out*/
14977 {0x03, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
14978 {0x04, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
14979 {0x05, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
14980 {0x06, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
14981 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
14982 /* Unmute Mixer 14 (mic) 1c (Line in)*/
14983 {0x014, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14984 {0x014, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14985 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14986 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14988 /* Unmute Stereo Mixer 15 */
14989 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14990 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14991 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(2)},
14992 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb00c}, /* Output 0~12 step */
14994 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14995 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14996 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14997 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14998 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14999 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15000 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15001 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15002 /* hp used DAC 3 (Front) */
15003 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(3)},
15004 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(2)},
15008 /* additional init verbs for ASUS laptops */
15009 static struct hda_verb alc861_asus_laptop_init_verbs
[] = {
15010 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x45 }, /* HP-out */
15011 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2) }, /* mute line-in */
15016 * generic initialization of ADC, input mixers and output mixers
15018 static struct hda_verb alc861_auto_init_verbs
[] = {
15020 * Unmute ADC0 and set the default input to mic-in
15022 /* {0x08, AC_VERB_SET_CONNECT_SEL, 0x00}, */
15023 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15025 /* Unmute DAC0~3 & spdif out*/
15026 {0x03, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
15027 {0x04, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
15028 {0x05, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
15029 {0x06, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
15030 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
15032 /* Unmute Mixer 14 (mic) 1c (Line in)*/
15033 {0x014, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15034 {0x014, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15035 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15036 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15038 /* Unmute Stereo Mixer 15 */
15039 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15040 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15041 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(2)},
15042 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb00c},
15044 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
15045 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
15046 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
15047 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
15048 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
15049 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
15050 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
15051 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
15053 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
15054 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
15055 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
15056 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
15057 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
15058 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
15059 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
15060 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
15062 {0x08, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* set Mic 1 */
15067 static struct hda_verb alc861_toshiba_init_verbs
[] = {
15068 {0x0f, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
15073 /* toggle speaker-output according to the hp-jack state */
15074 static void alc861_toshiba_automute(struct hda_codec
*codec
)
15076 unsigned int present
= snd_hda_jack_detect(codec
, 0x0f);
15078 snd_hda_codec_amp_stereo(codec
, 0x16, HDA_INPUT
, 0,
15079 HDA_AMP_MUTE
, present
? HDA_AMP_MUTE
: 0);
15080 snd_hda_codec_amp_stereo(codec
, 0x1a, HDA_INPUT
, 3,
15081 HDA_AMP_MUTE
, present
? 0 : HDA_AMP_MUTE
);
15084 static void alc861_toshiba_unsol_event(struct hda_codec
*codec
,
15087 if ((res
>> 26) == ALC880_HP_EVENT
)
15088 alc861_toshiba_automute(codec
);
15091 /* pcm configuration: identical with ALC880 */
15092 #define alc861_pcm_analog_playback alc880_pcm_analog_playback
15093 #define alc861_pcm_analog_capture alc880_pcm_analog_capture
15094 #define alc861_pcm_digital_playback alc880_pcm_digital_playback
15095 #define alc861_pcm_digital_capture alc880_pcm_digital_capture
15098 #define ALC861_DIGOUT_NID 0x07
15100 static struct hda_channel_mode alc861_8ch_modes
[1] = {
15104 static hda_nid_t alc861_dac_nids
[4] = {
15105 /* front, surround, clfe, side */
15106 0x03, 0x06, 0x05, 0x04
15109 static hda_nid_t alc660_dac_nids
[3] = {
15110 /* front, clfe, surround */
15114 static hda_nid_t alc861_adc_nids
[1] = {
15119 static struct hda_input_mux alc861_capture_source
= {
15123 { "Front Mic", 0x3 },
15130 static hda_nid_t
alc861_look_for_dac(struct hda_codec
*codec
, hda_nid_t pin
)
15132 struct alc_spec
*spec
= codec
->spec
;
15133 hda_nid_t mix
, srcs
[5];
15136 if (snd_hda_get_connections(codec
, pin
, &mix
, 1) != 1)
15138 num
= snd_hda_get_connections(codec
, mix
, srcs
, ARRAY_SIZE(srcs
));
15141 for (i
= 0; i
< num
; i
++) {
15143 type
= get_wcaps_type(get_wcaps(codec
, srcs
[i
]));
15144 if (type
!= AC_WID_AUD_OUT
)
15146 for (j
= 0; j
< spec
->multiout
.num_dacs
; j
++)
15147 if (spec
->multiout
.dac_nids
[j
] == srcs
[i
])
15149 if (j
>= spec
->multiout
.num_dacs
)
15155 /* fill in the dac_nids table from the parsed pin configuration */
15156 static int alc861_auto_fill_dac_nids(struct hda_codec
*codec
,
15157 const struct auto_pin_cfg
*cfg
)
15159 struct alc_spec
*spec
= codec
->spec
;
15161 hda_nid_t nid
, dac
;
15163 spec
->multiout
.dac_nids
= spec
->private_dac_nids
;
15164 for (i
= 0; i
< cfg
->line_outs
; i
++) {
15165 nid
= cfg
->line_out_pins
[i
];
15166 dac
= alc861_look_for_dac(codec
, nid
);
15169 spec
->multiout
.dac_nids
[spec
->multiout
.num_dacs
++] = dac
;
15174 static int alc861_create_out_sw(struct hda_codec
*codec
, const char *pfx
,
15175 hda_nid_t nid
, unsigned int chs
)
15177 return add_pb_sw_ctrl(codec
->spec
, ALC_CTL_WIDGET_MUTE
, pfx
,
15178 HDA_COMPOSE_AMP_VAL(nid
, chs
, 0, HDA_OUTPUT
));
15181 /* add playback controls from the parsed DAC table */
15182 static int alc861_auto_create_multi_out_ctls(struct hda_codec
*codec
,
15183 const struct auto_pin_cfg
*cfg
)
15185 struct alc_spec
*spec
= codec
->spec
;
15186 static const char *chname
[4] = {
15187 "Front", "Surround", NULL
/*CLFE*/, "Side"
15192 if (cfg
->line_outs
== 1) {
15193 const char *pfx
= NULL
;
15196 else if (cfg
->line_out_type
== AUTO_PIN_SPEAKER_OUT
)
15199 nid
= spec
->multiout
.dac_nids
[0];
15200 return alc861_create_out_sw(codec
, pfx
, nid
, 3);
15204 for (i
= 0; i
< cfg
->line_outs
; i
++) {
15205 nid
= spec
->multiout
.dac_nids
[i
];
15210 err
= alc861_create_out_sw(codec
, "Center", nid
, 1);
15213 err
= alc861_create_out_sw(codec
, "LFE", nid
, 2);
15217 err
= alc861_create_out_sw(codec
, chname
[i
], nid
, 3);
15225 static int alc861_auto_create_hp_ctls(struct hda_codec
*codec
, hda_nid_t pin
)
15227 struct alc_spec
*spec
= codec
->spec
;
15234 if ((pin
>= 0x0b && pin
<= 0x10) || pin
== 0x1f || pin
== 0x20) {
15235 nid
= alc861_look_for_dac(codec
, pin
);
15237 err
= alc861_create_out_sw(codec
, "Headphone", nid
, 3);
15240 spec
->multiout
.hp_nid
= nid
;
15246 /* create playback/capture controls for input pins */
15247 static int alc861_auto_create_input_ctls(struct hda_codec
*codec
,
15248 const struct auto_pin_cfg
*cfg
)
15250 return alc_auto_create_input_ctls(codec
, cfg
, 0x15, 0x08, 0);
15253 static void alc861_auto_set_output_and_unmute(struct hda_codec
*codec
,
15255 int pin_type
, hda_nid_t dac
)
15257 hda_nid_t mix
, srcs
[5];
15260 snd_hda_codec_write(codec
, nid
, 0, AC_VERB_SET_PIN_WIDGET_CONTROL
,
15262 snd_hda_codec_write(codec
, dac
, 0, AC_VERB_SET_AMP_GAIN_MUTE
,
15264 if (snd_hda_get_connections(codec
, nid
, &mix
, 1) != 1)
15266 num
= snd_hda_get_connections(codec
, mix
, srcs
, ARRAY_SIZE(srcs
));
15269 for (i
= 0; i
< num
; i
++) {
15271 if (srcs
[i
] == dac
|| srcs
[i
] == 0x15)
15272 mute
= AMP_IN_UNMUTE(i
);
15274 mute
= AMP_IN_MUTE(i
);
15275 snd_hda_codec_write(codec
, mix
, 0, AC_VERB_SET_AMP_GAIN_MUTE
,
15280 static void alc861_auto_init_multi_out(struct hda_codec
*codec
)
15282 struct alc_spec
*spec
= codec
->spec
;
15285 for (i
= 0; i
< spec
->autocfg
.line_outs
; i
++) {
15286 hda_nid_t nid
= spec
->autocfg
.line_out_pins
[i
];
15287 int pin_type
= get_pin_type(spec
->autocfg
.line_out_type
);
15289 alc861_auto_set_output_and_unmute(codec
, nid
, pin_type
,
15290 spec
->multiout
.dac_nids
[i
]);
15294 static void alc861_auto_init_hp_out(struct hda_codec
*codec
)
15296 struct alc_spec
*spec
= codec
->spec
;
15298 if (spec
->autocfg
.hp_outs
)
15299 alc861_auto_set_output_and_unmute(codec
,
15300 spec
->autocfg
.hp_pins
[0],
15302 spec
->multiout
.hp_nid
);
15303 if (spec
->autocfg
.speaker_outs
)
15304 alc861_auto_set_output_and_unmute(codec
,
15305 spec
->autocfg
.speaker_pins
[0],
15307 spec
->multiout
.dac_nids
[0]);
15310 static void alc861_auto_init_analog_input(struct hda_codec
*codec
)
15312 struct alc_spec
*spec
= codec
->spec
;
15315 for (i
= 0; i
< AUTO_PIN_LAST
; i
++) {
15316 hda_nid_t nid
= spec
->autocfg
.input_pins
[i
];
15317 if (nid
>= 0x0c && nid
<= 0x11)
15318 alc_set_input_pin(codec
, nid
, i
);
15322 /* parse the BIOS configuration and set up the alc_spec */
15323 /* return 1 if successful, 0 if the proper config is not found,
15324 * or a negative error code
15326 static int alc861_parse_auto_config(struct hda_codec
*codec
)
15328 struct alc_spec
*spec
= codec
->spec
;
15330 static hda_nid_t alc861_ignore
[] = { 0x1d, 0 };
15332 err
= snd_hda_parse_pin_def_config(codec
, &spec
->autocfg
,
15336 if (!spec
->autocfg
.line_outs
)
15337 return 0; /* can't find valid BIOS pin config */
15339 err
= alc861_auto_fill_dac_nids(codec
, &spec
->autocfg
);
15342 err
= alc861_auto_create_multi_out_ctls(codec
, &spec
->autocfg
);
15345 err
= alc861_auto_create_hp_ctls(codec
, spec
->autocfg
.hp_pins
[0]);
15348 err
= alc861_auto_create_input_ctls(codec
, &spec
->autocfg
);
15352 spec
->multiout
.max_channels
= spec
->multiout
.num_dacs
* 2;
15354 if (spec
->autocfg
.dig_outs
)
15355 spec
->multiout
.dig_out_nid
= ALC861_DIGOUT_NID
;
15357 if (spec
->kctls
.list
)
15358 add_mixer(spec
, spec
->kctls
.list
);
15360 add_verb(spec
, alc861_auto_init_verbs
);
15362 spec
->num_mux_defs
= 1;
15363 spec
->input_mux
= &spec
->private_imux
[0];
15365 spec
->adc_nids
= alc861_adc_nids
;
15366 spec
->num_adc_nids
= ARRAY_SIZE(alc861_adc_nids
);
15367 set_capture_mixer(codec
);
15369 alc_ssid_check(codec
, 0x0e, 0x0f, 0x0b, 0);
15374 /* additional initialization for auto-configuration model */
15375 static void alc861_auto_init(struct hda_codec
*codec
)
15377 struct alc_spec
*spec
= codec
->spec
;
15378 alc861_auto_init_multi_out(codec
);
15379 alc861_auto_init_hp_out(codec
);
15380 alc861_auto_init_analog_input(codec
);
15381 if (spec
->unsol_event
)
15382 alc_inithook(codec
);
15385 #ifdef CONFIG_SND_HDA_POWER_SAVE
15386 static struct hda_amp_list alc861_loopbacks
[] = {
15387 { 0x15, HDA_INPUT
, 0 },
15388 { 0x15, HDA_INPUT
, 1 },
15389 { 0x15, HDA_INPUT
, 2 },
15390 { 0x15, HDA_INPUT
, 3 },
15397 * configuration and preset
15399 static const char *alc861_models
[ALC861_MODEL_LAST
] = {
15400 [ALC861_3ST
] = "3stack",
15401 [ALC660_3ST
] = "3stack-660",
15402 [ALC861_3ST_DIG
] = "3stack-dig",
15403 [ALC861_6ST_DIG
] = "6stack-dig",
15404 [ALC861_UNIWILL_M31
] = "uniwill-m31",
15405 [ALC861_TOSHIBA
] = "toshiba",
15406 [ALC861_ASUS
] = "asus",
15407 [ALC861_ASUS_LAPTOP
] = "asus-laptop",
15408 [ALC861_AUTO
] = "auto",
15411 static struct snd_pci_quirk alc861_cfg_tbl
[] = {
15412 SND_PCI_QUIRK(0x1043, 0x1205, "ASUS W7J", ALC861_3ST
),
15413 SND_PCI_QUIRK(0x1043, 0x1335, "ASUS F2/3", ALC861_ASUS_LAPTOP
),
15414 SND_PCI_QUIRK(0x1043, 0x1338, "ASUS F2/3", ALC861_ASUS_LAPTOP
),
15415 SND_PCI_QUIRK(0x1043, 0x1393, "ASUS", ALC861_ASUS
),
15416 SND_PCI_QUIRK(0x1043, 0x13d7, "ASUS A9rp", ALC861_ASUS_LAPTOP
),
15417 SND_PCI_QUIRK(0x1043, 0x81cb, "ASUS P1-AH2", ALC861_3ST_DIG
),
15418 SND_PCI_QUIRK(0x1179, 0xff00, "Toshiba", ALC861_TOSHIBA
),
15419 /* FIXME: the entry below breaks Toshiba A100 (model=auto works!)
15420 * Any other models that need this preset?
15422 /* SND_PCI_QUIRK(0x1179, 0xff10, "Toshiba", ALC861_TOSHIBA), */
15423 SND_PCI_QUIRK(0x1462, 0x7254, "HP dx2200 (MSI MS-7254)", ALC861_3ST
),
15424 SND_PCI_QUIRK(0x1462, 0x7297, "HP dx2250 (MSI MS-7297)", ALC861_3ST
),
15425 SND_PCI_QUIRK(0x1584, 0x2b01, "Uniwill X40AIx", ALC861_UNIWILL_M31
),
15426 SND_PCI_QUIRK(0x1584, 0x9072, "Uniwill m31", ALC861_UNIWILL_M31
),
15427 SND_PCI_QUIRK(0x1584, 0x9075, "Airis Praxis N1212", ALC861_ASUS_LAPTOP
),
15428 /* FIXME: the below seems conflict */
15429 /* SND_PCI_QUIRK(0x1584, 0x9075, "Uniwill", ALC861_UNIWILL_M31), */
15430 SND_PCI_QUIRK(0x1849, 0x0660, "Asrock 939SLI32", ALC660_3ST
),
15431 SND_PCI_QUIRK(0x8086, 0xd600, "Intel", ALC861_3ST
),
15435 static struct alc_config_preset alc861_presets
[] = {
15437 .mixers
= { alc861_3ST_mixer
},
15438 .init_verbs
= { alc861_threestack_init_verbs
},
15439 .num_dacs
= ARRAY_SIZE(alc861_dac_nids
),
15440 .dac_nids
= alc861_dac_nids
,
15441 .num_channel_mode
= ARRAY_SIZE(alc861_threestack_modes
),
15442 .channel_mode
= alc861_threestack_modes
,
15444 .num_adc_nids
= ARRAY_SIZE(alc861_adc_nids
),
15445 .adc_nids
= alc861_adc_nids
,
15446 .input_mux
= &alc861_capture_source
,
15448 [ALC861_3ST_DIG
] = {
15449 .mixers
= { alc861_base_mixer
},
15450 .init_verbs
= { alc861_threestack_init_verbs
},
15451 .num_dacs
= ARRAY_SIZE(alc861_dac_nids
),
15452 .dac_nids
= alc861_dac_nids
,
15453 .dig_out_nid
= ALC861_DIGOUT_NID
,
15454 .num_channel_mode
= ARRAY_SIZE(alc861_threestack_modes
),
15455 .channel_mode
= alc861_threestack_modes
,
15457 .num_adc_nids
= ARRAY_SIZE(alc861_adc_nids
),
15458 .adc_nids
= alc861_adc_nids
,
15459 .input_mux
= &alc861_capture_source
,
15461 [ALC861_6ST_DIG
] = {
15462 .mixers
= { alc861_base_mixer
},
15463 .init_verbs
= { alc861_base_init_verbs
},
15464 .num_dacs
= ARRAY_SIZE(alc861_dac_nids
),
15465 .dac_nids
= alc861_dac_nids
,
15466 .dig_out_nid
= ALC861_DIGOUT_NID
,
15467 .num_channel_mode
= ARRAY_SIZE(alc861_8ch_modes
),
15468 .channel_mode
= alc861_8ch_modes
,
15469 .num_adc_nids
= ARRAY_SIZE(alc861_adc_nids
),
15470 .adc_nids
= alc861_adc_nids
,
15471 .input_mux
= &alc861_capture_source
,
15474 .mixers
= { alc861_3ST_mixer
},
15475 .init_verbs
= { alc861_threestack_init_verbs
},
15476 .num_dacs
= ARRAY_SIZE(alc660_dac_nids
),
15477 .dac_nids
= alc660_dac_nids
,
15478 .num_channel_mode
= ARRAY_SIZE(alc861_threestack_modes
),
15479 .channel_mode
= alc861_threestack_modes
,
15481 .num_adc_nids
= ARRAY_SIZE(alc861_adc_nids
),
15482 .adc_nids
= alc861_adc_nids
,
15483 .input_mux
= &alc861_capture_source
,
15485 [ALC861_UNIWILL_M31
] = {
15486 .mixers
= { alc861_uniwill_m31_mixer
},
15487 .init_verbs
= { alc861_uniwill_m31_init_verbs
},
15488 .num_dacs
= ARRAY_SIZE(alc861_dac_nids
),
15489 .dac_nids
= alc861_dac_nids
,
15490 .dig_out_nid
= ALC861_DIGOUT_NID
,
15491 .num_channel_mode
= ARRAY_SIZE(alc861_uniwill_m31_modes
),
15492 .channel_mode
= alc861_uniwill_m31_modes
,
15494 .num_adc_nids
= ARRAY_SIZE(alc861_adc_nids
),
15495 .adc_nids
= alc861_adc_nids
,
15496 .input_mux
= &alc861_capture_source
,
15498 [ALC861_TOSHIBA
] = {
15499 .mixers
= { alc861_toshiba_mixer
},
15500 .init_verbs
= { alc861_base_init_verbs
,
15501 alc861_toshiba_init_verbs
},
15502 .num_dacs
= ARRAY_SIZE(alc861_dac_nids
),
15503 .dac_nids
= alc861_dac_nids
,
15504 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_2ch_modes
),
15505 .channel_mode
= alc883_3ST_2ch_modes
,
15506 .num_adc_nids
= ARRAY_SIZE(alc861_adc_nids
),
15507 .adc_nids
= alc861_adc_nids
,
15508 .input_mux
= &alc861_capture_source
,
15509 .unsol_event
= alc861_toshiba_unsol_event
,
15510 .init_hook
= alc861_toshiba_automute
,
15513 .mixers
= { alc861_asus_mixer
},
15514 .init_verbs
= { alc861_asus_init_verbs
},
15515 .num_dacs
= ARRAY_SIZE(alc861_dac_nids
),
15516 .dac_nids
= alc861_dac_nids
,
15517 .dig_out_nid
= ALC861_DIGOUT_NID
,
15518 .num_channel_mode
= ARRAY_SIZE(alc861_asus_modes
),
15519 .channel_mode
= alc861_asus_modes
,
15522 .num_adc_nids
= ARRAY_SIZE(alc861_adc_nids
),
15523 .adc_nids
= alc861_adc_nids
,
15524 .input_mux
= &alc861_capture_source
,
15526 [ALC861_ASUS_LAPTOP
] = {
15527 .mixers
= { alc861_toshiba_mixer
, alc861_asus_laptop_mixer
},
15528 .init_verbs
= { alc861_asus_init_verbs
,
15529 alc861_asus_laptop_init_verbs
},
15530 .num_dacs
= ARRAY_SIZE(alc861_dac_nids
),
15531 .dac_nids
= alc861_dac_nids
,
15532 .dig_out_nid
= ALC861_DIGOUT_NID
,
15533 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_2ch_modes
),
15534 .channel_mode
= alc883_3ST_2ch_modes
,
15536 .num_adc_nids
= ARRAY_SIZE(alc861_adc_nids
),
15537 .adc_nids
= alc861_adc_nids
,
15538 .input_mux
= &alc861_capture_source
,
15542 /* Pin config fixes */
15544 PINFIX_FSC_AMILO_PI1505
,
15547 static struct alc_pincfg alc861_fsc_amilo_pi1505_pinfix
[] = {
15548 { 0x0b, 0x0221101f }, /* HP */
15549 { 0x0f, 0x90170310 }, /* speaker */
15553 static const struct alc_fixup alc861_fixups
[] = {
15554 [PINFIX_FSC_AMILO_PI1505
] = {
15555 .pins
= alc861_fsc_amilo_pi1505_pinfix
15559 static struct snd_pci_quirk alc861_fixup_tbl
[] = {
15560 SND_PCI_QUIRK(0x1734, 0x10c7, "FSC Amilo Pi1505", PINFIX_FSC_AMILO_PI1505
),
15564 static int patch_alc861(struct hda_codec
*codec
)
15566 struct alc_spec
*spec
;
15570 spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
15574 codec
->spec
= spec
;
15576 board_config
= snd_hda_check_board_config(codec
, ALC861_MODEL_LAST
,
15580 if (board_config
< 0) {
15581 printk(KERN_INFO
"hda_codec: %s: BIOS auto-probing.\n",
15583 board_config
= ALC861_AUTO
;
15586 if (board_config
== ALC861_AUTO
)
15587 alc_pick_fixup(codec
, alc861_fixup_tbl
, alc861_fixups
, 1);
15589 if (board_config
== ALC861_AUTO
) {
15590 /* automatic parse from the BIOS config */
15591 err
= alc861_parse_auto_config(codec
);
15597 "hda_codec: Cannot set up configuration "
15598 "from BIOS. Using base mode...\n");
15599 board_config
= ALC861_3ST_DIG
;
15603 err
= snd_hda_attach_beep_device(codec
, 0x23);
15609 if (board_config
!= ALC861_AUTO
)
15610 setup_preset(codec
, &alc861_presets
[board_config
]);
15612 spec
->stream_analog_playback
= &alc861_pcm_analog_playback
;
15613 spec
->stream_analog_capture
= &alc861_pcm_analog_capture
;
15615 spec
->stream_digital_playback
= &alc861_pcm_digital_playback
;
15616 spec
->stream_digital_capture
= &alc861_pcm_digital_capture
;
15618 if (!spec
->cap_mixer
)
15619 set_capture_mixer(codec
);
15620 set_beep_amp(spec
, 0x23, 0, HDA_OUTPUT
);
15622 spec
->vmaster_nid
= 0x03;
15624 if (board_config
== ALC861_AUTO
)
15625 alc_pick_fixup(codec
, alc861_fixup_tbl
, alc861_fixups
, 0);
15627 codec
->patch_ops
= alc_patch_ops
;
15628 if (board_config
== ALC861_AUTO
) {
15629 spec
->init_hook
= alc861_auto_init
;
15630 #ifdef CONFIG_SND_HDA_POWER_SAVE
15631 spec
->power_hook
= alc_power_eapd
;
15634 #ifdef CONFIG_SND_HDA_POWER_SAVE
15635 if (!spec
->loopback
.amplist
)
15636 spec
->loopback
.amplist
= alc861_loopbacks
;
15643 * ALC861-VD support
15647 * In addition, an independent DAC
15649 #define ALC861VD_DIGOUT_NID 0x06
15651 static hda_nid_t alc861vd_dac_nids
[4] = {
15652 /* front, surr, clfe, side surr */
15653 0x02, 0x03, 0x04, 0x05
15656 /* dac_nids for ALC660vd are in a different order - according to
15657 * Realtek's driver.
15658 * This should probably result in a different mixer for 6stack models
15659 * of ALC660vd codecs, but for now there is only 3stack mixer
15660 * - and it is the same as in 861vd.
15661 * adc_nids in ALC660vd are (is) the same as in 861vd
15663 static hda_nid_t alc660vd_dac_nids
[3] = {
15664 /* front, rear, clfe, rear_surr */
15668 static hda_nid_t alc861vd_adc_nids
[1] = {
15673 static hda_nid_t alc861vd_capsrc_nids
[1] = { 0x22 };
15676 /* FIXME: should be a matrix-type input source selection */
15677 static struct hda_input_mux alc861vd_capture_source
= {
15681 { "Front Mic", 0x1 },
15687 static struct hda_input_mux alc861vd_dallas_capture_source
= {
15690 { "Ext Mic", 0x0 },
15691 { "Int Mic", 0x1 },
15695 static struct hda_input_mux alc861vd_hp_capture_source
= {
15698 { "Front Mic", 0x0 },
15699 { "ATAPI Mic", 0x1 },
15706 static struct hda_channel_mode alc861vd_3stack_2ch_modes
[1] = {
15713 static struct hda_verb alc861vd_6stack_ch6_init
[] = {
15714 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x00 },
15715 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
15716 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
15717 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
15724 static struct hda_verb alc861vd_6stack_ch8_init
[] = {
15725 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
15726 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
15727 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
15728 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
15732 static struct hda_channel_mode alc861vd_6stack_modes
[2] = {
15733 { 6, alc861vd_6stack_ch6_init
},
15734 { 8, alc861vd_6stack_ch8_init
},
15737 static struct snd_kcontrol_new alc861vd_chmode_mixer
[] = {
15739 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
15740 .name
= "Channel Mode",
15741 .info
= alc_ch_mode_info
,
15742 .get
= alc_ch_mode_get
,
15743 .put
= alc_ch_mode_put
,
15748 /* Pin assignment: Front=0x14, Rear=0x15, CLFE=0x16, Side=0x17
15749 * Mic=0x18, Front Mic=0x19, Line-In=0x1a, HP=0x1b
15751 static struct snd_kcontrol_new alc861vd_6st_mixer
[] = {
15752 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
15753 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
15755 HDA_CODEC_VOLUME("Surround Playback Volume", 0x03, 0x0, HDA_OUTPUT
),
15756 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT
),
15758 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x04, 1, 0x0,
15760 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x04, 2, 0x0,
15762 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT
),
15763 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT
),
15765 HDA_CODEC_VOLUME("Side Playback Volume", 0x05, 0x0, HDA_OUTPUT
),
15766 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT
),
15768 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
15770 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
15771 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
15772 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
15774 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT
),
15775 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
15776 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
15778 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
15779 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
15781 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
15782 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
15787 static struct snd_kcontrol_new alc861vd_3st_mixer
[] = {
15788 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
15789 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
15791 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
15793 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
15794 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
15795 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
15797 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT
),
15798 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
15799 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
15801 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
15802 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
15804 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
15805 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
15810 static struct snd_kcontrol_new alc861vd_lenovo_mixer
[] = {
15811 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
15812 /*HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),*/
15813 HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
15815 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
15817 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
15818 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
15819 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
15821 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT
),
15822 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
15823 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
15825 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
15826 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
15831 /* Pin assignment: Speaker=0x14, HP = 0x15,
15832 * Ext Mic=0x18, Int Mic = 0x19, CD = 0x1c, PC Beep = 0x1d
15834 static struct snd_kcontrol_new alc861vd_dallas_mixer
[] = {
15835 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
15836 HDA_BIND_MUTE("Speaker Playback Switch", 0x0c, 2, HDA_INPUT
),
15837 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x03, 0x0, HDA_OUTPUT
),
15838 HDA_BIND_MUTE("Headphone Playback Switch", 0x0d, 2, HDA_INPUT
),
15839 HDA_CODEC_VOLUME("Ext Mic Boost", 0x18, 0, HDA_INPUT
),
15840 HDA_CODEC_VOLUME("Ext Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
15841 HDA_CODEC_MUTE("Ext Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
15842 HDA_CODEC_VOLUME("Int Mic Boost", 0x19, 0, HDA_INPUT
),
15843 HDA_CODEC_VOLUME("Int Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
15844 HDA_CODEC_MUTE("Int Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
15848 /* Pin assignment: Speaker=0x14, Line-out = 0x15,
15849 * Front Mic=0x18, ATAPI Mic = 0x19,
15851 static struct snd_kcontrol_new alc861vd_hp_mixer
[] = {
15852 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
15853 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
15854 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x03, 0x0, HDA_OUTPUT
),
15855 HDA_BIND_MUTE("Headphone Playback Switch", 0x0d, 2, HDA_INPUT
),
15856 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
15857 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
15858 HDA_CODEC_VOLUME("ATAPI Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
15859 HDA_CODEC_MUTE("ATAPI Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
15865 * generic initialization of ADC, input mixers and output mixers
15867 static struct hda_verb alc861vd_volume_init_verbs
[] = {
15869 * Unmute ADC0 and set the default input to mic-in
15871 {0x09, AC_VERB_SET_CONNECT_SEL
, 0x00},
15872 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15874 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of
15875 * the analog-loopback mixer widget
15877 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
15878 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
15879 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
15880 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
15881 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
15882 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
15884 /* Capture mixer: unmute Mic, F-Mic, Line, CD inputs */
15885 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15886 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15887 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(2)},
15888 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(4)},
15891 * Set up output mixers (0x02 - 0x05)
15893 /* set vol=0 to output mixers */
15894 {0x02, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
15895 {0x03, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
15896 {0x04, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
15897 {0x05, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
15899 /* set up input amps for analog loopback */
15900 /* Amp Indices: DAC = 0, mixer = 1 */
15901 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
15902 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
15903 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
15904 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
15905 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
15906 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
15907 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
15908 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
15914 * 3-stack pin configuration:
15915 * front = 0x14, mic/clfe = 0x18, HP = 0x19, line/surr = 0x1a, f-mic = 0x1b
15917 static struct hda_verb alc861vd_3stack_init_verbs
[] = {
15919 * Set pin mode and muting
15921 /* set front pin widgets 0x14 for output */
15922 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
15923 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
15924 {0x14, AC_VERB_SET_CONNECT_SEL
, 0x00},
15926 /* Mic (rear) pin: input vref at 80% */
15927 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
15928 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
15929 /* Front Mic pin: input vref at 80% */
15930 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
15931 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
15932 /* Line In pin: input */
15933 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
15934 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
15935 /* Line-2 In: Headphone output (output 0 - 0x0c) */
15936 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
15937 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
15938 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0x00},
15939 /* CD pin widget for input */
15940 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
15946 * 6-stack pin configuration:
15948 static struct hda_verb alc861vd_6stack_init_verbs
[] = {
15950 * Set pin mode and muting
15952 /* set front pin widgets 0x14 for output */
15953 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
15954 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
15955 {0x14, AC_VERB_SET_CONNECT_SEL
, 0x00},
15957 /* Rear Pin: output 1 (0x0d) */
15958 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
15959 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
15960 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x01},
15961 /* CLFE Pin: output 2 (0x0e) */
15962 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
15963 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
15964 {0x16, AC_VERB_SET_CONNECT_SEL
, 0x02},
15965 /* Side Pin: output 3 (0x0f) */
15966 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
15967 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
15968 {0x17, AC_VERB_SET_CONNECT_SEL
, 0x03},
15970 /* Mic (rear) pin: input vref at 80% */
15971 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
15972 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
15973 /* Front Mic pin: input vref at 80% */
15974 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
15975 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
15976 /* Line In pin: input */
15977 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
15978 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
15979 /* Line-2 In: Headphone output (output 0 - 0x0c) */
15980 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
15981 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
15982 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0x00},
15983 /* CD pin widget for input */
15984 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
15989 static struct hda_verb alc861vd_eapd_verbs
[] = {
15990 {0x14, AC_VERB_SET_EAPD_BTLENABLE
, 2},
15994 static struct hda_verb alc660vd_eapd_verbs
[] = {
15995 {0x14, AC_VERB_SET_EAPD_BTLENABLE
, 2},
15996 {0x15, AC_VERB_SET_EAPD_BTLENABLE
, 2},
16000 static struct hda_verb alc861vd_lenovo_unsol_verbs
[] = {
16001 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
16002 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
16003 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(5)},
16004 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
16005 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
16009 static void alc861vd_lenovo_mic_automute(struct hda_codec
*codec
)
16011 unsigned int present
;
16012 unsigned char bits
;
16014 present
= snd_hda_jack_detect(codec
, 0x18);
16015 bits
= present
? HDA_AMP_MUTE
: 0;
16017 snd_hda_codec_amp_stereo(codec
, 0x0b, HDA_INPUT
, 1,
16018 HDA_AMP_MUTE
, bits
);
16021 static void alc861vd_lenovo_setup(struct hda_codec
*codec
)
16023 struct alc_spec
*spec
= codec
->spec
;
16024 spec
->autocfg
.hp_pins
[0] = 0x1b;
16025 spec
->autocfg
.speaker_pins
[0] = 0x14;
16028 static void alc861vd_lenovo_init_hook(struct hda_codec
*codec
)
16030 alc_automute_amp(codec
);
16031 alc861vd_lenovo_mic_automute(codec
);
16034 static void alc861vd_lenovo_unsol_event(struct hda_codec
*codec
,
16037 switch (res
>> 26) {
16038 case ALC880_MIC_EVENT
:
16039 alc861vd_lenovo_mic_automute(codec
);
16042 alc_automute_amp_unsol_event(codec
, res
);
16047 static struct hda_verb alc861vd_dallas_verbs
[] = {
16048 {0x02, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
16049 {0x03, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
16050 {0x04, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
16051 {0x05, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
16053 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
16054 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
16055 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
16056 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
16057 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
16058 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
16059 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
16060 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
16062 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
16063 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
16064 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
16065 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
16066 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
16067 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
16068 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
16069 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
16071 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF50
},
16072 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
16073 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF50
},
16074 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
16075 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
16076 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
16077 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
16078 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
16080 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
16081 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
16082 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
16083 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
16085 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
16086 {0x09, AC_VERB_SET_CONNECT_SEL
, 0x00},
16087 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
16092 /* toggle speaker-output according to the hp-jack state */
16093 static void alc861vd_dallas_setup(struct hda_codec
*codec
)
16095 struct alc_spec
*spec
= codec
->spec
;
16097 spec
->autocfg
.hp_pins
[0] = 0x15;
16098 spec
->autocfg
.speaker_pins
[0] = 0x14;
16101 #ifdef CONFIG_SND_HDA_POWER_SAVE
16102 #define alc861vd_loopbacks alc880_loopbacks
16105 /* pcm configuration: identical with ALC880 */
16106 #define alc861vd_pcm_analog_playback alc880_pcm_analog_playback
16107 #define alc861vd_pcm_analog_capture alc880_pcm_analog_capture
16108 #define alc861vd_pcm_digital_playback alc880_pcm_digital_playback
16109 #define alc861vd_pcm_digital_capture alc880_pcm_digital_capture
16112 * configuration and preset
16114 static const char *alc861vd_models
[ALC861VD_MODEL_LAST
] = {
16115 [ALC660VD_3ST
] = "3stack-660",
16116 [ALC660VD_3ST_DIG
] = "3stack-660-digout",
16117 [ALC660VD_ASUS_V1S
] = "asus-v1s",
16118 [ALC861VD_3ST
] = "3stack",
16119 [ALC861VD_3ST_DIG
] = "3stack-digout",
16120 [ALC861VD_6ST_DIG
] = "6stack-digout",
16121 [ALC861VD_LENOVO
] = "lenovo",
16122 [ALC861VD_DALLAS
] = "dallas",
16123 [ALC861VD_HP
] = "hp",
16124 [ALC861VD_AUTO
] = "auto",
16127 static struct snd_pci_quirk alc861vd_cfg_tbl
[] = {
16128 SND_PCI_QUIRK(0x1019, 0xa88d, "Realtek ALC660 demo", ALC660VD_3ST
),
16129 SND_PCI_QUIRK(0x103c, 0x30bf, "HP TX1000", ALC861VD_HP
),
16130 SND_PCI_QUIRK(0x1043, 0x12e2, "Asus z35m", ALC660VD_3ST
),
16131 /*SND_PCI_QUIRK(0x1043, 0x1339, "Asus G1", ALC660VD_3ST),*/ /* auto */
16132 SND_PCI_QUIRK(0x1043, 0x1633, "Asus V1Sn", ALC660VD_ASUS_V1S
),
16133 SND_PCI_QUIRK(0x1043, 0x81e7, "ASUS", ALC660VD_3ST_DIG
),
16134 SND_PCI_QUIRK(0x10de, 0x03f0, "Realtek ALC660 demo", ALC660VD_3ST
),
16135 SND_PCI_QUIRK(0x1179, 0xff00, "Toshiba A135", ALC861VD_LENOVO
),
16136 /*SND_PCI_QUIRK(0x1179, 0xff00, "DALLAS", ALC861VD_DALLAS),*/ /*lenovo*/
16137 SND_PCI_QUIRK(0x1179, 0xff01, "Toshiba A135", ALC861VD_LENOVO
),
16138 SND_PCI_QUIRK(0x1179, 0xff03, "Toshiba P205", ALC861VD_LENOVO
),
16139 SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba L30-149", ALC861VD_DALLAS
),
16140 SND_PCI_QUIRK(0x1565, 0x820d, "Biostar NF61S SE", ALC861VD_6ST_DIG
),
16141 SND_PCI_QUIRK_VENDOR(0x17aa, "Lenovo", ALC861VD_LENOVO
),
16142 SND_PCI_QUIRK(0x1849, 0x0862, "ASRock K8NF6G-VSTA", ALC861VD_6ST_DIG
),
16146 static struct alc_config_preset alc861vd_presets
[] = {
16148 .mixers
= { alc861vd_3st_mixer
},
16149 .init_verbs
= { alc861vd_volume_init_verbs
,
16150 alc861vd_3stack_init_verbs
},
16151 .num_dacs
= ARRAY_SIZE(alc660vd_dac_nids
),
16152 .dac_nids
= alc660vd_dac_nids
,
16153 .num_channel_mode
= ARRAY_SIZE(alc861vd_3stack_2ch_modes
),
16154 .channel_mode
= alc861vd_3stack_2ch_modes
,
16155 .input_mux
= &alc861vd_capture_source
,
16157 [ALC660VD_3ST_DIG
] = {
16158 .mixers
= { alc861vd_3st_mixer
},
16159 .init_verbs
= { alc861vd_volume_init_verbs
,
16160 alc861vd_3stack_init_verbs
},
16161 .num_dacs
= ARRAY_SIZE(alc660vd_dac_nids
),
16162 .dac_nids
= alc660vd_dac_nids
,
16163 .dig_out_nid
= ALC861VD_DIGOUT_NID
,
16164 .num_channel_mode
= ARRAY_SIZE(alc861vd_3stack_2ch_modes
),
16165 .channel_mode
= alc861vd_3stack_2ch_modes
,
16166 .input_mux
= &alc861vd_capture_source
,
16169 .mixers
= { alc861vd_3st_mixer
},
16170 .init_verbs
= { alc861vd_volume_init_verbs
,
16171 alc861vd_3stack_init_verbs
},
16172 .num_dacs
= ARRAY_SIZE(alc861vd_dac_nids
),
16173 .dac_nids
= alc861vd_dac_nids
,
16174 .num_channel_mode
= ARRAY_SIZE(alc861vd_3stack_2ch_modes
),
16175 .channel_mode
= alc861vd_3stack_2ch_modes
,
16176 .input_mux
= &alc861vd_capture_source
,
16178 [ALC861VD_3ST_DIG
] = {
16179 .mixers
= { alc861vd_3st_mixer
},
16180 .init_verbs
= { alc861vd_volume_init_verbs
,
16181 alc861vd_3stack_init_verbs
},
16182 .num_dacs
= ARRAY_SIZE(alc861vd_dac_nids
),
16183 .dac_nids
= alc861vd_dac_nids
,
16184 .dig_out_nid
= ALC861VD_DIGOUT_NID
,
16185 .num_channel_mode
= ARRAY_SIZE(alc861vd_3stack_2ch_modes
),
16186 .channel_mode
= alc861vd_3stack_2ch_modes
,
16187 .input_mux
= &alc861vd_capture_source
,
16189 [ALC861VD_6ST_DIG
] = {
16190 .mixers
= { alc861vd_6st_mixer
, alc861vd_chmode_mixer
},
16191 .init_verbs
= { alc861vd_volume_init_verbs
,
16192 alc861vd_6stack_init_verbs
},
16193 .num_dacs
= ARRAY_SIZE(alc861vd_dac_nids
),
16194 .dac_nids
= alc861vd_dac_nids
,
16195 .dig_out_nid
= ALC861VD_DIGOUT_NID
,
16196 .num_channel_mode
= ARRAY_SIZE(alc861vd_6stack_modes
),
16197 .channel_mode
= alc861vd_6stack_modes
,
16198 .input_mux
= &alc861vd_capture_source
,
16200 [ALC861VD_LENOVO
] = {
16201 .mixers
= { alc861vd_lenovo_mixer
},
16202 .init_verbs
= { alc861vd_volume_init_verbs
,
16203 alc861vd_3stack_init_verbs
,
16204 alc861vd_eapd_verbs
,
16205 alc861vd_lenovo_unsol_verbs
},
16206 .num_dacs
= ARRAY_SIZE(alc660vd_dac_nids
),
16207 .dac_nids
= alc660vd_dac_nids
,
16208 .num_channel_mode
= ARRAY_SIZE(alc861vd_3stack_2ch_modes
),
16209 .channel_mode
= alc861vd_3stack_2ch_modes
,
16210 .input_mux
= &alc861vd_capture_source
,
16211 .unsol_event
= alc861vd_lenovo_unsol_event
,
16212 .setup
= alc861vd_lenovo_setup
,
16213 .init_hook
= alc861vd_lenovo_init_hook
,
16215 [ALC861VD_DALLAS
] = {
16216 .mixers
= { alc861vd_dallas_mixer
},
16217 .init_verbs
= { alc861vd_dallas_verbs
},
16218 .num_dacs
= ARRAY_SIZE(alc861vd_dac_nids
),
16219 .dac_nids
= alc861vd_dac_nids
,
16220 .num_channel_mode
= ARRAY_SIZE(alc861vd_3stack_2ch_modes
),
16221 .channel_mode
= alc861vd_3stack_2ch_modes
,
16222 .input_mux
= &alc861vd_dallas_capture_source
,
16223 .unsol_event
= alc_automute_amp_unsol_event
,
16224 .setup
= alc861vd_dallas_setup
,
16225 .init_hook
= alc_automute_amp
,
16228 .mixers
= { alc861vd_hp_mixer
},
16229 .init_verbs
= { alc861vd_dallas_verbs
, alc861vd_eapd_verbs
},
16230 .num_dacs
= ARRAY_SIZE(alc861vd_dac_nids
),
16231 .dac_nids
= alc861vd_dac_nids
,
16232 .dig_out_nid
= ALC861VD_DIGOUT_NID
,
16233 .num_channel_mode
= ARRAY_SIZE(alc861vd_3stack_2ch_modes
),
16234 .channel_mode
= alc861vd_3stack_2ch_modes
,
16235 .input_mux
= &alc861vd_hp_capture_source
,
16236 .unsol_event
= alc_automute_amp_unsol_event
,
16237 .setup
= alc861vd_dallas_setup
,
16238 .init_hook
= alc_automute_amp
,
16240 [ALC660VD_ASUS_V1S
] = {
16241 .mixers
= { alc861vd_lenovo_mixer
},
16242 .init_verbs
= { alc861vd_volume_init_verbs
,
16243 alc861vd_3stack_init_verbs
,
16244 alc861vd_eapd_verbs
,
16245 alc861vd_lenovo_unsol_verbs
},
16246 .num_dacs
= ARRAY_SIZE(alc660vd_dac_nids
),
16247 .dac_nids
= alc660vd_dac_nids
,
16248 .dig_out_nid
= ALC861VD_DIGOUT_NID
,
16249 .num_channel_mode
= ARRAY_SIZE(alc861vd_3stack_2ch_modes
),
16250 .channel_mode
= alc861vd_3stack_2ch_modes
,
16251 .input_mux
= &alc861vd_capture_source
,
16252 .unsol_event
= alc861vd_lenovo_unsol_event
,
16253 .setup
= alc861vd_lenovo_setup
,
16254 .init_hook
= alc861vd_lenovo_init_hook
,
16259 * BIOS auto configuration
16261 static int alc861vd_auto_create_input_ctls(struct hda_codec
*codec
,
16262 const struct auto_pin_cfg
*cfg
)
16264 return alc_auto_create_input_ctls(codec
, cfg
, 0x15, 0x09, 0);
16268 static void alc861vd_auto_set_output_and_unmute(struct hda_codec
*codec
,
16269 hda_nid_t nid
, int pin_type
, int dac_idx
)
16271 alc_set_pin_output(codec
, nid
, pin_type
);
16274 static void alc861vd_auto_init_multi_out(struct hda_codec
*codec
)
16276 struct alc_spec
*spec
= codec
->spec
;
16279 for (i
= 0; i
<= HDA_SIDE
; i
++) {
16280 hda_nid_t nid
= spec
->autocfg
.line_out_pins
[i
];
16281 int pin_type
= get_pin_type(spec
->autocfg
.line_out_type
);
16283 alc861vd_auto_set_output_and_unmute(codec
, nid
,
16289 static void alc861vd_auto_init_hp_out(struct hda_codec
*codec
)
16291 struct alc_spec
*spec
= codec
->spec
;
16294 pin
= spec
->autocfg
.hp_pins
[0];
16295 if (pin
) /* connect to front and use dac 0 */
16296 alc861vd_auto_set_output_and_unmute(codec
, pin
, PIN_HP
, 0);
16297 pin
= spec
->autocfg
.speaker_pins
[0];
16299 alc861vd_auto_set_output_and_unmute(codec
, pin
, PIN_OUT
, 0);
16302 #define ALC861VD_PIN_CD_NID ALC880_PIN_CD_NID
16304 static void alc861vd_auto_init_analog_input(struct hda_codec
*codec
)
16306 struct alc_spec
*spec
= codec
->spec
;
16309 for (i
= 0; i
< AUTO_PIN_LAST
; i
++) {
16310 hda_nid_t nid
= spec
->autocfg
.input_pins
[i
];
16311 if (alc_is_input_pin(codec
, nid
)) {
16312 alc_set_input_pin(codec
, nid
, i
);
16313 if (nid
!= ALC861VD_PIN_CD_NID
&&
16314 (get_wcaps(codec
, nid
) & AC_WCAP_OUT_AMP
))
16315 snd_hda_codec_write(codec
, nid
, 0,
16316 AC_VERB_SET_AMP_GAIN_MUTE
,
16322 #define alc861vd_auto_init_input_src alc882_auto_init_input_src
16324 #define alc861vd_idx_to_mixer_vol(nid) ((nid) + 0x02)
16325 #define alc861vd_idx_to_mixer_switch(nid) ((nid) + 0x0c)
16327 /* add playback controls from the parsed DAC table */
16328 /* Based on ALC880 version. But ALC861VD has separate,
16329 * different NIDs for mute/unmute switch and volume control */
16330 static int alc861vd_auto_create_multi_out_ctls(struct alc_spec
*spec
,
16331 const struct auto_pin_cfg
*cfg
)
16333 static const char *chname
[4] = {"Front", "Surround", "CLFE", "Side"};
16334 hda_nid_t nid_v
, nid_s
;
16337 for (i
= 0; i
< cfg
->line_outs
; i
++) {
16338 if (!spec
->multiout
.dac_nids
[i
])
16340 nid_v
= alc861vd_idx_to_mixer_vol(
16342 spec
->multiout
.dac_nids
[i
]));
16343 nid_s
= alc861vd_idx_to_mixer_switch(
16345 spec
->multiout
.dac_nids
[i
]));
16349 err
= add_pb_vol_ctrl(spec
, ALC_CTL_WIDGET_VOL
,
16351 HDA_COMPOSE_AMP_VAL(nid_v
, 1, 0,
16355 err
= add_pb_vol_ctrl(spec
, ALC_CTL_WIDGET_VOL
,
16357 HDA_COMPOSE_AMP_VAL(nid_v
, 2, 0,
16361 err
= add_pb_sw_ctrl(spec
, ALC_CTL_BIND_MUTE
,
16363 HDA_COMPOSE_AMP_VAL(nid_s
, 1, 2,
16367 err
= add_pb_sw_ctrl(spec
, ALC_CTL_BIND_MUTE
,
16369 HDA_COMPOSE_AMP_VAL(nid_s
, 2, 2,
16375 if (cfg
->line_outs
== 1 &&
16376 cfg
->line_out_type
== AUTO_PIN_SPEAKER_OUT
) {
16383 err
= add_pb_vol_ctrl(spec
, ALC_CTL_WIDGET_VOL
, pfx
,
16384 HDA_COMPOSE_AMP_VAL(nid_v
, 3, 0,
16388 if (cfg
->line_outs
== 1 &&
16389 cfg
->line_out_type
== AUTO_PIN_SPEAKER_OUT
)
16391 err
= add_pb_sw_ctrl(spec
, ALC_CTL_BIND_MUTE
, pfx
,
16392 HDA_COMPOSE_AMP_VAL(nid_s
, 3, 2,
16401 /* add playback controls for speaker and HP outputs */
16402 /* Based on ALC880 version. But ALC861VD has separate,
16403 * different NIDs for mute/unmute switch and volume control */
16404 static int alc861vd_auto_create_extra_out(struct alc_spec
*spec
,
16405 hda_nid_t pin
, const char *pfx
)
16407 hda_nid_t nid_v
, nid_s
;
16413 if (alc880_is_fixed_pin(pin
)) {
16414 nid_v
= alc880_idx_to_dac(alc880_fixed_pin_idx(pin
));
16415 /* specify the DAC as the extra output */
16416 if (!spec
->multiout
.hp_nid
)
16417 spec
->multiout
.hp_nid
= nid_v
;
16419 spec
->multiout
.extra_out_nid
[0] = nid_v
;
16420 /* control HP volume/switch on the output mixer amp */
16421 nid_v
= alc861vd_idx_to_mixer_vol(
16422 alc880_fixed_pin_idx(pin
));
16423 nid_s
= alc861vd_idx_to_mixer_switch(
16424 alc880_fixed_pin_idx(pin
));
16426 err
= add_pb_vol_ctrl(spec
, ALC_CTL_WIDGET_VOL
, pfx
,
16427 HDA_COMPOSE_AMP_VAL(nid_v
, 3, 0, HDA_OUTPUT
));
16430 err
= add_pb_sw_ctrl(spec
, ALC_CTL_BIND_MUTE
, pfx
,
16431 HDA_COMPOSE_AMP_VAL(nid_s
, 3, 2, HDA_INPUT
));
16434 } else if (alc880_is_multi_pin(pin
)) {
16435 /* set manual connection */
16436 /* we have only a switch on HP-out PIN */
16437 err
= add_pb_sw_ctrl(spec
, ALC_CTL_WIDGET_MUTE
, pfx
,
16438 HDA_COMPOSE_AMP_VAL(pin
, 3, 0, HDA_OUTPUT
));
16445 /* parse the BIOS configuration and set up the alc_spec
16446 * return 1 if successful, 0 if the proper config is not found,
16447 * or a negative error code
16448 * Based on ALC880 version - had to change it to override
16449 * alc880_auto_create_extra_out and alc880_auto_create_multi_out_ctls */
16450 static int alc861vd_parse_auto_config(struct hda_codec
*codec
)
16452 struct alc_spec
*spec
= codec
->spec
;
16454 static hda_nid_t alc861vd_ignore
[] = { 0x1d, 0 };
16456 err
= snd_hda_parse_pin_def_config(codec
, &spec
->autocfg
,
16460 if (!spec
->autocfg
.line_outs
)
16461 return 0; /* can't find valid BIOS pin config */
16463 err
= alc880_auto_fill_dac_nids(spec
, &spec
->autocfg
);
16466 err
= alc861vd_auto_create_multi_out_ctls(spec
, &spec
->autocfg
);
16469 err
= alc861vd_auto_create_extra_out(spec
,
16470 spec
->autocfg
.speaker_pins
[0],
16474 err
= alc861vd_auto_create_extra_out(spec
,
16475 spec
->autocfg
.hp_pins
[0],
16479 err
= alc861vd_auto_create_input_ctls(codec
, &spec
->autocfg
);
16483 spec
->multiout
.max_channels
= spec
->multiout
.num_dacs
* 2;
16485 if (spec
->autocfg
.dig_outs
)
16486 spec
->multiout
.dig_out_nid
= ALC861VD_DIGOUT_NID
;
16488 if (spec
->kctls
.list
)
16489 add_mixer(spec
, spec
->kctls
.list
);
16491 add_verb(spec
, alc861vd_volume_init_verbs
);
16493 spec
->num_mux_defs
= 1;
16494 spec
->input_mux
= &spec
->private_imux
[0];
16496 err
= alc_auto_add_mic_boost(codec
);
16500 alc_ssid_check(codec
, 0x15, 0x1b, 0x14, 0);
16505 /* additional initialization for auto-configuration model */
16506 static void alc861vd_auto_init(struct hda_codec
*codec
)
16508 struct alc_spec
*spec
= codec
->spec
;
16509 alc861vd_auto_init_multi_out(codec
);
16510 alc861vd_auto_init_hp_out(codec
);
16511 alc861vd_auto_init_analog_input(codec
);
16512 alc861vd_auto_init_input_src(codec
);
16513 if (spec
->unsol_event
)
16514 alc_inithook(codec
);
16518 ALC660VD_FIX_ASUS_GPIO1
16522 static const struct hda_verb alc660vd_fix_asus_gpio1_verbs
[] = {
16523 {0x01, AC_VERB_SET_GPIO_MASK
, 0x03},
16524 {0x01, AC_VERB_SET_GPIO_DIRECTION
, 0x01},
16525 {0x01, AC_VERB_SET_GPIO_DATA
, 0x01},
16529 static const struct alc_fixup alc861vd_fixups
[] = {
16530 [ALC660VD_FIX_ASUS_GPIO1
] = {
16531 .verbs
= alc660vd_fix_asus_gpio1_verbs
,
16535 static struct snd_pci_quirk alc861vd_fixup_tbl
[] = {
16536 SND_PCI_QUIRK(0x1043, 0x1339, "ASUS A7-K", ALC660VD_FIX_ASUS_GPIO1
),
16540 static int patch_alc861vd(struct hda_codec
*codec
)
16542 struct alc_spec
*spec
;
16543 int err
, board_config
;
16545 spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
16549 codec
->spec
= spec
;
16551 board_config
= snd_hda_check_board_config(codec
, ALC861VD_MODEL_LAST
,
16555 if (board_config
< 0 || board_config
>= ALC861VD_MODEL_LAST
) {
16556 printk(KERN_INFO
"hda_codec: %s: BIOS auto-probing.\n",
16558 board_config
= ALC861VD_AUTO
;
16561 if (board_config
== ALC861VD_AUTO
)
16562 alc_pick_fixup(codec
, alc861vd_fixup_tbl
, alc861vd_fixups
, 1);
16564 if (board_config
== ALC861VD_AUTO
) {
16565 /* automatic parse from the BIOS config */
16566 err
= alc861vd_parse_auto_config(codec
);
16572 "hda_codec: Cannot set up configuration "
16573 "from BIOS. Using base mode...\n");
16574 board_config
= ALC861VD_3ST
;
16578 err
= snd_hda_attach_beep_device(codec
, 0x23);
16584 if (board_config
!= ALC861VD_AUTO
)
16585 setup_preset(codec
, &alc861vd_presets
[board_config
]);
16587 if (codec
->vendor_id
== 0x10ec0660) {
16588 /* always turn on EAPD */
16589 add_verb(spec
, alc660vd_eapd_verbs
);
16592 spec
->stream_analog_playback
= &alc861vd_pcm_analog_playback
;
16593 spec
->stream_analog_capture
= &alc861vd_pcm_analog_capture
;
16595 spec
->stream_digital_playback
= &alc861vd_pcm_digital_playback
;
16596 spec
->stream_digital_capture
= &alc861vd_pcm_digital_capture
;
16598 if (!spec
->adc_nids
) {
16599 spec
->adc_nids
= alc861vd_adc_nids
;
16600 spec
->num_adc_nids
= ARRAY_SIZE(alc861vd_adc_nids
);
16602 if (!spec
->capsrc_nids
)
16603 spec
->capsrc_nids
= alc861vd_capsrc_nids
;
16605 set_capture_mixer(codec
);
16606 set_beep_amp(spec
, 0x0b, 0x05, HDA_INPUT
);
16608 spec
->vmaster_nid
= 0x02;
16610 if (board_config
== ALC861VD_AUTO
)
16611 alc_pick_fixup(codec
, alc861vd_fixup_tbl
, alc861vd_fixups
, 0);
16613 codec
->patch_ops
= alc_patch_ops
;
16615 if (board_config
== ALC861VD_AUTO
)
16616 spec
->init_hook
= alc861vd_auto_init
;
16617 #ifdef CONFIG_SND_HDA_POWER_SAVE
16618 if (!spec
->loopback
.amplist
)
16619 spec
->loopback
.amplist
= alc861vd_loopbacks
;
16628 * ALC662 is almost identical with ALC880 but has cleaner and more flexible
16629 * configuration. Each pin widget can choose any input DACs and a mixer.
16630 * Each ADC is connected from a mixer of all inputs. This makes possible
16631 * 6-channel independent captures.
16633 * In addition, an independent DAC for the multi-playback (not used in this
16636 #define ALC662_DIGOUT_NID 0x06
16637 #define ALC662_DIGIN_NID 0x0a
16639 static hda_nid_t alc662_dac_nids
[4] = {
16640 /* front, rear, clfe, rear_surr */
16644 static hda_nid_t alc272_dac_nids
[2] = {
16648 static hda_nid_t alc662_adc_nids
[2] = {
16653 static hda_nid_t alc272_adc_nids
[1] = {
16658 static hda_nid_t alc662_capsrc_nids
[2] = { 0x22, 0x23 };
16659 static hda_nid_t alc272_capsrc_nids
[1] = { 0x23 };
16663 /* FIXME: should be a matrix-type input source selection */
16664 static struct hda_input_mux alc662_capture_source
= {
16668 { "Front Mic", 0x1 },
16674 static struct hda_input_mux alc662_lenovo_101e_capture_source
= {
16682 static struct hda_input_mux alc663_capture_source
= {
16686 { "Front Mic", 0x1 },
16691 #if 0 /* set to 1 for testing other input sources below */
16692 static struct hda_input_mux alc272_nc10_capture_source
= {
16695 { "Autoselect Mic", 0x0 },
16696 { "Internal Mic", 0x1 },
16697 { "In-0x02", 0x2 },
16698 { "In-0x03", 0x3 },
16699 { "In-0x04", 0x4 },
16700 { "In-0x05", 0x5 },
16701 { "In-0x06", 0x6 },
16702 { "In-0x07", 0x7 },
16703 { "In-0x08", 0x8 },
16704 { "In-0x09", 0x9 },
16705 { "In-0x0a", 0x0a },
16706 { "In-0x0b", 0x0b },
16707 { "In-0x0c", 0x0c },
16708 { "In-0x0d", 0x0d },
16709 { "In-0x0e", 0x0e },
16710 { "In-0x0f", 0x0f },
16718 static struct hda_channel_mode alc662_3ST_2ch_modes
[1] = {
16725 static struct hda_verb alc662_3ST_ch2_init
[] = {
16726 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
16727 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
16728 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
16729 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
16736 static struct hda_verb alc662_3ST_ch6_init
[] = {
16737 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
16738 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
16739 { 0x18, AC_VERB_SET_CONNECT_SEL
, 0x02 },
16740 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
16741 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
16742 { 0x1a, AC_VERB_SET_CONNECT_SEL
, 0x01 },
16746 static struct hda_channel_mode alc662_3ST_6ch_modes
[2] = {
16747 { 2, alc662_3ST_ch2_init
},
16748 { 6, alc662_3ST_ch6_init
},
16754 static struct hda_verb alc662_sixstack_ch6_init
[] = {
16755 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x00 },
16756 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x00 },
16757 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
16764 static struct hda_verb alc662_sixstack_ch8_init
[] = {
16765 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
16766 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
16767 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
16771 static struct hda_channel_mode alc662_5stack_modes
[2] = {
16772 { 2, alc662_sixstack_ch6_init
},
16773 { 6, alc662_sixstack_ch8_init
},
16776 /* Pin assignment: Front=0x14, Rear=0x15, CLFE=0x16, Side=0x17
16777 * Mic=0x18, Front Mic=0x19, Line-In=0x1a, HP=0x1b
16780 static struct snd_kcontrol_new alc662_base_mixer
[] = {
16781 /* output mixer control */
16782 HDA_CODEC_VOLUME("Front Playback Volume", 0x2, 0x0, HDA_OUTPUT
),
16783 HDA_CODEC_MUTE("Front Playback Switch", 0x0c, 0x0, HDA_INPUT
),
16784 HDA_CODEC_VOLUME("Surround Playback Volume", 0x3, 0x0, HDA_OUTPUT
),
16785 HDA_CODEC_MUTE("Surround Playback Switch", 0x0d, 0x0, HDA_INPUT
),
16786 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x04, 1, 0x0, HDA_OUTPUT
),
16787 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x04, 2, 0x0, HDA_OUTPUT
),
16788 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x0e, 1, 0x0, HDA_INPUT
),
16789 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 0x0, HDA_INPUT
),
16790 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
16792 /*Input mixer control */
16793 HDA_CODEC_VOLUME("CD Playback Volume", 0xb, 0x4, HDA_INPUT
),
16794 HDA_CODEC_MUTE("CD Playback Switch", 0xb, 0x4, HDA_INPUT
),
16795 HDA_CODEC_VOLUME("Line Playback Volume", 0xb, 0x02, HDA_INPUT
),
16796 HDA_CODEC_MUTE("Line Playback Switch", 0xb, 0x02, HDA_INPUT
),
16797 HDA_CODEC_VOLUME("Mic Playback Volume", 0xb, 0x0, HDA_INPUT
),
16798 HDA_CODEC_MUTE("Mic Playback Switch", 0xb, 0x0, HDA_INPUT
),
16799 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0xb, 0x01, HDA_INPUT
),
16800 HDA_CODEC_MUTE("Front Mic Playback Switch", 0xb, 0x01, HDA_INPUT
),
16804 static struct snd_kcontrol_new alc662_3ST_2ch_mixer
[] = {
16805 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
16806 HDA_CODEC_MUTE("Front Playback Switch", 0x0c, 0x0, HDA_INPUT
),
16807 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
16808 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
16809 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
16810 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
16811 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
16812 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
16813 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
16814 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
16815 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
16819 static struct snd_kcontrol_new alc662_3ST_6ch_mixer
[] = {
16820 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
16821 HDA_CODEC_MUTE("Front Playback Switch", 0x0c, 0x0, HDA_INPUT
),
16822 HDA_CODEC_VOLUME("Surround Playback Volume", 0x03, 0x0, HDA_OUTPUT
),
16823 HDA_CODEC_MUTE("Surround Playback Switch", 0x0d, 0x0, HDA_INPUT
),
16824 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x04, 1, 0x0, HDA_OUTPUT
),
16825 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x04, 2, 0x0, HDA_OUTPUT
),
16826 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x0e, 1, 0x0, HDA_INPUT
),
16827 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 0x0, HDA_INPUT
),
16828 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
16829 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
16830 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
16831 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
16832 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
16833 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
16834 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
16835 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
16836 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
16840 static struct snd_kcontrol_new alc662_lenovo_101e_mixer
[] = {
16841 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
16842 HDA_BIND_MUTE("Front Playback Switch", 0x02, 2, HDA_INPUT
),
16843 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x03, 0x0, HDA_OUTPUT
),
16844 HDA_BIND_MUTE("Speaker Playback Switch", 0x03, 2, HDA_INPUT
),
16845 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
16846 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
16847 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
16848 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
16849 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
16853 static struct snd_kcontrol_new alc662_eeepc_p701_mixer
[] = {
16854 HDA_CODEC_VOLUME("Master Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
16855 ALC262_HIPPO_MASTER_SWITCH
,
16857 HDA_CODEC_VOLUME("e-Mic Boost", 0x18, 0, HDA_INPUT
),
16858 HDA_CODEC_VOLUME("e-Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
16859 HDA_CODEC_MUTE("e-Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
16861 HDA_CODEC_VOLUME("i-Mic Boost", 0x19, 0, HDA_INPUT
),
16862 HDA_CODEC_VOLUME("i-Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
16863 HDA_CODEC_MUTE("i-Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
16867 static struct snd_kcontrol_new alc662_eeepc_ep20_mixer
[] = {
16868 ALC262_HIPPO_MASTER_SWITCH
,
16869 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
16870 HDA_CODEC_VOLUME("Surround Playback Volume", 0x03, 0x0, HDA_OUTPUT
),
16871 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x04, 1, 0x0, HDA_OUTPUT
),
16872 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x04, 2, 0x0, HDA_OUTPUT
),
16873 HDA_BIND_MUTE("MuteCtrl Playback Switch", 0x0c, 2, HDA_INPUT
),
16874 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
16875 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
16876 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
16877 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
16881 static struct hda_bind_ctls alc663_asus_bind_master_vol
= {
16882 .ops
= &snd_hda_bind_vol
,
16884 HDA_COMPOSE_AMP_VAL(0x02, 3, 0, HDA_OUTPUT
),
16885 HDA_COMPOSE_AMP_VAL(0x03, 3, 0, HDA_OUTPUT
),
16890 static struct hda_bind_ctls alc663_asus_one_bind_switch
= {
16891 .ops
= &snd_hda_bind_sw
,
16893 HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT
),
16894 HDA_COMPOSE_AMP_VAL(0x21, 3, 0, HDA_OUTPUT
),
16899 static struct snd_kcontrol_new alc663_m51va_mixer
[] = {
16900 HDA_BIND_VOL("Master Playback Volume", &alc663_asus_bind_master_vol
),
16901 HDA_BIND_SW("Master Playback Switch", &alc663_asus_one_bind_switch
),
16902 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
16903 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
16907 static struct hda_bind_ctls alc663_asus_tree_bind_switch
= {
16908 .ops
= &snd_hda_bind_sw
,
16910 HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT
),
16911 HDA_COMPOSE_AMP_VAL(0x15, 3, 0, HDA_OUTPUT
),
16912 HDA_COMPOSE_AMP_VAL(0x21, 3, 0, HDA_OUTPUT
),
16917 static struct snd_kcontrol_new alc663_two_hp_m1_mixer
[] = {
16918 HDA_BIND_VOL("Master Playback Volume", &alc663_asus_bind_master_vol
),
16919 HDA_BIND_SW("Master Playback Switch", &alc663_asus_tree_bind_switch
),
16920 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
16921 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
16922 HDA_CODEC_VOLUME("F-Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
16923 HDA_CODEC_MUTE("F-Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
16928 static struct hda_bind_ctls alc663_asus_four_bind_switch
= {
16929 .ops
= &snd_hda_bind_sw
,
16931 HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT
),
16932 HDA_COMPOSE_AMP_VAL(0x15, 3, 0, HDA_OUTPUT
),
16933 HDA_COMPOSE_AMP_VAL(0x1b, 3, 0, HDA_OUTPUT
),
16938 static struct snd_kcontrol_new alc663_two_hp_m2_mixer
[] = {
16939 HDA_BIND_VOL("Master Playback Volume", &alc663_asus_bind_master_vol
),
16940 HDA_BIND_SW("Master Playback Switch", &alc663_asus_four_bind_switch
),
16941 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
16942 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
16943 HDA_CODEC_VOLUME("F-Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
16944 HDA_CODEC_MUTE("F-Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
16948 static struct snd_kcontrol_new alc662_1bjd_mixer
[] = {
16949 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
16950 HDA_CODEC_MUTE("Speaker Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
16951 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
16952 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
16953 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
16954 HDA_CODEC_VOLUME("F-Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
16955 HDA_CODEC_MUTE("F-Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
16959 static struct hda_bind_ctls alc663_asus_two_bind_master_vol
= {
16960 .ops
= &snd_hda_bind_vol
,
16962 HDA_COMPOSE_AMP_VAL(0x02, 3, 0, HDA_OUTPUT
),
16963 HDA_COMPOSE_AMP_VAL(0x04, 3, 0, HDA_OUTPUT
),
16968 static struct hda_bind_ctls alc663_asus_two_bind_switch
= {
16969 .ops
= &snd_hda_bind_sw
,
16971 HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT
),
16972 HDA_COMPOSE_AMP_VAL(0x16, 3, 0, HDA_OUTPUT
),
16977 static struct snd_kcontrol_new alc663_asus_21jd_clfe_mixer
[] = {
16978 HDA_BIND_VOL("Master Playback Volume",
16979 &alc663_asus_two_bind_master_vol
),
16980 HDA_BIND_SW("Master Playback Switch", &alc663_asus_two_bind_switch
),
16981 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x03, 0x0, HDA_OUTPUT
),
16982 HDA_CODEC_MUTE("Headphone Playback Switch", 0x21, 0x0, HDA_OUTPUT
),
16983 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
16984 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
16988 static struct snd_kcontrol_new alc663_asus_15jd_clfe_mixer
[] = {
16989 HDA_BIND_VOL("Master Playback Volume", &alc663_asus_bind_master_vol
),
16990 HDA_BIND_SW("Master Playback Switch", &alc663_asus_two_bind_switch
),
16991 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x03, 0x0, HDA_OUTPUT
),
16992 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
16993 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
16994 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
16998 static struct snd_kcontrol_new alc663_g71v_mixer
[] = {
16999 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
17000 HDA_CODEC_MUTE("Speaker Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
17001 HDA_CODEC_VOLUME("Front Playback Volume", 0x03, 0x0, HDA_OUTPUT
),
17002 HDA_CODEC_MUTE("Front Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
17003 HDA_CODEC_MUTE("Headphone Playback Switch", 0x21, 0x0, HDA_OUTPUT
),
17005 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
17006 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
17007 HDA_CODEC_VOLUME("i-Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
17008 HDA_CODEC_MUTE("i-Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
17012 static struct snd_kcontrol_new alc663_g50v_mixer
[] = {
17013 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
17014 HDA_CODEC_MUTE("Speaker Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
17015 HDA_CODEC_MUTE("Headphone Playback Switch", 0x21, 0x0, HDA_OUTPUT
),
17017 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
17018 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
17019 HDA_CODEC_VOLUME("i-Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
17020 HDA_CODEC_MUTE("i-Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
17021 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
17022 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
17026 static struct hda_bind_ctls alc663_asus_mode7_8_all_bind_switch
= {
17027 .ops
= &snd_hda_bind_sw
,
17029 HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT
),
17030 HDA_COMPOSE_AMP_VAL(0x15, 3, 0, HDA_OUTPUT
),
17031 HDA_COMPOSE_AMP_VAL(0x17, 3, 0, HDA_OUTPUT
),
17032 HDA_COMPOSE_AMP_VAL(0x1b, 3, 0, HDA_OUTPUT
),
17033 HDA_COMPOSE_AMP_VAL(0x21, 3, 0, HDA_OUTPUT
),
17038 static struct hda_bind_ctls alc663_asus_mode7_8_sp_bind_switch
= {
17039 .ops
= &snd_hda_bind_sw
,
17041 HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT
),
17042 HDA_COMPOSE_AMP_VAL(0x17, 3, 0, HDA_OUTPUT
),
17047 static struct snd_kcontrol_new alc663_mode7_mixer
[] = {
17048 HDA_BIND_SW("Master Playback Switch", &alc663_asus_mode7_8_all_bind_switch
),
17049 HDA_BIND_VOL("Speaker Playback Volume", &alc663_asus_bind_master_vol
),
17050 HDA_BIND_SW("Speaker Playback Switch", &alc663_asus_mode7_8_sp_bind_switch
),
17051 HDA_CODEC_MUTE("Headphone1 Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
17052 HDA_CODEC_MUTE("Headphone2 Playback Switch", 0x21, 0x0, HDA_OUTPUT
),
17053 HDA_CODEC_VOLUME("IntMic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
17054 HDA_CODEC_MUTE("IntMic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
17055 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
17056 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
17060 static struct snd_kcontrol_new alc663_mode8_mixer
[] = {
17061 HDA_BIND_SW("Master Playback Switch", &alc663_asus_mode7_8_all_bind_switch
),
17062 HDA_BIND_VOL("Speaker Playback Volume", &alc663_asus_bind_master_vol
),
17063 HDA_BIND_SW("Speaker Playback Switch", &alc663_asus_mode7_8_sp_bind_switch
),
17064 HDA_CODEC_MUTE("Headphone1 Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
17065 HDA_CODEC_MUTE("Headphone2 Playback Switch", 0x21, 0x0, HDA_OUTPUT
),
17066 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
17067 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
17072 static struct snd_kcontrol_new alc662_chmode_mixer
[] = {
17074 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
17075 .name
= "Channel Mode",
17076 .info
= alc_ch_mode_info
,
17077 .get
= alc_ch_mode_get
,
17078 .put
= alc_ch_mode_put
,
17083 static struct hda_verb alc662_init_verbs
[] = {
17084 /* ADC: mute amp left and right */
17085 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
17086 {0x09, AC_VERB_SET_CONNECT_SEL
, 0x00},
17088 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
17089 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
17090 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
17091 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
17092 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
17093 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
17095 /* Front Pin: output 0 (0x0c) */
17096 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
17097 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17099 /* Rear Pin: output 1 (0x0d) */
17100 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
17101 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17103 /* CLFE Pin: output 2 (0x0e) */
17104 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
17105 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17107 /* Mic (rear) pin: input vref at 80% */
17108 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
17109 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
17110 /* Front Mic pin: input vref at 80% */
17111 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
17112 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
17113 /* Line In pin: input */
17114 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
17115 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
17116 /* Line-2 In: Headphone output (output 0 - 0x0c) */
17117 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
17118 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17119 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0x00},
17120 /* CD pin widget for input */
17121 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
17123 /* FIXME: use matrix-type input source selection */
17124 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
17126 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
17127 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
17129 /* always trun on EAPD */
17130 {0x14, AC_VERB_SET_EAPD_BTLENABLE
, 2},
17131 {0x15, AC_VERB_SET_EAPD_BTLENABLE
, 2},
17136 static struct hda_verb alc663_init_verbs
[] = {
17137 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
17138 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17139 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
17140 {0x21, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17141 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
17142 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
17146 static struct hda_verb alc272_init_verbs
[] = {
17147 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
17148 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
17149 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
17150 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17151 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
17152 {0x21, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17153 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
17154 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
17158 static struct hda_verb alc662_sue_init_verbs
[] = {
17159 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
|ALC880_FRONT_EVENT
},
17160 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
|ALC880_HP_EVENT
},
17164 static struct hda_verb alc662_eeepc_sue_init_verbs
[] = {
17165 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
17166 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
17170 /* Set Unsolicited Event*/
17171 static struct hda_verb alc662_eeepc_ep20_sue_init_verbs
[] = {
17172 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
17173 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
17177 static struct hda_verb alc663_m51va_init_verbs
[] = {
17178 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
17179 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
17180 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
17181 {0x21, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17182 {0x21, AC_VERB_SET_CONNECT_SEL
, 0x01}, /* Headphone */
17183 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
17184 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(9)},
17185 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
17186 {0x21, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
17190 static struct hda_verb alc663_21jd_amic_init_verbs
[] = {
17191 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
17192 {0x21, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17193 {0x21, AC_VERB_SET_CONNECT_SEL
, 0x01}, /* Headphone */
17194 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
17195 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
17196 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
17197 {0x21, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
17201 static struct hda_verb alc662_1bjd_amic_init_verbs
[] = {
17202 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
17203 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
17204 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17205 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* Headphone */
17206 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
17207 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
17208 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
17209 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
17213 static struct hda_verb alc663_15jd_amic_init_verbs
[] = {
17214 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
17215 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17216 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x01}, /* Headphone */
17217 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
17218 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
17219 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
17220 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
17224 static struct hda_verb alc663_two_hp_amic_m1_init_verbs
[] = {
17225 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
17226 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
17227 {0x21, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17228 {0x21, AC_VERB_SET_CONNECT_SEL
, 0x0}, /* Headphone */
17229 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
17230 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17231 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x0}, /* Headphone */
17232 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
17233 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
17234 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
17235 {0x21, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
17236 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
17240 static struct hda_verb alc663_two_hp_amic_m2_init_verbs
[] = {
17241 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
17242 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
17243 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17244 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0x01}, /* Headphone */
17245 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
17246 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17247 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x01}, /* Headphone */
17248 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
17249 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
17250 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
17251 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
17252 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
17256 static struct hda_verb alc663_g71v_init_verbs
[] = {
17257 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
17258 /* {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, */
17259 /* {0x15, AC_VERB_SET_CONNECT_SEL, 0x01}, */ /* Headphone */
17261 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
17262 {0x21, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17263 {0x21, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* Headphone */
17265 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
|ALC880_FRONT_EVENT
},
17266 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
|ALC880_MIC_EVENT
},
17267 {0x21, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
|ALC880_HP_EVENT
},
17271 static struct hda_verb alc663_g50v_init_verbs
[] = {
17272 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
17273 {0x21, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17274 {0x21, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* Headphone */
17276 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
17277 {0x21, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
17281 static struct hda_verb alc662_ecs_init_verbs
[] = {
17282 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, 0x701f},
17283 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
17284 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
17285 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
17289 static struct hda_verb alc272_dell_zm1_init_verbs
[] = {
17290 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
17291 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
17292 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
17293 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
17294 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
17295 {0x21, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17296 {0x21, AC_VERB_SET_CONNECT_SEL
, 0x01}, /* Headphone */
17297 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
17298 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(9)},
17299 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
17300 {0x21, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
17304 static struct hda_verb alc272_dell_init_verbs
[] = {
17305 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
17306 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
17307 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
17308 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
17309 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
17310 {0x21, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17311 {0x21, AC_VERB_SET_CONNECT_SEL
, 0x01}, /* Headphone */
17312 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
17313 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(9)},
17314 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
17315 {0x21, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
17319 static struct hda_verb alc663_mode7_init_verbs
[] = {
17320 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
17321 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
17322 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
17323 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17324 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
17325 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17326 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0x01},
17327 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
17328 {0x21, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17329 {0x21, AC_VERB_SET_CONNECT_SEL
, 0x01}, /* Headphone */
17330 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
17331 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(9)},
17332 {0x19, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
17333 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
17334 {0x21, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
17338 static struct hda_verb alc663_mode8_init_verbs
[] = {
17339 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
17340 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
17341 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17342 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x01},
17343 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
17344 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
17345 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17346 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
17347 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
17348 {0x21, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17349 {0x21, AC_VERB_SET_CONNECT_SEL
, 0x01}, /* Headphone */
17350 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
17351 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(9)},
17352 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
17353 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
17354 {0x21, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
17358 static struct snd_kcontrol_new alc662_auto_capture_mixer
[] = {
17359 HDA_CODEC_VOLUME("Capture Volume", 0x09, 0x0, HDA_INPUT
),
17360 HDA_CODEC_MUTE("Capture Switch", 0x09, 0x0, HDA_INPUT
),
17364 static struct snd_kcontrol_new alc272_auto_capture_mixer
[] = {
17365 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT
),
17366 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT
),
17370 static void alc662_lenovo_101e_ispeaker_automute(struct hda_codec
*codec
)
17372 unsigned int present
;
17373 unsigned char bits
;
17375 present
= snd_hda_jack_detect(codec
, 0x14);
17376 bits
= present
? HDA_AMP_MUTE
: 0;
17378 snd_hda_codec_amp_stereo(codec
, 0x15, HDA_OUTPUT
, 0,
17379 HDA_AMP_MUTE
, bits
);
17382 static void alc662_lenovo_101e_all_automute(struct hda_codec
*codec
)
17384 unsigned int present
;
17385 unsigned char bits
;
17387 present
= snd_hda_jack_detect(codec
, 0x1b);
17388 bits
= present
? HDA_AMP_MUTE
: 0;
17390 snd_hda_codec_amp_stereo(codec
, 0x15, HDA_OUTPUT
, 0,
17391 HDA_AMP_MUTE
, bits
);
17392 snd_hda_codec_amp_stereo(codec
, 0x14, HDA_OUTPUT
, 0,
17393 HDA_AMP_MUTE
, bits
);
17396 static void alc662_lenovo_101e_unsol_event(struct hda_codec
*codec
,
17399 if ((res
>> 26) == ALC880_HP_EVENT
)
17400 alc662_lenovo_101e_all_automute(codec
);
17401 if ((res
>> 26) == ALC880_FRONT_EVENT
)
17402 alc662_lenovo_101e_ispeaker_automute(codec
);
17405 /* unsolicited event for HP jack sensing */
17406 static void alc662_eeepc_unsol_event(struct hda_codec
*codec
,
17409 if ((res
>> 26) == ALC880_MIC_EVENT
)
17410 alc_mic_automute(codec
);
17412 alc262_hippo_unsol_event(codec
, res
);
17415 static void alc662_eeepc_setup(struct hda_codec
*codec
)
17417 struct alc_spec
*spec
= codec
->spec
;
17419 alc262_hippo1_setup(codec
);
17420 spec
->ext_mic
.pin
= 0x18;
17421 spec
->ext_mic
.mux_idx
= 0;
17422 spec
->int_mic
.pin
= 0x19;
17423 spec
->int_mic
.mux_idx
= 1;
17424 spec
->auto_mic
= 1;
17427 static void alc662_eeepc_inithook(struct hda_codec
*codec
)
17429 alc262_hippo_automute(codec
);
17430 alc_mic_automute(codec
);
17433 static void alc662_eeepc_ep20_setup(struct hda_codec
*codec
)
17435 struct alc_spec
*spec
= codec
->spec
;
17437 spec
->autocfg
.hp_pins
[0] = 0x14;
17438 spec
->autocfg
.speaker_pins
[0] = 0x1b;
17441 #define alc662_eeepc_ep20_inithook alc262_hippo_master_update
17443 static void alc663_m51va_speaker_automute(struct hda_codec
*codec
)
17445 unsigned int present
;
17446 unsigned char bits
;
17448 present
= snd_hda_jack_detect(codec
, 0x21);
17449 bits
= present
? HDA_AMP_MUTE
: 0;
17450 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 0,
17451 HDA_AMP_MUTE
, bits
);
17452 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 1,
17453 HDA_AMP_MUTE
, bits
);
17456 static void alc663_21jd_two_speaker_automute(struct hda_codec
*codec
)
17458 unsigned int present
;
17459 unsigned char bits
;
17461 present
= snd_hda_jack_detect(codec
, 0x21);
17462 bits
= present
? HDA_AMP_MUTE
: 0;
17463 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 0,
17464 HDA_AMP_MUTE
, bits
);
17465 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 1,
17466 HDA_AMP_MUTE
, bits
);
17467 snd_hda_codec_amp_stereo(codec
, 0x0e, HDA_INPUT
, 0,
17468 HDA_AMP_MUTE
, bits
);
17469 snd_hda_codec_amp_stereo(codec
, 0x0e, HDA_INPUT
, 1,
17470 HDA_AMP_MUTE
, bits
);
17473 static void alc663_15jd_two_speaker_automute(struct hda_codec
*codec
)
17475 unsigned int present
;
17476 unsigned char bits
;
17478 present
= snd_hda_jack_detect(codec
, 0x15);
17479 bits
= present
? HDA_AMP_MUTE
: 0;
17480 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 0,
17481 HDA_AMP_MUTE
, bits
);
17482 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 1,
17483 HDA_AMP_MUTE
, bits
);
17484 snd_hda_codec_amp_stereo(codec
, 0x0e, HDA_INPUT
, 0,
17485 HDA_AMP_MUTE
, bits
);
17486 snd_hda_codec_amp_stereo(codec
, 0x0e, HDA_INPUT
, 1,
17487 HDA_AMP_MUTE
, bits
);
17490 static void alc662_f5z_speaker_automute(struct hda_codec
*codec
)
17492 unsigned int present
;
17493 unsigned char bits
;
17495 present
= snd_hda_jack_detect(codec
, 0x1b);
17496 bits
= present
? 0 : PIN_OUT
;
17497 snd_hda_codec_write(codec
, 0x14, 0,
17498 AC_VERB_SET_PIN_WIDGET_CONTROL
, bits
);
17501 static void alc663_two_hp_m1_speaker_automute(struct hda_codec
*codec
)
17503 unsigned int present1
, present2
;
17505 present1
= snd_hda_jack_detect(codec
, 0x21);
17506 present2
= snd_hda_jack_detect(codec
, 0x15);
17508 if (present1
|| present2
) {
17509 snd_hda_codec_write_cache(codec
, 0x14, 0,
17510 AC_VERB_SET_PIN_WIDGET_CONTROL
, 0);
17512 snd_hda_codec_write_cache(codec
, 0x14, 0,
17513 AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
);
17517 static void alc663_two_hp_m2_speaker_automute(struct hda_codec
*codec
)
17519 unsigned int present1
, present2
;
17521 present1
= snd_hda_jack_detect(codec
, 0x1b);
17522 present2
= snd_hda_jack_detect(codec
, 0x15);
17524 if (present1
|| present2
) {
17525 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 0,
17526 HDA_AMP_MUTE
, HDA_AMP_MUTE
);
17527 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 1,
17528 HDA_AMP_MUTE
, HDA_AMP_MUTE
);
17530 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 0,
17532 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 1,
17537 static void alc663_two_hp_m7_speaker_automute(struct hda_codec
*codec
)
17539 unsigned int present1
, present2
;
17541 present1
= snd_hda_codec_read(codec
, 0x1b, 0,
17542 AC_VERB_GET_PIN_SENSE
, 0)
17543 & AC_PINSENSE_PRESENCE
;
17544 present2
= snd_hda_codec_read(codec
, 0x21, 0,
17545 AC_VERB_GET_PIN_SENSE
, 0)
17546 & AC_PINSENSE_PRESENCE
;
17548 if (present1
|| present2
) {
17549 snd_hda_codec_write_cache(codec
, 0x14, 0,
17550 AC_VERB_SET_PIN_WIDGET_CONTROL
, 0);
17551 snd_hda_codec_write_cache(codec
, 0x17, 0,
17552 AC_VERB_SET_PIN_WIDGET_CONTROL
, 0);
17554 snd_hda_codec_write_cache(codec
, 0x14, 0,
17555 AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
);
17556 snd_hda_codec_write_cache(codec
, 0x17, 0,
17557 AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
);
17561 static void alc663_two_hp_m8_speaker_automute(struct hda_codec
*codec
)
17563 unsigned int present1
, present2
;
17565 present1
= snd_hda_codec_read(codec
, 0x21, 0,
17566 AC_VERB_GET_PIN_SENSE
, 0)
17567 & AC_PINSENSE_PRESENCE
;
17568 present2
= snd_hda_codec_read(codec
, 0x15, 0,
17569 AC_VERB_GET_PIN_SENSE
, 0)
17570 & AC_PINSENSE_PRESENCE
;
17572 if (present1
|| present2
) {
17573 snd_hda_codec_write_cache(codec
, 0x14, 0,
17574 AC_VERB_SET_PIN_WIDGET_CONTROL
, 0);
17575 snd_hda_codec_write_cache(codec
, 0x17, 0,
17576 AC_VERB_SET_PIN_WIDGET_CONTROL
, 0);
17578 snd_hda_codec_write_cache(codec
, 0x14, 0,
17579 AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
);
17580 snd_hda_codec_write_cache(codec
, 0x17, 0,
17581 AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
);
17585 static void alc663_m51va_unsol_event(struct hda_codec
*codec
,
17588 switch (res
>> 26) {
17589 case ALC880_HP_EVENT
:
17590 alc663_m51va_speaker_automute(codec
);
17592 case ALC880_MIC_EVENT
:
17593 alc_mic_automute(codec
);
17598 static void alc663_m51va_setup(struct hda_codec
*codec
)
17600 struct alc_spec
*spec
= codec
->spec
;
17601 spec
->ext_mic
.pin
= 0x18;
17602 spec
->ext_mic
.mux_idx
= 0;
17603 spec
->int_mic
.pin
= 0x12;
17604 spec
->int_mic
.mux_idx
= 9;
17605 spec
->auto_mic
= 1;
17608 static void alc663_m51va_inithook(struct hda_codec
*codec
)
17610 alc663_m51va_speaker_automute(codec
);
17611 alc_mic_automute(codec
);
17614 /* ***************** Mode1 ******************************/
17615 #define alc663_mode1_unsol_event alc663_m51va_unsol_event
17617 static void alc663_mode1_setup(struct hda_codec
*codec
)
17619 struct alc_spec
*spec
= codec
->spec
;
17620 spec
->ext_mic
.pin
= 0x18;
17621 spec
->ext_mic
.mux_idx
= 0;
17622 spec
->int_mic
.pin
= 0x19;
17623 spec
->int_mic
.mux_idx
= 1;
17624 spec
->auto_mic
= 1;
17627 #define alc663_mode1_inithook alc663_m51va_inithook
17629 /* ***************** Mode2 ******************************/
17630 static void alc662_mode2_unsol_event(struct hda_codec
*codec
,
17633 switch (res
>> 26) {
17634 case ALC880_HP_EVENT
:
17635 alc662_f5z_speaker_automute(codec
);
17637 case ALC880_MIC_EVENT
:
17638 alc_mic_automute(codec
);
17643 #define alc662_mode2_setup alc663_mode1_setup
17645 static void alc662_mode2_inithook(struct hda_codec
*codec
)
17647 alc662_f5z_speaker_automute(codec
);
17648 alc_mic_automute(codec
);
17650 /* ***************** Mode3 ******************************/
17651 static void alc663_mode3_unsol_event(struct hda_codec
*codec
,
17654 switch (res
>> 26) {
17655 case ALC880_HP_EVENT
:
17656 alc663_two_hp_m1_speaker_automute(codec
);
17658 case ALC880_MIC_EVENT
:
17659 alc_mic_automute(codec
);
17664 #define alc663_mode3_setup alc663_mode1_setup
17666 static void alc663_mode3_inithook(struct hda_codec
*codec
)
17668 alc663_two_hp_m1_speaker_automute(codec
);
17669 alc_mic_automute(codec
);
17671 /* ***************** Mode4 ******************************/
17672 static void alc663_mode4_unsol_event(struct hda_codec
*codec
,
17675 switch (res
>> 26) {
17676 case ALC880_HP_EVENT
:
17677 alc663_21jd_two_speaker_automute(codec
);
17679 case ALC880_MIC_EVENT
:
17680 alc_mic_automute(codec
);
17685 #define alc663_mode4_setup alc663_mode1_setup
17687 static void alc663_mode4_inithook(struct hda_codec
*codec
)
17689 alc663_21jd_two_speaker_automute(codec
);
17690 alc_mic_automute(codec
);
17692 /* ***************** Mode5 ******************************/
17693 static void alc663_mode5_unsol_event(struct hda_codec
*codec
,
17696 switch (res
>> 26) {
17697 case ALC880_HP_EVENT
:
17698 alc663_15jd_two_speaker_automute(codec
);
17700 case ALC880_MIC_EVENT
:
17701 alc_mic_automute(codec
);
17706 #define alc663_mode5_setup alc663_mode1_setup
17708 static void alc663_mode5_inithook(struct hda_codec
*codec
)
17710 alc663_15jd_two_speaker_automute(codec
);
17711 alc_mic_automute(codec
);
17713 /* ***************** Mode6 ******************************/
17714 static void alc663_mode6_unsol_event(struct hda_codec
*codec
,
17717 switch (res
>> 26) {
17718 case ALC880_HP_EVENT
:
17719 alc663_two_hp_m2_speaker_automute(codec
);
17721 case ALC880_MIC_EVENT
:
17722 alc_mic_automute(codec
);
17727 #define alc663_mode6_setup alc663_mode1_setup
17729 static void alc663_mode6_inithook(struct hda_codec
*codec
)
17731 alc663_two_hp_m2_speaker_automute(codec
);
17732 alc_mic_automute(codec
);
17735 /* ***************** Mode7 ******************************/
17736 static void alc663_mode7_unsol_event(struct hda_codec
*codec
,
17739 switch (res
>> 26) {
17740 case ALC880_HP_EVENT
:
17741 alc663_two_hp_m7_speaker_automute(codec
);
17743 case ALC880_MIC_EVENT
:
17744 alc_mic_automute(codec
);
17749 #define alc663_mode7_setup alc663_mode1_setup
17751 static void alc663_mode7_inithook(struct hda_codec
*codec
)
17753 alc663_two_hp_m7_speaker_automute(codec
);
17754 alc_mic_automute(codec
);
17757 /* ***************** Mode8 ******************************/
17758 static void alc663_mode8_unsol_event(struct hda_codec
*codec
,
17761 switch (res
>> 26) {
17762 case ALC880_HP_EVENT
:
17763 alc663_two_hp_m8_speaker_automute(codec
);
17765 case ALC880_MIC_EVENT
:
17766 alc_mic_automute(codec
);
17771 #define alc663_mode8_setup alc663_m51va_setup
17773 static void alc663_mode8_inithook(struct hda_codec
*codec
)
17775 alc663_two_hp_m8_speaker_automute(codec
);
17776 alc_mic_automute(codec
);
17779 static void alc663_g71v_hp_automute(struct hda_codec
*codec
)
17781 unsigned int present
;
17782 unsigned char bits
;
17784 present
= snd_hda_jack_detect(codec
, 0x21);
17785 bits
= present
? HDA_AMP_MUTE
: 0;
17786 snd_hda_codec_amp_stereo(codec
, 0x15, HDA_OUTPUT
, 0,
17787 HDA_AMP_MUTE
, bits
);
17788 snd_hda_codec_amp_stereo(codec
, 0x14, HDA_OUTPUT
, 0,
17789 HDA_AMP_MUTE
, bits
);
17792 static void alc663_g71v_front_automute(struct hda_codec
*codec
)
17794 unsigned int present
;
17795 unsigned char bits
;
17797 present
= snd_hda_jack_detect(codec
, 0x15);
17798 bits
= present
? HDA_AMP_MUTE
: 0;
17799 snd_hda_codec_amp_stereo(codec
, 0x14, HDA_OUTPUT
, 0,
17800 HDA_AMP_MUTE
, bits
);
17803 static void alc663_g71v_unsol_event(struct hda_codec
*codec
,
17806 switch (res
>> 26) {
17807 case ALC880_HP_EVENT
:
17808 alc663_g71v_hp_automute(codec
);
17810 case ALC880_FRONT_EVENT
:
17811 alc663_g71v_front_automute(codec
);
17813 case ALC880_MIC_EVENT
:
17814 alc_mic_automute(codec
);
17819 #define alc663_g71v_setup alc663_m51va_setup
17821 static void alc663_g71v_inithook(struct hda_codec
*codec
)
17823 alc663_g71v_front_automute(codec
);
17824 alc663_g71v_hp_automute(codec
);
17825 alc_mic_automute(codec
);
17828 static void alc663_g50v_unsol_event(struct hda_codec
*codec
,
17831 switch (res
>> 26) {
17832 case ALC880_HP_EVENT
:
17833 alc663_m51va_speaker_automute(codec
);
17835 case ALC880_MIC_EVENT
:
17836 alc_mic_automute(codec
);
17841 #define alc663_g50v_setup alc663_m51va_setup
17843 static void alc663_g50v_inithook(struct hda_codec
*codec
)
17845 alc663_m51va_speaker_automute(codec
);
17846 alc_mic_automute(codec
);
17849 static struct snd_kcontrol_new alc662_ecs_mixer
[] = {
17850 HDA_CODEC_VOLUME("Master Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
17851 ALC262_HIPPO_MASTER_SWITCH
,
17853 HDA_CODEC_VOLUME("e-Mic/LineIn Boost", 0x18, 0, HDA_INPUT
),
17854 HDA_CODEC_VOLUME("e-Mic/LineIn Playback Volume", 0x0b, 0x0, HDA_INPUT
),
17855 HDA_CODEC_MUTE("e-Mic/LineIn Playback Switch", 0x0b, 0x0, HDA_INPUT
),
17857 HDA_CODEC_VOLUME("i-Mic Boost", 0x19, 0, HDA_INPUT
),
17858 HDA_CODEC_VOLUME("i-Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
17859 HDA_CODEC_MUTE("i-Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
17863 static struct snd_kcontrol_new alc272_nc10_mixer
[] = {
17864 /* Master Playback automatically created from Speaker and Headphone */
17865 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
17866 HDA_CODEC_MUTE("Speaker Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
17867 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x03, 0x0, HDA_OUTPUT
),
17868 HDA_CODEC_MUTE("Headphone Playback Switch", 0x21, 0x0, HDA_OUTPUT
),
17870 HDA_CODEC_VOLUME("Ext Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
17871 HDA_CODEC_MUTE("Ext Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
17872 HDA_CODEC_VOLUME("Ext Mic Boost", 0x18, 0, HDA_INPUT
),
17874 HDA_CODEC_VOLUME("Int Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
17875 HDA_CODEC_MUTE("Int Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
17876 HDA_CODEC_VOLUME("Int Mic Boost", 0x19, 0, HDA_INPUT
),
17880 #ifdef CONFIG_SND_HDA_POWER_SAVE
17881 #define alc662_loopbacks alc880_loopbacks
17885 /* pcm configuration: identical with ALC880 */
17886 #define alc662_pcm_analog_playback alc880_pcm_analog_playback
17887 #define alc662_pcm_analog_capture alc880_pcm_analog_capture
17888 #define alc662_pcm_digital_playback alc880_pcm_digital_playback
17889 #define alc662_pcm_digital_capture alc880_pcm_digital_capture
17892 * configuration and preset
17894 static const char *alc662_models
[ALC662_MODEL_LAST
] = {
17895 [ALC662_3ST_2ch_DIG
] = "3stack-dig",
17896 [ALC662_3ST_6ch_DIG
] = "3stack-6ch-dig",
17897 [ALC662_3ST_6ch
] = "3stack-6ch",
17898 [ALC662_5ST_DIG
] = "6stack-dig",
17899 [ALC662_LENOVO_101E
] = "lenovo-101e",
17900 [ALC662_ASUS_EEEPC_P701
] = "eeepc-p701",
17901 [ALC662_ASUS_EEEPC_EP20
] = "eeepc-ep20",
17902 [ALC662_ECS
] = "ecs",
17903 [ALC663_ASUS_M51VA
] = "m51va",
17904 [ALC663_ASUS_G71V
] = "g71v",
17905 [ALC663_ASUS_H13
] = "h13",
17906 [ALC663_ASUS_G50V
] = "g50v",
17907 [ALC663_ASUS_MODE1
] = "asus-mode1",
17908 [ALC662_ASUS_MODE2
] = "asus-mode2",
17909 [ALC663_ASUS_MODE3
] = "asus-mode3",
17910 [ALC663_ASUS_MODE4
] = "asus-mode4",
17911 [ALC663_ASUS_MODE5
] = "asus-mode5",
17912 [ALC663_ASUS_MODE6
] = "asus-mode6",
17913 [ALC663_ASUS_MODE7
] = "asus-mode7",
17914 [ALC663_ASUS_MODE8
] = "asus-mode8",
17915 [ALC272_DELL
] = "dell",
17916 [ALC272_DELL_ZM1
] = "dell-zm1",
17917 [ALC272_SAMSUNG_NC10
] = "samsung-nc10",
17918 [ALC662_AUTO
] = "auto",
17921 static struct snd_pci_quirk alc662_cfg_tbl
[] = {
17922 SND_PCI_QUIRK(0x1019, 0x9087, "ECS", ALC662_ECS
),
17923 SND_PCI_QUIRK(0x1028, 0x02d6, "DELL", ALC272_DELL
),
17924 SND_PCI_QUIRK(0x1028, 0x02f4, "DELL ZM1", ALC272_DELL_ZM1
),
17925 SND_PCI_QUIRK(0x1043, 0x1000, "ASUS N50Vm", ALC663_ASUS_MODE1
),
17926 SND_PCI_QUIRK(0x1043, 0x1092, "ASUS NB", ALC663_ASUS_MODE3
),
17927 SND_PCI_QUIRK(0x1043, 0x1173, "ASUS K73Jn", ALC663_ASUS_MODE1
),
17928 SND_PCI_QUIRK(0x1043, 0x11c3, "ASUS M70V", ALC663_ASUS_MODE3
),
17929 SND_PCI_QUIRK(0x1043, 0x11d3, "ASUS NB", ALC663_ASUS_MODE1
),
17930 SND_PCI_QUIRK(0x1043, 0x11f3, "ASUS NB", ALC662_ASUS_MODE2
),
17931 SND_PCI_QUIRK(0x1043, 0x1203, "ASUS NB", ALC663_ASUS_MODE1
),
17932 SND_PCI_QUIRK(0x1043, 0x1303, "ASUS G60J", ALC663_ASUS_MODE1
),
17933 SND_PCI_QUIRK(0x1043, 0x1333, "ASUS G60Jx", ALC663_ASUS_MODE1
),
17934 SND_PCI_QUIRK(0x1043, 0x1339, "ASUS NB", ALC662_ASUS_MODE2
),
17935 SND_PCI_QUIRK(0x1043, 0x13e3, "ASUS N71JA", ALC663_ASUS_MODE7
),
17936 SND_PCI_QUIRK(0x1043, 0x1463, "ASUS N71", ALC663_ASUS_MODE7
),
17937 SND_PCI_QUIRK(0x1043, 0x14d3, "ASUS G72", ALC663_ASUS_MODE8
),
17938 SND_PCI_QUIRK(0x1043, 0x1563, "ASUS N90", ALC663_ASUS_MODE3
),
17939 SND_PCI_QUIRK(0x1043, 0x15d3, "ASUS N50SF F50SF", ALC663_ASUS_MODE1
),
17940 SND_PCI_QUIRK(0x1043, 0x16c3, "ASUS NB", ALC662_ASUS_MODE2
),
17941 SND_PCI_QUIRK(0x1043, 0x16f3, "ASUS K40C K50C", ALC662_ASUS_MODE2
),
17942 SND_PCI_QUIRK(0x1043, 0x1733, "ASUS N81De", ALC663_ASUS_MODE1
),
17943 SND_PCI_QUIRK(0x1043, 0x1753, "ASUS NB", ALC662_ASUS_MODE2
),
17944 SND_PCI_QUIRK(0x1043, 0x1763, "ASUS NB", ALC663_ASUS_MODE6
),
17945 SND_PCI_QUIRK(0x1043, 0x1765, "ASUS NB", ALC663_ASUS_MODE6
),
17946 SND_PCI_QUIRK(0x1043, 0x1783, "ASUS NB", ALC662_ASUS_MODE2
),
17947 SND_PCI_QUIRK(0x1043, 0x1793, "ASUS F50GX", ALC663_ASUS_MODE1
),
17948 SND_PCI_QUIRK(0x1043, 0x17b3, "ASUS F70SL", ALC663_ASUS_MODE3
),
17949 SND_PCI_QUIRK(0x1043, 0x17c3, "ASUS UX20", ALC663_ASUS_M51VA
),
17950 SND_PCI_QUIRK(0x1043, 0x17f3, "ASUS X58LE", ALC662_ASUS_MODE2
),
17951 SND_PCI_QUIRK(0x1043, 0x1813, "ASUS NB", ALC662_ASUS_MODE2
),
17952 SND_PCI_QUIRK(0x1043, 0x1823, "ASUS NB", ALC663_ASUS_MODE5
),
17953 SND_PCI_QUIRK(0x1043, 0x1833, "ASUS NB", ALC663_ASUS_MODE6
),
17954 SND_PCI_QUIRK(0x1043, 0x1843, "ASUS NB", ALC662_ASUS_MODE2
),
17955 SND_PCI_QUIRK(0x1043, 0x1853, "ASUS F50Z", ALC663_ASUS_MODE1
),
17956 SND_PCI_QUIRK(0x1043, 0x1864, "ASUS NB", ALC662_ASUS_MODE2
),
17957 SND_PCI_QUIRK(0x1043, 0x1876, "ASUS NB", ALC662_ASUS_MODE2
),
17958 SND_PCI_QUIRK(0x1043, 0x1878, "ASUS M51VA", ALC663_ASUS_M51VA
),
17959 /*SND_PCI_QUIRK(0x1043, 0x1878, "ASUS M50Vr", ALC663_ASUS_MODE1),*/
17960 SND_PCI_QUIRK(0x1043, 0x1893, "ASUS M50Vm", ALC663_ASUS_MODE3
),
17961 SND_PCI_QUIRK(0x1043, 0x1894, "ASUS X55", ALC663_ASUS_MODE3
),
17962 SND_PCI_QUIRK(0x1043, 0x18b3, "ASUS N80Vc", ALC663_ASUS_MODE1
),
17963 SND_PCI_QUIRK(0x1043, 0x18c3, "ASUS VX5", ALC663_ASUS_MODE1
),
17964 SND_PCI_QUIRK(0x1043, 0x18d3, "ASUS N81Te", ALC663_ASUS_MODE1
),
17965 SND_PCI_QUIRK(0x1043, 0x18f3, "ASUS N505Tp", ALC663_ASUS_MODE1
),
17966 SND_PCI_QUIRK(0x1043, 0x1903, "ASUS F5GL", ALC663_ASUS_MODE1
),
17967 SND_PCI_QUIRK(0x1043, 0x1913, "ASUS NB", ALC662_ASUS_MODE2
),
17968 SND_PCI_QUIRK(0x1043, 0x1933, "ASUS F80Q", ALC662_ASUS_MODE2
),
17969 SND_PCI_QUIRK(0x1043, 0x1943, "ASUS Vx3V", ALC663_ASUS_MODE1
),
17970 SND_PCI_QUIRK(0x1043, 0x1953, "ASUS NB", ALC663_ASUS_MODE1
),
17971 SND_PCI_QUIRK(0x1043, 0x1963, "ASUS X71C", ALC663_ASUS_MODE3
),
17972 SND_PCI_QUIRK(0x1043, 0x1983, "ASUS N5051A", ALC663_ASUS_MODE1
),
17973 SND_PCI_QUIRK(0x1043, 0x1993, "ASUS N20", ALC663_ASUS_MODE1
),
17974 SND_PCI_QUIRK(0x1043, 0x19a3, "ASUS G50V", ALC663_ASUS_G50V
),
17975 /*SND_PCI_QUIRK(0x1043, 0x19a3, "ASUS NB", ALC663_ASUS_MODE1),*/
17976 SND_PCI_QUIRK(0x1043, 0x19b3, "ASUS F7Z", ALC663_ASUS_MODE1
),
17977 SND_PCI_QUIRK(0x1043, 0x19c3, "ASUS F5Z/F6x", ALC662_ASUS_MODE2
),
17978 SND_PCI_QUIRK(0x1043, 0x19d3, "ASUS NB", ALC663_ASUS_M51VA
),
17979 SND_PCI_QUIRK(0x1043, 0x19e3, "ASUS NB", ALC663_ASUS_MODE1
),
17980 SND_PCI_QUIRK(0x1043, 0x19f3, "ASUS NB", ALC663_ASUS_MODE4
),
17981 SND_PCI_QUIRK(0x1043, 0x8290, "ASUS P5GC-MX", ALC662_3ST_6ch_DIG
),
17982 SND_PCI_QUIRK(0x1043, 0x82a1, "ASUS Eeepc", ALC662_ASUS_EEEPC_P701
),
17983 SND_PCI_QUIRK(0x1043, 0x82d1, "ASUS Eeepc EP20", ALC662_ASUS_EEEPC_EP20
),
17984 SND_PCI_QUIRK(0x105b, 0x0cd6, "Foxconn", ALC662_ECS
),
17985 SND_PCI_QUIRK(0x105b, 0x0d47, "Foxconn 45CMX/45GMX/45CMX-K",
17986 ALC662_3ST_6ch_DIG
),
17987 SND_PCI_QUIRK(0x1179, 0xff6e, "Toshiba NB20x", ALC662_AUTO
),
17988 SND_PCI_QUIRK(0x144d, 0xca00, "Samsung NC10", ALC272_SAMSUNG_NC10
),
17989 SND_PCI_QUIRK(0x1458, 0xa002, "Gigabyte 945GCM-S2L",
17990 ALC662_3ST_6ch_DIG
),
17991 SND_PCI_QUIRK(0x152d, 0x2304, "Quanta WH1", ALC663_ASUS_H13
),
17992 SND_PCI_QUIRK(0x1565, 0x820f, "Biostar TA780G M2+", ALC662_3ST_6ch_DIG
),
17993 SND_PCI_QUIRK(0x1631, 0xc10c, "PB RS65", ALC663_ASUS_M51VA
),
17994 SND_PCI_QUIRK(0x17aa, 0x101e, "Lenovo", ALC662_LENOVO_101E
),
17995 SND_PCI_QUIRK(0x1849, 0x3662, "ASROCK K10N78FullHD-hSLI R3.0",
17996 ALC662_3ST_6ch_DIG
),
17997 SND_PCI_QUIRK_MASK(0x1854, 0xf000, 0x2000, "ASUS H13-200x",
18002 static struct alc_config_preset alc662_presets
[] = {
18003 [ALC662_3ST_2ch_DIG
] = {
18004 .mixers
= { alc662_3ST_2ch_mixer
},
18005 .init_verbs
= { alc662_init_verbs
},
18006 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
18007 .dac_nids
= alc662_dac_nids
,
18008 .dig_out_nid
= ALC662_DIGOUT_NID
,
18009 .dig_in_nid
= ALC662_DIGIN_NID
,
18010 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
18011 .channel_mode
= alc662_3ST_2ch_modes
,
18012 .input_mux
= &alc662_capture_source
,
18014 [ALC662_3ST_6ch_DIG
] = {
18015 .mixers
= { alc662_3ST_6ch_mixer
, alc662_chmode_mixer
},
18016 .init_verbs
= { alc662_init_verbs
},
18017 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
18018 .dac_nids
= alc662_dac_nids
,
18019 .dig_out_nid
= ALC662_DIGOUT_NID
,
18020 .dig_in_nid
= ALC662_DIGIN_NID
,
18021 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_6ch_modes
),
18022 .channel_mode
= alc662_3ST_6ch_modes
,
18024 .input_mux
= &alc662_capture_source
,
18026 [ALC662_3ST_6ch
] = {
18027 .mixers
= { alc662_3ST_6ch_mixer
, alc662_chmode_mixer
},
18028 .init_verbs
= { alc662_init_verbs
},
18029 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
18030 .dac_nids
= alc662_dac_nids
,
18031 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_6ch_modes
),
18032 .channel_mode
= alc662_3ST_6ch_modes
,
18034 .input_mux
= &alc662_capture_source
,
18036 [ALC662_5ST_DIG
] = {
18037 .mixers
= { alc662_base_mixer
, alc662_chmode_mixer
},
18038 .init_verbs
= { alc662_init_verbs
},
18039 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
18040 .dac_nids
= alc662_dac_nids
,
18041 .dig_out_nid
= ALC662_DIGOUT_NID
,
18042 .dig_in_nid
= ALC662_DIGIN_NID
,
18043 .num_channel_mode
= ARRAY_SIZE(alc662_5stack_modes
),
18044 .channel_mode
= alc662_5stack_modes
,
18045 .input_mux
= &alc662_capture_source
,
18047 [ALC662_LENOVO_101E
] = {
18048 .mixers
= { alc662_lenovo_101e_mixer
},
18049 .init_verbs
= { alc662_init_verbs
, alc662_sue_init_verbs
},
18050 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
18051 .dac_nids
= alc662_dac_nids
,
18052 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
18053 .channel_mode
= alc662_3ST_2ch_modes
,
18054 .input_mux
= &alc662_lenovo_101e_capture_source
,
18055 .unsol_event
= alc662_lenovo_101e_unsol_event
,
18056 .init_hook
= alc662_lenovo_101e_all_automute
,
18058 [ALC662_ASUS_EEEPC_P701
] = {
18059 .mixers
= { alc662_eeepc_p701_mixer
},
18060 .init_verbs
= { alc662_init_verbs
,
18061 alc662_eeepc_sue_init_verbs
},
18062 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
18063 .dac_nids
= alc662_dac_nids
,
18064 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
18065 .channel_mode
= alc662_3ST_2ch_modes
,
18066 .unsol_event
= alc662_eeepc_unsol_event
,
18067 .setup
= alc662_eeepc_setup
,
18068 .init_hook
= alc662_eeepc_inithook
,
18070 [ALC662_ASUS_EEEPC_EP20
] = {
18071 .mixers
= { alc662_eeepc_ep20_mixer
,
18072 alc662_chmode_mixer
},
18073 .init_verbs
= { alc662_init_verbs
,
18074 alc662_eeepc_ep20_sue_init_verbs
},
18075 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
18076 .dac_nids
= alc662_dac_nids
,
18077 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_6ch_modes
),
18078 .channel_mode
= alc662_3ST_6ch_modes
,
18079 .input_mux
= &alc662_lenovo_101e_capture_source
,
18080 .unsol_event
= alc662_eeepc_unsol_event
,
18081 .setup
= alc662_eeepc_ep20_setup
,
18082 .init_hook
= alc662_eeepc_ep20_inithook
,
18085 .mixers
= { alc662_ecs_mixer
},
18086 .init_verbs
= { alc662_init_verbs
,
18087 alc662_ecs_init_verbs
},
18088 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
18089 .dac_nids
= alc662_dac_nids
,
18090 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
18091 .channel_mode
= alc662_3ST_2ch_modes
,
18092 .unsol_event
= alc662_eeepc_unsol_event
,
18093 .setup
= alc662_eeepc_setup
,
18094 .init_hook
= alc662_eeepc_inithook
,
18096 [ALC663_ASUS_M51VA
] = {
18097 .mixers
= { alc663_m51va_mixer
},
18098 .init_verbs
= { alc662_init_verbs
, alc663_m51va_init_verbs
},
18099 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
18100 .dac_nids
= alc662_dac_nids
,
18101 .dig_out_nid
= ALC662_DIGOUT_NID
,
18102 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
18103 .channel_mode
= alc662_3ST_2ch_modes
,
18104 .unsol_event
= alc663_m51va_unsol_event
,
18105 .setup
= alc663_m51va_setup
,
18106 .init_hook
= alc663_m51va_inithook
,
18108 [ALC663_ASUS_G71V
] = {
18109 .mixers
= { alc663_g71v_mixer
},
18110 .init_verbs
= { alc662_init_verbs
, alc663_g71v_init_verbs
},
18111 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
18112 .dac_nids
= alc662_dac_nids
,
18113 .dig_out_nid
= ALC662_DIGOUT_NID
,
18114 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
18115 .channel_mode
= alc662_3ST_2ch_modes
,
18116 .unsol_event
= alc663_g71v_unsol_event
,
18117 .setup
= alc663_g71v_setup
,
18118 .init_hook
= alc663_g71v_inithook
,
18120 [ALC663_ASUS_H13
] = {
18121 .mixers
= { alc663_m51va_mixer
},
18122 .init_verbs
= { alc662_init_verbs
, alc663_m51va_init_verbs
},
18123 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
18124 .dac_nids
= alc662_dac_nids
,
18125 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
18126 .channel_mode
= alc662_3ST_2ch_modes
,
18127 .unsol_event
= alc663_m51va_unsol_event
,
18128 .init_hook
= alc663_m51va_inithook
,
18130 [ALC663_ASUS_G50V
] = {
18131 .mixers
= { alc663_g50v_mixer
},
18132 .init_verbs
= { alc662_init_verbs
, alc663_g50v_init_verbs
},
18133 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
18134 .dac_nids
= alc662_dac_nids
,
18135 .dig_out_nid
= ALC662_DIGOUT_NID
,
18136 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_6ch_modes
),
18137 .channel_mode
= alc662_3ST_6ch_modes
,
18138 .input_mux
= &alc663_capture_source
,
18139 .unsol_event
= alc663_g50v_unsol_event
,
18140 .setup
= alc663_g50v_setup
,
18141 .init_hook
= alc663_g50v_inithook
,
18143 [ALC663_ASUS_MODE1
] = {
18144 .mixers
= { alc663_m51va_mixer
},
18145 .cap_mixer
= alc662_auto_capture_mixer
,
18146 .init_verbs
= { alc662_init_verbs
,
18147 alc663_21jd_amic_init_verbs
},
18148 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
18150 .dac_nids
= alc662_dac_nids
,
18151 .dig_out_nid
= ALC662_DIGOUT_NID
,
18152 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
18153 .channel_mode
= alc662_3ST_2ch_modes
,
18154 .unsol_event
= alc663_mode1_unsol_event
,
18155 .setup
= alc663_mode1_setup
,
18156 .init_hook
= alc663_mode1_inithook
,
18158 [ALC662_ASUS_MODE2
] = {
18159 .mixers
= { alc662_1bjd_mixer
},
18160 .cap_mixer
= alc662_auto_capture_mixer
,
18161 .init_verbs
= { alc662_init_verbs
,
18162 alc662_1bjd_amic_init_verbs
},
18163 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
18164 .dac_nids
= alc662_dac_nids
,
18165 .dig_out_nid
= ALC662_DIGOUT_NID
,
18166 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
18167 .channel_mode
= alc662_3ST_2ch_modes
,
18168 .unsol_event
= alc662_mode2_unsol_event
,
18169 .setup
= alc662_mode2_setup
,
18170 .init_hook
= alc662_mode2_inithook
,
18172 [ALC663_ASUS_MODE3
] = {
18173 .mixers
= { alc663_two_hp_m1_mixer
},
18174 .cap_mixer
= alc662_auto_capture_mixer
,
18175 .init_verbs
= { alc662_init_verbs
,
18176 alc663_two_hp_amic_m1_init_verbs
},
18177 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
18179 .dac_nids
= alc662_dac_nids
,
18180 .dig_out_nid
= ALC662_DIGOUT_NID
,
18181 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
18182 .channel_mode
= alc662_3ST_2ch_modes
,
18183 .unsol_event
= alc663_mode3_unsol_event
,
18184 .setup
= alc663_mode3_setup
,
18185 .init_hook
= alc663_mode3_inithook
,
18187 [ALC663_ASUS_MODE4
] = {
18188 .mixers
= { alc663_asus_21jd_clfe_mixer
},
18189 .cap_mixer
= alc662_auto_capture_mixer
,
18190 .init_verbs
= { alc662_init_verbs
,
18191 alc663_21jd_amic_init_verbs
},
18192 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
18194 .dac_nids
= alc662_dac_nids
,
18195 .dig_out_nid
= ALC662_DIGOUT_NID
,
18196 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
18197 .channel_mode
= alc662_3ST_2ch_modes
,
18198 .unsol_event
= alc663_mode4_unsol_event
,
18199 .setup
= alc663_mode4_setup
,
18200 .init_hook
= alc663_mode4_inithook
,
18202 [ALC663_ASUS_MODE5
] = {
18203 .mixers
= { alc663_asus_15jd_clfe_mixer
},
18204 .cap_mixer
= alc662_auto_capture_mixer
,
18205 .init_verbs
= { alc662_init_verbs
,
18206 alc663_15jd_amic_init_verbs
},
18207 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
18209 .dac_nids
= alc662_dac_nids
,
18210 .dig_out_nid
= ALC662_DIGOUT_NID
,
18211 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
18212 .channel_mode
= alc662_3ST_2ch_modes
,
18213 .unsol_event
= alc663_mode5_unsol_event
,
18214 .setup
= alc663_mode5_setup
,
18215 .init_hook
= alc663_mode5_inithook
,
18217 [ALC663_ASUS_MODE6
] = {
18218 .mixers
= { alc663_two_hp_m2_mixer
},
18219 .cap_mixer
= alc662_auto_capture_mixer
,
18220 .init_verbs
= { alc662_init_verbs
,
18221 alc663_two_hp_amic_m2_init_verbs
},
18222 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
18224 .dac_nids
= alc662_dac_nids
,
18225 .dig_out_nid
= ALC662_DIGOUT_NID
,
18226 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
18227 .channel_mode
= alc662_3ST_2ch_modes
,
18228 .unsol_event
= alc663_mode6_unsol_event
,
18229 .setup
= alc663_mode6_setup
,
18230 .init_hook
= alc663_mode6_inithook
,
18232 [ALC663_ASUS_MODE7
] = {
18233 .mixers
= { alc663_mode7_mixer
},
18234 .cap_mixer
= alc662_auto_capture_mixer
,
18235 .init_verbs
= { alc662_init_verbs
,
18236 alc663_mode7_init_verbs
},
18237 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
18239 .dac_nids
= alc662_dac_nids
,
18240 .dig_out_nid
= ALC662_DIGOUT_NID
,
18241 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
18242 .channel_mode
= alc662_3ST_2ch_modes
,
18243 .unsol_event
= alc663_mode7_unsol_event
,
18244 .setup
= alc663_mode7_setup
,
18245 .init_hook
= alc663_mode7_inithook
,
18247 [ALC663_ASUS_MODE8
] = {
18248 .mixers
= { alc663_mode8_mixer
},
18249 .cap_mixer
= alc662_auto_capture_mixer
,
18250 .init_verbs
= { alc662_init_verbs
,
18251 alc663_mode8_init_verbs
},
18252 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
18254 .dac_nids
= alc662_dac_nids
,
18255 .dig_out_nid
= ALC662_DIGOUT_NID
,
18256 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
18257 .channel_mode
= alc662_3ST_2ch_modes
,
18258 .unsol_event
= alc663_mode8_unsol_event
,
18259 .setup
= alc663_mode8_setup
,
18260 .init_hook
= alc663_mode8_inithook
,
18263 .mixers
= { alc663_m51va_mixer
},
18264 .cap_mixer
= alc272_auto_capture_mixer
,
18265 .init_verbs
= { alc662_init_verbs
, alc272_dell_init_verbs
},
18266 .num_dacs
= ARRAY_SIZE(alc272_dac_nids
),
18267 .dac_nids
= alc662_dac_nids
,
18268 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
18269 .adc_nids
= alc272_adc_nids
,
18270 .num_adc_nids
= ARRAY_SIZE(alc272_adc_nids
),
18271 .capsrc_nids
= alc272_capsrc_nids
,
18272 .channel_mode
= alc662_3ST_2ch_modes
,
18273 .unsol_event
= alc663_m51va_unsol_event
,
18274 .setup
= alc663_m51va_setup
,
18275 .init_hook
= alc663_m51va_inithook
,
18277 [ALC272_DELL_ZM1
] = {
18278 .mixers
= { alc663_m51va_mixer
},
18279 .cap_mixer
= alc662_auto_capture_mixer
,
18280 .init_verbs
= { alc662_init_verbs
, alc272_dell_zm1_init_verbs
},
18281 .num_dacs
= ARRAY_SIZE(alc272_dac_nids
),
18282 .dac_nids
= alc662_dac_nids
,
18283 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
18284 .adc_nids
= alc662_adc_nids
,
18286 .capsrc_nids
= alc662_capsrc_nids
,
18287 .channel_mode
= alc662_3ST_2ch_modes
,
18288 .unsol_event
= alc663_m51va_unsol_event
,
18289 .setup
= alc663_m51va_setup
,
18290 .init_hook
= alc663_m51va_inithook
,
18292 [ALC272_SAMSUNG_NC10
] = {
18293 .mixers
= { alc272_nc10_mixer
},
18294 .init_verbs
= { alc662_init_verbs
,
18295 alc663_21jd_amic_init_verbs
},
18296 .num_dacs
= ARRAY_SIZE(alc272_dac_nids
),
18297 .dac_nids
= alc272_dac_nids
,
18298 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
18299 .channel_mode
= alc662_3ST_2ch_modes
,
18300 /*.input_mux = &alc272_nc10_capture_source,*/
18301 .unsol_event
= alc663_mode4_unsol_event
,
18302 .setup
= alc663_mode4_setup
,
18303 .init_hook
= alc663_mode4_inithook
,
18309 * BIOS auto configuration
18312 /* convert from MIX nid to DAC */
18313 static inline hda_nid_t
alc662_mix_to_dac(hda_nid_t nid
)
18317 else if (nid
>= 0x0c && nid
<= 0x0e)
18318 return nid
- 0x0c + 0x02;
18323 /* get MIX nid connected to the given pin targeted to DAC */
18324 static hda_nid_t
alc662_dac_to_mix(struct hda_codec
*codec
, hda_nid_t pin
,
18330 num
= snd_hda_get_connections(codec
, pin
, mix
, ARRAY_SIZE(mix
));
18331 for (i
= 0; i
< num
; i
++) {
18332 if (alc662_mix_to_dac(mix
[i
]) == dac
)
18338 /* look for an empty DAC slot */
18339 static hda_nid_t
alc662_look_for_dac(struct hda_codec
*codec
, hda_nid_t pin
)
18341 struct alc_spec
*spec
= codec
->spec
;
18345 num
= snd_hda_get_connections(codec
, pin
, srcs
, ARRAY_SIZE(srcs
));
18348 for (i
= 0; i
< num
; i
++) {
18349 hda_nid_t nid
= alc662_mix_to_dac(srcs
[i
]);
18352 for (j
= 0; j
< spec
->multiout
.num_dacs
; j
++)
18353 if (spec
->multiout
.dac_nids
[j
] == nid
)
18355 if (j
>= spec
->multiout
.num_dacs
)
18361 /* fill in the dac_nids table from the parsed pin configuration */
18362 static int alc662_auto_fill_dac_nids(struct hda_codec
*codec
,
18363 const struct auto_pin_cfg
*cfg
)
18365 struct alc_spec
*spec
= codec
->spec
;
18369 spec
->multiout
.dac_nids
= spec
->private_dac_nids
;
18370 for (i
= 0; i
< cfg
->line_outs
; i
++) {
18371 dac
= alc662_look_for_dac(codec
, cfg
->line_out_pins
[i
]);
18374 spec
->multiout
.dac_nids
[spec
->multiout
.num_dacs
++] = dac
;
18379 static inline int alc662_add_vol_ctl(struct alc_spec
*spec
, const char *pfx
,
18380 hda_nid_t nid
, unsigned int chs
)
18382 return add_pb_vol_ctrl(spec
, ALC_CTL_WIDGET_VOL
, pfx
,
18383 HDA_COMPOSE_AMP_VAL(nid
, chs
, 0, HDA_OUTPUT
));
18386 static inline int alc662_add_sw_ctl(struct alc_spec
*spec
, const char *pfx
,
18387 hda_nid_t nid
, unsigned int chs
)
18389 return add_pb_sw_ctrl(spec
, ALC_CTL_WIDGET_MUTE
, pfx
,
18390 HDA_COMPOSE_AMP_VAL(nid
, chs
, 0, HDA_INPUT
));
18393 #define alc662_add_stereo_vol(spec, pfx, nid) \
18394 alc662_add_vol_ctl(spec, pfx, nid, 3)
18395 #define alc662_add_stereo_sw(spec, pfx, nid) \
18396 alc662_add_sw_ctl(spec, pfx, nid, 3)
18398 /* add playback controls from the parsed DAC table */
18399 static int alc662_auto_create_multi_out_ctls(struct hda_codec
*codec
,
18400 const struct auto_pin_cfg
*cfg
)
18402 struct alc_spec
*spec
= codec
->spec
;
18403 static const char *chname
[4] = {
18404 "Front", "Surround", NULL
/*CLFE*/, "Side"
18406 hda_nid_t nid
, mix
;
18409 for (i
= 0; i
< cfg
->line_outs
; i
++) {
18410 nid
= spec
->multiout
.dac_nids
[i
];
18413 mix
= alc662_dac_to_mix(codec
, cfg
->line_out_pins
[i
], nid
);
18418 err
= alc662_add_vol_ctl(spec
, "Center", nid
, 1);
18421 err
= alc662_add_vol_ctl(spec
, "LFE", nid
, 2);
18424 err
= alc662_add_sw_ctl(spec
, "Center", mix
, 1);
18427 err
= alc662_add_sw_ctl(spec
, "LFE", mix
, 2);
18432 if (cfg
->line_outs
== 1 &&
18433 cfg
->line_out_type
== AUTO_PIN_SPEAKER_OUT
) {
18440 err
= alc662_add_vol_ctl(spec
, pfx
, nid
, 3);
18443 if (cfg
->line_outs
== 1 &&
18444 cfg
->line_out_type
== AUTO_PIN_SPEAKER_OUT
)
18446 err
= alc662_add_sw_ctl(spec
, pfx
, mix
, 3);
18454 /* add playback controls for speaker and HP outputs */
18455 /* return DAC nid if any new DAC is assigned */
18456 static int alc662_auto_create_extra_out(struct hda_codec
*codec
, hda_nid_t pin
,
18459 struct alc_spec
*spec
= codec
->spec
;
18460 hda_nid_t nid
, mix
;
18465 nid
= alc662_look_for_dac(codec
, pin
);
18467 /* the corresponding DAC is already occupied */
18468 if (!(get_wcaps(codec
, pin
) & AC_WCAP_OUT_AMP
))
18469 return 0; /* no way */
18470 /* create a switch only */
18471 return add_pb_sw_ctrl(spec
, ALC_CTL_WIDGET_MUTE
, pfx
,
18472 HDA_COMPOSE_AMP_VAL(pin
, 3, 0, HDA_OUTPUT
));
18475 mix
= alc662_dac_to_mix(codec
, pin
, nid
);
18478 err
= alc662_add_vol_ctl(spec
, pfx
, nid
, 3);
18481 err
= alc662_add_sw_ctl(spec
, pfx
, mix
, 3);
18487 /* create playback/capture controls for input pins */
18488 #define alc662_auto_create_input_ctls \
18489 alc882_auto_create_input_ctls
18491 static void alc662_auto_set_output_and_unmute(struct hda_codec
*codec
,
18492 hda_nid_t nid
, int pin_type
,
18498 alc_set_pin_output(codec
, nid
, pin_type
);
18499 /* need the manual connection? */
18500 num
= snd_hda_get_connections(codec
, nid
, srcs
, ARRAY_SIZE(srcs
));
18503 for (i
= 0; i
< num
; i
++) {
18504 if (alc662_mix_to_dac(srcs
[i
]) != dac
)
18506 snd_hda_codec_write(codec
, nid
, 0, AC_VERB_SET_CONNECT_SEL
, i
);
18511 static void alc662_auto_init_multi_out(struct hda_codec
*codec
)
18513 struct alc_spec
*spec
= codec
->spec
;
18514 int pin_type
= get_pin_type(spec
->autocfg
.line_out_type
);
18517 for (i
= 0; i
<= HDA_SIDE
; i
++) {
18518 hda_nid_t nid
= spec
->autocfg
.line_out_pins
[i
];
18520 alc662_auto_set_output_and_unmute(codec
, nid
, pin_type
,
18521 spec
->multiout
.dac_nids
[i
]);
18525 static void alc662_auto_init_hp_out(struct hda_codec
*codec
)
18527 struct alc_spec
*spec
= codec
->spec
;
18530 pin
= spec
->autocfg
.hp_pins
[0];
18532 alc662_auto_set_output_and_unmute(codec
, pin
, PIN_HP
,
18533 spec
->multiout
.hp_nid
);
18534 pin
= spec
->autocfg
.speaker_pins
[0];
18536 alc662_auto_set_output_and_unmute(codec
, pin
, PIN_OUT
,
18537 spec
->multiout
.extra_out_nid
[0]);
18540 #define ALC662_PIN_CD_NID ALC880_PIN_CD_NID
18542 static void alc662_auto_init_analog_input(struct hda_codec
*codec
)
18544 struct alc_spec
*spec
= codec
->spec
;
18547 for (i
= 0; i
< AUTO_PIN_LAST
; i
++) {
18548 hda_nid_t nid
= spec
->autocfg
.input_pins
[i
];
18549 if (alc_is_input_pin(codec
, nid
)) {
18550 alc_set_input_pin(codec
, nid
, i
);
18551 if (nid
!= ALC662_PIN_CD_NID
&&
18552 (get_wcaps(codec
, nid
) & AC_WCAP_OUT_AMP
))
18553 snd_hda_codec_write(codec
, nid
, 0,
18554 AC_VERB_SET_AMP_GAIN_MUTE
,
18560 #define alc662_auto_init_input_src alc882_auto_init_input_src
18562 static int alc662_parse_auto_config(struct hda_codec
*codec
)
18564 struct alc_spec
*spec
= codec
->spec
;
18566 static hda_nid_t alc662_ignore
[] = { 0x1d, 0 };
18568 err
= snd_hda_parse_pin_def_config(codec
, &spec
->autocfg
,
18572 if (!spec
->autocfg
.line_outs
)
18573 return 0; /* can't find valid BIOS pin config */
18575 err
= alc662_auto_fill_dac_nids(codec
, &spec
->autocfg
);
18578 err
= alc662_auto_create_multi_out_ctls(codec
, &spec
->autocfg
);
18581 err
= alc662_auto_create_extra_out(codec
,
18582 spec
->autocfg
.speaker_pins
[0],
18587 spec
->multiout
.extra_out_nid
[0] = err
;
18588 err
= alc662_auto_create_extra_out(codec
, spec
->autocfg
.hp_pins
[0],
18593 spec
->multiout
.hp_nid
= err
;
18594 err
= alc662_auto_create_input_ctls(codec
, &spec
->autocfg
);
18598 spec
->multiout
.max_channels
= spec
->multiout
.num_dacs
* 2;
18600 if (spec
->autocfg
.dig_outs
)
18601 spec
->multiout
.dig_out_nid
= ALC880_DIGOUT_NID
;
18603 if (spec
->kctls
.list
)
18604 add_mixer(spec
, spec
->kctls
.list
);
18606 spec
->num_mux_defs
= 1;
18607 spec
->input_mux
= &spec
->private_imux
[0];
18609 add_verb(spec
, alc662_init_verbs
);
18610 if (codec
->vendor_id
== 0x10ec0272 || codec
->vendor_id
== 0x10ec0663 ||
18611 codec
->vendor_id
== 0x10ec0665)
18612 add_verb(spec
, alc663_init_verbs
);
18614 if (codec
->vendor_id
== 0x10ec0272)
18615 add_verb(spec
, alc272_init_verbs
);
18617 err
= alc_auto_add_mic_boost(codec
);
18621 if (codec
->vendor_id
== 0x10ec0272 || codec
->vendor_id
== 0x10ec0663 ||
18622 codec
->vendor_id
== 0x10ec0665 || codec
->vendor_id
== 0x10ec0670)
18623 alc_ssid_check(codec
, 0x15, 0x1b, 0x14, 0x21);
18625 alc_ssid_check(codec
, 0x15, 0x1b, 0x14, 0);
18630 /* additional initialization for auto-configuration model */
18631 static void alc662_auto_init(struct hda_codec
*codec
)
18633 struct alc_spec
*spec
= codec
->spec
;
18634 alc662_auto_init_multi_out(codec
);
18635 alc662_auto_init_hp_out(codec
);
18636 alc662_auto_init_analog_input(codec
);
18637 alc662_auto_init_input_src(codec
);
18638 if (spec
->unsol_event
)
18639 alc_inithook(codec
);
18642 static int patch_alc662(struct hda_codec
*codec
)
18644 struct alc_spec
*spec
;
18645 int err
, board_config
;
18647 spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
18651 codec
->spec
= spec
;
18653 alc_auto_parse_customize_define(codec
);
18655 alc_fix_pll_init(codec
, 0x20, 0x04, 15);
18657 if (alc_read_coef_idx(codec
, 0) == 0x8020)
18658 alc_codec_rename(codec
, "ALC661");
18659 else if ((alc_read_coef_idx(codec
, 0) & (1 << 14)) &&
18660 codec
->bus
->pci
->subsystem_vendor
== 0x1025 &&
18661 spec
->cdefine
.platform_type
== 1)
18662 alc_codec_rename(codec
, "ALC272X");
18664 board_config
= snd_hda_check_board_config(codec
, ALC662_MODEL_LAST
,
18667 if (board_config
< 0) {
18668 printk(KERN_INFO
"hda_codec: %s: BIOS auto-probing.\n",
18670 board_config
= ALC662_AUTO
;
18673 if (board_config
== ALC662_AUTO
) {
18674 /* automatic parse from the BIOS config */
18675 err
= alc662_parse_auto_config(codec
);
18681 "hda_codec: Cannot set up configuration "
18682 "from BIOS. Using base mode...\n");
18683 board_config
= ALC662_3ST_2ch_DIG
;
18687 err
= snd_hda_attach_beep_device(codec
, 0x1);
18693 if (board_config
!= ALC662_AUTO
)
18694 setup_preset(codec
, &alc662_presets
[board_config
]);
18696 spec
->stream_analog_playback
= &alc662_pcm_analog_playback
;
18697 spec
->stream_analog_capture
= &alc662_pcm_analog_capture
;
18699 spec
->stream_digital_playback
= &alc662_pcm_digital_playback
;
18700 spec
->stream_digital_capture
= &alc662_pcm_digital_capture
;
18702 if (!spec
->adc_nids
) {
18703 spec
->adc_nids
= alc662_adc_nids
;
18704 spec
->num_adc_nids
= ARRAY_SIZE(alc662_adc_nids
);
18706 if (!spec
->capsrc_nids
)
18707 spec
->capsrc_nids
= alc662_capsrc_nids
;
18709 if (!spec
->cap_mixer
)
18710 set_capture_mixer(codec
);
18712 if (spec
->cdefine
.enable_pcbeep
) {
18713 switch (codec
->vendor_id
) {
18715 set_beep_amp(spec
, 0x0b, 0x05, HDA_INPUT
);
18720 set_beep_amp(spec
, 0x0b, 0x04, HDA_INPUT
);
18723 set_beep_amp(spec
, 0x0b, 0x03, HDA_INPUT
);
18727 spec
->vmaster_nid
= 0x02;
18729 codec
->patch_ops
= alc_patch_ops
;
18730 if (board_config
== ALC662_AUTO
)
18731 spec
->init_hook
= alc662_auto_init
;
18732 #ifdef CONFIG_SND_HDA_POWER_SAVE
18733 if (!spec
->loopback
.amplist
)
18734 spec
->loopback
.amplist
= alc662_loopbacks
;
18740 static int patch_alc888(struct hda_codec
*codec
)
18742 if ((alc_read_coef_idx(codec
, 0) & 0x00f0)==0x0030){
18743 kfree(codec
->chip_name
);
18744 codec
->chip_name
= kstrdup("ALC888-VD", GFP_KERNEL
);
18745 if (!codec
->chip_name
) {
18749 return patch_alc662(codec
);
18751 return patch_alc882(codec
);
18757 static struct hda_codec_preset snd_hda_preset_realtek
[] = {
18758 { .id
= 0x10ec0260, .name
= "ALC260", .patch
= patch_alc260
},
18759 { .id
= 0x10ec0262, .name
= "ALC262", .patch
= patch_alc262
},
18760 { .id
= 0x10ec0267, .name
= "ALC267", .patch
= patch_alc268
},
18761 { .id
= 0x10ec0268, .name
= "ALC268", .patch
= patch_alc268
},
18762 { .id
= 0x10ec0269, .name
= "ALC269", .patch
= patch_alc269
},
18763 { .id
= 0x10ec0270, .name
= "ALC270", .patch
= patch_alc269
},
18764 { .id
= 0x10ec0272, .name
= "ALC272", .patch
= patch_alc662
},
18765 { .id
= 0x10ec0275, .name
= "ALC275", .patch
= patch_alc269
},
18766 { .id
= 0x10ec0861, .rev
= 0x100340, .name
= "ALC660",
18767 .patch
= patch_alc861
},
18768 { .id
= 0x10ec0660, .name
= "ALC660-VD", .patch
= patch_alc861vd
},
18769 { .id
= 0x10ec0861, .name
= "ALC861", .patch
= patch_alc861
},
18770 { .id
= 0x10ec0862, .name
= "ALC861-VD", .patch
= patch_alc861vd
},
18771 { .id
= 0x10ec0662, .rev
= 0x100002, .name
= "ALC662 rev2",
18772 .patch
= patch_alc882
},
18773 { .id
= 0x10ec0662, .rev
= 0x100101, .name
= "ALC662 rev1",
18774 .patch
= patch_alc662
},
18775 { .id
= 0x10ec0663, .name
= "ALC663", .patch
= patch_alc662
},
18776 { .id
= 0x10ec0665, .name
= "ALC665", .patch
= patch_alc662
},
18777 { .id
= 0x10ec0670, .name
= "ALC670", .patch
= patch_alc662
},
18778 { .id
= 0x10ec0880, .name
= "ALC880", .patch
= patch_alc880
},
18779 { .id
= 0x10ec0882, .name
= "ALC882", .patch
= patch_alc882
},
18780 { .id
= 0x10ec0883, .name
= "ALC883", .patch
= patch_alc882
},
18781 { .id
= 0x10ec0885, .rev
= 0x100101, .name
= "ALC889A",
18782 .patch
= patch_alc882
},
18783 { .id
= 0x10ec0885, .rev
= 0x100103, .name
= "ALC889A",
18784 .patch
= patch_alc882
},
18785 { .id
= 0x10ec0885, .name
= "ALC885", .patch
= patch_alc882
},
18786 { .id
= 0x10ec0887, .name
= "ALC887", .patch
= patch_alc882
},
18787 { .id
= 0x10ec0888, .rev
= 0x100101, .name
= "ALC1200",
18788 .patch
= patch_alc882
},
18789 { .id
= 0x10ec0888, .name
= "ALC888", .patch
= patch_alc888
},
18790 { .id
= 0x10ec0889, .name
= "ALC889", .patch
= patch_alc882
},
18791 { .id
= 0x10ec0892, .name
= "ALC892", .patch
= patch_alc662
},
18792 {} /* terminator */
18795 MODULE_ALIAS("snd-hda-codec-id:10ec*");
18797 MODULE_LICENSE("GPL");
18798 MODULE_DESCRIPTION("Realtek HD-audio codec");
18800 static struct hda_codec_preset_list realtek_list
= {
18801 .preset
= snd_hda_preset_realtek
,
18802 .owner
= THIS_MODULE
,
18805 static int __init
patch_realtek_init(void)
18807 return snd_hda_add_codec_preset(&realtek_list
);
18810 static void __exit
patch_realtek_exit(void)
18812 snd_hda_delete_codec_preset(&realtek_list
);
18815 module_init(patch_realtek_init
)
18816 module_exit(patch_realtek_exit
)