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, 0x3600, "Macbook 3,1", ALC889A_MB31
),
9480 SND_PCI_QUIRK(0x106b, 0x3800, "MacbookPro 4,1", ALC885_MBP3
),
9481 SND_PCI_QUIRK(0x106b, 0x3e00, "iMac 24 Aluminum", ALC885_IMAC24
),
9482 SND_PCI_QUIRK(0x106b, 0x4900, "iMac 9,1 Aluminum", ALC885_IMAC91
),
9483 SND_PCI_QUIRK(0x106b, 0x3f00, "Macbook 5,1", ALC885_MB5
),
9484 /* FIXME: HP jack sense seems not working for MBP 5,1 or 5,2,
9485 * so apparently no perfect solution yet
9487 SND_PCI_QUIRK(0x106b, 0x4000, "MacbookPro 5,1", ALC885_MB5
),
9488 SND_PCI_QUIRK(0x106b, 0x4600, "MacbookPro 5,2", ALC885_MB5
),
9489 SND_PCI_QUIRK(0x106b, 0x4100, "Macmini 3,1", ALC885_MACMINI3
),
9493 static struct alc_config_preset alc882_presets
[] = {
9494 [ALC882_3ST_DIG
] = {
9495 .mixers
= { alc882_base_mixer
},
9496 .init_verbs
= { alc882_base_init_verbs
,
9497 alc882_adc1_init_verbs
},
9498 .num_dacs
= ARRAY_SIZE(alc882_dac_nids
),
9499 .dac_nids
= alc882_dac_nids
,
9500 .dig_out_nid
= ALC882_DIGOUT_NID
,
9501 .dig_in_nid
= ALC882_DIGIN_NID
,
9502 .num_channel_mode
= ARRAY_SIZE(alc882_ch_modes
),
9503 .channel_mode
= alc882_ch_modes
,
9505 .input_mux
= &alc882_capture_source
,
9507 [ALC882_6ST_DIG
] = {
9508 .mixers
= { alc882_base_mixer
, alc882_chmode_mixer
},
9509 .init_verbs
= { alc882_base_init_verbs
,
9510 alc882_adc1_init_verbs
},
9511 .num_dacs
= ARRAY_SIZE(alc882_dac_nids
),
9512 .dac_nids
= alc882_dac_nids
,
9513 .dig_out_nid
= ALC882_DIGOUT_NID
,
9514 .dig_in_nid
= ALC882_DIGIN_NID
,
9515 .num_channel_mode
= ARRAY_SIZE(alc882_sixstack_modes
),
9516 .channel_mode
= alc882_sixstack_modes
,
9517 .input_mux
= &alc882_capture_source
,
9520 .mixers
= { alc882_base_mixer
, alc882_chmode_mixer
},
9521 .init_verbs
= { alc882_base_init_verbs
, alc882_adc1_init_verbs
,
9522 alc882_eapd_verbs
},
9523 .num_dacs
= ARRAY_SIZE(alc882_dac_nids
),
9524 .dac_nids
= alc882_dac_nids
,
9525 .num_channel_mode
= ARRAY_SIZE(alc882_sixstack_modes
),
9526 .channel_mode
= alc882_sixstack_modes
,
9527 .input_mux
= &alc882_capture_source
,
9530 .mixers
= { alc882_w2jc_mixer
, alc882_chmode_mixer
},
9531 .init_verbs
= { alc882_base_init_verbs
, alc882_adc1_init_verbs
,
9532 alc882_eapd_verbs
, alc880_gpio1_init_verbs
},
9533 .num_dacs
= ARRAY_SIZE(alc882_dac_nids
),
9534 .dac_nids
= alc882_dac_nids
,
9535 .num_channel_mode
= ARRAY_SIZE(alc880_threestack_modes
),
9536 .channel_mode
= alc880_threestack_modes
,
9538 .input_mux
= &alc882_capture_source
,
9539 .dig_out_nid
= ALC882_DIGOUT_NID
,
9542 .mixers
= { alc885_mba21_mixer
},
9543 .init_verbs
= { alc885_mba21_init_verbs
, alc880_gpio1_init_verbs
},
9545 .dac_nids
= alc882_dac_nids
,
9546 .channel_mode
= alc885_mba21_ch_modes
,
9547 .num_channel_mode
= ARRAY_SIZE(alc885_mba21_ch_modes
),
9548 .input_mux
= &alc882_capture_source
,
9549 .unsol_event
= alc_automute_amp_unsol_event
,
9550 .setup
= alc885_mba21_setup
,
9551 .init_hook
= alc_automute_amp
,
9554 .mixers
= { alc885_mbp3_mixer
, alc882_chmode_mixer
},
9555 .init_verbs
= { alc885_mbp3_init_verbs
,
9556 alc880_gpio1_init_verbs
},
9558 .dac_nids
= alc882_dac_nids
,
9560 .channel_mode
= alc885_mbp_4ch_modes
,
9561 .num_channel_mode
= ARRAY_SIZE(alc885_mbp_4ch_modes
),
9562 .input_mux
= &alc882_capture_source
,
9563 .dig_out_nid
= ALC882_DIGOUT_NID
,
9564 .dig_in_nid
= ALC882_DIGIN_NID
,
9565 .unsol_event
= alc_automute_amp_unsol_event
,
9566 .setup
= alc885_mbp3_setup
,
9567 .init_hook
= alc_automute_amp
,
9570 .mixers
= { alc885_mb5_mixer
, alc882_chmode_mixer
},
9571 .init_verbs
= { alc885_mb5_init_verbs
,
9572 alc880_gpio1_init_verbs
},
9573 .num_dacs
= ARRAY_SIZE(alc882_dac_nids
),
9574 .dac_nids
= alc882_dac_nids
,
9575 .channel_mode
= alc885_mb5_6ch_modes
,
9576 .num_channel_mode
= ARRAY_SIZE(alc885_mb5_6ch_modes
),
9577 .input_mux
= &mb5_capture_source
,
9578 .dig_out_nid
= ALC882_DIGOUT_NID
,
9579 .dig_in_nid
= ALC882_DIGIN_NID
,
9580 .unsol_event
= alc_automute_amp_unsol_event
,
9581 .setup
= alc885_mb5_setup
,
9582 .init_hook
= alc_automute_amp
,
9584 [ALC885_MACMINI3
] = {
9585 .mixers
= { alc885_macmini3_mixer
, alc882_chmode_mixer
},
9586 .init_verbs
= { alc885_macmini3_init_verbs
,
9587 alc880_gpio1_init_verbs
},
9588 .num_dacs
= ARRAY_SIZE(alc882_dac_nids
),
9589 .dac_nids
= alc882_dac_nids
,
9590 .channel_mode
= alc885_macmini3_6ch_modes
,
9591 .num_channel_mode
= ARRAY_SIZE(alc885_macmini3_6ch_modes
),
9592 .input_mux
= &macmini3_capture_source
,
9593 .dig_out_nid
= ALC882_DIGOUT_NID
,
9594 .dig_in_nid
= ALC882_DIGIN_NID
,
9595 .unsol_event
= alc_automute_amp_unsol_event
,
9596 .setup
= alc885_macmini3_setup
,
9597 .init_hook
= alc_automute_amp
,
9600 .mixers
= { alc882_macpro_mixer
},
9601 .init_verbs
= { alc882_macpro_init_verbs
},
9602 .num_dacs
= ARRAY_SIZE(alc882_dac_nids
),
9603 .dac_nids
= alc882_dac_nids
,
9604 .dig_out_nid
= ALC882_DIGOUT_NID
,
9605 .dig_in_nid
= ALC882_DIGIN_NID
,
9606 .num_channel_mode
= ARRAY_SIZE(alc882_ch_modes
),
9607 .channel_mode
= alc882_ch_modes
,
9608 .input_mux
= &alc882_capture_source
,
9609 .init_hook
= alc885_macpro_init_hook
,
9612 .mixers
= { alc885_imac24_mixer
},
9613 .init_verbs
= { alc885_imac24_init_verbs
},
9614 .num_dacs
= ARRAY_SIZE(alc882_dac_nids
),
9615 .dac_nids
= alc882_dac_nids
,
9616 .dig_out_nid
= ALC882_DIGOUT_NID
,
9617 .dig_in_nid
= ALC882_DIGIN_NID
,
9618 .num_channel_mode
= ARRAY_SIZE(alc882_ch_modes
),
9619 .channel_mode
= alc882_ch_modes
,
9620 .input_mux
= &alc882_capture_source
,
9621 .unsol_event
= alc_automute_amp_unsol_event
,
9622 .setup
= alc885_imac24_setup
,
9623 .init_hook
= alc885_imac24_init_hook
,
9626 .mixers
= {alc885_imac91_mixer
},
9627 .init_verbs
= { alc885_imac91_init_verbs
,
9628 alc880_gpio1_init_verbs
},
9629 .num_dacs
= ARRAY_SIZE(alc882_dac_nids
),
9630 .dac_nids
= alc882_dac_nids
,
9631 .channel_mode
= alc885_mba21_ch_modes
,
9632 .num_channel_mode
= ARRAY_SIZE(alc885_mba21_ch_modes
),
9633 .input_mux
= &alc889A_imac91_capture_source
,
9634 .dig_out_nid
= ALC882_DIGOUT_NID
,
9635 .dig_in_nid
= ALC882_DIGIN_NID
,
9636 .unsol_event
= alc_automute_amp_unsol_event
,
9637 .setup
= alc885_imac91_setup
,
9638 .init_hook
= alc_automute_amp
,
9641 .mixers
= { alc882_targa_mixer
, alc882_chmode_mixer
},
9642 .init_verbs
= { alc882_base_init_verbs
, alc882_adc1_init_verbs
,
9643 alc880_gpio3_init_verbs
, alc882_targa_verbs
},
9644 .num_dacs
= ARRAY_SIZE(alc882_dac_nids
),
9645 .dac_nids
= alc882_dac_nids
,
9646 .dig_out_nid
= ALC882_DIGOUT_NID
,
9647 .num_adc_nids
= ARRAY_SIZE(alc882_adc_nids
),
9648 .adc_nids
= alc882_adc_nids
,
9649 .capsrc_nids
= alc882_capsrc_nids
,
9650 .num_channel_mode
= ARRAY_SIZE(alc882_3ST_6ch_modes
),
9651 .channel_mode
= alc882_3ST_6ch_modes
,
9653 .input_mux
= &alc882_capture_source
,
9654 .unsol_event
= alc882_targa_unsol_event
,
9655 .setup
= alc882_targa_setup
,
9656 .init_hook
= alc882_targa_automute
,
9658 [ALC882_ASUS_A7J
] = {
9659 .mixers
= { alc882_asus_a7j_mixer
, alc882_chmode_mixer
},
9660 .init_verbs
= { alc882_base_init_verbs
, alc882_adc1_init_verbs
,
9661 alc882_asus_a7j_verbs
},
9662 .num_dacs
= ARRAY_SIZE(alc882_dac_nids
),
9663 .dac_nids
= alc882_dac_nids
,
9664 .dig_out_nid
= ALC882_DIGOUT_NID
,
9665 .num_adc_nids
= ARRAY_SIZE(alc882_adc_nids
),
9666 .adc_nids
= alc882_adc_nids
,
9667 .capsrc_nids
= alc882_capsrc_nids
,
9668 .num_channel_mode
= ARRAY_SIZE(alc882_3ST_6ch_modes
),
9669 .channel_mode
= alc882_3ST_6ch_modes
,
9671 .input_mux
= &alc882_capture_source
,
9673 [ALC882_ASUS_A7M
] = {
9674 .mixers
= { alc882_asus_a7m_mixer
, alc882_chmode_mixer
},
9675 .init_verbs
= { alc882_base_init_verbs
, alc882_adc1_init_verbs
,
9676 alc882_eapd_verbs
, alc880_gpio1_init_verbs
,
9677 alc882_asus_a7m_verbs
},
9678 .num_dacs
= ARRAY_SIZE(alc882_dac_nids
),
9679 .dac_nids
= alc882_dac_nids
,
9680 .dig_out_nid
= ALC882_DIGOUT_NID
,
9681 .num_channel_mode
= ARRAY_SIZE(alc880_threestack_modes
),
9682 .channel_mode
= alc880_threestack_modes
,
9684 .input_mux
= &alc882_capture_source
,
9686 [ALC883_3ST_2ch_DIG
] = {
9687 .mixers
= { alc883_3ST_2ch_mixer
},
9688 .init_verbs
= { alc883_init_verbs
},
9689 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
9690 .dac_nids
= alc883_dac_nids
,
9691 .dig_out_nid
= ALC883_DIGOUT_NID
,
9692 .dig_in_nid
= ALC883_DIGIN_NID
,
9693 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_2ch_modes
),
9694 .channel_mode
= alc883_3ST_2ch_modes
,
9695 .input_mux
= &alc883_capture_source
,
9697 [ALC883_3ST_6ch_DIG
] = {
9698 .mixers
= { alc883_3ST_6ch_mixer
, alc883_chmode_mixer
},
9699 .init_verbs
= { alc883_init_verbs
},
9700 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
9701 .dac_nids
= alc883_dac_nids
,
9702 .dig_out_nid
= ALC883_DIGOUT_NID
,
9703 .dig_in_nid
= ALC883_DIGIN_NID
,
9704 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_6ch_modes
),
9705 .channel_mode
= alc883_3ST_6ch_modes
,
9707 .input_mux
= &alc883_capture_source
,
9709 [ALC883_3ST_6ch
] = {
9710 .mixers
= { alc883_3ST_6ch_mixer
, alc883_chmode_mixer
},
9711 .init_verbs
= { alc883_init_verbs
},
9712 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
9713 .dac_nids
= alc883_dac_nids
,
9714 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_6ch_modes
),
9715 .channel_mode
= alc883_3ST_6ch_modes
,
9717 .input_mux
= &alc883_capture_source
,
9719 [ALC883_3ST_6ch_INTEL
] = {
9720 .mixers
= { alc883_3ST_6ch_intel_mixer
, alc883_chmode_mixer
},
9721 .init_verbs
= { alc883_init_verbs
},
9722 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
9723 .dac_nids
= alc883_dac_nids
,
9724 .dig_out_nid
= ALC883_DIGOUT_NID
,
9725 .dig_in_nid
= ALC883_DIGIN_NID
,
9726 .slave_dig_outs
= alc883_slave_dig_outs
,
9727 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_6ch_intel_modes
),
9728 .channel_mode
= alc883_3ST_6ch_intel_modes
,
9730 .input_mux
= &alc883_3stack_6ch_intel
,
9733 .mixers
= { alc885_8ch_intel_mixer
, alc883_chmode_mixer
},
9734 .init_verbs
= { alc885_init_verbs
, alc885_init_input_verbs
,
9735 alc_hp15_unsol_verbs
},
9736 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
9737 .dac_nids
= alc883_dac_nids
,
9738 .num_adc_nids
= ARRAY_SIZE(alc889_adc_nids
),
9739 .adc_nids
= alc889_adc_nids
,
9740 .dig_out_nid
= ALC883_DIGOUT_NID
,
9741 .dig_in_nid
= ALC883_DIGIN_NID
,
9742 .slave_dig_outs
= alc883_slave_dig_outs
,
9743 .num_channel_mode
= ARRAY_SIZE(alc889_8ch_intel_modes
),
9744 .channel_mode
= alc889_8ch_intel_modes
,
9745 .capsrc_nids
= alc889_capsrc_nids
,
9746 .input_mux
= &alc889_capture_source
,
9747 .setup
= alc889_automute_setup
,
9748 .init_hook
= alc_automute_amp
,
9749 .unsol_event
= alc_automute_amp_unsol_event
,
9753 .mixers
= { alc885_8ch_intel_mixer
, alc883_chmode_mixer
},
9754 .init_verbs
= { alc885_init_verbs
, alc889_init_input_verbs
,
9755 alc889_eapd_verbs
, alc_hp15_unsol_verbs
},
9756 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
9757 .dac_nids
= alc883_dac_nids
,
9758 .num_adc_nids
= ARRAY_SIZE(alc889_adc_nids
),
9759 .adc_nids
= alc889_adc_nids
,
9760 .dig_out_nid
= ALC883_DIGOUT_NID
,
9761 .dig_in_nid
= ALC883_DIGIN_NID
,
9762 .slave_dig_outs
= alc883_slave_dig_outs
,
9763 .num_channel_mode
= ARRAY_SIZE(alc889_8ch_intel_modes
),
9764 .channel_mode
= alc889_8ch_intel_modes
,
9765 .capsrc_nids
= alc889_capsrc_nids
,
9766 .input_mux
= &alc889_capture_source
,
9767 .setup
= alc889_automute_setup
,
9768 .init_hook
= alc889_intel_init_hook
,
9769 .unsol_event
= alc_automute_amp_unsol_event
,
9772 [ALC883_6ST_DIG
] = {
9773 .mixers
= { alc883_base_mixer
, alc883_chmode_mixer
},
9774 .init_verbs
= { alc883_init_verbs
},
9775 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
9776 .dac_nids
= alc883_dac_nids
,
9777 .dig_out_nid
= ALC883_DIGOUT_NID
,
9778 .dig_in_nid
= ALC883_DIGIN_NID
,
9779 .num_channel_mode
= ARRAY_SIZE(alc883_sixstack_modes
),
9780 .channel_mode
= alc883_sixstack_modes
,
9781 .input_mux
= &alc883_capture_source
,
9783 [ALC883_TARGA_DIG
] = {
9784 .mixers
= { alc883_targa_mixer
, alc883_chmode_mixer
},
9785 .init_verbs
= { alc883_init_verbs
, alc880_gpio3_init_verbs
,
9786 alc883_targa_verbs
},
9787 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
9788 .dac_nids
= alc883_dac_nids
,
9789 .dig_out_nid
= ALC883_DIGOUT_NID
,
9790 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_6ch_modes
),
9791 .channel_mode
= alc883_3ST_6ch_modes
,
9793 .input_mux
= &alc883_capture_source
,
9794 .unsol_event
= alc883_targa_unsol_event
,
9795 .setup
= alc882_targa_setup
,
9796 .init_hook
= alc882_targa_automute
,
9798 [ALC883_TARGA_2ch_DIG
] = {
9799 .mixers
= { alc883_targa_2ch_mixer
},
9800 .init_verbs
= { alc883_init_verbs
, alc880_gpio3_init_verbs
,
9801 alc883_targa_verbs
},
9802 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
9803 .dac_nids
= alc883_dac_nids
,
9804 .adc_nids
= alc883_adc_nids_alt
,
9805 .num_adc_nids
= ARRAY_SIZE(alc883_adc_nids_alt
),
9806 .capsrc_nids
= alc883_capsrc_nids
,
9807 .dig_out_nid
= ALC883_DIGOUT_NID
,
9808 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_2ch_modes
),
9809 .channel_mode
= alc883_3ST_2ch_modes
,
9810 .input_mux
= &alc883_capture_source
,
9811 .unsol_event
= alc883_targa_unsol_event
,
9812 .setup
= alc882_targa_setup
,
9813 .init_hook
= alc882_targa_automute
,
9815 [ALC883_TARGA_8ch_DIG
] = {
9816 .mixers
= { alc883_targa_mixer
, alc883_targa_8ch_mixer
,
9817 alc883_chmode_mixer
},
9818 .init_verbs
= { alc883_init_verbs
, alc880_gpio3_init_verbs
,
9819 alc883_targa_verbs
},
9820 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
9821 .dac_nids
= alc883_dac_nids
,
9822 .num_adc_nids
= ARRAY_SIZE(alc883_adc_nids_rev
),
9823 .adc_nids
= alc883_adc_nids_rev
,
9824 .capsrc_nids
= alc883_capsrc_nids_rev
,
9825 .dig_out_nid
= ALC883_DIGOUT_NID
,
9826 .dig_in_nid
= ALC883_DIGIN_NID
,
9827 .num_channel_mode
= ARRAY_SIZE(alc883_4ST_8ch_modes
),
9828 .channel_mode
= alc883_4ST_8ch_modes
,
9830 .input_mux
= &alc883_capture_source
,
9831 .unsol_event
= alc883_targa_unsol_event
,
9832 .setup
= alc882_targa_setup
,
9833 .init_hook
= alc882_targa_automute
,
9836 .mixers
= { alc883_base_mixer
},
9837 /* On TravelMate laptops, GPIO 0 enables the internal speaker
9838 * and the headphone jack. Turn this on and rely on the
9839 * standard mute methods whenever the user wants to turn
9840 * these outputs off.
9842 .init_verbs
= { alc883_init_verbs
, alc880_gpio1_init_verbs
},
9843 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
9844 .dac_nids
= alc883_dac_nids
,
9845 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_2ch_modes
),
9846 .channel_mode
= alc883_3ST_2ch_modes
,
9847 .input_mux
= &alc883_capture_source
,
9849 [ALC883_ACER_ASPIRE
] = {
9850 .mixers
= { alc883_acer_aspire_mixer
},
9851 .init_verbs
= { alc883_init_verbs
, alc883_acer_eapd_verbs
},
9852 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
9853 .dac_nids
= alc883_dac_nids
,
9854 .dig_out_nid
= ALC883_DIGOUT_NID
,
9855 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_2ch_modes
),
9856 .channel_mode
= alc883_3ST_2ch_modes
,
9857 .input_mux
= &alc883_capture_source
,
9858 .unsol_event
= alc_automute_amp_unsol_event
,
9859 .setup
= alc883_acer_aspire_setup
,
9860 .init_hook
= alc_automute_amp
,
9862 [ALC888_ACER_ASPIRE_4930G
] = {
9863 .mixers
= { alc888_base_mixer
,
9864 alc883_chmode_mixer
},
9865 .init_verbs
= { alc883_init_verbs
, alc880_gpio1_init_verbs
,
9866 alc888_acer_aspire_4930g_verbs
},
9867 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
9868 .dac_nids
= alc883_dac_nids
,
9869 .num_adc_nids
= ARRAY_SIZE(alc883_adc_nids_rev
),
9870 .adc_nids
= alc883_adc_nids_rev
,
9871 .capsrc_nids
= alc883_capsrc_nids_rev
,
9872 .dig_out_nid
= ALC883_DIGOUT_NID
,
9873 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_6ch_modes
),
9874 .channel_mode
= alc883_3ST_6ch_modes
,
9876 .const_channel_count
= 6,
9878 ARRAY_SIZE(alc888_2_capture_sources
),
9879 .input_mux
= alc888_2_capture_sources
,
9880 .unsol_event
= alc_automute_amp_unsol_event
,
9881 .setup
= alc888_acer_aspire_4930g_setup
,
9882 .init_hook
= alc_automute_amp
,
9884 [ALC888_ACER_ASPIRE_6530G
] = {
9885 .mixers
= { alc888_acer_aspire_6530_mixer
},
9886 .init_verbs
= { alc883_init_verbs
, alc880_gpio1_init_verbs
,
9887 alc888_acer_aspire_6530g_verbs
},
9888 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
9889 .dac_nids
= alc883_dac_nids
,
9890 .num_adc_nids
= ARRAY_SIZE(alc883_adc_nids_rev
),
9891 .adc_nids
= alc883_adc_nids_rev
,
9892 .capsrc_nids
= alc883_capsrc_nids_rev
,
9893 .dig_out_nid
= ALC883_DIGOUT_NID
,
9894 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_2ch_modes
),
9895 .channel_mode
= alc883_3ST_2ch_modes
,
9897 ARRAY_SIZE(alc888_2_capture_sources
),
9898 .input_mux
= alc888_acer_aspire_6530_sources
,
9899 .unsol_event
= alc_automute_amp_unsol_event
,
9900 .setup
= alc888_acer_aspire_6530g_setup
,
9901 .init_hook
= alc_automute_amp
,
9903 [ALC888_ACER_ASPIRE_8930G
] = {
9904 .mixers
= { alc889_acer_aspire_8930g_mixer
,
9905 alc883_chmode_mixer
},
9906 .init_verbs
= { alc883_init_verbs
, alc880_gpio1_init_verbs
,
9907 alc889_acer_aspire_8930g_verbs
,
9909 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
9910 .dac_nids
= alc883_dac_nids
,
9911 .num_adc_nids
= ARRAY_SIZE(alc889_adc_nids
),
9912 .adc_nids
= alc889_adc_nids
,
9913 .capsrc_nids
= alc889_capsrc_nids
,
9914 .dig_out_nid
= ALC883_DIGOUT_NID
,
9915 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_6ch_modes
),
9916 .channel_mode
= alc883_3ST_6ch_modes
,
9918 .const_channel_count
= 6,
9920 ARRAY_SIZE(alc889_capture_sources
),
9921 .input_mux
= alc889_capture_sources
,
9922 .unsol_event
= alc_automute_amp_unsol_event
,
9923 .setup
= alc889_acer_aspire_8930g_setup
,
9924 .init_hook
= alc_automute_amp
,
9925 #ifdef CONFIG_SND_HDA_POWER_SAVE
9926 .power_hook
= alc_power_eapd
,
9929 [ALC888_ACER_ASPIRE_7730G
] = {
9930 .mixers
= { alc883_3ST_6ch_mixer
,
9931 alc883_chmode_mixer
},
9932 .init_verbs
= { alc883_init_verbs
, alc880_gpio1_init_verbs
,
9933 alc888_acer_aspire_7730G_verbs
},
9934 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
9935 .dac_nids
= alc883_dac_nids
,
9936 .num_adc_nids
= ARRAY_SIZE(alc883_adc_nids_rev
),
9937 .adc_nids
= alc883_adc_nids_rev
,
9938 .capsrc_nids
= alc883_capsrc_nids_rev
,
9939 .dig_out_nid
= ALC883_DIGOUT_NID
,
9940 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_6ch_modes
),
9941 .channel_mode
= alc883_3ST_6ch_modes
,
9943 .const_channel_count
= 6,
9944 .input_mux
= &alc883_capture_source
,
9945 .unsol_event
= alc_automute_amp_unsol_event
,
9946 .setup
= alc888_acer_aspire_6530g_setup
,
9947 .init_hook
= alc_automute_amp
,
9950 .mixers
= { alc883_fivestack_mixer
,
9951 alc883_chmode_mixer
},
9952 .init_verbs
= { alc883_init_verbs
,
9953 alc883_medion_eapd_verbs
},
9954 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
9955 .dac_nids
= alc883_dac_nids
,
9956 .adc_nids
= alc883_adc_nids_alt
,
9957 .num_adc_nids
= ARRAY_SIZE(alc883_adc_nids_alt
),
9958 .capsrc_nids
= alc883_capsrc_nids
,
9959 .num_channel_mode
= ARRAY_SIZE(alc883_sixstack_modes
),
9960 .channel_mode
= alc883_sixstack_modes
,
9961 .input_mux
= &alc883_capture_source
,
9963 [ALC883_MEDION_MD2
] = {
9964 .mixers
= { alc883_medion_md2_mixer
},
9965 .init_verbs
= { alc883_init_verbs
, alc883_medion_md2_verbs
},
9966 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
9967 .dac_nids
= alc883_dac_nids
,
9968 .dig_out_nid
= ALC883_DIGOUT_NID
,
9969 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_2ch_modes
),
9970 .channel_mode
= alc883_3ST_2ch_modes
,
9971 .input_mux
= &alc883_capture_source
,
9972 .unsol_event
= alc_automute_amp_unsol_event
,
9973 .setup
= alc883_medion_md2_setup
,
9974 .init_hook
= alc_automute_amp
,
9976 [ALC883_MEDION_WIM2160
] = {
9977 .mixers
= { alc883_medion_wim2160_mixer
},
9978 .init_verbs
= { alc883_init_verbs
, alc883_medion_wim2160_verbs
},
9979 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
9980 .dac_nids
= alc883_dac_nids
,
9981 .dig_out_nid
= ALC883_DIGOUT_NID
,
9982 .num_adc_nids
= ARRAY_SIZE(alc883_adc_nids
),
9983 .adc_nids
= alc883_adc_nids
,
9984 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_2ch_modes
),
9985 .channel_mode
= alc883_3ST_2ch_modes
,
9986 .input_mux
= &alc883_capture_source
,
9987 .unsol_event
= alc_automute_amp_unsol_event
,
9988 .setup
= alc883_medion_wim2160_setup
,
9989 .init_hook
= alc_automute_amp
,
9991 [ALC883_LAPTOP_EAPD
] = {
9992 .mixers
= { alc883_base_mixer
},
9993 .init_verbs
= { alc883_init_verbs
, alc882_eapd_verbs
},
9994 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
9995 .dac_nids
= alc883_dac_nids
,
9996 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_2ch_modes
),
9997 .channel_mode
= alc883_3ST_2ch_modes
,
9998 .input_mux
= &alc883_capture_source
,
10000 [ALC883_CLEVO_M540R
] = {
10001 .mixers
= { alc883_3ST_6ch_mixer
, alc883_chmode_mixer
},
10002 .init_verbs
= { alc883_init_verbs
, alc883_clevo_m540r_verbs
},
10003 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
10004 .dac_nids
= alc883_dac_nids
,
10005 .dig_out_nid
= ALC883_DIGOUT_NID
,
10006 .dig_in_nid
= ALC883_DIGIN_NID
,
10007 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_6ch_clevo_modes
),
10008 .channel_mode
= alc883_3ST_6ch_clevo_modes
,
10010 .input_mux
= &alc883_capture_source
,
10011 /* This machine has the hardware HP auto-muting, thus
10012 * we need no software mute via unsol event
10015 [ALC883_CLEVO_M720
] = {
10016 .mixers
= { alc883_clevo_m720_mixer
},
10017 .init_verbs
= { alc883_init_verbs
, alc883_clevo_m720_verbs
},
10018 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
10019 .dac_nids
= alc883_dac_nids
,
10020 .dig_out_nid
= ALC883_DIGOUT_NID
,
10021 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_2ch_modes
),
10022 .channel_mode
= alc883_3ST_2ch_modes
,
10023 .input_mux
= &alc883_capture_source
,
10024 .unsol_event
= alc883_clevo_m720_unsol_event
,
10025 .setup
= alc883_clevo_m720_setup
,
10026 .init_hook
= alc883_clevo_m720_init_hook
,
10028 [ALC883_LENOVO_101E_2ch
] = {
10029 .mixers
= { alc883_lenovo_101e_2ch_mixer
},
10030 .init_verbs
= { alc883_init_verbs
, alc883_lenovo_101e_verbs
},
10031 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
10032 .dac_nids
= alc883_dac_nids
,
10033 .adc_nids
= alc883_adc_nids_alt
,
10034 .num_adc_nids
= ARRAY_SIZE(alc883_adc_nids_alt
),
10035 .capsrc_nids
= alc883_capsrc_nids
,
10036 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_2ch_modes
),
10037 .channel_mode
= alc883_3ST_2ch_modes
,
10038 .input_mux
= &alc883_lenovo_101e_capture_source
,
10039 .unsol_event
= alc883_lenovo_101e_unsol_event
,
10040 .init_hook
= alc883_lenovo_101e_all_automute
,
10042 [ALC883_LENOVO_NB0763
] = {
10043 .mixers
= { alc883_lenovo_nb0763_mixer
},
10044 .init_verbs
= { alc883_init_verbs
, alc883_lenovo_nb0763_verbs
},
10045 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
10046 .dac_nids
= alc883_dac_nids
,
10047 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_2ch_modes
),
10048 .channel_mode
= alc883_3ST_2ch_modes
,
10050 .input_mux
= &alc883_lenovo_nb0763_capture_source
,
10051 .unsol_event
= alc_automute_amp_unsol_event
,
10052 .setup
= alc883_medion_md2_setup
,
10053 .init_hook
= alc_automute_amp
,
10055 [ALC888_LENOVO_MS7195_DIG
] = {
10056 .mixers
= { alc883_3ST_6ch_mixer
, alc883_chmode_mixer
},
10057 .init_verbs
= { alc883_init_verbs
, alc888_lenovo_ms7195_verbs
},
10058 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
10059 .dac_nids
= alc883_dac_nids
,
10060 .dig_out_nid
= ALC883_DIGOUT_NID
,
10061 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_6ch_modes
),
10062 .channel_mode
= alc883_3ST_6ch_modes
,
10064 .input_mux
= &alc883_capture_source
,
10065 .unsol_event
= alc883_lenovo_ms7195_unsol_event
,
10066 .init_hook
= alc888_lenovo_ms7195_front_automute
,
10068 [ALC883_HAIER_W66
] = {
10069 .mixers
= { alc883_targa_2ch_mixer
},
10070 .init_verbs
= { alc883_init_verbs
, alc883_haier_w66_verbs
},
10071 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
10072 .dac_nids
= alc883_dac_nids
,
10073 .dig_out_nid
= ALC883_DIGOUT_NID
,
10074 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_2ch_modes
),
10075 .channel_mode
= alc883_3ST_2ch_modes
,
10076 .input_mux
= &alc883_capture_source
,
10077 .unsol_event
= alc_automute_amp_unsol_event
,
10078 .setup
= alc883_haier_w66_setup
,
10079 .init_hook
= alc_automute_amp
,
10081 [ALC888_3ST_HP
] = {
10082 .mixers
= { alc883_3ST_6ch_mixer
, alc883_chmode_mixer
},
10083 .init_verbs
= { alc883_init_verbs
, alc888_3st_hp_verbs
},
10084 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
10085 .dac_nids
= alc883_dac_nids
,
10086 .num_channel_mode
= ARRAY_SIZE(alc888_3st_hp_modes
),
10087 .channel_mode
= alc888_3st_hp_modes
,
10089 .input_mux
= &alc883_capture_source
,
10090 .unsol_event
= alc_automute_amp_unsol_event
,
10091 .setup
= alc888_3st_hp_setup
,
10092 .init_hook
= alc_automute_amp
,
10094 [ALC888_6ST_DELL
] = {
10095 .mixers
= { alc883_base_mixer
, alc883_chmode_mixer
},
10096 .init_verbs
= { alc883_init_verbs
, alc888_6st_dell_verbs
},
10097 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
10098 .dac_nids
= alc883_dac_nids
,
10099 .dig_out_nid
= ALC883_DIGOUT_NID
,
10100 .dig_in_nid
= ALC883_DIGIN_NID
,
10101 .num_channel_mode
= ARRAY_SIZE(alc883_sixstack_modes
),
10102 .channel_mode
= alc883_sixstack_modes
,
10103 .input_mux
= &alc883_capture_source
,
10104 .unsol_event
= alc_automute_amp_unsol_event
,
10105 .setup
= alc888_6st_dell_setup
,
10106 .init_hook
= alc_automute_amp
,
10109 .mixers
= { alc883_mitac_mixer
},
10110 .init_verbs
= { alc883_init_verbs
, alc883_mitac_verbs
},
10111 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
10112 .dac_nids
= alc883_dac_nids
,
10113 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_2ch_modes
),
10114 .channel_mode
= alc883_3ST_2ch_modes
,
10115 .input_mux
= &alc883_capture_source
,
10116 .unsol_event
= alc_automute_amp_unsol_event
,
10117 .setup
= alc883_mitac_setup
,
10118 .init_hook
= alc_automute_amp
,
10120 [ALC883_FUJITSU_PI2515
] = {
10121 .mixers
= { alc883_2ch_fujitsu_pi2515_mixer
},
10122 .init_verbs
= { alc883_init_verbs
,
10123 alc883_2ch_fujitsu_pi2515_verbs
},
10124 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
10125 .dac_nids
= alc883_dac_nids
,
10126 .dig_out_nid
= ALC883_DIGOUT_NID
,
10127 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_2ch_modes
),
10128 .channel_mode
= alc883_3ST_2ch_modes
,
10129 .input_mux
= &alc883_fujitsu_pi2515_capture_source
,
10130 .unsol_event
= alc_automute_amp_unsol_event
,
10131 .setup
= alc883_2ch_fujitsu_pi2515_setup
,
10132 .init_hook
= alc_automute_amp
,
10134 [ALC888_FUJITSU_XA3530
] = {
10135 .mixers
= { alc888_base_mixer
, alc883_chmode_mixer
},
10136 .init_verbs
= { alc883_init_verbs
,
10137 alc888_fujitsu_xa3530_verbs
},
10138 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
10139 .dac_nids
= alc883_dac_nids
,
10140 .num_adc_nids
= ARRAY_SIZE(alc883_adc_nids_rev
),
10141 .adc_nids
= alc883_adc_nids_rev
,
10142 .capsrc_nids
= alc883_capsrc_nids_rev
,
10143 .dig_out_nid
= ALC883_DIGOUT_NID
,
10144 .num_channel_mode
= ARRAY_SIZE(alc888_4ST_8ch_intel_modes
),
10145 .channel_mode
= alc888_4ST_8ch_intel_modes
,
10147 ARRAY_SIZE(alc888_2_capture_sources
),
10148 .input_mux
= alc888_2_capture_sources
,
10149 .unsol_event
= alc_automute_amp_unsol_event
,
10150 .setup
= alc888_fujitsu_xa3530_setup
,
10151 .init_hook
= alc_automute_amp
,
10153 [ALC888_LENOVO_SKY
] = {
10154 .mixers
= { alc888_lenovo_sky_mixer
, alc883_chmode_mixer
},
10155 .init_verbs
= { alc883_init_verbs
, alc888_lenovo_sky_verbs
},
10156 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
10157 .dac_nids
= alc883_dac_nids
,
10158 .dig_out_nid
= ALC883_DIGOUT_NID
,
10159 .num_channel_mode
= ARRAY_SIZE(alc883_sixstack_modes
),
10160 .channel_mode
= alc883_sixstack_modes
,
10162 .input_mux
= &alc883_lenovo_sky_capture_source
,
10163 .unsol_event
= alc_automute_amp_unsol_event
,
10164 .setup
= alc888_lenovo_sky_setup
,
10165 .init_hook
= alc_automute_amp
,
10167 [ALC888_ASUS_M90V
] = {
10168 .mixers
= { alc883_3ST_6ch_mixer
, alc883_chmode_mixer
},
10169 .init_verbs
= { alc883_init_verbs
, alc888_asus_m90v_verbs
},
10170 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
10171 .dac_nids
= alc883_dac_nids
,
10172 .dig_out_nid
= ALC883_DIGOUT_NID
,
10173 .dig_in_nid
= ALC883_DIGIN_NID
,
10174 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_6ch_modes
),
10175 .channel_mode
= alc883_3ST_6ch_modes
,
10177 .input_mux
= &alc883_fujitsu_pi2515_capture_source
,
10178 .unsol_event
= alc_sku_unsol_event
,
10179 .setup
= alc883_mode2_setup
,
10180 .init_hook
= alc_inithook
,
10182 [ALC888_ASUS_EEE1601
] = {
10183 .mixers
= { alc883_asus_eee1601_mixer
},
10184 .cap_mixer
= alc883_asus_eee1601_cap_mixer
,
10185 .init_verbs
= { alc883_init_verbs
, alc888_asus_eee1601_verbs
},
10186 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
10187 .dac_nids
= alc883_dac_nids
,
10188 .dig_out_nid
= ALC883_DIGOUT_NID
,
10189 .dig_in_nid
= ALC883_DIGIN_NID
,
10190 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_2ch_modes
),
10191 .channel_mode
= alc883_3ST_2ch_modes
,
10193 .input_mux
= &alc883_asus_eee1601_capture_source
,
10194 .unsol_event
= alc_sku_unsol_event
,
10195 .init_hook
= alc883_eee1601_inithook
,
10197 [ALC1200_ASUS_P5Q
] = {
10198 .mixers
= { alc883_base_mixer
, alc883_chmode_mixer
},
10199 .init_verbs
= { alc883_init_verbs
},
10200 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
10201 .dac_nids
= alc883_dac_nids
,
10202 .dig_out_nid
= ALC1200_DIGOUT_NID
,
10203 .dig_in_nid
= ALC883_DIGIN_NID
,
10204 .slave_dig_outs
= alc1200_slave_dig_outs
,
10205 .num_channel_mode
= ARRAY_SIZE(alc883_sixstack_modes
),
10206 .channel_mode
= alc883_sixstack_modes
,
10207 .input_mux
= &alc883_capture_source
,
10210 .mixers
= { alc889A_mb31_mixer
, alc883_chmode_mixer
},
10211 .init_verbs
= { alc883_init_verbs
, alc889A_mb31_verbs
,
10212 alc880_gpio1_init_verbs
},
10213 .adc_nids
= alc883_adc_nids
,
10214 .num_adc_nids
= ARRAY_SIZE(alc883_adc_nids
),
10215 .capsrc_nids
= alc883_capsrc_nids
,
10216 .dac_nids
= alc883_dac_nids
,
10217 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
10218 .channel_mode
= alc889A_mb31_6ch_modes
,
10219 .num_channel_mode
= ARRAY_SIZE(alc889A_mb31_6ch_modes
),
10220 .input_mux
= &alc889A_mb31_capture_source
,
10221 .dig_out_nid
= ALC883_DIGOUT_NID
,
10222 .unsol_event
= alc889A_mb31_unsol_event
,
10223 .init_hook
= alc889A_mb31_automute
,
10225 [ALC883_SONY_VAIO_TT
] = {
10226 .mixers
= { alc883_vaiott_mixer
},
10227 .init_verbs
= { alc883_init_verbs
, alc883_vaiott_verbs
},
10228 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
10229 .dac_nids
= alc883_dac_nids
,
10230 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_2ch_modes
),
10231 .channel_mode
= alc883_3ST_2ch_modes
,
10232 .input_mux
= &alc883_capture_source
,
10233 .unsol_event
= alc_automute_amp_unsol_event
,
10234 .setup
= alc883_vaiott_setup
,
10235 .init_hook
= alc_automute_amp
,
10244 PINFIX_ABIT_AW9D_MAX
10247 static struct alc_pincfg alc882_abit_aw9d_pinfix
[] = {
10248 { 0x15, 0x01080104 }, /* side */
10249 { 0x16, 0x01011012 }, /* rear */
10250 { 0x17, 0x01016011 }, /* clfe */
10254 static const struct alc_fixup alc882_fixups
[] = {
10255 [PINFIX_ABIT_AW9D_MAX
] = {
10256 .pins
= alc882_abit_aw9d_pinfix
10260 static struct snd_pci_quirk alc882_fixup_tbl
[] = {
10261 SND_PCI_QUIRK(0x147b, 0x107a, "Abit AW9D-MAX", PINFIX_ABIT_AW9D_MAX
),
10266 * BIOS auto configuration
10268 static int alc882_auto_create_input_ctls(struct hda_codec
*codec
,
10269 const struct auto_pin_cfg
*cfg
)
10271 return alc_auto_create_input_ctls(codec
, cfg
, 0x0b, 0x23, 0x22);
10274 static void alc882_auto_set_output_and_unmute(struct hda_codec
*codec
,
10275 hda_nid_t nid
, int pin_type
,
10280 /* set as output */
10281 alc_set_pin_output(codec
, nid
, pin_type
);
10285 else if (dac
>= 0x02 && dac
<= 0x05)
10289 snd_hda_codec_write(codec
, nid
, 0, AC_VERB_SET_CONNECT_SEL
, idx
);
10292 static void alc882_auto_init_multi_out(struct hda_codec
*codec
)
10294 struct alc_spec
*spec
= codec
->spec
;
10297 for (i
= 0; i
<= HDA_SIDE
; i
++) {
10298 hda_nid_t nid
= spec
->autocfg
.line_out_pins
[i
];
10299 int pin_type
= get_pin_type(spec
->autocfg
.line_out_type
);
10301 alc882_auto_set_output_and_unmute(codec
, nid
, pin_type
,
10302 spec
->multiout
.dac_nids
[i
]);
10306 static void alc882_auto_init_hp_out(struct hda_codec
*codec
)
10308 struct alc_spec
*spec
= codec
->spec
;
10309 hda_nid_t pin
, dac
;
10311 pin
= spec
->autocfg
.hp_pins
[0];
10313 dac
= spec
->multiout
.hp_nid
;
10315 dac
= spec
->multiout
.dac_nids
[0]; /* to front */
10316 alc882_auto_set_output_and_unmute(codec
, pin
, PIN_HP
, dac
);
10318 pin
= spec
->autocfg
.speaker_pins
[0];
10320 dac
= spec
->multiout
.extra_out_nid
[0];
10322 dac
= spec
->multiout
.dac_nids
[0]; /* to front */
10323 alc882_auto_set_output_and_unmute(codec
, pin
, PIN_OUT
, dac
);
10327 static void alc882_auto_init_analog_input(struct hda_codec
*codec
)
10329 struct alc_spec
*spec
= codec
->spec
;
10332 for (i
= 0; i
< AUTO_PIN_LAST
; i
++) {
10333 hda_nid_t nid
= spec
->autocfg
.input_pins
[i
];
10336 alc_set_input_pin(codec
, nid
, i
);
10337 if (get_wcaps(codec
, nid
) & AC_WCAP_OUT_AMP
)
10338 snd_hda_codec_write(codec
, nid
, 0,
10339 AC_VERB_SET_AMP_GAIN_MUTE
,
10344 static void alc882_auto_init_input_src(struct hda_codec
*codec
)
10346 struct alc_spec
*spec
= codec
->spec
;
10349 for (c
= 0; c
< spec
->num_adc_nids
; c
++) {
10350 hda_nid_t conn_list
[HDA_MAX_NUM_INPUTS
];
10351 hda_nid_t nid
= spec
->capsrc_nids
[c
];
10352 unsigned int mux_idx
;
10353 const struct hda_input_mux
*imux
;
10354 int conns
, mute
, idx
, item
;
10356 conns
= snd_hda_get_connections(codec
, nid
, conn_list
,
10357 ARRAY_SIZE(conn_list
));
10360 mux_idx
= c
>= spec
->num_mux_defs
? 0 : c
;
10361 imux
= &spec
->input_mux
[mux_idx
];
10362 if (!imux
->num_items
&& mux_idx
> 0)
10363 imux
= &spec
->input_mux
[0];
10364 for (idx
= 0; idx
< conns
; idx
++) {
10365 /* if the current connection is the selected one,
10366 * unmute it as default - otherwise mute it
10368 mute
= AMP_IN_MUTE(idx
);
10369 for (item
= 0; item
< imux
->num_items
; item
++) {
10370 if (imux
->items
[item
].index
== idx
) {
10371 if (spec
->cur_mux
[c
] == item
)
10372 mute
= AMP_IN_UNMUTE(idx
);
10376 /* check if we have a selector or mixer
10377 * we could check for the widget type instead, but
10378 * just check for Amp-In presence (in case of mixer
10379 * without amp-in there is something wrong, this
10380 * function shouldn't be used or capsrc nid is wrong)
10382 if (get_wcaps(codec
, nid
) & AC_WCAP_IN_AMP
)
10383 snd_hda_codec_write(codec
, nid
, 0,
10384 AC_VERB_SET_AMP_GAIN_MUTE
,
10386 else if (mute
!= AMP_IN_MUTE(idx
))
10387 snd_hda_codec_write(codec
, nid
, 0,
10388 AC_VERB_SET_CONNECT_SEL
,
10394 /* add mic boosts if needed */
10395 static int alc_auto_add_mic_boost(struct hda_codec
*codec
)
10397 struct alc_spec
*spec
= codec
->spec
;
10401 nid
= spec
->autocfg
.input_pins
[AUTO_PIN_MIC
];
10402 if (nid
&& (get_wcaps(codec
, nid
) & AC_WCAP_IN_AMP
)) {
10403 err
= add_control(spec
, ALC_CTL_WIDGET_VOL
,
10405 HDA_COMPOSE_AMP_VAL(nid
, 3, 0, HDA_INPUT
));
10409 nid
= spec
->autocfg
.input_pins
[AUTO_PIN_FRONT_MIC
];
10410 if (nid
&& (get_wcaps(codec
, nid
) & AC_WCAP_IN_AMP
)) {
10411 err
= add_control(spec
, ALC_CTL_WIDGET_VOL
,
10413 HDA_COMPOSE_AMP_VAL(nid
, 3, 0, HDA_INPUT
));
10420 /* almost identical with ALC880 parser... */
10421 static int alc882_parse_auto_config(struct hda_codec
*codec
)
10423 struct alc_spec
*spec
= codec
->spec
;
10424 static hda_nid_t alc882_ignore
[] = { 0x1d, 0 };
10427 err
= snd_hda_parse_pin_def_config(codec
, &spec
->autocfg
,
10431 if (!spec
->autocfg
.line_outs
)
10432 return 0; /* can't find valid BIOS pin config */
10434 err
= alc880_auto_fill_dac_nids(spec
, &spec
->autocfg
);
10437 err
= alc880_auto_create_multi_out_ctls(spec
, &spec
->autocfg
);
10440 err
= alc880_auto_create_extra_out(spec
, spec
->autocfg
.hp_pins
[0],
10444 err
= alc880_auto_create_extra_out(spec
,
10445 spec
->autocfg
.speaker_pins
[0],
10449 err
= alc882_auto_create_input_ctls(codec
, &spec
->autocfg
);
10453 spec
->multiout
.max_channels
= spec
->multiout
.num_dacs
* 2;
10455 /* check multiple SPDIF-out (for recent codecs) */
10456 for (i
= 0; i
< spec
->autocfg
.dig_outs
; i
++) {
10458 err
= snd_hda_get_connections(codec
,
10459 spec
->autocfg
.dig_out_pins
[i
],
10464 spec
->multiout
.dig_out_nid
= dig_nid
;
10466 spec
->multiout
.slave_dig_outs
= spec
->slave_dig_outs
;
10467 if (i
>= ARRAY_SIZE(spec
->slave_dig_outs
) - 1)
10469 spec
->slave_dig_outs
[i
- 1] = dig_nid
;
10472 if (spec
->autocfg
.dig_in_pin
)
10473 spec
->dig_in_nid
= ALC880_DIGIN_NID
;
10475 if (spec
->kctls
.list
)
10476 add_mixer(spec
, spec
->kctls
.list
);
10478 add_verb(spec
, alc883_auto_init_verbs
);
10479 /* if ADC 0x07 is available, initialize it, too */
10480 if (get_wcaps_type(get_wcaps(codec
, 0x07)) == AC_WID_AUD_IN
)
10481 add_verb(spec
, alc882_adc1_init_verbs
);
10483 spec
->num_mux_defs
= 1;
10484 spec
->input_mux
= &spec
->private_imux
[0];
10486 alc_ssid_check(codec
, 0x15, 0x1b, 0x14, 0);
10488 err
= alc_auto_add_mic_boost(codec
);
10492 return 1; /* config found */
10495 /* additional initialization for auto-configuration model */
10496 static void alc882_auto_init(struct hda_codec
*codec
)
10498 struct alc_spec
*spec
= codec
->spec
;
10499 alc882_auto_init_multi_out(codec
);
10500 alc882_auto_init_hp_out(codec
);
10501 alc882_auto_init_analog_input(codec
);
10502 alc882_auto_init_input_src(codec
);
10503 if (spec
->unsol_event
)
10504 alc_inithook(codec
);
10507 static int patch_alc882(struct hda_codec
*codec
)
10509 struct alc_spec
*spec
;
10510 int err
, board_config
;
10512 spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
10516 codec
->spec
= spec
;
10518 alc_auto_parse_customize_define(codec
);
10520 switch (codec
->vendor_id
) {
10525 /* ALC883 and variants */
10526 alc_fix_pll_init(codec
, 0x20, 0x0a, 10);
10530 board_config
= snd_hda_check_board_config(codec
, ALC882_MODEL_LAST
,
10534 if (board_config
< 0 || board_config
>= ALC882_MODEL_LAST
)
10535 board_config
= snd_hda_check_board_codec_sid_config(codec
,
10536 ALC882_MODEL_LAST
, alc882_models
, alc882_ssid_cfg_tbl
);
10538 if (board_config
< 0 || board_config
>= ALC882_MODEL_LAST
) {
10539 printk(KERN_INFO
"hda_codec: %s: BIOS auto-probing.\n",
10541 board_config
= ALC882_AUTO
;
10544 if (board_config
== ALC882_AUTO
)
10545 alc_pick_fixup(codec
, alc882_fixup_tbl
, alc882_fixups
, 1);
10547 if (board_config
== ALC882_AUTO
) {
10548 /* automatic parse from the BIOS config */
10549 err
= alc882_parse_auto_config(codec
);
10555 "hda_codec: Cannot set up configuration "
10556 "from BIOS. Using base mode...\n");
10557 board_config
= ALC882_3ST_DIG
;
10561 err
= snd_hda_attach_beep_device(codec
, 0x1);
10567 if (board_config
!= ALC882_AUTO
)
10568 setup_preset(codec
, &alc882_presets
[board_config
]);
10570 spec
->stream_analog_playback
= &alc882_pcm_analog_playback
;
10571 spec
->stream_analog_capture
= &alc882_pcm_analog_capture
;
10572 /* FIXME: setup DAC5 */
10573 /*spec->stream_analog_alt_playback = &alc880_pcm_analog_alt_playback;*/
10574 spec
->stream_analog_alt_capture
= &alc880_pcm_analog_alt_capture
;
10576 spec
->stream_digital_playback
= &alc882_pcm_digital_playback
;
10577 spec
->stream_digital_capture
= &alc882_pcm_digital_capture
;
10579 if (!spec
->adc_nids
&& spec
->input_mux
) {
10581 spec
->num_adc_nids
= 0;
10582 for (i
= 0; i
< ARRAY_SIZE(alc882_adc_nids
); i
++) {
10583 const struct hda_input_mux
*imux
= spec
->input_mux
;
10585 hda_nid_t items
[16];
10586 hda_nid_t nid
= alc882_adc_nids
[i
];
10587 unsigned int wcap
= get_wcaps(codec
, nid
);
10589 wcap
= get_wcaps_type(wcap
);
10590 if (wcap
!= AC_WID_AUD_IN
)
10592 spec
->private_adc_nids
[spec
->num_adc_nids
] = nid
;
10593 err
= snd_hda_get_connections(codec
, nid
, &cap
, 1);
10596 err
= snd_hda_get_connections(codec
, cap
, items
,
10597 ARRAY_SIZE(items
));
10600 for (j
= 0; j
< imux
->num_items
; j
++)
10601 if (imux
->items
[j
].index
>= err
)
10603 if (j
< imux
->num_items
)
10605 spec
->private_capsrc_nids
[spec
->num_adc_nids
] = cap
;
10606 spec
->num_adc_nids
++;
10608 spec
->adc_nids
= spec
->private_adc_nids
;
10609 spec
->capsrc_nids
= spec
->private_capsrc_nids
;
10612 set_capture_mixer(codec
);
10614 if (spec
->cdefine
.enable_pcbeep
)
10615 set_beep_amp(spec
, 0x0b, 0x05, HDA_INPUT
);
10617 if (board_config
== ALC882_AUTO
)
10618 alc_pick_fixup(codec
, alc882_fixup_tbl
, alc882_fixups
, 0);
10620 spec
->vmaster_nid
= 0x0c;
10622 codec
->patch_ops
= alc_patch_ops
;
10623 if (board_config
== ALC882_AUTO
)
10624 spec
->init_hook
= alc882_auto_init
;
10625 #ifdef CONFIG_SND_HDA_POWER_SAVE
10626 if (!spec
->loopback
.amplist
)
10627 spec
->loopback
.amplist
= alc882_loopbacks
;
10638 #define ALC262_DIGOUT_NID ALC880_DIGOUT_NID
10639 #define ALC262_DIGIN_NID ALC880_DIGIN_NID
10641 #define alc262_dac_nids alc260_dac_nids
10642 #define alc262_adc_nids alc882_adc_nids
10643 #define alc262_adc_nids_alt alc882_adc_nids_alt
10644 #define alc262_capsrc_nids alc882_capsrc_nids
10645 #define alc262_capsrc_nids_alt alc882_capsrc_nids_alt
10647 #define alc262_modes alc260_modes
10648 #define alc262_capture_source alc882_capture_source
10650 static hda_nid_t alc262_dmic_adc_nids
[1] = {
10655 static hda_nid_t alc262_dmic_capsrc_nids
[1] = { 0x22 };
10657 static struct snd_kcontrol_new alc262_base_mixer
[] = {
10658 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
10659 HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
10660 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
10661 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
10662 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
10663 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
10664 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
10665 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
10666 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
10667 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x01, HDA_INPUT
),
10668 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x01, HDA_INPUT
),
10669 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT
),
10670 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0D, 0x0, HDA_OUTPUT
),
10671 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
10672 HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT
),
10673 HDA_CODEC_MUTE_MONO("Mono Playback Switch", 0x16, 2, 0x0, HDA_OUTPUT
),
10677 /* update HP, line and mono-out pins according to the master switch */
10678 static void alc262_hp_master_update(struct hda_codec
*codec
)
10680 struct alc_spec
*spec
= codec
->spec
;
10681 int val
= spec
->master_sw
;
10683 /* HP & line-out */
10684 snd_hda_codec_write_cache(codec
, 0x1b, 0,
10685 AC_VERB_SET_PIN_WIDGET_CONTROL
,
10687 snd_hda_codec_write_cache(codec
, 0x15, 0,
10688 AC_VERB_SET_PIN_WIDGET_CONTROL
,
10690 /* mono (speaker) depending on the HP jack sense */
10691 val
= val
&& !spec
->jack_present
;
10692 snd_hda_codec_write_cache(codec
, 0x16, 0,
10693 AC_VERB_SET_PIN_WIDGET_CONTROL
,
10694 val
? PIN_OUT
: 0);
10697 static void alc262_hp_bpc_automute(struct hda_codec
*codec
)
10699 struct alc_spec
*spec
= codec
->spec
;
10701 spec
->jack_present
= snd_hda_jack_detect(codec
, 0x1b);
10702 alc262_hp_master_update(codec
);
10705 static void alc262_hp_bpc_unsol_event(struct hda_codec
*codec
, unsigned int res
)
10707 if ((res
>> 26) != ALC880_HP_EVENT
)
10709 alc262_hp_bpc_automute(codec
);
10712 static void alc262_hp_wildwest_automute(struct hda_codec
*codec
)
10714 struct alc_spec
*spec
= codec
->spec
;
10716 spec
->jack_present
= snd_hda_jack_detect(codec
, 0x15);
10717 alc262_hp_master_update(codec
);
10720 static void alc262_hp_wildwest_unsol_event(struct hda_codec
*codec
,
10723 if ((res
>> 26) != ALC880_HP_EVENT
)
10725 alc262_hp_wildwest_automute(codec
);
10728 #define alc262_hp_master_sw_get alc260_hp_master_sw_get
10730 static int alc262_hp_master_sw_put(struct snd_kcontrol
*kcontrol
,
10731 struct snd_ctl_elem_value
*ucontrol
)
10733 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
10734 struct alc_spec
*spec
= codec
->spec
;
10735 int val
= !!*ucontrol
->value
.integer
.value
;
10737 if (val
== spec
->master_sw
)
10739 spec
->master_sw
= val
;
10740 alc262_hp_master_update(codec
);
10744 #define ALC262_HP_MASTER_SWITCH \
10746 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
10747 .name = "Master Playback Switch", \
10748 .info = snd_ctl_boolean_mono_info, \
10749 .get = alc262_hp_master_sw_get, \
10750 .put = alc262_hp_master_sw_put, \
10753 .iface = NID_MAPPING, \
10754 .name = "Master Playback Switch", \
10755 .private_value = 0x15 | (0x16 << 8) | (0x1b << 16), \
10759 static struct snd_kcontrol_new alc262_HP_BPC_mixer
[] = {
10760 ALC262_HP_MASTER_SWITCH
,
10761 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
10762 HDA_CODEC_MUTE("Front Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
10763 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
10764 HDA_CODEC_VOLUME_MONO("Speaker Playback Volume", 0x0e, 2, 0x0,
10766 HDA_CODEC_MUTE_MONO("Speaker Playback Switch", 0x16, 2, 0x0,
10768 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
10769 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
10770 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
10771 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x01, HDA_INPUT
),
10772 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x01, HDA_INPUT
),
10773 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT
),
10774 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
10775 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
10776 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
10777 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
10778 HDA_CODEC_VOLUME("AUX IN Playback Volume", 0x0b, 0x06, HDA_INPUT
),
10779 HDA_CODEC_MUTE("AUX IN Playback Switch", 0x0b, 0x06, HDA_INPUT
),
10783 static struct snd_kcontrol_new alc262_HP_BPC_WildWest_mixer
[] = {
10784 ALC262_HP_MASTER_SWITCH
,
10785 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
10786 HDA_CODEC_MUTE("Front Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
10787 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
10788 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
10789 HDA_CODEC_VOLUME_MONO("Speaker Playback Volume", 0x0e, 2, 0x0,
10791 HDA_CODEC_MUTE_MONO("Speaker Playback Switch", 0x16, 2, 0x0,
10793 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x02, HDA_INPUT
),
10794 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x02, HDA_INPUT
),
10795 HDA_CODEC_VOLUME("Front Mic Boost", 0x1a, 0, HDA_INPUT
),
10796 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x01, HDA_INPUT
),
10797 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x01, HDA_INPUT
),
10798 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
10799 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
10803 static struct snd_kcontrol_new alc262_HP_BPC_WildWest_option_mixer
[] = {
10804 HDA_CODEC_VOLUME("Rear Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
10805 HDA_CODEC_MUTE("Rear Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
10806 HDA_CODEC_VOLUME("Rear Mic Boost", 0x18, 0, HDA_INPUT
),
10810 /* mute/unmute internal speaker according to the hp jack and mute state */
10811 static void alc262_hp_t5735_setup(struct hda_codec
*codec
)
10813 struct alc_spec
*spec
= codec
->spec
;
10815 spec
->autocfg
.hp_pins
[0] = 0x15;
10816 spec
->autocfg
.speaker_pins
[0] = 0x14;
10819 static struct snd_kcontrol_new alc262_hp_t5735_mixer
[] = {
10820 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
10821 HDA_CODEC_MUTE("Speaker Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
10822 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
10823 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
10824 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
10825 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
10826 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
10830 static struct hda_verb alc262_hp_t5735_verbs
[] = {
10831 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
10832 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
10834 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
10838 static struct snd_kcontrol_new alc262_hp_rp5700_mixer
[] = {
10839 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
10840 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
10841 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0e, 0x0, HDA_OUTPUT
),
10842 HDA_CODEC_MUTE("Speaker Playback Switch", 0x16, 0x0, HDA_OUTPUT
),
10843 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x01, HDA_INPUT
),
10844 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x01, HDA_INPUT
),
10848 static struct hda_verb alc262_hp_rp5700_verbs
[] = {
10849 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
10850 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
10851 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
10852 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
10853 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
10854 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0x00},
10855 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x01 << 8))},
10856 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x01 << 8))},
10857 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x00 << 8))},
10858 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x00 << 8))},
10862 static struct hda_input_mux alc262_hp_rp5700_capture_source
= {
10869 /* bind hp and internal speaker mute (with plug check) as master switch */
10870 static void alc262_hippo_master_update(struct hda_codec
*codec
)
10872 struct alc_spec
*spec
= codec
->spec
;
10873 hda_nid_t hp_nid
= spec
->autocfg
.hp_pins
[0];
10874 hda_nid_t line_nid
= spec
->autocfg
.line_out_pins
[0];
10875 hda_nid_t speaker_nid
= spec
->autocfg
.speaker_pins
[0];
10879 mute
= spec
->master_sw
? 0 : HDA_AMP_MUTE
;
10880 snd_hda_codec_amp_stereo(codec
, hp_nid
, HDA_OUTPUT
, 0,
10881 HDA_AMP_MUTE
, mute
);
10882 /* mute internal speaker per jack sense */
10883 if (spec
->jack_present
)
10884 mute
= HDA_AMP_MUTE
;
10886 snd_hda_codec_amp_stereo(codec
, line_nid
, HDA_OUTPUT
, 0,
10887 HDA_AMP_MUTE
, mute
);
10888 if (speaker_nid
&& speaker_nid
!= line_nid
)
10889 snd_hda_codec_amp_stereo(codec
, speaker_nid
, HDA_OUTPUT
, 0,
10890 HDA_AMP_MUTE
, mute
);
10893 #define alc262_hippo_master_sw_get alc262_hp_master_sw_get
10895 static int alc262_hippo_master_sw_put(struct snd_kcontrol
*kcontrol
,
10896 struct snd_ctl_elem_value
*ucontrol
)
10898 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
10899 struct alc_spec
*spec
= codec
->spec
;
10900 int val
= !!*ucontrol
->value
.integer
.value
;
10902 if (val
== spec
->master_sw
)
10904 spec
->master_sw
= val
;
10905 alc262_hippo_master_update(codec
);
10909 #define ALC262_HIPPO_MASTER_SWITCH \
10911 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
10912 .name = "Master Playback Switch", \
10913 .info = snd_ctl_boolean_mono_info, \
10914 .get = alc262_hippo_master_sw_get, \
10915 .put = alc262_hippo_master_sw_put, \
10918 .iface = NID_MAPPING, \
10919 .name = "Master Playback Switch", \
10920 .subdevice = SUBDEV_HP(0) | (SUBDEV_LINE(0) << 8) | \
10921 (SUBDEV_SPEAKER(0) << 16), \
10924 static struct snd_kcontrol_new alc262_hippo_mixer
[] = {
10925 ALC262_HIPPO_MASTER_SWITCH
,
10926 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
10927 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
10928 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
10929 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
10930 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
10931 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
10932 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
10933 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
10934 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x01, HDA_INPUT
),
10935 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x01, HDA_INPUT
),
10936 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT
),
10937 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
10941 static struct snd_kcontrol_new alc262_hippo1_mixer
[] = {
10942 HDA_CODEC_VOLUME("Master Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
10943 ALC262_HIPPO_MASTER_SWITCH
,
10944 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
10945 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
10946 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
10947 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
10948 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
10949 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
10950 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
10951 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x01, HDA_INPUT
),
10952 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x01, HDA_INPUT
),
10953 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT
),
10957 /* mute/unmute internal speaker according to the hp jack and mute state */
10958 static void alc262_hippo_automute(struct hda_codec
*codec
)
10960 struct alc_spec
*spec
= codec
->spec
;
10961 hda_nid_t hp_nid
= spec
->autocfg
.hp_pins
[0];
10963 spec
->jack_present
= snd_hda_jack_detect(codec
, hp_nid
);
10964 alc262_hippo_master_update(codec
);
10967 static void alc262_hippo_unsol_event(struct hda_codec
*codec
, unsigned int res
)
10969 if ((res
>> 26) != ALC880_HP_EVENT
)
10971 alc262_hippo_automute(codec
);
10974 static void alc262_hippo_setup(struct hda_codec
*codec
)
10976 struct alc_spec
*spec
= codec
->spec
;
10978 spec
->autocfg
.hp_pins
[0] = 0x15;
10979 spec
->autocfg
.speaker_pins
[0] = 0x14;
10982 static void alc262_hippo1_setup(struct hda_codec
*codec
)
10984 struct alc_spec
*spec
= codec
->spec
;
10986 spec
->autocfg
.hp_pins
[0] = 0x1b;
10987 spec
->autocfg
.speaker_pins
[0] = 0x14;
10991 static struct snd_kcontrol_new alc262_sony_mixer
[] = {
10992 HDA_CODEC_VOLUME("Master Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
10993 ALC262_HIPPO_MASTER_SWITCH
,
10994 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
10995 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
10996 HDA_CODEC_VOLUME("ATAPI Mic Playback Volume", 0x0b, 0x01, HDA_INPUT
),
10997 HDA_CODEC_MUTE("ATAPI Mic Playback Switch", 0x0b, 0x01, HDA_INPUT
),
11001 static struct snd_kcontrol_new alc262_benq_t31_mixer
[] = {
11002 HDA_CODEC_VOLUME("Master Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
11003 ALC262_HIPPO_MASTER_SWITCH
,
11004 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
11005 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
11006 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
11007 HDA_CODEC_VOLUME("ATAPI Mic Playback Volume", 0x0b, 0x01, HDA_INPUT
),
11008 HDA_CODEC_MUTE("ATAPI Mic Playback Switch", 0x0b, 0x01, HDA_INPUT
),
11012 static struct snd_kcontrol_new alc262_tyan_mixer
[] = {
11013 HDA_CODEC_VOLUME("Master Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
11014 HDA_BIND_MUTE("Master Playback Switch", 0x0c, 2, HDA_INPUT
),
11015 HDA_CODEC_VOLUME("Aux Playback Volume", 0x0b, 0x06, HDA_INPUT
),
11016 HDA_CODEC_MUTE("Aux Playback Switch", 0x0b, 0x06, HDA_INPUT
),
11017 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
11018 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
11019 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
11020 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
11021 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
11022 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x01, HDA_INPUT
),
11023 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x01, HDA_INPUT
),
11024 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT
),
11028 static struct hda_verb alc262_tyan_verbs
[] = {
11029 /* Headphone automute */
11030 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
11031 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
11032 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00},
11034 /* P11 AUX_IN, white 4-pin connector */
11035 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
11036 {0x14, AC_VERB_SET_CONFIG_DEFAULT_BYTES_1
, 0xe1},
11037 {0x14, AC_VERB_SET_CONFIG_DEFAULT_BYTES_2
, 0x93},
11038 {0x14, AC_VERB_SET_CONFIG_DEFAULT_BYTES_3
, 0x19},
11043 /* unsolicited event for HP jack sensing */
11044 static void alc262_tyan_setup(struct hda_codec
*codec
)
11046 struct alc_spec
*spec
= codec
->spec
;
11048 spec
->autocfg
.hp_pins
[0] = 0x1b;
11049 spec
->autocfg
.speaker_pins
[0] = 0x15;
11053 #define alc262_capture_mixer alc882_capture_mixer
11054 #define alc262_capture_alt_mixer alc882_capture_alt_mixer
11057 * generic initialization of ADC, input mixers and output mixers
11059 static struct hda_verb alc262_init_verbs
[] = {
11061 * Unmute ADC0-2 and set the default input to mic-in
11063 {0x07, AC_VERB_SET_CONNECT_SEL
, 0x00},
11064 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
11065 {0x08, AC_VERB_SET_CONNECT_SEL
, 0x00},
11066 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
11067 {0x09, AC_VERB_SET_CONNECT_SEL
, 0x00},
11068 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
11070 /* Mute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
11072 * Note: PASD motherboards uses the Line In 2 as the input for
11073 * front panel mic (mic 2)
11075 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
11076 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
11077 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
11078 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
11079 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
11080 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
11083 * Set up output mixers (0x0c - 0x0e)
11085 /* set vol=0 to output mixers */
11086 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
11087 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
11088 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
11089 /* set up input amps for analog loopback */
11090 /* Amp Indices: DAC = 0, mixer = 1 */
11091 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
11092 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
11093 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
11094 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
11095 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
11096 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
11098 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40},
11099 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0xc0},
11100 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40},
11101 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24},
11102 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20},
11103 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20},
11105 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, 0x0000},
11106 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, 0x0000},
11107 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, 0x0000},
11108 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, 0x0000},
11109 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, 0x0000},
11111 {0x14, AC_VERB_SET_CONNECT_SEL
, 0x00},
11112 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x01},
11114 /* FIXME: use matrix-type input source selection */
11115 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
11116 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
11117 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
11118 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x03 << 8))},
11119 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x02 << 8))},
11120 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x04 << 8))},
11122 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
11123 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x03 << 8))},
11124 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x02 << 8))},
11125 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x04 << 8))},
11127 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
11128 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x03 << 8))},
11129 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x02 << 8))},
11130 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x04 << 8))},
11135 static struct hda_verb alc262_eapd_verbs
[] = {
11136 {0x14, AC_VERB_SET_EAPD_BTLENABLE
, 2},
11137 {0x15, AC_VERB_SET_EAPD_BTLENABLE
, 2},
11141 static struct hda_verb alc262_hippo1_unsol_verbs
[] = {
11142 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0xc0},
11143 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0x00},
11144 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, 0x0000},
11146 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
11147 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
11151 static struct hda_verb alc262_sony_unsol_verbs
[] = {
11152 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0xc0},
11153 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00},
11154 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24}, // Front Mic
11156 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
11157 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
11161 static struct snd_kcontrol_new alc262_toshiba_s06_mixer
[] = {
11162 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
11163 HDA_CODEC_MUTE("Speaker Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
11164 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
11165 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
11166 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
11170 static struct hda_verb alc262_toshiba_s06_verbs
[] = {
11171 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
11172 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
11173 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
11174 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00},
11175 {0x22, AC_VERB_SET_CONNECT_SEL
, 0x09},
11176 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24},
11177 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
11178 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
11182 static void alc262_toshiba_s06_setup(struct hda_codec
*codec
)
11184 struct alc_spec
*spec
= codec
->spec
;
11186 spec
->autocfg
.hp_pins
[0] = 0x15;
11187 spec
->autocfg
.speaker_pins
[0] = 0x14;
11188 spec
->ext_mic
.pin
= 0x18;
11189 spec
->ext_mic
.mux_idx
= 0;
11190 spec
->int_mic
.pin
= 0x12;
11191 spec
->int_mic
.mux_idx
= 9;
11192 spec
->auto_mic
= 1;
11198 * 0x16 = internal speaker
11199 * 0x18 = external mic
11202 static struct snd_kcontrol_new alc262_nec_mixer
[] = {
11203 HDA_CODEC_VOLUME_MONO("Speaker Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT
),
11204 HDA_CODEC_MUTE_MONO("Speaker Playback Switch", 0x16, 0, 0x0, HDA_OUTPUT
),
11206 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
11207 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
11208 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
11210 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
11211 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
11215 static struct hda_verb alc262_nec_verbs
[] = {
11216 /* Unmute Speaker */
11217 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
11220 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
11221 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
11223 /* External mic to headphone */
11224 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
11225 /* External mic to speaker */
11226 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
11232 * 0x14 = headphone/spdif-out, 0x15 = internal speaker,
11233 * 0x1b = port replicator headphone out
11236 #define ALC_HP_EVENT 0x37
11238 static struct hda_verb alc262_fujitsu_unsol_verbs
[] = {
11239 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC_HP_EVENT
},
11240 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
11241 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC_HP_EVENT
},
11242 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
11246 static struct hda_verb alc262_lenovo_3000_unsol_verbs
[] = {
11247 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC_HP_EVENT
},
11248 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
11252 static struct hda_verb alc262_lenovo_3000_init_verbs
[] = {
11253 /* Front Mic pin: input vref at 50% */
11254 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF50
},
11255 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
11259 static struct hda_input_mux alc262_fujitsu_capture_source
= {
11263 { "Int Mic", 0x1 },
11268 static struct hda_input_mux alc262_HP_capture_source
= {
11272 { "Front Mic", 0x1 },
11279 static struct hda_input_mux alc262_HP_D7000_capture_source
= {
11283 { "Front Mic", 0x2 },
11289 /* mute/unmute internal speaker according to the hp jacks and mute state */
11290 static void alc262_fujitsu_automute(struct hda_codec
*codec
, int force
)
11292 struct alc_spec
*spec
= codec
->spec
;
11295 if (force
|| !spec
->sense_updated
) {
11296 spec
->jack_present
= snd_hda_jack_detect(codec
, 0x14) ||
11297 snd_hda_jack_detect(codec
, 0x1b);
11298 spec
->sense_updated
= 1;
11300 /* unmute internal speaker only if both HPs are unplugged and
11301 * master switch is on
11303 if (spec
->jack_present
)
11304 mute
= HDA_AMP_MUTE
;
11306 mute
= snd_hda_codec_amp_read(codec
, 0x14, 0, HDA_OUTPUT
, 0);
11307 snd_hda_codec_amp_stereo(codec
, 0x15, HDA_OUTPUT
, 0,
11308 HDA_AMP_MUTE
, mute
);
11311 /* unsolicited event for HP jack sensing */
11312 static void alc262_fujitsu_unsol_event(struct hda_codec
*codec
,
11315 if ((res
>> 26) != ALC_HP_EVENT
)
11317 alc262_fujitsu_automute(codec
, 1);
11320 static void alc262_fujitsu_init_hook(struct hda_codec
*codec
)
11322 alc262_fujitsu_automute(codec
, 1);
11325 /* bind volumes of both NID 0x0c and 0x0d */
11326 static struct hda_bind_ctls alc262_fujitsu_bind_master_vol
= {
11327 .ops
= &snd_hda_bind_vol
,
11329 HDA_COMPOSE_AMP_VAL(0x0c, 3, 0, HDA_OUTPUT
),
11330 HDA_COMPOSE_AMP_VAL(0x0d, 3, 0, HDA_OUTPUT
),
11335 /* mute/unmute internal speaker according to the hp jack and mute state */
11336 static void alc262_lenovo_3000_automute(struct hda_codec
*codec
, int force
)
11338 struct alc_spec
*spec
= codec
->spec
;
11341 if (force
|| !spec
->sense_updated
) {
11342 spec
->jack_present
= snd_hda_jack_detect(codec
, 0x1b);
11343 spec
->sense_updated
= 1;
11345 if (spec
->jack_present
) {
11346 /* mute internal speaker */
11347 snd_hda_codec_amp_stereo(codec
, 0x14, HDA_OUTPUT
, 0,
11348 HDA_AMP_MUTE
, HDA_AMP_MUTE
);
11349 snd_hda_codec_amp_stereo(codec
, 0x16, HDA_OUTPUT
, 0,
11350 HDA_AMP_MUTE
, HDA_AMP_MUTE
);
11352 /* unmute internal speaker if necessary */
11353 mute
= snd_hda_codec_amp_read(codec
, 0x1b, 0, HDA_OUTPUT
, 0);
11354 snd_hda_codec_amp_stereo(codec
, 0x14, HDA_OUTPUT
, 0,
11355 HDA_AMP_MUTE
, mute
);
11356 snd_hda_codec_amp_stereo(codec
, 0x16, HDA_OUTPUT
, 0,
11357 HDA_AMP_MUTE
, mute
);
11361 /* unsolicited event for HP jack sensing */
11362 static void alc262_lenovo_3000_unsol_event(struct hda_codec
*codec
,
11365 if ((res
>> 26) != ALC_HP_EVENT
)
11367 alc262_lenovo_3000_automute(codec
, 1);
11370 static int amp_stereo_mute_update(struct hda_codec
*codec
, hda_nid_t nid
,
11371 int dir
, int idx
, long *valp
)
11375 for (i
= 0; i
< 2; i
++, valp
++)
11376 change
|= snd_hda_codec_amp_update(codec
, nid
, i
, dir
, idx
,
11378 *valp
? 0 : HDA_AMP_MUTE
);
11382 /* bind hp and internal speaker mute (with plug check) */
11383 static int alc262_fujitsu_master_sw_put(struct snd_kcontrol
*kcontrol
,
11384 struct snd_ctl_elem_value
*ucontrol
)
11386 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
11387 long *valp
= ucontrol
->value
.integer
.value
;
11390 change
= amp_stereo_mute_update(codec
, 0x14, HDA_OUTPUT
, 0, valp
);
11391 change
|= amp_stereo_mute_update(codec
, 0x1b, HDA_OUTPUT
, 0, valp
);
11393 alc262_fujitsu_automute(codec
, 0);
11397 static struct snd_kcontrol_new alc262_fujitsu_mixer
[] = {
11398 HDA_BIND_VOL("Master Playback Volume", &alc262_fujitsu_bind_master_vol
),
11400 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
11401 .name
= "Master Playback Switch",
11402 .subdevice
= HDA_SUBDEV_AMP_FLAG
,
11403 .info
= snd_hda_mixer_amp_switch_info
,
11404 .get
= snd_hda_mixer_amp_switch_get
,
11405 .put
= alc262_fujitsu_master_sw_put
,
11406 .private_value
= HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT
),
11409 .iface
= NID_MAPPING
,
11410 .name
= "Master Playback Switch",
11411 .private_value
= 0x1b,
11413 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
11414 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
11415 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
11416 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
11417 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
11418 HDA_CODEC_VOLUME("Int Mic Boost", 0x19, 0, HDA_INPUT
),
11419 HDA_CODEC_VOLUME("Int Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
11420 HDA_CODEC_MUTE("Int Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
11424 /* bind hp and internal speaker mute (with plug check) */
11425 static int alc262_lenovo_3000_master_sw_put(struct snd_kcontrol
*kcontrol
,
11426 struct snd_ctl_elem_value
*ucontrol
)
11428 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
11429 long *valp
= ucontrol
->value
.integer
.value
;
11432 change
= amp_stereo_mute_update(codec
, 0x1b, HDA_OUTPUT
, 0, valp
);
11434 alc262_lenovo_3000_automute(codec
, 0);
11438 static struct snd_kcontrol_new alc262_lenovo_3000_mixer
[] = {
11439 HDA_BIND_VOL("Master Playback Volume", &alc262_fujitsu_bind_master_vol
),
11441 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
11442 .name
= "Master Playback Switch",
11443 .subdevice
= HDA_SUBDEV_AMP_FLAG
,
11444 .info
= snd_hda_mixer_amp_switch_info
,
11445 .get
= snd_hda_mixer_amp_switch_get
,
11446 .put
= alc262_lenovo_3000_master_sw_put
,
11447 .private_value
= HDA_COMPOSE_AMP_VAL(0x1b, 3, 0, HDA_OUTPUT
),
11449 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
11450 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
11451 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
11452 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
11453 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
11454 HDA_CODEC_VOLUME("Int Mic Boost", 0x19, 0, HDA_INPUT
),
11455 HDA_CODEC_VOLUME("Int Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
11456 HDA_CODEC_MUTE("Int Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
11460 static struct snd_kcontrol_new alc262_toshiba_rx1_mixer
[] = {
11461 HDA_BIND_VOL("Master Playback Volume", &alc262_fujitsu_bind_master_vol
),
11462 ALC262_HIPPO_MASTER_SWITCH
,
11463 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
11464 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
11465 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
11466 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x01, HDA_INPUT
),
11467 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x01, HDA_INPUT
),
11468 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT
),
11472 /* additional init verbs for Benq laptops */
11473 static struct hda_verb alc262_EAPD_verbs
[] = {
11474 {0x20, AC_VERB_SET_COEF_INDEX
, 0x07},
11475 {0x20, AC_VERB_SET_PROC_COEF
, 0x3070},
11479 static struct hda_verb alc262_benq_t31_EAPD_verbs
[] = {
11480 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00},
11481 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24},
11483 {0x20, AC_VERB_SET_COEF_INDEX
, 0x07},
11484 {0x20, AC_VERB_SET_PROC_COEF
, 0x3050},
11488 /* Samsung Q1 Ultra Vista model setup */
11489 static struct snd_kcontrol_new alc262_ultra_mixer
[] = {
11490 HDA_CODEC_VOLUME("Master Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
11491 HDA_BIND_MUTE("Master Playback Switch", 0x0c, 2, HDA_INPUT
),
11492 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x01, HDA_INPUT
),
11493 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x01, HDA_INPUT
),
11494 HDA_CODEC_VOLUME("Mic Boost", 0x19, 0, HDA_INPUT
),
11495 HDA_CODEC_VOLUME("Headphone Mic Boost", 0x15, 0, HDA_INPUT
),
11499 static struct hda_verb alc262_ultra_verbs
[] = {
11501 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
11502 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
11503 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
11505 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
11506 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
11507 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
11508 {0x14, AC_VERB_SET_CONNECT_SEL
, 0x00},
11510 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
11511 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
11512 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
11513 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00},
11514 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
11516 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
11517 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
11518 /* ADC, choose mic */
11519 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
11520 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
11521 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
11522 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
11523 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
11524 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
11525 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(5)},
11526 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(6)},
11527 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(7)},
11528 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(8)},
11532 /* mute/unmute internal speaker according to the hp jack and mute state */
11533 static void alc262_ultra_automute(struct hda_codec
*codec
)
11535 struct alc_spec
*spec
= codec
->spec
;
11539 /* auto-mute only when HP is used as HP */
11540 if (!spec
->cur_mux
[0]) {
11541 spec
->jack_present
= snd_hda_jack_detect(codec
, 0x15);
11542 if (spec
->jack_present
)
11543 mute
= HDA_AMP_MUTE
;
11545 /* mute/unmute internal speaker */
11546 snd_hda_codec_amp_stereo(codec
, 0x14, HDA_OUTPUT
, 0,
11547 HDA_AMP_MUTE
, mute
);
11548 /* mute/unmute HP */
11549 snd_hda_codec_amp_stereo(codec
, 0x15, HDA_OUTPUT
, 0,
11550 HDA_AMP_MUTE
, mute
? 0 : HDA_AMP_MUTE
);
11553 /* unsolicited event for HP jack sensing */
11554 static void alc262_ultra_unsol_event(struct hda_codec
*codec
,
11557 if ((res
>> 26) != ALC880_HP_EVENT
)
11559 alc262_ultra_automute(codec
);
11562 static struct hda_input_mux alc262_ultra_capture_source
= {
11566 { "Headphone", 0x7 },
11570 static int alc262_ultra_mux_enum_put(struct snd_kcontrol
*kcontrol
,
11571 struct snd_ctl_elem_value
*ucontrol
)
11573 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
11574 struct alc_spec
*spec
= codec
->spec
;
11577 ret
= alc_mux_enum_put(kcontrol
, ucontrol
);
11580 /* reprogram the HP pin as mic or HP according to the input source */
11581 snd_hda_codec_write_cache(codec
, 0x15, 0,
11582 AC_VERB_SET_PIN_WIDGET_CONTROL
,
11583 spec
->cur_mux
[0] ? PIN_VREF80
: PIN_HP
);
11584 alc262_ultra_automute(codec
); /* mute/unmute HP */
11588 static struct snd_kcontrol_new alc262_ultra_capture_mixer
[] = {
11589 HDA_CODEC_VOLUME("Capture Volume", 0x07, 0x0, HDA_INPUT
),
11590 HDA_CODEC_MUTE("Capture Switch", 0x07, 0x0, HDA_INPUT
),
11592 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
11593 .name
= "Capture Source",
11594 .info
= alc_mux_enum_info
,
11595 .get
= alc_mux_enum_get
,
11596 .put
= alc262_ultra_mux_enum_put
,
11599 .iface
= NID_MAPPING
,
11600 .name
= "Capture Source",
11601 .private_value
= 0x15,
11606 /* We use two mixers depending on the output pin; 0x16 is a mono output
11607 * and thus it's bound with a different mixer.
11608 * This function returns which mixer amp should be used.
11610 static int alc262_check_volbit(hda_nid_t nid
)
11614 else if (nid
== 0x16)
11620 static int alc262_add_out_vol_ctl(struct alc_spec
*spec
, hda_nid_t nid
,
11621 const char *pfx
, int *vbits
)
11626 vbit
= alc262_check_volbit(nid
);
11629 if (*vbits
& vbit
) /* a volume control for this mixer already there */
11633 val
= HDA_COMPOSE_AMP_VAL(0x0e, 2, 0, HDA_OUTPUT
);
11635 val
= HDA_COMPOSE_AMP_VAL(0x0c, 3, 0, HDA_OUTPUT
);
11636 return add_pb_vol_ctrl(spec
, ALC_CTL_WIDGET_VOL
, pfx
, val
);
11639 static int alc262_add_out_sw_ctl(struct alc_spec
*spec
, hda_nid_t nid
,
11647 val
= HDA_COMPOSE_AMP_VAL(nid
, 2, 0, HDA_OUTPUT
);
11649 val
= HDA_COMPOSE_AMP_VAL(nid
, 3, 0, HDA_OUTPUT
);
11650 return add_pb_sw_ctrl(spec
, ALC_CTL_WIDGET_MUTE
, pfx
, val
);
11653 /* add playback controls from the parsed DAC table */
11654 static int alc262_auto_create_multi_out_ctls(struct alc_spec
*spec
,
11655 const struct auto_pin_cfg
*cfg
)
11661 spec
->multiout
.num_dacs
= 1; /* only use one dac */
11662 spec
->multiout
.dac_nids
= spec
->private_dac_nids
;
11663 spec
->multiout
.dac_nids
[0] = 2;
11665 if (!cfg
->speaker_pins
[0] && !cfg
->hp_pins
[0])
11667 else if (cfg
->line_out_type
== AUTO_PIN_SPEAKER_OUT
)
11671 err
= alc262_add_out_sw_ctl(spec
, cfg
->line_out_pins
[0], pfx
);
11674 err
= alc262_add_out_sw_ctl(spec
, cfg
->speaker_pins
[0], "Speaker");
11677 err
= alc262_add_out_sw_ctl(spec
, cfg
->hp_pins
[0], "Headphone");
11681 vbits
= alc262_check_volbit(cfg
->line_out_pins
[0]) |
11682 alc262_check_volbit(cfg
->speaker_pins
[0]) |
11683 alc262_check_volbit(cfg
->hp_pins
[0]);
11684 if (vbits
== 1 || vbits
== 2)
11685 pfx
= "Master"; /* only one mixer is used */
11686 else if (cfg
->line_out_type
== AUTO_PIN_SPEAKER_OUT
)
11691 err
= alc262_add_out_vol_ctl(spec
, cfg
->line_out_pins
[0], pfx
, &vbits
);
11694 err
= alc262_add_out_vol_ctl(spec
, cfg
->speaker_pins
[0], "Speaker",
11698 err
= alc262_add_out_vol_ctl(spec
, cfg
->hp_pins
[0], "Headphone",
11705 #define alc262_auto_create_input_ctls \
11706 alc882_auto_create_input_ctls
11709 * generic initialization of ADC, input mixers and output mixers
11711 static struct hda_verb alc262_volume_init_verbs
[] = {
11713 * Unmute ADC0-2 and set the default input to mic-in
11715 {0x07, AC_VERB_SET_CONNECT_SEL
, 0x00},
11716 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
11717 {0x08, AC_VERB_SET_CONNECT_SEL
, 0x00},
11718 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
11719 {0x09, AC_VERB_SET_CONNECT_SEL
, 0x00},
11720 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
11722 /* Mute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
11724 * Note: PASD motherboards uses the Line In 2 as the input for
11725 * front panel mic (mic 2)
11727 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
11728 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
11729 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
11730 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
11731 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
11732 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
11735 * Set up output mixers (0x0c - 0x0f)
11737 /* set vol=0 to output mixers */
11738 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
11739 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
11740 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
11742 /* set up input amps for analog loopback */
11743 /* Amp Indices: DAC = 0, mixer = 1 */
11744 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
11745 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
11746 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
11747 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
11748 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
11749 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
11751 /* FIXME: use matrix-type input source selection */
11752 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
11753 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
11754 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
11755 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x03 << 8))},
11756 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x02 << 8))},
11757 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x04 << 8))},
11759 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
11760 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x03 << 8))},
11761 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x02 << 8))},
11762 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x04 << 8))},
11764 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
11765 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x03 << 8))},
11766 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x02 << 8))},
11767 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x04 << 8))},
11772 static struct hda_verb alc262_HP_BPC_init_verbs
[] = {
11774 * Unmute ADC0-2 and set the default input to mic-in
11776 {0x07, AC_VERB_SET_CONNECT_SEL
, 0x00},
11777 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
11778 {0x08, AC_VERB_SET_CONNECT_SEL
, 0x00},
11779 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
11780 {0x09, AC_VERB_SET_CONNECT_SEL
, 0x00},
11781 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
11783 /* Mute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
11785 * Note: PASD motherboards uses the Line In 2 as the input for
11786 * front panel mic (mic 2)
11788 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
11789 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
11790 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
11791 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
11792 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
11793 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
11794 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(5)},
11795 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(6)},
11798 * Set up output mixers (0x0c - 0x0e)
11800 /* set vol=0 to output mixers */
11801 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
11802 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
11803 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
11805 /* set up input amps for analog loopback */
11806 /* Amp Indices: DAC = 0, mixer = 1 */
11807 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
11808 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
11809 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
11810 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
11811 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
11812 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
11814 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
11815 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
11816 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
11818 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
11819 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
11821 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0x00},
11822 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00},
11824 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20},
11825 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24},
11826 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24},
11827 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20},
11828 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20},
11830 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, 0x7000 },
11831 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, 0x7000 },
11832 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, 0x7000 },
11833 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, 0x7000 },
11834 {0x1c, AC_VERB_SET_AMP_GAIN_MUTE
, 0x7000 },
11835 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE
, 0x7000 },
11838 /* FIXME: use matrix-type input source selection */
11839 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 0b, 12 */
11840 /* Input mixer1: only unmute Mic */
11841 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
11842 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x01 << 8))},
11843 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x02 << 8))},
11844 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x03 << 8))},
11845 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x04 << 8))},
11846 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x05 << 8))},
11847 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x06 << 8))},
11848 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x07 << 8))},
11849 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x08 << 8))},
11851 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
11852 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x01 << 8))},
11853 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x02 << 8))},
11854 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x03 << 8))},
11855 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x04 << 8))},
11856 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x05 << 8))},
11857 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x06 << 8))},
11858 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x07 << 8))},
11859 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x08 << 8))},
11861 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
11862 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x01 << 8))},
11863 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x02 << 8))},
11864 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x03 << 8))},
11865 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x04 << 8))},
11866 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x05 << 8))},
11867 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x06 << 8))},
11868 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x07 << 8))},
11869 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x08 << 8))},
11871 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
11876 static struct hda_verb alc262_HP_BPC_WildWest_init_verbs
[] = {
11878 * Unmute ADC0-2 and set the default input to mic-in
11880 {0x07, AC_VERB_SET_CONNECT_SEL
, 0x00},
11881 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
11882 {0x08, AC_VERB_SET_CONNECT_SEL
, 0x00},
11883 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
11884 {0x09, AC_VERB_SET_CONNECT_SEL
, 0x00},
11885 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
11887 /* Mute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
11889 * Note: PASD motherboards uses the Line In 2 as the input for front
11890 * panel mic (mic 2)
11892 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
11893 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
11894 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
11895 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
11896 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
11897 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
11898 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(5)},
11899 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(6)},
11900 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(7)},
11902 * Set up output mixers (0x0c - 0x0e)
11904 /* set vol=0 to output mixers */
11905 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
11906 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
11907 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
11909 /* set up input amps for analog loopback */
11910 /* Amp Indices: DAC = 0, mixer = 1 */
11911 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
11912 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
11913 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
11914 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
11915 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
11916 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
11919 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
}, /* HP */
11920 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
}, /* Mono */
11921 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
}, /* rear MIC */
11922 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
}, /* Line in */
11923 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
}, /* Front MIC */
11924 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
}, /* Line out */
11925 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
}, /* CD in */
11927 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
11928 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
11930 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0x00},
11931 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x01},
11933 /* {0x14, AC_VERB_SET_AMP_GAIN_MUTE, 0x7023 }, */
11934 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, 0x7000 },
11935 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, 0x7000 },
11936 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, 0x7023 },
11937 {0x1c, AC_VERB_SET_AMP_GAIN_MUTE
, 0x7000 },
11938 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE
, 0x7000 },
11940 /* FIXME: use matrix-type input source selection */
11941 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
11942 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
11943 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))}, /*rear MIC*/
11944 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x01 << 8))}, /*Line in*/
11945 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x02 << 8))}, /*F MIC*/
11946 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x03 << 8))}, /*Front*/
11947 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x04 << 8))}, /*CD*/
11948 /* {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x06 << 8))}, */
11949 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x07 << 8))}, /*HP*/
11951 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
11952 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x01 << 8))},
11953 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x02 << 8))},
11954 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x03 << 8))},
11955 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x04 << 8))},
11956 /* {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x06 << 8))}, */
11957 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x07 << 8))},
11959 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
11960 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x01 << 8))},
11961 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x02 << 8))},
11962 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x03 << 8))},
11963 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x04 << 8))},
11964 /* {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x06 << 8))}, */
11965 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x07 << 8))},
11967 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
11972 static struct hda_verb alc262_toshiba_rx1_unsol_verbs
[] = {
11974 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
}, /* Front Speaker */
11975 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
11976 {0x14, AC_VERB_SET_CONNECT_SEL
, 0x01},
11978 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
}, /* MIC jack */
11979 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
}, /* Front MIC */
11980 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0) },
11981 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0) },
11983 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
}, /* HP jack */
11984 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00},
11985 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
11990 #ifdef CONFIG_SND_HDA_POWER_SAVE
11991 #define alc262_loopbacks alc880_loopbacks
11994 /* pcm configuration: identical with ALC880 */
11995 #define alc262_pcm_analog_playback alc880_pcm_analog_playback
11996 #define alc262_pcm_analog_capture alc880_pcm_analog_capture
11997 #define alc262_pcm_digital_playback alc880_pcm_digital_playback
11998 #define alc262_pcm_digital_capture alc880_pcm_digital_capture
12001 * BIOS auto configuration
12003 static int alc262_parse_auto_config(struct hda_codec
*codec
)
12005 struct alc_spec
*spec
= codec
->spec
;
12007 static hda_nid_t alc262_ignore
[] = { 0x1d, 0 };
12009 err
= snd_hda_parse_pin_def_config(codec
, &spec
->autocfg
,
12013 if (!spec
->autocfg
.line_outs
) {
12014 if (spec
->autocfg
.dig_outs
|| spec
->autocfg
.dig_in_pin
) {
12015 spec
->multiout
.max_channels
= 2;
12016 spec
->no_analog
= 1;
12019 return 0; /* can't find valid BIOS pin config */
12021 err
= alc262_auto_create_multi_out_ctls(spec
, &spec
->autocfg
);
12024 err
= alc262_auto_create_input_ctls(codec
, &spec
->autocfg
);
12028 spec
->multiout
.max_channels
= spec
->multiout
.num_dacs
* 2;
12031 if (spec
->autocfg
.dig_outs
) {
12032 spec
->multiout
.dig_out_nid
= ALC262_DIGOUT_NID
;
12033 spec
->dig_out_type
= spec
->autocfg
.dig_out_type
[0];
12035 if (spec
->autocfg
.dig_in_pin
)
12036 spec
->dig_in_nid
= ALC262_DIGIN_NID
;
12038 if (spec
->kctls
.list
)
12039 add_mixer(spec
, spec
->kctls
.list
);
12041 add_verb(spec
, alc262_volume_init_verbs
);
12042 spec
->num_mux_defs
= 1;
12043 spec
->input_mux
= &spec
->private_imux
[0];
12045 err
= alc_auto_add_mic_boost(codec
);
12049 alc_ssid_check(codec
, 0x15, 0x1b, 0x14, 0);
12054 #define alc262_auto_init_multi_out alc882_auto_init_multi_out
12055 #define alc262_auto_init_hp_out alc882_auto_init_hp_out
12056 #define alc262_auto_init_analog_input alc882_auto_init_analog_input
12057 #define alc262_auto_init_input_src alc882_auto_init_input_src
12060 /* init callback for auto-configuration model -- overriding the default init */
12061 static void alc262_auto_init(struct hda_codec
*codec
)
12063 struct alc_spec
*spec
= codec
->spec
;
12064 alc262_auto_init_multi_out(codec
);
12065 alc262_auto_init_hp_out(codec
);
12066 alc262_auto_init_analog_input(codec
);
12067 alc262_auto_init_input_src(codec
);
12068 if (spec
->unsol_event
)
12069 alc_inithook(codec
);
12073 * configuration and preset
12075 static const char *alc262_models
[ALC262_MODEL_LAST
] = {
12076 [ALC262_BASIC
] = "basic",
12077 [ALC262_HIPPO
] = "hippo",
12078 [ALC262_HIPPO_1
] = "hippo_1",
12079 [ALC262_FUJITSU
] = "fujitsu",
12080 [ALC262_HP_BPC
] = "hp-bpc",
12081 [ALC262_HP_BPC_D7000_WL
]= "hp-bpc-d7000",
12082 [ALC262_HP_TC_T5735
] = "hp-tc-t5735",
12083 [ALC262_HP_RP5700
] = "hp-rp5700",
12084 [ALC262_BENQ_ED8
] = "benq",
12085 [ALC262_BENQ_T31
] = "benq-t31",
12086 [ALC262_SONY_ASSAMD
] = "sony-assamd",
12087 [ALC262_TOSHIBA_S06
] = "toshiba-s06",
12088 [ALC262_TOSHIBA_RX1
] = "toshiba-rx1",
12089 [ALC262_ULTRA
] = "ultra",
12090 [ALC262_LENOVO_3000
] = "lenovo-3000",
12091 [ALC262_NEC
] = "nec",
12092 [ALC262_TYAN
] = "tyan",
12093 [ALC262_AUTO
] = "auto",
12096 static struct snd_pci_quirk alc262_cfg_tbl
[] = {
12097 SND_PCI_QUIRK(0x1002, 0x437b, "Hippo", ALC262_HIPPO
),
12098 SND_PCI_QUIRK(0x1033, 0x8895, "NEC Versa S9100", ALC262_NEC
),
12099 SND_PCI_QUIRK_MASK(0x103c, 0xff00, 0x1200, "HP xw series",
12101 SND_PCI_QUIRK_MASK(0x103c, 0xff00, 0x1300, "HP xw series",
12103 SND_PCI_QUIRK_MASK(0x103c, 0xff00, 0x1700, "HP xw series",
12105 SND_PCI_QUIRK(0x103c, 0x2800, "HP D7000", ALC262_HP_BPC_D7000_WL
),
12106 SND_PCI_QUIRK(0x103c, 0x2801, "HP D7000", ALC262_HP_BPC_D7000_WF
),
12107 SND_PCI_QUIRK(0x103c, 0x2802, "HP D7000", ALC262_HP_BPC_D7000_WL
),
12108 SND_PCI_QUIRK(0x103c, 0x2803, "HP D7000", ALC262_HP_BPC_D7000_WF
),
12109 SND_PCI_QUIRK(0x103c, 0x2804, "HP D7000", ALC262_HP_BPC_D7000_WL
),
12110 SND_PCI_QUIRK(0x103c, 0x2805, "HP D7000", ALC262_HP_BPC_D7000_WF
),
12111 SND_PCI_QUIRK(0x103c, 0x2806, "HP D7000", ALC262_HP_BPC_D7000_WL
),
12112 SND_PCI_QUIRK(0x103c, 0x2807, "HP D7000", ALC262_HP_BPC_D7000_WF
),
12113 SND_PCI_QUIRK(0x103c, 0x280c, "HP xw4400", ALC262_HP_BPC
),
12114 SND_PCI_QUIRK(0x103c, 0x3014, "HP xw6400", ALC262_HP_BPC
),
12115 SND_PCI_QUIRK(0x103c, 0x3015, "HP xw8400", ALC262_HP_BPC
),
12116 SND_PCI_QUIRK(0x103c, 0x302f, "HP Thin Client T5735",
12117 ALC262_HP_TC_T5735
),
12118 SND_PCI_QUIRK(0x103c, 0x2817, "HP RP5700", ALC262_HP_RP5700
),
12119 SND_PCI_QUIRK(0x104d, 0x1f00, "Sony ASSAMD", ALC262_SONY_ASSAMD
),
12120 SND_PCI_QUIRK(0x104d, 0x8203, "Sony UX-90", ALC262_HIPPO
),
12121 SND_PCI_QUIRK(0x104d, 0x820f, "Sony ASSAMD", ALC262_SONY_ASSAMD
),
12122 SND_PCI_QUIRK(0x104d, 0x9016, "Sony VAIO", ALC262_AUTO
), /* dig-only */
12123 SND_PCI_QUIRK(0x104d, 0x9025, "Sony VAIO Z21MN", ALC262_TOSHIBA_S06
),
12124 SND_PCI_QUIRK(0x104d, 0x9035, "Sony VAIO VGN-FW170J", ALC262_AUTO
),
12125 SND_PCI_QUIRK(0x104d, 0x9047, "Sony VAIO Type G", ALC262_AUTO
),
12126 #if 0 /* disable the quirk since model=auto works better in recent versions */
12127 SND_PCI_QUIRK_MASK(0x104d, 0xff00, 0x9000, "Sony VAIO",
12128 ALC262_SONY_ASSAMD
),
12130 SND_PCI_QUIRK(0x1179, 0x0001, "Toshiba dynabook SS RX1",
12131 ALC262_TOSHIBA_RX1
),
12132 SND_PCI_QUIRK(0x1179, 0xff7b, "Toshiba S06", ALC262_TOSHIBA_S06
),
12133 SND_PCI_QUIRK(0x10cf, 0x1397, "Fujitsu", ALC262_FUJITSU
),
12134 SND_PCI_QUIRK(0x10cf, 0x142d, "Fujitsu Lifebook E8410", ALC262_FUJITSU
),
12135 SND_PCI_QUIRK(0x10f1, 0x2915, "Tyan Thunder n6650W", ALC262_TYAN
),
12136 SND_PCI_QUIRK_MASK(0x144d, 0xff00, 0xc032, "Samsung Q1",
12138 SND_PCI_QUIRK(0x144d, 0xc510, "Samsung Q45", ALC262_HIPPO
),
12139 SND_PCI_QUIRK(0x17aa, 0x384e, "Lenovo 3000 y410", ALC262_LENOVO_3000
),
12140 SND_PCI_QUIRK(0x17ff, 0x0560, "Benq ED8", ALC262_BENQ_ED8
),
12141 SND_PCI_QUIRK(0x17ff, 0x058d, "Benq T31-16", ALC262_BENQ_T31
),
12142 SND_PCI_QUIRK(0x17ff, 0x058f, "Benq Hippo", ALC262_HIPPO_1
),
12146 static struct alc_config_preset alc262_presets
[] = {
12148 .mixers
= { alc262_base_mixer
},
12149 .init_verbs
= { alc262_init_verbs
},
12150 .num_dacs
= ARRAY_SIZE(alc262_dac_nids
),
12151 .dac_nids
= alc262_dac_nids
,
12153 .num_channel_mode
= ARRAY_SIZE(alc262_modes
),
12154 .channel_mode
= alc262_modes
,
12155 .input_mux
= &alc262_capture_source
,
12158 .mixers
= { alc262_hippo_mixer
},
12159 .init_verbs
= { alc262_init_verbs
, alc_hp15_unsol_verbs
},
12160 .num_dacs
= ARRAY_SIZE(alc262_dac_nids
),
12161 .dac_nids
= alc262_dac_nids
,
12163 .dig_out_nid
= ALC262_DIGOUT_NID
,
12164 .num_channel_mode
= ARRAY_SIZE(alc262_modes
),
12165 .channel_mode
= alc262_modes
,
12166 .input_mux
= &alc262_capture_source
,
12167 .unsol_event
= alc262_hippo_unsol_event
,
12168 .setup
= alc262_hippo_setup
,
12169 .init_hook
= alc262_hippo_automute
,
12171 [ALC262_HIPPO_1
] = {
12172 .mixers
= { alc262_hippo1_mixer
},
12173 .init_verbs
= { alc262_init_verbs
, alc262_hippo1_unsol_verbs
},
12174 .num_dacs
= ARRAY_SIZE(alc262_dac_nids
),
12175 .dac_nids
= alc262_dac_nids
,
12177 .dig_out_nid
= ALC262_DIGOUT_NID
,
12178 .num_channel_mode
= ARRAY_SIZE(alc262_modes
),
12179 .channel_mode
= alc262_modes
,
12180 .input_mux
= &alc262_capture_source
,
12181 .unsol_event
= alc262_hippo_unsol_event
,
12182 .setup
= alc262_hippo1_setup
,
12183 .init_hook
= alc262_hippo_automute
,
12185 [ALC262_FUJITSU
] = {
12186 .mixers
= { alc262_fujitsu_mixer
},
12187 .init_verbs
= { alc262_init_verbs
, alc262_EAPD_verbs
,
12188 alc262_fujitsu_unsol_verbs
},
12189 .num_dacs
= ARRAY_SIZE(alc262_dac_nids
),
12190 .dac_nids
= alc262_dac_nids
,
12192 .dig_out_nid
= ALC262_DIGOUT_NID
,
12193 .num_channel_mode
= ARRAY_SIZE(alc262_modes
),
12194 .channel_mode
= alc262_modes
,
12195 .input_mux
= &alc262_fujitsu_capture_source
,
12196 .unsol_event
= alc262_fujitsu_unsol_event
,
12197 .init_hook
= alc262_fujitsu_init_hook
,
12199 [ALC262_HP_BPC
] = {
12200 .mixers
= { alc262_HP_BPC_mixer
},
12201 .init_verbs
= { alc262_HP_BPC_init_verbs
},
12202 .num_dacs
= ARRAY_SIZE(alc262_dac_nids
),
12203 .dac_nids
= alc262_dac_nids
,
12205 .num_channel_mode
= ARRAY_SIZE(alc262_modes
),
12206 .channel_mode
= alc262_modes
,
12207 .input_mux
= &alc262_HP_capture_source
,
12208 .unsol_event
= alc262_hp_bpc_unsol_event
,
12209 .init_hook
= alc262_hp_bpc_automute
,
12211 [ALC262_HP_BPC_D7000_WF
] = {
12212 .mixers
= { alc262_HP_BPC_WildWest_mixer
},
12213 .init_verbs
= { alc262_HP_BPC_WildWest_init_verbs
},
12214 .num_dacs
= ARRAY_SIZE(alc262_dac_nids
),
12215 .dac_nids
= alc262_dac_nids
,
12217 .num_channel_mode
= ARRAY_SIZE(alc262_modes
),
12218 .channel_mode
= alc262_modes
,
12219 .input_mux
= &alc262_HP_D7000_capture_source
,
12220 .unsol_event
= alc262_hp_wildwest_unsol_event
,
12221 .init_hook
= alc262_hp_wildwest_automute
,
12223 [ALC262_HP_BPC_D7000_WL
] = {
12224 .mixers
= { alc262_HP_BPC_WildWest_mixer
,
12225 alc262_HP_BPC_WildWest_option_mixer
},
12226 .init_verbs
= { alc262_HP_BPC_WildWest_init_verbs
},
12227 .num_dacs
= ARRAY_SIZE(alc262_dac_nids
),
12228 .dac_nids
= alc262_dac_nids
,
12230 .num_channel_mode
= ARRAY_SIZE(alc262_modes
),
12231 .channel_mode
= alc262_modes
,
12232 .input_mux
= &alc262_HP_D7000_capture_source
,
12233 .unsol_event
= alc262_hp_wildwest_unsol_event
,
12234 .init_hook
= alc262_hp_wildwest_automute
,
12236 [ALC262_HP_TC_T5735
] = {
12237 .mixers
= { alc262_hp_t5735_mixer
},
12238 .init_verbs
= { alc262_init_verbs
, alc262_hp_t5735_verbs
},
12239 .num_dacs
= ARRAY_SIZE(alc262_dac_nids
),
12240 .dac_nids
= alc262_dac_nids
,
12242 .num_channel_mode
= ARRAY_SIZE(alc262_modes
),
12243 .channel_mode
= alc262_modes
,
12244 .input_mux
= &alc262_capture_source
,
12245 .unsol_event
= alc_sku_unsol_event
,
12246 .setup
= alc262_hp_t5735_setup
,
12247 .init_hook
= alc_inithook
,
12249 [ALC262_HP_RP5700
] = {
12250 .mixers
= { alc262_hp_rp5700_mixer
},
12251 .init_verbs
= { alc262_init_verbs
, alc262_hp_rp5700_verbs
},
12252 .num_dacs
= ARRAY_SIZE(alc262_dac_nids
),
12253 .dac_nids
= alc262_dac_nids
,
12254 .num_channel_mode
= ARRAY_SIZE(alc262_modes
),
12255 .channel_mode
= alc262_modes
,
12256 .input_mux
= &alc262_hp_rp5700_capture_source
,
12258 [ALC262_BENQ_ED8
] = {
12259 .mixers
= { alc262_base_mixer
},
12260 .init_verbs
= { alc262_init_verbs
, alc262_EAPD_verbs
},
12261 .num_dacs
= ARRAY_SIZE(alc262_dac_nids
),
12262 .dac_nids
= alc262_dac_nids
,
12264 .num_channel_mode
= ARRAY_SIZE(alc262_modes
),
12265 .channel_mode
= alc262_modes
,
12266 .input_mux
= &alc262_capture_source
,
12268 [ALC262_SONY_ASSAMD
] = {
12269 .mixers
= { alc262_sony_mixer
},
12270 .init_verbs
= { alc262_init_verbs
, alc262_sony_unsol_verbs
},
12271 .num_dacs
= ARRAY_SIZE(alc262_dac_nids
),
12272 .dac_nids
= alc262_dac_nids
,
12274 .num_channel_mode
= ARRAY_SIZE(alc262_modes
),
12275 .channel_mode
= alc262_modes
,
12276 .input_mux
= &alc262_capture_source
,
12277 .unsol_event
= alc262_hippo_unsol_event
,
12278 .setup
= alc262_hippo_setup
,
12279 .init_hook
= alc262_hippo_automute
,
12281 [ALC262_BENQ_T31
] = {
12282 .mixers
= { alc262_benq_t31_mixer
},
12283 .init_verbs
= { alc262_init_verbs
, alc262_benq_t31_EAPD_verbs
,
12284 alc_hp15_unsol_verbs
},
12285 .num_dacs
= ARRAY_SIZE(alc262_dac_nids
),
12286 .dac_nids
= alc262_dac_nids
,
12288 .num_channel_mode
= ARRAY_SIZE(alc262_modes
),
12289 .channel_mode
= alc262_modes
,
12290 .input_mux
= &alc262_capture_source
,
12291 .unsol_event
= alc262_hippo_unsol_event
,
12292 .setup
= alc262_hippo_setup
,
12293 .init_hook
= alc262_hippo_automute
,
12296 .mixers
= { alc262_ultra_mixer
},
12297 .cap_mixer
= alc262_ultra_capture_mixer
,
12298 .init_verbs
= { alc262_ultra_verbs
},
12299 .num_dacs
= ARRAY_SIZE(alc262_dac_nids
),
12300 .dac_nids
= alc262_dac_nids
,
12301 .num_channel_mode
= ARRAY_SIZE(alc262_modes
),
12302 .channel_mode
= alc262_modes
,
12303 .input_mux
= &alc262_ultra_capture_source
,
12304 .adc_nids
= alc262_adc_nids
, /* ADC0 */
12305 .capsrc_nids
= alc262_capsrc_nids
,
12306 .num_adc_nids
= 1, /* single ADC */
12307 .unsol_event
= alc262_ultra_unsol_event
,
12308 .init_hook
= alc262_ultra_automute
,
12310 [ALC262_LENOVO_3000
] = {
12311 .mixers
= { alc262_lenovo_3000_mixer
},
12312 .init_verbs
= { alc262_init_verbs
, alc262_EAPD_verbs
,
12313 alc262_lenovo_3000_unsol_verbs
,
12314 alc262_lenovo_3000_init_verbs
},
12315 .num_dacs
= ARRAY_SIZE(alc262_dac_nids
),
12316 .dac_nids
= alc262_dac_nids
,
12318 .dig_out_nid
= ALC262_DIGOUT_NID
,
12319 .num_channel_mode
= ARRAY_SIZE(alc262_modes
),
12320 .channel_mode
= alc262_modes
,
12321 .input_mux
= &alc262_fujitsu_capture_source
,
12322 .unsol_event
= alc262_lenovo_3000_unsol_event
,
12325 .mixers
= { alc262_nec_mixer
},
12326 .init_verbs
= { alc262_nec_verbs
},
12327 .num_dacs
= ARRAY_SIZE(alc262_dac_nids
),
12328 .dac_nids
= alc262_dac_nids
,
12330 .num_channel_mode
= ARRAY_SIZE(alc262_modes
),
12331 .channel_mode
= alc262_modes
,
12332 .input_mux
= &alc262_capture_source
,
12334 [ALC262_TOSHIBA_S06
] = {
12335 .mixers
= { alc262_toshiba_s06_mixer
},
12336 .init_verbs
= { alc262_init_verbs
, alc262_toshiba_s06_verbs
,
12337 alc262_eapd_verbs
},
12338 .num_dacs
= ARRAY_SIZE(alc262_dac_nids
),
12339 .capsrc_nids
= alc262_dmic_capsrc_nids
,
12340 .dac_nids
= alc262_dac_nids
,
12341 .adc_nids
= alc262_dmic_adc_nids
, /* ADC0 */
12342 .num_adc_nids
= 1, /* single ADC */
12343 .dig_out_nid
= ALC262_DIGOUT_NID
,
12344 .num_channel_mode
= ARRAY_SIZE(alc262_modes
),
12345 .channel_mode
= alc262_modes
,
12346 .unsol_event
= alc_sku_unsol_event
,
12347 .setup
= alc262_toshiba_s06_setup
,
12348 .init_hook
= alc_inithook
,
12350 [ALC262_TOSHIBA_RX1
] = {
12351 .mixers
= { alc262_toshiba_rx1_mixer
},
12352 .init_verbs
= { alc262_init_verbs
, alc262_toshiba_rx1_unsol_verbs
},
12353 .num_dacs
= ARRAY_SIZE(alc262_dac_nids
),
12354 .dac_nids
= alc262_dac_nids
,
12356 .num_channel_mode
= ARRAY_SIZE(alc262_modes
),
12357 .channel_mode
= alc262_modes
,
12358 .input_mux
= &alc262_capture_source
,
12359 .unsol_event
= alc262_hippo_unsol_event
,
12360 .setup
= alc262_hippo_setup
,
12361 .init_hook
= alc262_hippo_automute
,
12364 .mixers
= { alc262_tyan_mixer
},
12365 .init_verbs
= { alc262_init_verbs
, alc262_tyan_verbs
},
12366 .num_dacs
= ARRAY_SIZE(alc262_dac_nids
),
12367 .dac_nids
= alc262_dac_nids
,
12369 .dig_out_nid
= ALC262_DIGOUT_NID
,
12370 .num_channel_mode
= ARRAY_SIZE(alc262_modes
),
12371 .channel_mode
= alc262_modes
,
12372 .input_mux
= &alc262_capture_source
,
12373 .unsol_event
= alc_automute_amp_unsol_event
,
12374 .setup
= alc262_tyan_setup
,
12375 .init_hook
= alc_automute_amp
,
12379 static int patch_alc262(struct hda_codec
*codec
)
12381 struct alc_spec
*spec
;
12385 spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
12389 codec
->spec
= spec
;
12391 /* pshou 07/11/05 set a zero PCM sample to DAC when FIFO is
12396 snd_hda_codec_write(codec
, 0x1a, 0, AC_VERB_SET_COEF_INDEX
, 7);
12397 tmp
= snd_hda_codec_read(codec
, 0x20, 0, AC_VERB_GET_PROC_COEF
, 0);
12398 snd_hda_codec_write(codec
, 0x1a, 0, AC_VERB_SET_COEF_INDEX
, 7);
12399 snd_hda_codec_write(codec
, 0x1a, 0, AC_VERB_SET_PROC_COEF
, tmp
| 0x80);
12402 alc_auto_parse_customize_define(codec
);
12404 alc_fix_pll_init(codec
, 0x20, 0x0a, 10);
12406 board_config
= snd_hda_check_board_config(codec
, ALC262_MODEL_LAST
,
12410 if (board_config
< 0) {
12411 printk(KERN_INFO
"hda_codec: %s: BIOS auto-probing.\n",
12413 board_config
= ALC262_AUTO
;
12416 if (board_config
== ALC262_AUTO
) {
12417 /* automatic parse from the BIOS config */
12418 err
= alc262_parse_auto_config(codec
);
12424 "hda_codec: Cannot set up configuration "
12425 "from BIOS. Using base mode...\n");
12426 board_config
= ALC262_BASIC
;
12430 if (!spec
->no_analog
) {
12431 err
= snd_hda_attach_beep_device(codec
, 0x1);
12438 if (board_config
!= ALC262_AUTO
)
12439 setup_preset(codec
, &alc262_presets
[board_config
]);
12441 spec
->stream_analog_playback
= &alc262_pcm_analog_playback
;
12442 spec
->stream_analog_capture
= &alc262_pcm_analog_capture
;
12444 spec
->stream_digital_playback
= &alc262_pcm_digital_playback
;
12445 spec
->stream_digital_capture
= &alc262_pcm_digital_capture
;
12447 if (!spec
->adc_nids
&& spec
->input_mux
) {
12449 /* check whether the digital-mic has to be supported */
12450 for (i
= 0; i
< spec
->input_mux
->num_items
; i
++) {
12451 if (spec
->input_mux
->items
[i
].index
>= 9)
12454 if (i
< spec
->input_mux
->num_items
) {
12455 /* use only ADC0 */
12456 spec
->adc_nids
= alc262_dmic_adc_nids
;
12457 spec
->num_adc_nids
= 1;
12458 spec
->capsrc_nids
= alc262_dmic_capsrc_nids
;
12460 /* all analog inputs */
12461 /* check whether NID 0x07 is valid */
12462 unsigned int wcap
= get_wcaps(codec
, 0x07);
12465 wcap
= get_wcaps_type(wcap
);
12466 if (wcap
!= AC_WID_AUD_IN
) {
12467 spec
->adc_nids
= alc262_adc_nids_alt
;
12468 spec
->num_adc_nids
=
12469 ARRAY_SIZE(alc262_adc_nids_alt
);
12470 spec
->capsrc_nids
= alc262_capsrc_nids_alt
;
12472 spec
->adc_nids
= alc262_adc_nids
;
12473 spec
->num_adc_nids
=
12474 ARRAY_SIZE(alc262_adc_nids
);
12475 spec
->capsrc_nids
= alc262_capsrc_nids
;
12479 if (!spec
->cap_mixer
&& !spec
->no_analog
)
12480 set_capture_mixer(codec
);
12481 if (!spec
->no_analog
&& spec
->cdefine
.enable_pcbeep
)
12482 set_beep_amp(spec
, 0x0b, 0x05, HDA_INPUT
);
12484 spec
->vmaster_nid
= 0x0c;
12486 codec
->patch_ops
= alc_patch_ops
;
12487 if (board_config
== ALC262_AUTO
)
12488 spec
->init_hook
= alc262_auto_init
;
12489 #ifdef CONFIG_SND_HDA_POWER_SAVE
12490 if (!spec
->loopback
.amplist
)
12491 spec
->loopback
.amplist
= alc262_loopbacks
;
12498 * ALC268 channel source setting (2 channel)
12500 #define ALC268_DIGOUT_NID ALC880_DIGOUT_NID
12501 #define alc268_modes alc260_modes
12503 static hda_nid_t alc268_dac_nids
[2] = {
12508 static hda_nid_t alc268_adc_nids
[2] = {
12513 static hda_nid_t alc268_adc_nids_alt
[1] = {
12518 static hda_nid_t alc268_capsrc_nids
[2] = { 0x23, 0x24 };
12520 static struct snd_kcontrol_new alc268_base_mixer
[] = {
12521 /* output mixer control */
12522 HDA_CODEC_VOLUME("Front Playback Volume", 0x2, 0x0, HDA_OUTPUT
),
12523 HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
12524 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x3, 0x0, HDA_OUTPUT
),
12525 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
12526 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
12527 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT
),
12528 HDA_CODEC_VOLUME("Line In Boost", 0x1a, 0, HDA_INPUT
),
12532 static struct snd_kcontrol_new alc268_toshiba_mixer
[] = {
12533 /* output mixer control */
12534 HDA_CODEC_VOLUME("Front Playback Volume", 0x2, 0x0, HDA_OUTPUT
),
12535 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x3, 0x0, HDA_OUTPUT
),
12536 ALC262_HIPPO_MASTER_SWITCH
,
12537 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
12538 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT
),
12539 HDA_CODEC_VOLUME("Line In Boost", 0x1a, 0, HDA_INPUT
),
12543 /* bind Beep switches of both NID 0x0f and 0x10 */
12544 static struct hda_bind_ctls alc268_bind_beep_sw
= {
12545 .ops
= &snd_hda_bind_sw
,
12547 HDA_COMPOSE_AMP_VAL(0x0f, 3, 1, HDA_INPUT
),
12548 HDA_COMPOSE_AMP_VAL(0x10, 3, 1, HDA_INPUT
),
12553 static struct snd_kcontrol_new alc268_beep_mixer
[] = {
12554 HDA_CODEC_VOLUME("Beep Playback Volume", 0x1d, 0x0, HDA_INPUT
),
12555 HDA_BIND_SW("Beep Playback Switch", &alc268_bind_beep_sw
),
12559 static struct hda_verb alc268_eapd_verbs
[] = {
12560 {0x14, AC_VERB_SET_EAPD_BTLENABLE
, 2},
12561 {0x15, AC_VERB_SET_EAPD_BTLENABLE
, 2},
12565 /* Toshiba specific */
12566 static struct hda_verb alc268_toshiba_verbs
[] = {
12567 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
12571 /* Acer specific */
12572 /* bind volumes of both NID 0x02 and 0x03 */
12573 static struct hda_bind_ctls alc268_acer_bind_master_vol
= {
12574 .ops
= &snd_hda_bind_vol
,
12576 HDA_COMPOSE_AMP_VAL(0x02, 3, 0, HDA_OUTPUT
),
12577 HDA_COMPOSE_AMP_VAL(0x03, 3, 0, HDA_OUTPUT
),
12582 /* mute/unmute internal speaker according to the hp jack and mute state */
12583 static void alc268_acer_automute(struct hda_codec
*codec
, int force
)
12585 struct alc_spec
*spec
= codec
->spec
;
12588 if (force
|| !spec
->sense_updated
) {
12589 spec
->jack_present
= snd_hda_jack_detect(codec
, 0x14);
12590 spec
->sense_updated
= 1;
12592 if (spec
->jack_present
)
12593 mute
= HDA_AMP_MUTE
; /* mute internal speaker */
12594 else /* unmute internal speaker if necessary */
12595 mute
= snd_hda_codec_amp_read(codec
, 0x14, 0, HDA_OUTPUT
, 0);
12596 snd_hda_codec_amp_stereo(codec
, 0x15, HDA_OUTPUT
, 0,
12597 HDA_AMP_MUTE
, mute
);
12601 /* bind hp and internal speaker mute (with plug check) */
12602 static int alc268_acer_master_sw_put(struct snd_kcontrol
*kcontrol
,
12603 struct snd_ctl_elem_value
*ucontrol
)
12605 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
12606 long *valp
= ucontrol
->value
.integer
.value
;
12609 change
= amp_stereo_mute_update(codec
, 0x14, HDA_OUTPUT
, 0, valp
);
12611 alc268_acer_automute(codec
, 0);
12615 static struct snd_kcontrol_new alc268_acer_aspire_one_mixer
[] = {
12616 /* output mixer control */
12617 HDA_BIND_VOL("Master Playback Volume", &alc268_acer_bind_master_vol
),
12619 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
12620 .name
= "Master Playback Switch",
12621 .subdevice
= HDA_SUBDEV_AMP_FLAG
,
12622 .info
= snd_hda_mixer_amp_switch_info
,
12623 .get
= snd_hda_mixer_amp_switch_get
,
12624 .put
= alc268_acer_master_sw_put
,
12625 .private_value
= HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT
),
12627 HDA_CODEC_VOLUME("Mic Boost Capture Volume", 0x18, 0, HDA_INPUT
),
12631 static struct snd_kcontrol_new alc268_acer_mixer
[] = {
12632 /* output mixer control */
12633 HDA_BIND_VOL("Master Playback Volume", &alc268_acer_bind_master_vol
),
12635 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
12636 .name
= "Master Playback Switch",
12637 .subdevice
= HDA_SUBDEV_AMP_FLAG
,
12638 .info
= snd_hda_mixer_amp_switch_info
,
12639 .get
= snd_hda_mixer_amp_switch_get
,
12640 .put
= alc268_acer_master_sw_put
,
12641 .private_value
= HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT
),
12643 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
12644 HDA_CODEC_VOLUME("Internal Mic Boost", 0x19, 0, HDA_INPUT
),
12645 HDA_CODEC_VOLUME("Line In Boost", 0x1a, 0, HDA_INPUT
),
12649 static struct snd_kcontrol_new alc268_acer_dmic_mixer
[] = {
12650 /* output mixer control */
12651 HDA_BIND_VOL("Master Playback Volume", &alc268_acer_bind_master_vol
),
12653 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
12654 .name
= "Master Playback Switch",
12655 .subdevice
= HDA_SUBDEV_AMP_FLAG
,
12656 .info
= snd_hda_mixer_amp_switch_info
,
12657 .get
= snd_hda_mixer_amp_switch_get
,
12658 .put
= alc268_acer_master_sw_put
,
12659 .private_value
= HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT
),
12661 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
12662 HDA_CODEC_VOLUME("Line In Boost", 0x1a, 0, HDA_INPUT
),
12666 static struct hda_verb alc268_acer_aspire_one_verbs
[] = {
12667 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
12668 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
12669 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
12670 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
12671 {0x23, AC_VERB_SET_CONNECT_SEL
, 0x06},
12672 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, 0xa017},
12676 static struct hda_verb alc268_acer_verbs
[] = {
12677 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
}, /* internal dmic? */
12678 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
12679 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
12680 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
12681 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
12682 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
12683 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
12687 /* unsolicited event for HP jack sensing */
12688 #define alc268_toshiba_unsol_event alc262_hippo_unsol_event
12689 #define alc268_toshiba_setup alc262_hippo_setup
12690 #define alc268_toshiba_automute alc262_hippo_automute
12692 static void alc268_acer_unsol_event(struct hda_codec
*codec
,
12695 if ((res
>> 26) != ALC880_HP_EVENT
)
12697 alc268_acer_automute(codec
, 1);
12700 static void alc268_acer_init_hook(struct hda_codec
*codec
)
12702 alc268_acer_automute(codec
, 1);
12705 /* toggle speaker-output according to the hp-jack state */
12706 static void alc268_aspire_one_speaker_automute(struct hda_codec
*codec
)
12708 unsigned int present
;
12709 unsigned char bits
;
12711 present
= snd_hda_jack_detect(codec
, 0x15);
12712 bits
= present
? HDA_AMP_MUTE
: 0;
12713 snd_hda_codec_amp_stereo(codec
, 0x0f, HDA_INPUT
, 0,
12714 HDA_AMP_MUTE
, bits
);
12715 snd_hda_codec_amp_stereo(codec
, 0x0f, HDA_INPUT
, 1,
12716 HDA_AMP_MUTE
, bits
);
12719 static void alc268_acer_lc_unsol_event(struct hda_codec
*codec
,
12722 switch (res
>> 26) {
12723 case ALC880_HP_EVENT
:
12724 alc268_aspire_one_speaker_automute(codec
);
12726 case ALC880_MIC_EVENT
:
12727 alc_mic_automute(codec
);
12732 static void alc268_acer_lc_setup(struct hda_codec
*codec
)
12734 struct alc_spec
*spec
= codec
->spec
;
12735 spec
->ext_mic
.pin
= 0x18;
12736 spec
->ext_mic
.mux_idx
= 0;
12737 spec
->int_mic
.pin
= 0x12;
12738 spec
->int_mic
.mux_idx
= 6;
12739 spec
->auto_mic
= 1;
12742 static void alc268_acer_lc_init_hook(struct hda_codec
*codec
)
12744 alc268_aspire_one_speaker_automute(codec
);
12745 alc_mic_automute(codec
);
12748 static struct snd_kcontrol_new alc268_dell_mixer
[] = {
12749 /* output mixer control */
12750 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
12751 HDA_CODEC_MUTE("Speaker Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
12752 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x03, 0x0, HDA_OUTPUT
),
12753 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
12754 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
12755 HDA_CODEC_VOLUME("Internal Mic Boost", 0x19, 0, HDA_INPUT
),
12759 static struct hda_verb alc268_dell_verbs
[] = {
12760 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
12761 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
12762 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
12763 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_MIC_EVENT
| AC_USRSP_EN
},
12767 /* mute/unmute internal speaker according to the hp jack and mute state */
12768 static void alc268_dell_setup(struct hda_codec
*codec
)
12770 struct alc_spec
*spec
= codec
->spec
;
12772 spec
->autocfg
.hp_pins
[0] = 0x15;
12773 spec
->autocfg
.speaker_pins
[0] = 0x14;
12774 spec
->ext_mic
.pin
= 0x18;
12775 spec
->ext_mic
.mux_idx
= 0;
12776 spec
->int_mic
.pin
= 0x19;
12777 spec
->int_mic
.mux_idx
= 1;
12778 spec
->auto_mic
= 1;
12781 static struct snd_kcontrol_new alc267_quanta_il1_mixer
[] = {
12782 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x2, 0x0, HDA_OUTPUT
),
12783 HDA_CODEC_MUTE("Speaker Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
12784 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x3, 0x0, HDA_OUTPUT
),
12785 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
12786 HDA_CODEC_VOLUME("Mic Capture Volume", 0x23, 0x0, HDA_OUTPUT
),
12787 HDA_BIND_MUTE("Mic Capture Switch", 0x23, 2, HDA_OUTPUT
),
12788 HDA_CODEC_VOLUME("Ext Mic Boost", 0x18, 0, HDA_INPUT
),
12789 HDA_CODEC_VOLUME("Int Mic Boost", 0x19, 0, HDA_INPUT
),
12793 static struct hda_verb alc267_quanta_il1_verbs
[] = {
12794 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
12795 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_MIC_EVENT
| AC_USRSP_EN
},
12799 static void alc267_quanta_il1_setup(struct hda_codec
*codec
)
12801 struct alc_spec
*spec
= codec
->spec
;
12802 spec
->autocfg
.hp_pins
[0] = 0x15;
12803 spec
->autocfg
.speaker_pins
[0] = 0x14;
12804 spec
->ext_mic
.pin
= 0x18;
12805 spec
->ext_mic
.mux_idx
= 0;
12806 spec
->int_mic
.pin
= 0x19;
12807 spec
->int_mic
.mux_idx
= 1;
12808 spec
->auto_mic
= 1;
12812 * generic initialization of ADC, input mixers and output mixers
12814 static struct hda_verb alc268_base_init_verbs
[] = {
12815 /* Unmute DAC0-1 and set vol = 0 */
12816 {0x02, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
12817 {0x03, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
12820 * Set up output mixers (0x0c - 0x0e)
12822 /* set vol=0 to output mixers */
12823 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
12824 {0x0e, AC_VERB_SET_CONNECT_SEL
, 0x00},
12826 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
12827 {0x10, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
12829 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40},
12830 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0xc0},
12831 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40},
12832 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24},
12833 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24},
12834 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20},
12835 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20},
12836 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20},
12838 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
12839 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
12840 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
12841 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
12842 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
12844 /* set PCBEEP vol = 0, mute connections */
12845 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
12846 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
12847 {0x10, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
12849 /* Unmute Selector 23h,24h and set the default input to mic-in */
12851 {0x23, AC_VERB_SET_CONNECT_SEL
, 0x00},
12852 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
12853 {0x24, AC_VERB_SET_CONNECT_SEL
, 0x00},
12854 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
12860 * generic initialization of ADC, input mixers and output mixers
12862 static struct hda_verb alc268_volume_init_verbs
[] = {
12863 /* set output DAC */
12864 {0x02, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
12865 {0x03, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
12867 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24},
12868 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24},
12869 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20},
12870 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20},
12871 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20},
12873 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
12874 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
12875 {0x10, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
12877 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
12878 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
12880 /* set PCBEEP vol = 0, mute connections */
12881 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
12882 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
12883 {0x10, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
12888 static struct snd_kcontrol_new alc268_capture_nosrc_mixer
[] = {
12889 HDA_CODEC_VOLUME("Capture Volume", 0x23, 0x0, HDA_OUTPUT
),
12890 HDA_CODEC_MUTE("Capture Switch", 0x23, 0x0, HDA_OUTPUT
),
12894 static struct snd_kcontrol_new alc268_capture_alt_mixer
[] = {
12895 HDA_CODEC_VOLUME("Capture Volume", 0x23, 0x0, HDA_OUTPUT
),
12896 HDA_CODEC_MUTE("Capture Switch", 0x23, 0x0, HDA_OUTPUT
),
12901 static struct snd_kcontrol_new alc268_capture_mixer
[] = {
12902 HDA_CODEC_VOLUME("Capture Volume", 0x23, 0x0, HDA_OUTPUT
),
12903 HDA_CODEC_MUTE("Capture Switch", 0x23, 0x0, HDA_OUTPUT
),
12904 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x24, 0x0, HDA_OUTPUT
),
12905 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x24, 0x0, HDA_OUTPUT
),
12910 static struct hda_input_mux alc268_capture_source
= {
12914 { "Front Mic", 0x1 },
12920 static struct hda_input_mux alc268_acer_capture_source
= {
12924 { "Internal Mic", 0x1 },
12929 static struct hda_input_mux alc268_acer_dmic_capture_source
= {
12933 { "Internal Mic", 0x6 },
12938 #ifdef CONFIG_SND_DEBUG
12939 static struct snd_kcontrol_new alc268_test_mixer
[] = {
12940 /* Volume widgets */
12941 HDA_CODEC_VOLUME("LOUT1 Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
12942 HDA_CODEC_VOLUME("LOUT2 Playback Volume", 0x03, 0x0, HDA_OUTPUT
),
12943 HDA_BIND_MUTE_MONO("Mono sum Playback Switch", 0x0e, 1, 2, HDA_INPUT
),
12944 HDA_BIND_MUTE("LINE-OUT sum Playback Switch", 0x0f, 2, HDA_INPUT
),
12945 HDA_BIND_MUTE("HP-OUT sum Playback Switch", 0x10, 2, HDA_INPUT
),
12946 HDA_BIND_MUTE("LINE-OUT Playback Switch", 0x14, 2, HDA_OUTPUT
),
12947 HDA_BIND_MUTE("HP-OUT Playback Switch", 0x15, 2, HDA_OUTPUT
),
12948 HDA_BIND_MUTE("Mono Playback Switch", 0x16, 2, HDA_OUTPUT
),
12949 HDA_CODEC_VOLUME("MIC1 Capture Volume", 0x18, 0x0, HDA_INPUT
),
12950 HDA_BIND_MUTE("MIC1 Capture Switch", 0x18, 2, HDA_OUTPUT
),
12951 HDA_CODEC_VOLUME("MIC2 Capture Volume", 0x19, 0x0, HDA_INPUT
),
12952 HDA_CODEC_VOLUME("LINE1 Capture Volume", 0x1a, 0x0, HDA_INPUT
),
12953 HDA_BIND_MUTE("LINE1 Capture Switch", 0x1a, 2, HDA_OUTPUT
),
12954 /* The below appears problematic on some hardwares */
12955 /*HDA_CODEC_VOLUME("PCBEEP Playback Volume", 0x1d, 0x0, HDA_INPUT),*/
12956 HDA_CODEC_VOLUME("PCM-IN1 Capture Volume", 0x23, 0x0, HDA_OUTPUT
),
12957 HDA_BIND_MUTE("PCM-IN1 Capture Switch", 0x23, 2, HDA_OUTPUT
),
12958 HDA_CODEC_VOLUME("PCM-IN2 Capture Volume", 0x24, 0x0, HDA_OUTPUT
),
12959 HDA_BIND_MUTE("PCM-IN2 Capture Switch", 0x24, 2, HDA_OUTPUT
),
12961 /* Modes for retasking pin widgets */
12962 ALC_PIN_MODE("LINE-OUT pin mode", 0x14, ALC_PIN_DIR_INOUT
),
12963 ALC_PIN_MODE("HP-OUT pin mode", 0x15, ALC_PIN_DIR_INOUT
),
12964 ALC_PIN_MODE("MIC1 pin mode", 0x18, ALC_PIN_DIR_INOUT
),
12965 ALC_PIN_MODE("LINE1 pin mode", 0x1a, ALC_PIN_DIR_INOUT
),
12967 /* Controls for GPIO pins, assuming they are configured as outputs */
12968 ALC_GPIO_DATA_SWITCH("GPIO pin 0", 0x01, 0x01),
12969 ALC_GPIO_DATA_SWITCH("GPIO pin 1", 0x01, 0x02),
12970 ALC_GPIO_DATA_SWITCH("GPIO pin 2", 0x01, 0x04),
12971 ALC_GPIO_DATA_SWITCH("GPIO pin 3", 0x01, 0x08),
12973 /* Switches to allow the digital SPDIF output pin to be enabled.
12974 * The ALC268 does not have an SPDIF input.
12976 ALC_SPDIF_CTRL_SWITCH("SPDIF Playback Switch", 0x06, 0x01),
12978 /* A switch allowing EAPD to be enabled. Some laptops seem to use
12979 * this output to turn on an external amplifier.
12981 ALC_EAPD_CTRL_SWITCH("LINE-OUT EAPD Enable Switch", 0x0f, 0x02),
12982 ALC_EAPD_CTRL_SWITCH("HP-OUT EAPD Enable Switch", 0x10, 0x02),
12988 /* create input playback/capture controls for the given pin */
12989 static int alc268_new_analog_output(struct alc_spec
*spec
, hda_nid_t nid
,
12990 const char *ctlname
, int idx
)
13001 case 0x21: /* ALC269vb has this pin, too */
13007 if (spec
->multiout
.dac_nids
[0] != dac
&&
13008 spec
->multiout
.dac_nids
[1] != dac
) {
13009 err
= add_pb_vol_ctrl(spec
, ALC_CTL_WIDGET_VOL
, ctlname
,
13010 HDA_COMPOSE_AMP_VAL(dac
, 3, idx
,
13014 spec
->multiout
.dac_nids
[spec
->multiout
.num_dacs
++] = dac
;
13018 err
= add_pb_sw_ctrl(spec
, ALC_CTL_WIDGET_MUTE
, ctlname
,
13019 HDA_COMPOSE_AMP_VAL(nid
, 3, idx
, HDA_OUTPUT
));
13021 err
= add_pb_sw_ctrl(spec
, ALC_CTL_WIDGET_MUTE
, ctlname
,
13022 HDA_COMPOSE_AMP_VAL(nid
, 2, idx
, HDA_OUTPUT
));
13028 /* add playback controls from the parsed DAC table */
13029 static int alc268_auto_create_multi_out_ctls(struct alc_spec
*spec
,
13030 const struct auto_pin_cfg
*cfg
)
13035 spec
->multiout
.dac_nids
= spec
->private_dac_nids
;
13037 nid
= cfg
->line_out_pins
[0];
13040 if (cfg
->line_out_type
== AUTO_PIN_SPEAKER_OUT
)
13044 err
= alc268_new_analog_output(spec
, nid
, name
, 0);
13049 nid
= cfg
->speaker_pins
[0];
13051 err
= add_pb_vol_ctrl(spec
, ALC_CTL_WIDGET_VOL
, "Speaker",
13052 HDA_COMPOSE_AMP_VAL(nid
, 3, 0, HDA_INPUT
));
13056 err
= alc268_new_analog_output(spec
, nid
, "Speaker", 0);
13060 nid
= cfg
->hp_pins
[0];
13062 err
= alc268_new_analog_output(spec
, nid
, "Headphone", 0);
13067 nid
= cfg
->line_out_pins
[1] | cfg
->line_out_pins
[2];
13069 err
= add_pb_sw_ctrl(spec
, ALC_CTL_WIDGET_MUTE
, "Mono",
13070 HDA_COMPOSE_AMP_VAL(nid
, 2, 0, HDA_OUTPUT
));
13077 /* create playback/capture controls for input pins */
13078 static int alc268_auto_create_input_ctls(struct hda_codec
*codec
,
13079 const struct auto_pin_cfg
*cfg
)
13081 return alc_auto_create_input_ctls(codec
, cfg
, 0, 0x23, 0x24);
13084 static void alc268_auto_set_output_and_unmute(struct hda_codec
*codec
,
13085 hda_nid_t nid
, int pin_type
)
13089 alc_set_pin_output(codec
, nid
, pin_type
);
13090 if (nid
== 0x14 || nid
== 0x16)
13094 snd_hda_codec_write(codec
, nid
, 0, AC_VERB_SET_CONNECT_SEL
, idx
);
13097 static void alc268_auto_init_multi_out(struct hda_codec
*codec
)
13099 struct alc_spec
*spec
= codec
->spec
;
13100 hda_nid_t nid
= spec
->autocfg
.line_out_pins
[0];
13102 int pin_type
= get_pin_type(spec
->autocfg
.line_out_type
);
13103 alc268_auto_set_output_and_unmute(codec
, nid
, pin_type
);
13107 static void alc268_auto_init_hp_out(struct hda_codec
*codec
)
13109 struct alc_spec
*spec
= codec
->spec
;
13112 pin
= spec
->autocfg
.hp_pins
[0];
13114 alc268_auto_set_output_and_unmute(codec
, pin
, PIN_HP
);
13115 pin
= spec
->autocfg
.speaker_pins
[0];
13117 alc268_auto_set_output_and_unmute(codec
, pin
, PIN_OUT
);
13120 static void alc268_auto_init_mono_speaker_out(struct hda_codec
*codec
)
13122 struct alc_spec
*spec
= codec
->spec
;
13123 hda_nid_t speaker_nid
= spec
->autocfg
.speaker_pins
[0];
13124 hda_nid_t hp_nid
= spec
->autocfg
.hp_pins
[0];
13125 hda_nid_t line_nid
= spec
->autocfg
.line_out_pins
[0];
13126 unsigned int dac_vol1
, dac_vol2
;
13128 if (line_nid
== 0x1d || speaker_nid
== 0x1d) {
13129 snd_hda_codec_write(codec
, speaker_nid
, 0,
13130 AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
);
13131 /* mute mixer inputs from 0x1d */
13132 snd_hda_codec_write(codec
, 0x0f, 0,
13133 AC_VERB_SET_AMP_GAIN_MUTE
,
13135 snd_hda_codec_write(codec
, 0x10, 0,
13136 AC_VERB_SET_AMP_GAIN_MUTE
,
13139 /* unmute mixer inputs from 0x1d */
13140 snd_hda_codec_write(codec
, 0x0f, 0,
13141 AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1));
13142 snd_hda_codec_write(codec
, 0x10, 0,
13143 AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1));
13146 dac_vol1
= dac_vol2
= 0xb000 | 0x40; /* set max volume */
13147 if (line_nid
== 0x14)
13148 dac_vol2
= AMP_OUT_ZERO
;
13149 else if (line_nid
== 0x15)
13150 dac_vol1
= AMP_OUT_ZERO
;
13151 if (hp_nid
== 0x14)
13152 dac_vol2
= AMP_OUT_ZERO
;
13153 else if (hp_nid
== 0x15)
13154 dac_vol1
= AMP_OUT_ZERO
;
13155 if (line_nid
!= 0x16 || hp_nid
!= 0x16 ||
13156 spec
->autocfg
.line_out_pins
[1] != 0x16 ||
13157 spec
->autocfg
.line_out_pins
[2] != 0x16)
13158 dac_vol1
= dac_vol2
= AMP_OUT_ZERO
;
13160 snd_hda_codec_write(codec
, 0x02, 0,
13161 AC_VERB_SET_AMP_GAIN_MUTE
, dac_vol1
);
13162 snd_hda_codec_write(codec
, 0x03, 0,
13163 AC_VERB_SET_AMP_GAIN_MUTE
, dac_vol2
);
13166 /* pcm configuration: identical with ALC880 */
13167 #define alc268_pcm_analog_playback alc880_pcm_analog_playback
13168 #define alc268_pcm_analog_capture alc880_pcm_analog_capture
13169 #define alc268_pcm_analog_alt_capture alc880_pcm_analog_alt_capture
13170 #define alc268_pcm_digital_playback alc880_pcm_digital_playback
13173 * BIOS auto configuration
13175 static int alc268_parse_auto_config(struct hda_codec
*codec
)
13177 struct alc_spec
*spec
= codec
->spec
;
13179 static hda_nid_t alc268_ignore
[] = { 0 };
13181 err
= snd_hda_parse_pin_def_config(codec
, &spec
->autocfg
,
13185 if (!spec
->autocfg
.line_outs
) {
13186 if (spec
->autocfg
.dig_outs
|| spec
->autocfg
.dig_in_pin
) {
13187 spec
->multiout
.max_channels
= 2;
13188 spec
->no_analog
= 1;
13191 return 0; /* can't find valid BIOS pin config */
13193 err
= alc268_auto_create_multi_out_ctls(spec
, &spec
->autocfg
);
13196 err
= alc268_auto_create_input_ctls(codec
, &spec
->autocfg
);
13200 spec
->multiout
.max_channels
= 2;
13203 /* digital only support output */
13204 if (spec
->autocfg
.dig_outs
) {
13205 spec
->multiout
.dig_out_nid
= ALC268_DIGOUT_NID
;
13206 spec
->dig_out_type
= spec
->autocfg
.dig_out_type
[0];
13208 if (spec
->kctls
.list
)
13209 add_mixer(spec
, spec
->kctls
.list
);
13211 if (!spec
->no_analog
&& spec
->autocfg
.speaker_pins
[0] != 0x1d)
13212 add_mixer(spec
, alc268_beep_mixer
);
13214 add_verb(spec
, alc268_volume_init_verbs
);
13215 spec
->num_mux_defs
= 2;
13216 spec
->input_mux
= &spec
->private_imux
[0];
13218 err
= alc_auto_add_mic_boost(codec
);
13222 alc_ssid_check(codec
, 0x15, 0x1b, 0x14, 0);
13227 #define alc268_auto_init_analog_input alc882_auto_init_analog_input
13229 /* init callback for auto-configuration model -- overriding the default init */
13230 static void alc268_auto_init(struct hda_codec
*codec
)
13232 struct alc_spec
*spec
= codec
->spec
;
13233 alc268_auto_init_multi_out(codec
);
13234 alc268_auto_init_hp_out(codec
);
13235 alc268_auto_init_mono_speaker_out(codec
);
13236 alc268_auto_init_analog_input(codec
);
13237 if (spec
->unsol_event
)
13238 alc_inithook(codec
);
13242 * configuration and preset
13244 static const char *alc268_models
[ALC268_MODEL_LAST
] = {
13245 [ALC267_QUANTA_IL1
] = "quanta-il1",
13246 [ALC268_3ST
] = "3stack",
13247 [ALC268_TOSHIBA
] = "toshiba",
13248 [ALC268_ACER
] = "acer",
13249 [ALC268_ACER_DMIC
] = "acer-dmic",
13250 [ALC268_ACER_ASPIRE_ONE
] = "acer-aspire",
13251 [ALC268_DELL
] = "dell",
13252 [ALC268_ZEPTO
] = "zepto",
13253 #ifdef CONFIG_SND_DEBUG
13254 [ALC268_TEST
] = "test",
13256 [ALC268_AUTO
] = "auto",
13259 static struct snd_pci_quirk alc268_cfg_tbl
[] = {
13260 SND_PCI_QUIRK(0x1025, 0x011e, "Acer Aspire 5720z", ALC268_ACER
),
13261 SND_PCI_QUIRK(0x1025, 0x0126, "Acer", ALC268_ACER
),
13262 SND_PCI_QUIRK(0x1025, 0x012e, "Acer Aspire 5310", ALC268_ACER
),
13263 SND_PCI_QUIRK(0x1025, 0x0130, "Acer Extensa 5210", ALC268_ACER
),
13264 SND_PCI_QUIRK(0x1025, 0x0136, "Acer Aspire 5315", ALC268_ACER
),
13265 SND_PCI_QUIRK(0x1025, 0x015b, "Acer Aspire One",
13266 ALC268_ACER_ASPIRE_ONE
),
13267 SND_PCI_QUIRK(0x1028, 0x0253, "Dell OEM", ALC268_DELL
),
13268 SND_PCI_QUIRK_MASK(0x1028, 0xfff0, 0x02b0,
13269 "Dell Inspiron Mini9/Vostro A90", ALC268_DELL
),
13270 /* almost compatible with toshiba but with optional digital outs;
13271 * auto-probing seems working fine
13273 SND_PCI_QUIRK_MASK(0x103c, 0xff00, 0x3000, "HP TX25xx series",
13275 SND_PCI_QUIRK(0x1043, 0x1205, "ASUS W7J", ALC268_3ST
),
13276 SND_PCI_QUIRK(0x1170, 0x0040, "ZEPTO", ALC268_ZEPTO
),
13277 SND_PCI_QUIRK(0x14c0, 0x0025, "COMPAL IFL90/JFL-92", ALC268_TOSHIBA
),
13278 SND_PCI_QUIRK(0x152d, 0x0763, "Diverse (CPR2000)", ALC268_ACER
),
13279 SND_PCI_QUIRK(0x152d, 0x0771, "Quanta IL1", ALC267_QUANTA_IL1
),
13280 SND_PCI_QUIRK(0x1854, 0x1775, "LG R510", ALC268_DELL
),
13284 /* Toshiba laptops have no unique PCI SSID but only codec SSID */
13285 static struct snd_pci_quirk alc268_ssid_cfg_tbl
[] = {
13286 SND_PCI_QUIRK(0x1179, 0xff0a, "TOSHIBA X-200", ALC268_AUTO
),
13287 SND_PCI_QUIRK(0x1179, 0xff0e, "TOSHIBA X-200 HDMI", ALC268_AUTO
),
13288 SND_PCI_QUIRK_MASK(0x1179, 0xff00, 0xff00, "TOSHIBA A/Lx05",
13293 static struct alc_config_preset alc268_presets
[] = {
13294 [ALC267_QUANTA_IL1
] = {
13295 .mixers
= { alc267_quanta_il1_mixer
, alc268_beep_mixer
,
13296 alc268_capture_nosrc_mixer
},
13297 .init_verbs
= { alc268_base_init_verbs
, alc268_eapd_verbs
,
13298 alc267_quanta_il1_verbs
},
13299 .num_dacs
= ARRAY_SIZE(alc268_dac_nids
),
13300 .dac_nids
= alc268_dac_nids
,
13301 .num_adc_nids
= ARRAY_SIZE(alc268_adc_nids_alt
),
13302 .adc_nids
= alc268_adc_nids_alt
,
13304 .num_channel_mode
= ARRAY_SIZE(alc268_modes
),
13305 .channel_mode
= alc268_modes
,
13306 .unsol_event
= alc_sku_unsol_event
,
13307 .setup
= alc267_quanta_il1_setup
,
13308 .init_hook
= alc_inithook
,
13311 .mixers
= { alc268_base_mixer
, alc268_capture_alt_mixer
,
13312 alc268_beep_mixer
},
13313 .init_verbs
= { alc268_base_init_verbs
},
13314 .num_dacs
= ARRAY_SIZE(alc268_dac_nids
),
13315 .dac_nids
= alc268_dac_nids
,
13316 .num_adc_nids
= ARRAY_SIZE(alc268_adc_nids_alt
),
13317 .adc_nids
= alc268_adc_nids_alt
,
13318 .capsrc_nids
= alc268_capsrc_nids
,
13320 .dig_out_nid
= ALC268_DIGOUT_NID
,
13321 .num_channel_mode
= ARRAY_SIZE(alc268_modes
),
13322 .channel_mode
= alc268_modes
,
13323 .input_mux
= &alc268_capture_source
,
13325 [ALC268_TOSHIBA
] = {
13326 .mixers
= { alc268_toshiba_mixer
, alc268_capture_alt_mixer
,
13327 alc268_beep_mixer
},
13328 .init_verbs
= { alc268_base_init_verbs
, alc268_eapd_verbs
,
13329 alc268_toshiba_verbs
},
13330 .num_dacs
= ARRAY_SIZE(alc268_dac_nids
),
13331 .dac_nids
= alc268_dac_nids
,
13332 .num_adc_nids
= ARRAY_SIZE(alc268_adc_nids_alt
),
13333 .adc_nids
= alc268_adc_nids_alt
,
13334 .capsrc_nids
= alc268_capsrc_nids
,
13336 .num_channel_mode
= ARRAY_SIZE(alc268_modes
),
13337 .channel_mode
= alc268_modes
,
13338 .input_mux
= &alc268_capture_source
,
13339 .unsol_event
= alc268_toshiba_unsol_event
,
13340 .setup
= alc268_toshiba_setup
,
13341 .init_hook
= alc268_toshiba_automute
,
13344 .mixers
= { alc268_acer_mixer
, alc268_capture_alt_mixer
,
13345 alc268_beep_mixer
},
13346 .init_verbs
= { alc268_base_init_verbs
, alc268_eapd_verbs
,
13347 alc268_acer_verbs
},
13348 .num_dacs
= ARRAY_SIZE(alc268_dac_nids
),
13349 .dac_nids
= alc268_dac_nids
,
13350 .num_adc_nids
= ARRAY_SIZE(alc268_adc_nids_alt
),
13351 .adc_nids
= alc268_adc_nids_alt
,
13352 .capsrc_nids
= alc268_capsrc_nids
,
13354 .num_channel_mode
= ARRAY_SIZE(alc268_modes
),
13355 .channel_mode
= alc268_modes
,
13356 .input_mux
= &alc268_acer_capture_source
,
13357 .unsol_event
= alc268_acer_unsol_event
,
13358 .init_hook
= alc268_acer_init_hook
,
13360 [ALC268_ACER_DMIC
] = {
13361 .mixers
= { alc268_acer_dmic_mixer
, alc268_capture_alt_mixer
,
13362 alc268_beep_mixer
},
13363 .init_verbs
= { alc268_base_init_verbs
, alc268_eapd_verbs
,
13364 alc268_acer_verbs
},
13365 .num_dacs
= ARRAY_SIZE(alc268_dac_nids
),
13366 .dac_nids
= alc268_dac_nids
,
13367 .num_adc_nids
= ARRAY_SIZE(alc268_adc_nids_alt
),
13368 .adc_nids
= alc268_adc_nids_alt
,
13369 .capsrc_nids
= alc268_capsrc_nids
,
13371 .num_channel_mode
= ARRAY_SIZE(alc268_modes
),
13372 .channel_mode
= alc268_modes
,
13373 .input_mux
= &alc268_acer_dmic_capture_source
,
13374 .unsol_event
= alc268_acer_unsol_event
,
13375 .init_hook
= alc268_acer_init_hook
,
13377 [ALC268_ACER_ASPIRE_ONE
] = {
13378 .mixers
= { alc268_acer_aspire_one_mixer
,
13380 alc268_capture_nosrc_mixer
},
13381 .init_verbs
= { alc268_base_init_verbs
, alc268_eapd_verbs
,
13382 alc268_acer_aspire_one_verbs
},
13383 .num_dacs
= ARRAY_SIZE(alc268_dac_nids
),
13384 .dac_nids
= alc268_dac_nids
,
13385 .num_adc_nids
= ARRAY_SIZE(alc268_adc_nids_alt
),
13386 .adc_nids
= alc268_adc_nids_alt
,
13387 .capsrc_nids
= alc268_capsrc_nids
,
13389 .num_channel_mode
= ARRAY_SIZE(alc268_modes
),
13390 .channel_mode
= alc268_modes
,
13391 .unsol_event
= alc268_acer_lc_unsol_event
,
13392 .setup
= alc268_acer_lc_setup
,
13393 .init_hook
= alc268_acer_lc_init_hook
,
13396 .mixers
= { alc268_dell_mixer
, alc268_beep_mixer
,
13397 alc268_capture_nosrc_mixer
},
13398 .init_verbs
= { alc268_base_init_verbs
, alc268_eapd_verbs
,
13399 alc268_dell_verbs
},
13400 .num_dacs
= ARRAY_SIZE(alc268_dac_nids
),
13401 .dac_nids
= alc268_dac_nids
,
13402 .num_adc_nids
= ARRAY_SIZE(alc268_adc_nids_alt
),
13403 .adc_nids
= alc268_adc_nids_alt
,
13404 .capsrc_nids
= alc268_capsrc_nids
,
13406 .num_channel_mode
= ARRAY_SIZE(alc268_modes
),
13407 .channel_mode
= alc268_modes
,
13408 .unsol_event
= alc_sku_unsol_event
,
13409 .setup
= alc268_dell_setup
,
13410 .init_hook
= alc_inithook
,
13413 .mixers
= { alc268_base_mixer
, alc268_capture_alt_mixer
,
13414 alc268_beep_mixer
},
13415 .init_verbs
= { alc268_base_init_verbs
, alc268_eapd_verbs
,
13416 alc268_toshiba_verbs
},
13417 .num_dacs
= ARRAY_SIZE(alc268_dac_nids
),
13418 .dac_nids
= alc268_dac_nids
,
13419 .num_adc_nids
= ARRAY_SIZE(alc268_adc_nids_alt
),
13420 .adc_nids
= alc268_adc_nids_alt
,
13421 .capsrc_nids
= alc268_capsrc_nids
,
13423 .dig_out_nid
= ALC268_DIGOUT_NID
,
13424 .num_channel_mode
= ARRAY_SIZE(alc268_modes
),
13425 .channel_mode
= alc268_modes
,
13426 .input_mux
= &alc268_capture_source
,
13427 .setup
= alc268_toshiba_setup
,
13428 .init_hook
= alc268_toshiba_automute
,
13430 #ifdef CONFIG_SND_DEBUG
13432 .mixers
= { alc268_test_mixer
, alc268_capture_mixer
},
13433 .init_verbs
= { alc268_base_init_verbs
, alc268_eapd_verbs
,
13434 alc268_volume_init_verbs
},
13435 .num_dacs
= ARRAY_SIZE(alc268_dac_nids
),
13436 .dac_nids
= alc268_dac_nids
,
13437 .num_adc_nids
= ARRAY_SIZE(alc268_adc_nids_alt
),
13438 .adc_nids
= alc268_adc_nids_alt
,
13439 .capsrc_nids
= alc268_capsrc_nids
,
13441 .dig_out_nid
= ALC268_DIGOUT_NID
,
13442 .num_channel_mode
= ARRAY_SIZE(alc268_modes
),
13443 .channel_mode
= alc268_modes
,
13444 .input_mux
= &alc268_capture_source
,
13449 static int patch_alc268(struct hda_codec
*codec
)
13451 struct alc_spec
*spec
;
13453 int i
, has_beep
, err
;
13455 spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
13459 codec
->spec
= spec
;
13461 board_config
= snd_hda_check_board_config(codec
, ALC268_MODEL_LAST
,
13465 if (board_config
< 0 || board_config
>= ALC268_MODEL_LAST
)
13466 board_config
= snd_hda_check_board_codec_sid_config(codec
,
13467 ALC268_MODEL_LAST
, alc268_models
, alc268_ssid_cfg_tbl
);
13469 if (board_config
< 0 || board_config
>= ALC268_MODEL_LAST
) {
13470 printk(KERN_INFO
"hda_codec: %s: BIOS auto-probing.\n",
13472 board_config
= ALC268_AUTO
;
13475 if (board_config
== ALC268_AUTO
) {
13476 /* automatic parse from the BIOS config */
13477 err
= alc268_parse_auto_config(codec
);
13483 "hda_codec: Cannot set up configuration "
13484 "from BIOS. Using base mode...\n");
13485 board_config
= ALC268_3ST
;
13489 if (board_config
!= ALC268_AUTO
)
13490 setup_preset(codec
, &alc268_presets
[board_config
]);
13492 spec
->stream_analog_playback
= &alc268_pcm_analog_playback
;
13493 spec
->stream_analog_capture
= &alc268_pcm_analog_capture
;
13494 spec
->stream_analog_alt_capture
= &alc268_pcm_analog_alt_capture
;
13496 spec
->stream_digital_playback
= &alc268_pcm_digital_playback
;
13499 for (i
= 0; i
< spec
->num_mixers
; i
++) {
13500 if (spec
->mixers
[i
] == alc268_beep_mixer
) {
13507 err
= snd_hda_attach_beep_device(codec
, 0x1);
13512 if (!query_amp_caps(codec
, 0x1d, HDA_INPUT
))
13513 /* override the amp caps for beep generator */
13514 snd_hda_override_amp_caps(codec
, 0x1d, HDA_INPUT
,
13515 (0x0c << AC_AMPCAP_OFFSET_SHIFT
) |
13516 (0x0c << AC_AMPCAP_NUM_STEPS_SHIFT
) |
13517 (0x07 << AC_AMPCAP_STEP_SIZE_SHIFT
) |
13518 (0 << AC_AMPCAP_MUTE_SHIFT
));
13521 if (!spec
->no_analog
&& !spec
->adc_nids
&& spec
->input_mux
) {
13522 /* check whether NID 0x07 is valid */
13523 unsigned int wcap
= get_wcaps(codec
, 0x07);
13526 spec
->capsrc_nids
= alc268_capsrc_nids
;
13528 wcap
= get_wcaps_type(wcap
);
13529 if (spec
->auto_mic
||
13530 wcap
!= AC_WID_AUD_IN
|| spec
->input_mux
->num_items
== 1) {
13531 spec
->adc_nids
= alc268_adc_nids_alt
;
13532 spec
->num_adc_nids
= ARRAY_SIZE(alc268_adc_nids_alt
);
13533 if (spec
->auto_mic
)
13534 fixup_automic_adc(codec
);
13535 if (spec
->auto_mic
|| spec
->input_mux
->num_items
== 1)
13536 add_mixer(spec
, alc268_capture_nosrc_mixer
);
13538 add_mixer(spec
, alc268_capture_alt_mixer
);
13540 spec
->adc_nids
= alc268_adc_nids
;
13541 spec
->num_adc_nids
= ARRAY_SIZE(alc268_adc_nids
);
13542 add_mixer(spec
, alc268_capture_mixer
);
13544 /* set default input source */
13545 for (i
= 0; i
< spec
->num_adc_nids
; i
++)
13546 snd_hda_codec_write_cache(codec
, alc268_capsrc_nids
[i
],
13547 0, AC_VERB_SET_CONNECT_SEL
,
13548 i
< spec
->num_mux_defs
?
13549 spec
->input_mux
[i
].items
[0].index
:
13550 spec
->input_mux
->items
[0].index
);
13553 spec
->vmaster_nid
= 0x02;
13555 codec
->patch_ops
= alc_patch_ops
;
13556 if (board_config
== ALC268_AUTO
)
13557 spec
->init_hook
= alc268_auto_init
;
13563 * ALC269 channel source setting (2 channel)
13565 #define ALC269_DIGOUT_NID ALC880_DIGOUT_NID
13567 #define alc269_dac_nids alc260_dac_nids
13569 static hda_nid_t alc269_adc_nids
[1] = {
13574 static hda_nid_t alc269_capsrc_nids
[1] = {
13578 static hda_nid_t alc269vb_adc_nids
[1] = {
13583 static hda_nid_t alc269vb_capsrc_nids
[1] = {
13587 static hda_nid_t alc269_adc_candidates
[] = {
13591 #define alc269_modes alc260_modes
13592 #define alc269_capture_source alc880_lg_lw_capture_source
13594 static struct snd_kcontrol_new alc269_base_mixer
[] = {
13595 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
13596 HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
13597 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
13598 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
13599 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
13600 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
13601 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
13602 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x01, HDA_INPUT
),
13603 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x01, HDA_INPUT
),
13604 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT
),
13605 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
13606 HDA_CODEC_MUTE_MONO("Mono Playback Switch", 0x16, 2, 0x0, HDA_OUTPUT
),
13610 static struct snd_kcontrol_new alc269_quanta_fl1_mixer
[] = {
13611 /* output mixer control */
13612 HDA_BIND_VOL("Master Playback Volume", &alc268_acer_bind_master_vol
),
13614 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
13615 .name
= "Master Playback Switch",
13616 .subdevice
= HDA_SUBDEV_AMP_FLAG
,
13617 .info
= snd_hda_mixer_amp_switch_info
,
13618 .get
= snd_hda_mixer_amp_switch_get
,
13619 .put
= alc268_acer_master_sw_put
,
13620 .private_value
= HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT
),
13622 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
13623 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
13624 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
13625 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x0b, 0x01, HDA_INPUT
),
13626 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x0b, 0x01, HDA_INPUT
),
13627 HDA_CODEC_VOLUME("Internal Mic Boost", 0x19, 0, HDA_INPUT
),
13631 static struct snd_kcontrol_new alc269_lifebook_mixer
[] = {
13632 /* output mixer control */
13633 HDA_BIND_VOL("Master Playback Volume", &alc268_acer_bind_master_vol
),
13635 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
13636 .name
= "Master Playback Switch",
13637 .subdevice
= HDA_SUBDEV_AMP_FLAG
,
13638 .info
= snd_hda_mixer_amp_switch_info
,
13639 .get
= snd_hda_mixer_amp_switch_get
,
13640 .put
= alc268_acer_master_sw_put
,
13641 .private_value
= HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT
),
13643 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
13644 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
13645 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
13646 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x0b, 0x01, HDA_INPUT
),
13647 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x0b, 0x01, HDA_INPUT
),
13648 HDA_CODEC_VOLUME("Internal Mic Boost", 0x19, 0, HDA_INPUT
),
13649 HDA_CODEC_VOLUME("Dock Mic Playback Volume", 0x0b, 0x03, HDA_INPUT
),
13650 HDA_CODEC_MUTE("Dock Mic Playback Switch", 0x0b, 0x03, HDA_INPUT
),
13651 HDA_CODEC_VOLUME("Dock Mic Boost", 0x1b, 0, HDA_INPUT
),
13655 static struct snd_kcontrol_new alc269_laptop_mixer
[] = {
13656 HDA_CODEC_MUTE("Speaker Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
13657 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
13658 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
13659 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x03, 0x0, HDA_OUTPUT
),
13663 static struct snd_kcontrol_new alc269vb_laptop_mixer
[] = {
13664 HDA_CODEC_MUTE("Speaker Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
13665 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
13666 HDA_CODEC_MUTE("Headphone Playback Switch", 0x21, 0x0, HDA_OUTPUT
),
13667 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x03, 0x0, HDA_OUTPUT
),
13671 /* capture mixer elements */
13672 static struct snd_kcontrol_new alc269_laptop_analog_capture_mixer
[] = {
13673 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT
),
13674 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT
),
13675 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
13676 HDA_CODEC_VOLUME("IntMic Boost", 0x19, 0, HDA_INPUT
),
13680 static struct snd_kcontrol_new alc269_laptop_digital_capture_mixer
[] = {
13681 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT
),
13682 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT
),
13683 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
13687 static struct snd_kcontrol_new alc269vb_laptop_analog_capture_mixer
[] = {
13688 HDA_CODEC_VOLUME("Capture Volume", 0x09, 0x0, HDA_INPUT
),
13689 HDA_CODEC_MUTE("Capture Switch", 0x09, 0x0, HDA_INPUT
),
13690 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
13691 HDA_CODEC_VOLUME("IntMic Boost", 0x19, 0, HDA_INPUT
),
13695 static struct snd_kcontrol_new alc269vb_laptop_digital_capture_mixer
[] = {
13696 HDA_CODEC_VOLUME("Capture Volume", 0x09, 0x0, HDA_INPUT
),
13697 HDA_CODEC_MUTE("Capture Switch", 0x09, 0x0, HDA_INPUT
),
13698 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
13703 #define alc269_fujitsu_mixer alc269_laptop_mixer
13705 static struct hda_verb alc269_quanta_fl1_verbs
[] = {
13706 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x01},
13707 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
13708 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
13709 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
13710 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
13711 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
13715 static struct hda_verb alc269_lifebook_verbs
[] = {
13716 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x01},
13717 {0x1a, AC_VERB_SET_CONNECT_SEL
, 0x01},
13718 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
13719 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
13720 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
13721 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
13722 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
13723 {0x1a, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
13724 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
13725 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
13729 /* toggle speaker-output according to the hp-jack state */
13730 static void alc269_quanta_fl1_speaker_automute(struct hda_codec
*codec
)
13732 unsigned int present
;
13733 unsigned char bits
;
13735 present
= snd_hda_jack_detect(codec
, 0x15);
13736 bits
= present
? HDA_AMP_MUTE
: 0;
13737 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 0,
13738 HDA_AMP_MUTE
, bits
);
13739 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 1,
13740 HDA_AMP_MUTE
, bits
);
13742 snd_hda_codec_write(codec
, 0x20, 0,
13743 AC_VERB_SET_COEF_INDEX
, 0x0c);
13744 snd_hda_codec_write(codec
, 0x20, 0,
13745 AC_VERB_SET_PROC_COEF
, 0x680);
13747 snd_hda_codec_write(codec
, 0x20, 0,
13748 AC_VERB_SET_COEF_INDEX
, 0x0c);
13749 snd_hda_codec_write(codec
, 0x20, 0,
13750 AC_VERB_SET_PROC_COEF
, 0x480);
13753 /* toggle speaker-output according to the hp-jacks state */
13754 static void alc269_lifebook_speaker_automute(struct hda_codec
*codec
)
13756 unsigned int present
;
13757 unsigned char bits
;
13759 /* Check laptop headphone socket */
13760 present
= snd_hda_jack_detect(codec
, 0x15);
13762 /* Check port replicator headphone socket */
13763 present
|= snd_hda_jack_detect(codec
, 0x1a);
13765 bits
= present
? HDA_AMP_MUTE
: 0;
13766 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 0,
13767 HDA_AMP_MUTE
, bits
);
13768 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 1,
13769 HDA_AMP_MUTE
, bits
);
13771 snd_hda_codec_write(codec
, 0x20, 0,
13772 AC_VERB_SET_COEF_INDEX
, 0x0c);
13773 snd_hda_codec_write(codec
, 0x20, 0,
13774 AC_VERB_SET_PROC_COEF
, 0x680);
13776 snd_hda_codec_write(codec
, 0x20, 0,
13777 AC_VERB_SET_COEF_INDEX
, 0x0c);
13778 snd_hda_codec_write(codec
, 0x20, 0,
13779 AC_VERB_SET_PROC_COEF
, 0x480);
13782 static void alc269_lifebook_mic_autoswitch(struct hda_codec
*codec
)
13784 unsigned int present_laptop
;
13785 unsigned int present_dock
;
13787 present_laptop
= snd_hda_jack_detect(codec
, 0x18);
13788 present_dock
= snd_hda_jack_detect(codec
, 0x1b);
13790 /* Laptop mic port overrides dock mic port, design decision */
13792 snd_hda_codec_write(codec
, 0x23, 0,
13793 AC_VERB_SET_CONNECT_SEL
, 0x3);
13794 if (present_laptop
)
13795 snd_hda_codec_write(codec
, 0x23, 0,
13796 AC_VERB_SET_CONNECT_SEL
, 0x0);
13797 if (!present_dock
&& !present_laptop
)
13798 snd_hda_codec_write(codec
, 0x23, 0,
13799 AC_VERB_SET_CONNECT_SEL
, 0x1);
13802 static void alc269_quanta_fl1_unsol_event(struct hda_codec
*codec
,
13805 switch (res
>> 26) {
13806 case ALC880_HP_EVENT
:
13807 alc269_quanta_fl1_speaker_automute(codec
);
13809 case ALC880_MIC_EVENT
:
13810 alc_mic_automute(codec
);
13815 static void alc269_lifebook_unsol_event(struct hda_codec
*codec
,
13818 if ((res
>> 26) == ALC880_HP_EVENT
)
13819 alc269_lifebook_speaker_automute(codec
);
13820 if ((res
>> 26) == ALC880_MIC_EVENT
)
13821 alc269_lifebook_mic_autoswitch(codec
);
13824 static void alc269_quanta_fl1_setup(struct hda_codec
*codec
)
13826 struct alc_spec
*spec
= codec
->spec
;
13827 spec
->autocfg
.hp_pins
[0] = 0x15;
13828 spec
->autocfg
.speaker_pins
[0] = 0x14;
13829 spec
->ext_mic
.pin
= 0x18;
13830 spec
->ext_mic
.mux_idx
= 0;
13831 spec
->int_mic
.pin
= 0x19;
13832 spec
->int_mic
.mux_idx
= 1;
13833 spec
->auto_mic
= 1;
13836 static void alc269_quanta_fl1_init_hook(struct hda_codec
*codec
)
13838 alc269_quanta_fl1_speaker_automute(codec
);
13839 alc_mic_automute(codec
);
13842 static void alc269_lifebook_init_hook(struct hda_codec
*codec
)
13844 alc269_lifebook_speaker_automute(codec
);
13845 alc269_lifebook_mic_autoswitch(codec
);
13848 static struct hda_verb alc269_laptop_dmic_init_verbs
[] = {
13849 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x01},
13850 {0x23, AC_VERB_SET_CONNECT_SEL
, 0x05},
13851 {0x02, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb026 },
13852 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7019 | (0x00 << 8))},
13853 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
13854 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
13855 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
13859 static struct hda_verb alc269_laptop_amic_init_verbs
[] = {
13860 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x01},
13861 {0x23, AC_VERB_SET_CONNECT_SEL
, 0x01},
13862 {0x02, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb026 },
13863 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, (0x701b | (0x00 << 8))},
13864 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
13865 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
13869 static struct hda_verb alc269vb_laptop_dmic_init_verbs
[] = {
13870 {0x21, AC_VERB_SET_CONNECT_SEL
, 0x01},
13871 {0x22, AC_VERB_SET_CONNECT_SEL
, 0x06},
13872 {0x02, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb026 },
13873 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7019 | (0x00 << 8))},
13874 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
13875 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
13876 {0x21, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
13880 static struct hda_verb alc269vb_laptop_amic_init_verbs
[] = {
13881 {0x21, AC_VERB_SET_CONNECT_SEL
, 0x01},
13882 {0x22, AC_VERB_SET_CONNECT_SEL
, 0x01},
13883 {0x02, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb026 },
13884 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7019 | (0x00 << 8))},
13885 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
13886 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
13887 {0x21, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
13891 /* toggle speaker-output according to the hp-jack state */
13892 static void alc269_speaker_automute(struct hda_codec
*codec
)
13894 struct alc_spec
*spec
= codec
->spec
;
13895 unsigned int nid
= spec
->autocfg
.hp_pins
[0];
13896 unsigned int present
;
13897 unsigned char bits
;
13899 present
= snd_hda_jack_detect(codec
, nid
);
13900 bits
= present
? HDA_AMP_MUTE
: 0;
13901 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 0,
13902 HDA_AMP_MUTE
, bits
);
13903 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 1,
13904 HDA_AMP_MUTE
, bits
);
13907 /* unsolicited event for HP jack sensing */
13908 static void alc269_laptop_unsol_event(struct hda_codec
*codec
,
13911 switch (res
>> 26) {
13912 case ALC880_HP_EVENT
:
13913 alc269_speaker_automute(codec
);
13915 case ALC880_MIC_EVENT
:
13916 alc_mic_automute(codec
);
13921 static void alc269_laptop_amic_setup(struct hda_codec
*codec
)
13923 struct alc_spec
*spec
= codec
->spec
;
13924 spec
->autocfg
.hp_pins
[0] = 0x15;
13925 spec
->autocfg
.speaker_pins
[0] = 0x14;
13926 spec
->ext_mic
.pin
= 0x18;
13927 spec
->ext_mic
.mux_idx
= 0;
13928 spec
->int_mic
.pin
= 0x19;
13929 spec
->int_mic
.mux_idx
= 1;
13930 spec
->auto_mic
= 1;
13933 static void alc269_laptop_dmic_setup(struct hda_codec
*codec
)
13935 struct alc_spec
*spec
= codec
->spec
;
13936 spec
->autocfg
.hp_pins
[0] = 0x15;
13937 spec
->autocfg
.speaker_pins
[0] = 0x14;
13938 spec
->ext_mic
.pin
= 0x18;
13939 spec
->ext_mic
.mux_idx
= 0;
13940 spec
->int_mic
.pin
= 0x12;
13941 spec
->int_mic
.mux_idx
= 5;
13942 spec
->auto_mic
= 1;
13945 static void alc269vb_laptop_amic_setup(struct hda_codec
*codec
)
13947 struct alc_spec
*spec
= codec
->spec
;
13948 spec
->autocfg
.hp_pins
[0] = 0x21;
13949 spec
->autocfg
.speaker_pins
[0] = 0x14;
13950 spec
->ext_mic
.pin
= 0x18;
13951 spec
->ext_mic
.mux_idx
= 0;
13952 spec
->int_mic
.pin
= 0x19;
13953 spec
->int_mic
.mux_idx
= 1;
13954 spec
->auto_mic
= 1;
13957 static void alc269vb_laptop_dmic_setup(struct hda_codec
*codec
)
13959 struct alc_spec
*spec
= codec
->spec
;
13960 spec
->autocfg
.hp_pins
[0] = 0x21;
13961 spec
->autocfg
.speaker_pins
[0] = 0x14;
13962 spec
->ext_mic
.pin
= 0x18;
13963 spec
->ext_mic
.mux_idx
= 0;
13964 spec
->int_mic
.pin
= 0x12;
13965 spec
->int_mic
.mux_idx
= 6;
13966 spec
->auto_mic
= 1;
13969 static void alc269_laptop_inithook(struct hda_codec
*codec
)
13971 alc269_speaker_automute(codec
);
13972 alc_mic_automute(codec
);
13976 * generic initialization of ADC, input mixers and output mixers
13978 static struct hda_verb alc269_init_verbs
[] = {
13980 * Unmute ADC0 and set the default input to mic-in
13982 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
13985 * Set up output mixers (0x02 - 0x03)
13987 /* set vol=0 to output mixers */
13988 {0x02, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
13989 {0x03, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
13991 /* set up input amps for analog loopback */
13992 /* Amp Indices: DAC = 0, mixer = 1 */
13993 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
13994 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
13995 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
13996 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
13997 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
13998 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14000 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
14001 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
14002 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
14003 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
14004 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
14005 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
14006 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
14008 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
14009 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
14011 /* FIXME: use Mux-type input source selection */
14012 /* Mixer elements: 0x18, 19, 1a, 1b, 1d, 0b */
14013 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
14014 {0x23, AC_VERB_SET_CONNECT_SEL
, 0x00},
14017 {0x14, AC_VERB_SET_EAPD_BTLENABLE
, 2},
14021 static struct hda_verb alc269vb_init_verbs
[] = {
14023 * Unmute ADC0 and set the default input to mic-in
14025 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14028 * Set up output mixers (0x02 - 0x03)
14030 /* set vol=0 to output mixers */
14031 {0x02, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
14032 {0x03, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
14034 /* set up input amps for analog loopback */
14035 /* Amp Indices: DAC = 0, mixer = 1 */
14036 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14037 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14038 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14039 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14040 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14041 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14043 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
14044 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
14045 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
14046 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
14047 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
14048 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
14049 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
14051 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
14052 {0x21, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
14054 /* FIXME: use Mux-type input source selection */
14055 /* Mixer elements: 0x18, 19, 1a, 1b, 1d, 0b */
14056 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
14057 {0x22, AC_VERB_SET_CONNECT_SEL
, 0x00},
14060 {0x14, AC_VERB_SET_EAPD_BTLENABLE
, 2},
14064 #define alc269_auto_create_multi_out_ctls \
14065 alc268_auto_create_multi_out_ctls
14066 #define alc269_auto_create_input_ctls \
14067 alc268_auto_create_input_ctls
14069 #ifdef CONFIG_SND_HDA_POWER_SAVE
14070 #define alc269_loopbacks alc880_loopbacks
14073 /* pcm configuration: identical with ALC880 */
14074 #define alc269_pcm_analog_playback alc880_pcm_analog_playback
14075 #define alc269_pcm_analog_capture alc880_pcm_analog_capture
14076 #define alc269_pcm_digital_playback alc880_pcm_digital_playback
14077 #define alc269_pcm_digital_capture alc880_pcm_digital_capture
14079 static struct hda_pcm_stream alc269_44k_pcm_analog_playback
= {
14083 .rates
= SNDRV_PCM_RATE_44100
, /* fixed rate */
14084 /* NID is set in alc_build_pcms */
14086 .open
= alc880_playback_pcm_open
,
14087 .prepare
= alc880_playback_pcm_prepare
,
14088 .cleanup
= alc880_playback_pcm_cleanup
14092 static struct hda_pcm_stream alc269_44k_pcm_analog_capture
= {
14096 .rates
= SNDRV_PCM_RATE_44100
, /* fixed rate */
14097 /* NID is set in alc_build_pcms */
14100 #ifdef CONFIG_SND_HDA_POWER_SAVE
14101 static int alc269_mic2_for_mute_led(struct hda_codec
*codec
)
14103 switch (codec
->subsystem_id
) {
14110 static int alc269_mic2_mute_check_ps(struct hda_codec
*codec
, hda_nid_t nid
)
14112 /* update mute-LED according to the speaker mute state */
14113 if (nid
== 0x01 || nid
== 0x14) {
14115 if (snd_hda_codec_amp_read(codec
, 0x14, 0, HDA_OUTPUT
, 0) &
14120 /* mic2 vref pin is used for mute LED control */
14121 snd_hda_codec_update_cache(codec
, 0x19, 0,
14122 AC_VERB_SET_PIN_WIDGET_CONTROL
,
14125 return alc_check_power_status(codec
, nid
);
14127 #endif /* CONFIG_SND_HDA_POWER_SAVE */
14130 * BIOS auto configuration
14132 static int alc269_parse_auto_config(struct hda_codec
*codec
)
14134 struct alc_spec
*spec
= codec
->spec
;
14136 static hda_nid_t alc269_ignore
[] = { 0x1d, 0 };
14138 err
= snd_hda_parse_pin_def_config(codec
, &spec
->autocfg
,
14143 err
= alc269_auto_create_multi_out_ctls(spec
, &spec
->autocfg
);
14146 err
= alc269_auto_create_input_ctls(codec
, &spec
->autocfg
);
14150 spec
->multiout
.max_channels
= spec
->multiout
.num_dacs
* 2;
14152 if (spec
->autocfg
.dig_outs
)
14153 spec
->multiout
.dig_out_nid
= ALC269_DIGOUT_NID
;
14155 if (spec
->kctls
.list
)
14156 add_mixer(spec
, spec
->kctls
.list
);
14158 if ((alc_read_coef_idx(codec
, 0) & 0x00f0) == 0x0010) {
14159 add_verb(spec
, alc269vb_init_verbs
);
14160 alc_ssid_check(codec
, 0, 0x1b, 0x14, 0x21);
14162 add_verb(spec
, alc269_init_verbs
);
14163 alc_ssid_check(codec
, 0x15, 0x1b, 0x14, 0);
14166 spec
->num_mux_defs
= 1;
14167 spec
->input_mux
= &spec
->private_imux
[0];
14168 fillup_priv_adc_nids(codec
, alc269_adc_candidates
,
14169 sizeof(alc269_adc_candidates
));
14171 /* set default input source */
14172 snd_hda_codec_write_cache(codec
, spec
->capsrc_nids
[0],
14173 0, AC_VERB_SET_CONNECT_SEL
,
14174 spec
->input_mux
->items
[0].index
);
14176 err
= alc_auto_add_mic_boost(codec
);
14180 if (!spec
->cap_mixer
&& !spec
->no_analog
)
14181 set_capture_mixer(codec
);
14186 #define alc269_auto_init_multi_out alc268_auto_init_multi_out
14187 #define alc269_auto_init_hp_out alc268_auto_init_hp_out
14188 #define alc269_auto_init_analog_input alc882_auto_init_analog_input
14191 /* init callback for auto-configuration model -- overriding the default init */
14192 static void alc269_auto_init(struct hda_codec
*codec
)
14194 struct alc_spec
*spec
= codec
->spec
;
14195 alc269_auto_init_multi_out(codec
);
14196 alc269_auto_init_hp_out(codec
);
14197 alc269_auto_init_analog_input(codec
);
14198 if (spec
->unsol_event
)
14199 alc_inithook(codec
);
14203 ALC269_FIXUP_SONY_VAIO
,
14206 static const struct hda_verb alc269_sony_vaio_fixup_verbs
[] = {
14207 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREFGRD
},
14211 static const struct alc_fixup alc269_fixups
[] = {
14212 [ALC269_FIXUP_SONY_VAIO
] = {
14213 .verbs
= alc269_sony_vaio_fixup_verbs
14217 static struct snd_pci_quirk alc269_fixup_tbl
[] = {
14218 SND_PCI_QUIRK(0x104d, 0x9071, "Sony VAIO", ALC269_FIXUP_SONY_VAIO
),
14224 * configuration and preset
14226 static const char *alc269_models
[ALC269_MODEL_LAST
] = {
14227 [ALC269_BASIC
] = "basic",
14228 [ALC269_QUANTA_FL1
] = "quanta",
14229 [ALC269_AMIC
] = "laptop-amic",
14230 [ALC269_DMIC
] = "laptop-dmic",
14231 [ALC269_FUJITSU
] = "fujitsu",
14232 [ALC269_LIFEBOOK
] = "lifebook",
14233 [ALC269_AUTO
] = "auto",
14236 static struct snd_pci_quirk alc269_cfg_tbl
[] = {
14237 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_QUANTA_FL1
),
14238 SND_PCI_QUIRK(0x1043, 0x8330, "ASUS Eeepc P703 P900A",
14240 SND_PCI_QUIRK(0x1043, 0x1013, "ASUS N61Da", ALC269VB_AMIC
),
14241 SND_PCI_QUIRK(0x1043, 0x1113, "ASUS N63Jn", ALC269VB_AMIC
),
14242 SND_PCI_QUIRK(0x1043, 0x1143, "ASUS B53f", ALC269VB_AMIC
),
14243 SND_PCI_QUIRK(0x1043, 0x1133, "ASUS UJ20ft", ALC269_AMIC
),
14244 SND_PCI_QUIRK(0x1043, 0x1183, "ASUS K72DR", ALC269VB_AMIC
),
14245 SND_PCI_QUIRK(0x1043, 0x11b3, "ASUS K52DR", ALC269VB_AMIC
),
14246 SND_PCI_QUIRK(0x1043, 0x11e3, "ASUS U33Jc", ALC269VB_AMIC
),
14247 SND_PCI_QUIRK(0x1043, 0x1273, "ASUS UL80Jt", ALC269VB_AMIC
),
14248 SND_PCI_QUIRK(0x1043, 0x1283, "ASUS U53Jc", ALC269_AMIC
),
14249 SND_PCI_QUIRK(0x1043, 0x12b3, "ASUS N82Jv", ALC269_AMIC
),
14250 SND_PCI_QUIRK(0x1043, 0x12d3, "ASUS N61Jv", ALC269_AMIC
),
14251 SND_PCI_QUIRK(0x1043, 0x13a3, "ASUS UL30Vt", ALC269_AMIC
),
14252 SND_PCI_QUIRK(0x1043, 0x1373, "ASUS G73JX", ALC269_AMIC
),
14253 SND_PCI_QUIRK(0x1043, 0x1383, "ASUS UJ30Jc", ALC269_AMIC
),
14254 SND_PCI_QUIRK(0x1043, 0x13d3, "ASUS N61JA", ALC269_AMIC
),
14255 SND_PCI_QUIRK(0x1043, 0x1413, "ASUS UL50", ALC269_AMIC
),
14256 SND_PCI_QUIRK(0x1043, 0x1443, "ASUS UL30", ALC269_AMIC
),
14257 SND_PCI_QUIRK(0x1043, 0x1453, "ASUS M60Jv", ALC269_AMIC
),
14258 SND_PCI_QUIRK(0x1043, 0x1483, "ASUS UL80", ALC269_AMIC
),
14259 SND_PCI_QUIRK(0x1043, 0x14f3, "ASUS F83Vf", ALC269_AMIC
),
14260 SND_PCI_QUIRK(0x1043, 0x14e3, "ASUS UL20", ALC269_AMIC
),
14261 SND_PCI_QUIRK(0x1043, 0x1513, "ASUS UX30", ALC269_AMIC
),
14262 SND_PCI_QUIRK(0x1043, 0x1593, "ASUS N51Vn", ALC269_AMIC
),
14263 SND_PCI_QUIRK(0x1043, 0x15a3, "ASUS N60Jv", ALC269_AMIC
),
14264 SND_PCI_QUIRK(0x1043, 0x15b3, "ASUS N60Dp", ALC269_AMIC
),
14265 SND_PCI_QUIRK(0x1043, 0x15c3, "ASUS N70De", ALC269_AMIC
),
14266 SND_PCI_QUIRK(0x1043, 0x15e3, "ASUS F83T", ALC269_AMIC
),
14267 SND_PCI_QUIRK(0x1043, 0x1643, "ASUS M60J", ALC269_AMIC
),
14268 SND_PCI_QUIRK(0x1043, 0x1653, "ASUS U50", ALC269_AMIC
),
14269 SND_PCI_QUIRK(0x1043, 0x1693, "ASUS F50N", ALC269_AMIC
),
14270 SND_PCI_QUIRK(0x1043, 0x16a3, "ASUS F5Q", ALC269_AMIC
),
14271 SND_PCI_QUIRK(0x1043, 0x16e3, "ASUS UX50", ALC269_DMIC
),
14272 SND_PCI_QUIRK(0x1043, 0x1723, "ASUS P80", ALC269_AMIC
),
14273 SND_PCI_QUIRK(0x1043, 0x1743, "ASUS U80", ALC269_AMIC
),
14274 SND_PCI_QUIRK(0x1043, 0x1773, "ASUS U20A", ALC269_AMIC
),
14275 SND_PCI_QUIRK(0x1043, 0x1883, "ASUS F81Se", ALC269_AMIC
),
14276 SND_PCI_QUIRK(0x1043, 0x831a, "ASUS Eeepc P901",
14278 SND_PCI_QUIRK(0x1043, 0x834a, "ASUS Eeepc S101",
14280 SND_PCI_QUIRK(0x1043, 0x8398, "ASUS P1005HA", ALC269_DMIC
),
14281 SND_PCI_QUIRK(0x1043, 0x83ce, "ASUS P1005HA", ALC269_DMIC
),
14282 SND_PCI_QUIRK(0x104d, 0x9071, "Sony VAIO", ALC269_AUTO
),
14283 SND_PCI_QUIRK(0x10cf, 0x1475, "Lifebook ICH9M-based", ALC269_LIFEBOOK
),
14284 SND_PCI_QUIRK(0x152d, 0x1778, "Quanta ON1", ALC269_DMIC
),
14285 SND_PCI_QUIRK(0x1734, 0x115d, "FSC Amilo", ALC269_FUJITSU
),
14286 SND_PCI_QUIRK(0x17aa, 0x3be9, "Quanta Wistron", ALC269_AMIC
),
14287 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_AMIC
),
14288 SND_PCI_QUIRK(0x17ff, 0x059a, "Quanta EL3", ALC269_DMIC
),
14289 SND_PCI_QUIRK(0x17ff, 0x059b, "Quanta JR1", ALC269_DMIC
),
14293 static struct alc_config_preset alc269_presets
[] = {
14295 .mixers
= { alc269_base_mixer
},
14296 .init_verbs
= { alc269_init_verbs
},
14297 .num_dacs
= ARRAY_SIZE(alc269_dac_nids
),
14298 .dac_nids
= alc269_dac_nids
,
14300 .num_channel_mode
= ARRAY_SIZE(alc269_modes
),
14301 .channel_mode
= alc269_modes
,
14302 .input_mux
= &alc269_capture_source
,
14304 [ALC269_QUANTA_FL1
] = {
14305 .mixers
= { alc269_quanta_fl1_mixer
},
14306 .init_verbs
= { alc269_init_verbs
, alc269_quanta_fl1_verbs
},
14307 .num_dacs
= ARRAY_SIZE(alc269_dac_nids
),
14308 .dac_nids
= alc269_dac_nids
,
14310 .num_channel_mode
= ARRAY_SIZE(alc269_modes
),
14311 .channel_mode
= alc269_modes
,
14312 .input_mux
= &alc269_capture_source
,
14313 .unsol_event
= alc269_quanta_fl1_unsol_event
,
14314 .setup
= alc269_quanta_fl1_setup
,
14315 .init_hook
= alc269_quanta_fl1_init_hook
,
14318 .mixers
= { alc269_laptop_mixer
},
14319 .cap_mixer
= alc269_laptop_analog_capture_mixer
,
14320 .init_verbs
= { alc269_init_verbs
,
14321 alc269_laptop_amic_init_verbs
},
14322 .num_dacs
= ARRAY_SIZE(alc269_dac_nids
),
14323 .dac_nids
= alc269_dac_nids
,
14325 .num_channel_mode
= ARRAY_SIZE(alc269_modes
),
14326 .channel_mode
= alc269_modes
,
14327 .unsol_event
= alc269_laptop_unsol_event
,
14328 .setup
= alc269_laptop_amic_setup
,
14329 .init_hook
= alc269_laptop_inithook
,
14332 .mixers
= { alc269_laptop_mixer
},
14333 .cap_mixer
= alc269_laptop_digital_capture_mixer
,
14334 .init_verbs
= { alc269_init_verbs
,
14335 alc269_laptop_dmic_init_verbs
},
14336 .num_dacs
= ARRAY_SIZE(alc269_dac_nids
),
14337 .dac_nids
= alc269_dac_nids
,
14339 .num_channel_mode
= ARRAY_SIZE(alc269_modes
),
14340 .channel_mode
= alc269_modes
,
14341 .unsol_event
= alc269_laptop_unsol_event
,
14342 .setup
= alc269_laptop_dmic_setup
,
14343 .init_hook
= alc269_laptop_inithook
,
14345 [ALC269VB_AMIC
] = {
14346 .mixers
= { alc269vb_laptop_mixer
},
14347 .cap_mixer
= alc269vb_laptop_analog_capture_mixer
,
14348 .init_verbs
= { alc269vb_init_verbs
,
14349 alc269vb_laptop_amic_init_verbs
},
14350 .num_dacs
= ARRAY_SIZE(alc269_dac_nids
),
14351 .dac_nids
= alc269_dac_nids
,
14353 .num_channel_mode
= ARRAY_SIZE(alc269_modes
),
14354 .channel_mode
= alc269_modes
,
14355 .unsol_event
= alc269_laptop_unsol_event
,
14356 .setup
= alc269vb_laptop_amic_setup
,
14357 .init_hook
= alc269_laptop_inithook
,
14359 [ALC269VB_DMIC
] = {
14360 .mixers
= { alc269vb_laptop_mixer
},
14361 .cap_mixer
= alc269vb_laptop_digital_capture_mixer
,
14362 .init_verbs
= { alc269vb_init_verbs
,
14363 alc269vb_laptop_dmic_init_verbs
},
14364 .num_dacs
= ARRAY_SIZE(alc269_dac_nids
),
14365 .dac_nids
= alc269_dac_nids
,
14367 .num_channel_mode
= ARRAY_SIZE(alc269_modes
),
14368 .channel_mode
= alc269_modes
,
14369 .unsol_event
= alc269_laptop_unsol_event
,
14370 .setup
= alc269vb_laptop_dmic_setup
,
14371 .init_hook
= alc269_laptop_inithook
,
14373 [ALC269_FUJITSU
] = {
14374 .mixers
= { alc269_fujitsu_mixer
},
14375 .cap_mixer
= alc269_laptop_digital_capture_mixer
,
14376 .init_verbs
= { alc269_init_verbs
,
14377 alc269_laptop_dmic_init_verbs
},
14378 .num_dacs
= ARRAY_SIZE(alc269_dac_nids
),
14379 .dac_nids
= alc269_dac_nids
,
14381 .num_channel_mode
= ARRAY_SIZE(alc269_modes
),
14382 .channel_mode
= alc269_modes
,
14383 .unsol_event
= alc269_laptop_unsol_event
,
14384 .setup
= alc269_laptop_dmic_setup
,
14385 .init_hook
= alc269_laptop_inithook
,
14387 [ALC269_LIFEBOOK
] = {
14388 .mixers
= { alc269_lifebook_mixer
},
14389 .init_verbs
= { alc269_init_verbs
, alc269_lifebook_verbs
},
14390 .num_dacs
= ARRAY_SIZE(alc269_dac_nids
),
14391 .dac_nids
= alc269_dac_nids
,
14393 .num_channel_mode
= ARRAY_SIZE(alc269_modes
),
14394 .channel_mode
= alc269_modes
,
14395 .input_mux
= &alc269_capture_source
,
14396 .unsol_event
= alc269_lifebook_unsol_event
,
14397 .init_hook
= alc269_lifebook_init_hook
,
14401 static int patch_alc269(struct hda_codec
*codec
)
14403 struct alc_spec
*spec
;
14406 int is_alc269vb
= 0;
14408 spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
14412 codec
->spec
= spec
;
14414 alc_auto_parse_customize_define(codec
);
14416 if ((alc_read_coef_idx(codec
, 0) & 0x00f0) == 0x0010){
14417 if (codec
->bus
->pci
->subsystem_vendor
== 0x1025 &&
14418 spec
->cdefine
.platform_type
== 1)
14419 alc_codec_rename(codec
, "ALC271X");
14421 alc_codec_rename(codec
, "ALC259");
14424 alc_fix_pll_init(codec
, 0x20, 0x04, 15);
14426 board_config
= snd_hda_check_board_config(codec
, ALC269_MODEL_LAST
,
14430 if (board_config
< 0) {
14431 printk(KERN_INFO
"hda_codec: %s: BIOS auto-probing.\n",
14433 board_config
= ALC269_AUTO
;
14436 if (board_config
== ALC269_AUTO
)
14437 alc_pick_fixup(codec
, alc269_fixup_tbl
, alc269_fixups
, 1);
14439 if (board_config
== ALC269_AUTO
) {
14440 /* automatic parse from the BIOS config */
14441 err
= alc269_parse_auto_config(codec
);
14447 "hda_codec: Cannot set up configuration "
14448 "from BIOS. Using base mode...\n");
14449 board_config
= ALC269_BASIC
;
14453 err
= snd_hda_attach_beep_device(codec
, 0x1);
14459 if (board_config
!= ALC269_AUTO
)
14460 setup_preset(codec
, &alc269_presets
[board_config
]);
14462 if (board_config
== ALC269_QUANTA_FL1
) {
14463 /* Due to a hardware problem on Lenovo Ideadpad, we need to
14464 * fix the sample rate of analog I/O to 44.1kHz
14466 spec
->stream_analog_playback
= &alc269_44k_pcm_analog_playback
;
14467 spec
->stream_analog_capture
= &alc269_44k_pcm_analog_capture
;
14469 spec
->stream_analog_playback
= &alc269_pcm_analog_playback
;
14470 spec
->stream_analog_capture
= &alc269_pcm_analog_capture
;
14472 spec
->stream_digital_playback
= &alc269_pcm_digital_playback
;
14473 spec
->stream_digital_capture
= &alc269_pcm_digital_capture
;
14475 if (!spec
->adc_nids
) { /* wasn't filled automatically? use default */
14476 if (!is_alc269vb
) {
14477 spec
->adc_nids
= alc269_adc_nids
;
14478 spec
->num_adc_nids
= ARRAY_SIZE(alc269_adc_nids
);
14479 spec
->capsrc_nids
= alc269_capsrc_nids
;
14481 spec
->adc_nids
= alc269vb_adc_nids
;
14482 spec
->num_adc_nids
= ARRAY_SIZE(alc269vb_adc_nids
);
14483 spec
->capsrc_nids
= alc269vb_capsrc_nids
;
14487 if (!spec
->cap_mixer
)
14488 set_capture_mixer(codec
);
14489 if (spec
->cdefine
.enable_pcbeep
)
14490 set_beep_amp(spec
, 0x0b, 0x04, HDA_INPUT
);
14492 if (board_config
== ALC269_AUTO
)
14493 alc_pick_fixup(codec
, alc269_fixup_tbl
, alc269_fixups
, 0);
14495 spec
->vmaster_nid
= 0x02;
14497 codec
->patch_ops
= alc_patch_ops
;
14498 if (board_config
== ALC269_AUTO
)
14499 spec
->init_hook
= alc269_auto_init
;
14500 #ifdef CONFIG_SND_HDA_POWER_SAVE
14501 if (!spec
->loopback
.amplist
)
14502 spec
->loopback
.amplist
= alc269_loopbacks
;
14503 if (alc269_mic2_for_mute_led(codec
))
14504 codec
->patch_ops
.check_power_status
= alc269_mic2_mute_check_ps
;
14511 * ALC861 channel source setting (2/6 channel selection for 3-stack)
14515 * set the path ways for 2 channel output
14516 * need to set the codec line out and mic 1 pin widgets to inputs
14518 static struct hda_verb alc861_threestack_ch2_init
[] = {
14519 /* set pin widget 1Ah (line in) for input */
14520 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20 },
14521 /* set pin widget 18h (mic1/2) for input, for mic also enable
14524 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24 },
14526 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb00c },
14528 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x01 << 8)) }, /*mic*/
14529 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x02 << 8)) }, /*line-in*/
14535 * need to set the codec line out and mic 1 pin widgets to outputs
14537 static struct hda_verb alc861_threestack_ch6_init
[] = {
14538 /* set pin widget 1Ah (line in) for output (Back Surround)*/
14539 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40 },
14540 /* set pin widget 18h (mic1) for output (CLFE)*/
14541 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40 },
14543 { 0x0c, AC_VERB_SET_CONNECT_SEL
, 0x00 },
14544 { 0x0d, AC_VERB_SET_CONNECT_SEL
, 0x00 },
14546 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb080 },
14548 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x01 << 8)) }, /*mic*/
14549 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x02 << 8)) }, /*line in*/
14554 static struct hda_channel_mode alc861_threestack_modes
[2] = {
14555 { 2, alc861_threestack_ch2_init
},
14556 { 6, alc861_threestack_ch6_init
},
14558 /* Set mic1 as input and unmute the mixer */
14559 static struct hda_verb alc861_uniwill_m31_ch2_init
[] = {
14560 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24 },
14561 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x01 << 8)) }, /*mic*/
14564 /* Set mic1 as output and mute mixer */
14565 static struct hda_verb alc861_uniwill_m31_ch4_init
[] = {
14566 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40 },
14567 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x01 << 8)) }, /*mic*/
14571 static struct hda_channel_mode alc861_uniwill_m31_modes
[2] = {
14572 { 2, alc861_uniwill_m31_ch2_init
},
14573 { 4, alc861_uniwill_m31_ch4_init
},
14576 /* Set mic1 and line-in as input and unmute the mixer */
14577 static struct hda_verb alc861_asus_ch2_init
[] = {
14578 /* set pin widget 1Ah (line in) for input */
14579 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20 },
14580 /* set pin widget 18h (mic1/2) for input, for mic also enable
14583 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24 },
14585 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb00c },
14587 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x01 << 8)) }, /*mic*/
14588 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x02 << 8)) }, /*line-in*/
14592 /* Set mic1 nad line-in as output and mute mixer */
14593 static struct hda_verb alc861_asus_ch6_init
[] = {
14594 /* set pin widget 1Ah (line in) for output (Back Surround)*/
14595 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40 },
14596 /* { 0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE }, */
14597 /* set pin widget 18h (mic1) for output (CLFE)*/
14598 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40 },
14599 /* { 0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE }, */
14600 { 0x0c, AC_VERB_SET_CONNECT_SEL
, 0x00 },
14601 { 0x0d, AC_VERB_SET_CONNECT_SEL
, 0x00 },
14603 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb080 },
14605 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x01 << 8)) }, /*mic*/
14606 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x02 << 8)) }, /*line in*/
14611 static struct hda_channel_mode alc861_asus_modes
[2] = {
14612 { 2, alc861_asus_ch2_init
},
14613 { 6, alc861_asus_ch6_init
},
14618 static struct snd_kcontrol_new alc861_base_mixer
[] = {
14619 /* output mixer control */
14620 HDA_CODEC_MUTE("Front Playback Switch", 0x03, 0x0, HDA_OUTPUT
),
14621 HDA_CODEC_MUTE("Surround Playback Switch", 0x06, 0x0, HDA_OUTPUT
),
14622 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x05, 1, 0x0, HDA_OUTPUT
),
14623 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x05, 2, 0x0, HDA_OUTPUT
),
14624 HDA_CODEC_MUTE("Side Playback Switch", 0x04, 0x0, HDA_OUTPUT
),
14626 /*Input mixer control */
14627 /* HDA_CODEC_VOLUME("Input Playback Volume", 0x15, 0x0, HDA_OUTPUT),
14628 HDA_CODEC_MUTE("Input Playback Switch", 0x15, 0x0, HDA_OUTPUT), */
14629 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT
),
14630 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT
),
14631 HDA_CODEC_VOLUME("Line Playback Volume", 0x15, 0x02, HDA_INPUT
),
14632 HDA_CODEC_MUTE("Line Playback Switch", 0x15, 0x02, HDA_INPUT
),
14633 HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT
),
14634 HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT
),
14635 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x10, 0x01, HDA_OUTPUT
),
14636 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x03, HDA_INPUT
),
14641 static struct snd_kcontrol_new alc861_3ST_mixer
[] = {
14642 /* output mixer control */
14643 HDA_CODEC_MUTE("Front Playback Switch", 0x03, 0x0, HDA_OUTPUT
),
14644 HDA_CODEC_MUTE("Surround Playback Switch", 0x06, 0x0, HDA_OUTPUT
),
14645 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x05, 1, 0x0, HDA_OUTPUT
),
14646 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x05, 2, 0x0, HDA_OUTPUT
),
14647 /*HDA_CODEC_MUTE("Side Playback Switch", 0x04, 0x0, HDA_OUTPUT), */
14649 /* Input mixer control */
14650 /* HDA_CODEC_VOLUME("Input Playback Volume", 0x15, 0x0, HDA_OUTPUT),
14651 HDA_CODEC_MUTE("Input Playback Switch", 0x15, 0x0, HDA_OUTPUT), */
14652 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT
),
14653 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT
),
14654 HDA_CODEC_VOLUME("Line Playback Volume", 0x15, 0x02, HDA_INPUT
),
14655 HDA_CODEC_MUTE("Line Playback Switch", 0x15, 0x02, HDA_INPUT
),
14656 HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT
),
14657 HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT
),
14658 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x10, 0x01, HDA_OUTPUT
),
14659 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x03, HDA_INPUT
),
14662 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
14663 .name
= "Channel Mode",
14664 .info
= alc_ch_mode_info
,
14665 .get
= alc_ch_mode_get
,
14666 .put
= alc_ch_mode_put
,
14667 .private_value
= ARRAY_SIZE(alc861_threestack_modes
),
14672 static struct snd_kcontrol_new alc861_toshiba_mixer
[] = {
14673 /* output mixer control */
14674 HDA_CODEC_MUTE("Master Playback Switch", 0x03, 0x0, HDA_OUTPUT
),
14675 HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT
),
14676 HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT
),
14681 static struct snd_kcontrol_new alc861_uniwill_m31_mixer
[] = {
14682 /* output mixer control */
14683 HDA_CODEC_MUTE("Front Playback Switch", 0x03, 0x0, HDA_OUTPUT
),
14684 HDA_CODEC_MUTE("Surround Playback Switch", 0x06, 0x0, HDA_OUTPUT
),
14685 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x05, 1, 0x0, HDA_OUTPUT
),
14686 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x05, 2, 0x0, HDA_OUTPUT
),
14687 /*HDA_CODEC_MUTE("Side Playback Switch", 0x04, 0x0, HDA_OUTPUT), */
14689 /* Input mixer control */
14690 /* HDA_CODEC_VOLUME("Input Playback Volume", 0x15, 0x0, HDA_OUTPUT),
14691 HDA_CODEC_MUTE("Input Playback Switch", 0x15, 0x0, HDA_OUTPUT), */
14692 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT
),
14693 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT
),
14694 HDA_CODEC_VOLUME("Line Playback Volume", 0x15, 0x02, HDA_INPUT
),
14695 HDA_CODEC_MUTE("Line Playback Switch", 0x15, 0x02, HDA_INPUT
),
14696 HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT
),
14697 HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT
),
14698 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x10, 0x01, HDA_OUTPUT
),
14699 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x03, HDA_INPUT
),
14702 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
14703 .name
= "Channel Mode",
14704 .info
= alc_ch_mode_info
,
14705 .get
= alc_ch_mode_get
,
14706 .put
= alc_ch_mode_put
,
14707 .private_value
= ARRAY_SIZE(alc861_uniwill_m31_modes
),
14712 static struct snd_kcontrol_new alc861_asus_mixer
[] = {
14713 /* output mixer control */
14714 HDA_CODEC_MUTE("Front Playback Switch", 0x03, 0x0, HDA_OUTPUT
),
14715 HDA_CODEC_MUTE("Surround Playback Switch", 0x06, 0x0, HDA_OUTPUT
),
14716 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x05, 1, 0x0, HDA_OUTPUT
),
14717 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x05, 2, 0x0, HDA_OUTPUT
),
14718 HDA_CODEC_MUTE("Side Playback Switch", 0x04, 0x0, HDA_OUTPUT
),
14720 /* Input mixer control */
14721 HDA_CODEC_VOLUME("Input Playback Volume", 0x15, 0x0, HDA_OUTPUT
),
14722 HDA_CODEC_MUTE("Input Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
14723 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT
),
14724 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT
),
14725 HDA_CODEC_VOLUME("Line Playback Volume", 0x15, 0x02, HDA_INPUT
),
14726 HDA_CODEC_MUTE("Line Playback Switch", 0x15, 0x02, HDA_INPUT
),
14727 HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT
),
14728 HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT
),
14729 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x10, 0x01, HDA_OUTPUT
),
14730 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x03, HDA_OUTPUT
),
14733 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
14734 .name
= "Channel Mode",
14735 .info
= alc_ch_mode_info
,
14736 .get
= alc_ch_mode_get
,
14737 .put
= alc_ch_mode_put
,
14738 .private_value
= ARRAY_SIZE(alc861_asus_modes
),
14743 /* additional mixer */
14744 static struct snd_kcontrol_new alc861_asus_laptop_mixer
[] = {
14745 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT
),
14746 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT
),
14751 * generic initialization of ADC, input mixers and output mixers
14753 static struct hda_verb alc861_base_init_verbs
[] = {
14755 * Unmute ADC0 and set the default input to mic-in
14757 /* port-A for surround (rear panel) */
14758 { 0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40 },
14759 { 0x0e, AC_VERB_SET_CONNECT_SEL
, 0x00 },
14760 /* port-B for mic-in (rear panel) with vref */
14761 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24 },
14762 /* port-C for line-in (rear panel) */
14763 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20 },
14764 /* port-D for Front */
14765 { 0x0b, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40 },
14766 { 0x0b, AC_VERB_SET_CONNECT_SEL
, 0x00 },
14767 /* port-E for HP out (front panel) */
14768 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0xc0 },
14769 /* route front PCM to HP */
14770 { 0x0f, AC_VERB_SET_CONNECT_SEL
, 0x00 },
14771 /* port-F for mic-in (front panel) with vref */
14772 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24 },
14773 /* port-G for CLFE (rear panel) */
14774 { 0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40 },
14775 { 0x1f, AC_VERB_SET_CONNECT_SEL
, 0x00 },
14776 /* port-H for side (rear panel) */
14777 { 0x20, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40 },
14778 { 0x20, AC_VERB_SET_CONNECT_SEL
, 0x00 },
14780 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20 },
14781 /* route front mic to ADC1*/
14782 {0x08, AC_VERB_SET_CONNECT_SEL
, 0x00},
14783 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14785 /* Unmute DAC0~3 & spdif out*/
14786 {0x03, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
14787 {0x04, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
14788 {0x05, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
14789 {0x06, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
14790 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
14792 /* Unmute Mixer 14 (mic) 1c (Line in)*/
14793 {0x014, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14794 {0x014, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14795 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14796 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14798 /* Unmute Stereo Mixer 15 */
14799 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14800 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14801 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(2)},
14802 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb00c}, /* Output 0~12 step */
14804 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14805 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14806 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14807 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14808 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14809 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14810 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14811 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14812 /* hp used DAC 3 (Front) */
14813 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(3)},
14814 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(2)},
14819 static struct hda_verb alc861_threestack_init_verbs
[] = {
14821 * Unmute ADC0 and set the default input to mic-in
14823 /* port-A for surround (rear panel) */
14824 { 0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x00 },
14825 /* port-B for mic-in (rear panel) with vref */
14826 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24 },
14827 /* port-C for line-in (rear panel) */
14828 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20 },
14829 /* port-D for Front */
14830 { 0x0b, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40 },
14831 { 0x0b, AC_VERB_SET_CONNECT_SEL
, 0x00 },
14832 /* port-E for HP out (front panel) */
14833 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0xc0 },
14834 /* route front PCM to HP */
14835 { 0x0f, AC_VERB_SET_CONNECT_SEL
, 0x00 },
14836 /* port-F for mic-in (front panel) with vref */
14837 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24 },
14838 /* port-G for CLFE (rear panel) */
14839 { 0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x00 },
14840 /* port-H for side (rear panel) */
14841 { 0x20, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x00 },
14843 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20 },
14844 /* route front mic to ADC1*/
14845 {0x08, AC_VERB_SET_CONNECT_SEL
, 0x00},
14846 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14847 /* Unmute DAC0~3 & spdif out*/
14848 {0x03, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
14849 {0x04, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
14850 {0x05, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
14851 {0x06, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
14852 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
14854 /* Unmute Mixer 14 (mic) 1c (Line in)*/
14855 {0x014, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14856 {0x014, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14857 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14858 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14860 /* Unmute Stereo Mixer 15 */
14861 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14862 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14863 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(2)},
14864 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb00c}, /* Output 0~12 step */
14866 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14867 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14868 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14869 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14870 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14871 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14872 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14873 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14874 /* hp used DAC 3 (Front) */
14875 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(3)},
14876 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(2)},
14880 static struct hda_verb alc861_uniwill_m31_init_verbs
[] = {
14882 * Unmute ADC0 and set the default input to mic-in
14884 /* port-A for surround (rear panel) */
14885 { 0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x00 },
14886 /* port-B for mic-in (rear panel) with vref */
14887 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24 },
14888 /* port-C for line-in (rear panel) */
14889 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20 },
14890 /* port-D for Front */
14891 { 0x0b, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40 },
14892 { 0x0b, AC_VERB_SET_CONNECT_SEL
, 0x00 },
14893 /* port-E for HP out (front panel) */
14894 /* this has to be set to VREF80 */
14895 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24 },
14896 /* route front PCM to HP */
14897 { 0x0f, AC_VERB_SET_CONNECT_SEL
, 0x00 },
14898 /* port-F for mic-in (front panel) with vref */
14899 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24 },
14900 /* port-G for CLFE (rear panel) */
14901 { 0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x00 },
14902 /* port-H for side (rear panel) */
14903 { 0x20, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x00 },
14905 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20 },
14906 /* route front mic to ADC1*/
14907 {0x08, AC_VERB_SET_CONNECT_SEL
, 0x00},
14908 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14909 /* Unmute DAC0~3 & spdif out*/
14910 {0x03, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
14911 {0x04, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
14912 {0x05, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
14913 {0x06, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
14914 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
14916 /* Unmute Mixer 14 (mic) 1c (Line in)*/
14917 {0x014, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14918 {0x014, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14919 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14920 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14922 /* Unmute Stereo Mixer 15 */
14923 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14924 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14925 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(2)},
14926 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb00c}, /* Output 0~12 step */
14928 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14929 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14930 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14931 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14932 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14933 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14934 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14935 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14936 /* hp used DAC 3 (Front) */
14937 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(3)},
14938 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(2)},
14942 static struct hda_verb alc861_asus_init_verbs
[] = {
14944 * Unmute ADC0 and set the default input to mic-in
14946 /* port-A for surround (rear panel)
14947 * according to codec#0 this is the HP jack
14949 { 0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0xc0 }, /* was 0x00 */
14950 /* route front PCM to HP */
14951 { 0x0e, AC_VERB_SET_CONNECT_SEL
, 0x01 },
14952 /* port-B for mic-in (rear panel) with vref */
14953 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24 },
14954 /* port-C for line-in (rear panel) */
14955 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20 },
14956 /* port-D for Front */
14957 { 0x0b, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40 },
14958 { 0x0b, AC_VERB_SET_CONNECT_SEL
, 0x00 },
14959 /* port-E for HP out (front panel) */
14960 /* this has to be set to VREF80 */
14961 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24 },
14962 /* route front PCM to HP */
14963 { 0x0f, AC_VERB_SET_CONNECT_SEL
, 0x00 },
14964 /* port-F for mic-in (front panel) with vref */
14965 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24 },
14966 /* port-G for CLFE (rear panel) */
14967 { 0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40 },
14968 /* port-H for side (rear panel) */
14969 { 0x20, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40 },
14971 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20 },
14972 /* route front mic to ADC1*/
14973 {0x08, AC_VERB_SET_CONNECT_SEL
, 0x00},
14974 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14975 /* Unmute DAC0~3 & spdif out*/
14976 {0x03, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
14977 {0x04, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
14978 {0x05, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
14979 {0x06, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
14980 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
14981 /* Unmute Mixer 14 (mic) 1c (Line in)*/
14982 {0x014, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14983 {0x014, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14984 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14985 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14987 /* Unmute Stereo Mixer 15 */
14988 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14989 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14990 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(2)},
14991 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb00c}, /* Output 0~12 step */
14993 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14994 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14995 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14996 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14997 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14998 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14999 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15000 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15001 /* hp used DAC 3 (Front) */
15002 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(3)},
15003 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(2)},
15007 /* additional init verbs for ASUS laptops */
15008 static struct hda_verb alc861_asus_laptop_init_verbs
[] = {
15009 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x45 }, /* HP-out */
15010 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2) }, /* mute line-in */
15015 * generic initialization of ADC, input mixers and output mixers
15017 static struct hda_verb alc861_auto_init_verbs
[] = {
15019 * Unmute ADC0 and set the default input to mic-in
15021 /* {0x08, AC_VERB_SET_CONNECT_SEL, 0x00}, */
15022 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15024 /* Unmute DAC0~3 & spdif out*/
15025 {0x03, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
15026 {0x04, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
15027 {0x05, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
15028 {0x06, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
15029 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
15031 /* Unmute Mixer 14 (mic) 1c (Line in)*/
15032 {0x014, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15033 {0x014, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15034 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15035 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15037 /* Unmute Stereo Mixer 15 */
15038 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15039 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15040 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(2)},
15041 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb00c},
15043 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
15044 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
15045 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
15046 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
15047 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
15048 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
15049 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
15050 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
15052 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
15053 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
15054 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
15055 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
15056 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
15057 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
15058 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
15059 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
15061 {0x08, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* set Mic 1 */
15066 static struct hda_verb alc861_toshiba_init_verbs
[] = {
15067 {0x0f, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
15072 /* toggle speaker-output according to the hp-jack state */
15073 static void alc861_toshiba_automute(struct hda_codec
*codec
)
15075 unsigned int present
= snd_hda_jack_detect(codec
, 0x0f);
15077 snd_hda_codec_amp_stereo(codec
, 0x16, HDA_INPUT
, 0,
15078 HDA_AMP_MUTE
, present
? HDA_AMP_MUTE
: 0);
15079 snd_hda_codec_amp_stereo(codec
, 0x1a, HDA_INPUT
, 3,
15080 HDA_AMP_MUTE
, present
? 0 : HDA_AMP_MUTE
);
15083 static void alc861_toshiba_unsol_event(struct hda_codec
*codec
,
15086 if ((res
>> 26) == ALC880_HP_EVENT
)
15087 alc861_toshiba_automute(codec
);
15090 /* pcm configuration: identical with ALC880 */
15091 #define alc861_pcm_analog_playback alc880_pcm_analog_playback
15092 #define alc861_pcm_analog_capture alc880_pcm_analog_capture
15093 #define alc861_pcm_digital_playback alc880_pcm_digital_playback
15094 #define alc861_pcm_digital_capture alc880_pcm_digital_capture
15097 #define ALC861_DIGOUT_NID 0x07
15099 static struct hda_channel_mode alc861_8ch_modes
[1] = {
15103 static hda_nid_t alc861_dac_nids
[4] = {
15104 /* front, surround, clfe, side */
15105 0x03, 0x06, 0x05, 0x04
15108 static hda_nid_t alc660_dac_nids
[3] = {
15109 /* front, clfe, surround */
15113 static hda_nid_t alc861_adc_nids
[1] = {
15118 static struct hda_input_mux alc861_capture_source
= {
15122 { "Front Mic", 0x3 },
15129 static hda_nid_t
alc861_look_for_dac(struct hda_codec
*codec
, hda_nid_t pin
)
15131 struct alc_spec
*spec
= codec
->spec
;
15132 hda_nid_t mix
, srcs
[5];
15135 if (snd_hda_get_connections(codec
, pin
, &mix
, 1) != 1)
15137 num
= snd_hda_get_connections(codec
, mix
, srcs
, ARRAY_SIZE(srcs
));
15140 for (i
= 0; i
< num
; i
++) {
15142 type
= get_wcaps_type(get_wcaps(codec
, srcs
[i
]));
15143 if (type
!= AC_WID_AUD_OUT
)
15145 for (j
= 0; j
< spec
->multiout
.num_dacs
; j
++)
15146 if (spec
->multiout
.dac_nids
[j
] == srcs
[i
])
15148 if (j
>= spec
->multiout
.num_dacs
)
15154 /* fill in the dac_nids table from the parsed pin configuration */
15155 static int alc861_auto_fill_dac_nids(struct hda_codec
*codec
,
15156 const struct auto_pin_cfg
*cfg
)
15158 struct alc_spec
*spec
= codec
->spec
;
15160 hda_nid_t nid
, dac
;
15162 spec
->multiout
.dac_nids
= spec
->private_dac_nids
;
15163 for (i
= 0; i
< cfg
->line_outs
; i
++) {
15164 nid
= cfg
->line_out_pins
[i
];
15165 dac
= alc861_look_for_dac(codec
, nid
);
15168 spec
->multiout
.dac_nids
[spec
->multiout
.num_dacs
++] = dac
;
15173 static int alc861_create_out_sw(struct hda_codec
*codec
, const char *pfx
,
15174 hda_nid_t nid
, unsigned int chs
)
15176 return add_pb_sw_ctrl(codec
->spec
, ALC_CTL_WIDGET_MUTE
, pfx
,
15177 HDA_COMPOSE_AMP_VAL(nid
, chs
, 0, HDA_OUTPUT
));
15180 /* add playback controls from the parsed DAC table */
15181 static int alc861_auto_create_multi_out_ctls(struct hda_codec
*codec
,
15182 const struct auto_pin_cfg
*cfg
)
15184 struct alc_spec
*spec
= codec
->spec
;
15185 static const char *chname
[4] = {
15186 "Front", "Surround", NULL
/*CLFE*/, "Side"
15191 if (cfg
->line_outs
== 1) {
15192 const char *pfx
= NULL
;
15195 else if (cfg
->line_out_type
== AUTO_PIN_SPEAKER_OUT
)
15198 nid
= spec
->multiout
.dac_nids
[0];
15199 return alc861_create_out_sw(codec
, pfx
, nid
, 3);
15203 for (i
= 0; i
< cfg
->line_outs
; i
++) {
15204 nid
= spec
->multiout
.dac_nids
[i
];
15209 err
= alc861_create_out_sw(codec
, "Center", nid
, 1);
15212 err
= alc861_create_out_sw(codec
, "LFE", nid
, 2);
15216 err
= alc861_create_out_sw(codec
, chname
[i
], nid
, 3);
15224 static int alc861_auto_create_hp_ctls(struct hda_codec
*codec
, hda_nid_t pin
)
15226 struct alc_spec
*spec
= codec
->spec
;
15233 if ((pin
>= 0x0b && pin
<= 0x10) || pin
== 0x1f || pin
== 0x20) {
15234 nid
= alc861_look_for_dac(codec
, pin
);
15236 err
= alc861_create_out_sw(codec
, "Headphone", nid
, 3);
15239 spec
->multiout
.hp_nid
= nid
;
15245 /* create playback/capture controls for input pins */
15246 static int alc861_auto_create_input_ctls(struct hda_codec
*codec
,
15247 const struct auto_pin_cfg
*cfg
)
15249 return alc_auto_create_input_ctls(codec
, cfg
, 0x15, 0x08, 0);
15252 static void alc861_auto_set_output_and_unmute(struct hda_codec
*codec
,
15254 int pin_type
, hda_nid_t dac
)
15256 hda_nid_t mix
, srcs
[5];
15259 snd_hda_codec_write(codec
, nid
, 0, AC_VERB_SET_PIN_WIDGET_CONTROL
,
15261 snd_hda_codec_write(codec
, dac
, 0, AC_VERB_SET_AMP_GAIN_MUTE
,
15263 if (snd_hda_get_connections(codec
, nid
, &mix
, 1) != 1)
15265 num
= snd_hda_get_connections(codec
, mix
, srcs
, ARRAY_SIZE(srcs
));
15268 for (i
= 0; i
< num
; i
++) {
15270 if (srcs
[i
] == dac
|| srcs
[i
] == 0x15)
15271 mute
= AMP_IN_UNMUTE(i
);
15273 mute
= AMP_IN_MUTE(i
);
15274 snd_hda_codec_write(codec
, mix
, 0, AC_VERB_SET_AMP_GAIN_MUTE
,
15279 static void alc861_auto_init_multi_out(struct hda_codec
*codec
)
15281 struct alc_spec
*spec
= codec
->spec
;
15284 for (i
= 0; i
< spec
->autocfg
.line_outs
; i
++) {
15285 hda_nid_t nid
= spec
->autocfg
.line_out_pins
[i
];
15286 int pin_type
= get_pin_type(spec
->autocfg
.line_out_type
);
15288 alc861_auto_set_output_and_unmute(codec
, nid
, pin_type
,
15289 spec
->multiout
.dac_nids
[i
]);
15293 static void alc861_auto_init_hp_out(struct hda_codec
*codec
)
15295 struct alc_spec
*spec
= codec
->spec
;
15297 if (spec
->autocfg
.hp_outs
)
15298 alc861_auto_set_output_and_unmute(codec
,
15299 spec
->autocfg
.hp_pins
[0],
15301 spec
->multiout
.hp_nid
);
15302 if (spec
->autocfg
.speaker_outs
)
15303 alc861_auto_set_output_and_unmute(codec
,
15304 spec
->autocfg
.speaker_pins
[0],
15306 spec
->multiout
.dac_nids
[0]);
15309 static void alc861_auto_init_analog_input(struct hda_codec
*codec
)
15311 struct alc_spec
*spec
= codec
->spec
;
15314 for (i
= 0; i
< AUTO_PIN_LAST
; i
++) {
15315 hda_nid_t nid
= spec
->autocfg
.input_pins
[i
];
15316 if (nid
>= 0x0c && nid
<= 0x11)
15317 alc_set_input_pin(codec
, nid
, i
);
15321 /* parse the BIOS configuration and set up the alc_spec */
15322 /* return 1 if successful, 0 if the proper config is not found,
15323 * or a negative error code
15325 static int alc861_parse_auto_config(struct hda_codec
*codec
)
15327 struct alc_spec
*spec
= codec
->spec
;
15329 static hda_nid_t alc861_ignore
[] = { 0x1d, 0 };
15331 err
= snd_hda_parse_pin_def_config(codec
, &spec
->autocfg
,
15335 if (!spec
->autocfg
.line_outs
)
15336 return 0; /* can't find valid BIOS pin config */
15338 err
= alc861_auto_fill_dac_nids(codec
, &spec
->autocfg
);
15341 err
= alc861_auto_create_multi_out_ctls(codec
, &spec
->autocfg
);
15344 err
= alc861_auto_create_hp_ctls(codec
, spec
->autocfg
.hp_pins
[0]);
15347 err
= alc861_auto_create_input_ctls(codec
, &spec
->autocfg
);
15351 spec
->multiout
.max_channels
= spec
->multiout
.num_dacs
* 2;
15353 if (spec
->autocfg
.dig_outs
)
15354 spec
->multiout
.dig_out_nid
= ALC861_DIGOUT_NID
;
15356 if (spec
->kctls
.list
)
15357 add_mixer(spec
, spec
->kctls
.list
);
15359 add_verb(spec
, alc861_auto_init_verbs
);
15361 spec
->num_mux_defs
= 1;
15362 spec
->input_mux
= &spec
->private_imux
[0];
15364 spec
->adc_nids
= alc861_adc_nids
;
15365 spec
->num_adc_nids
= ARRAY_SIZE(alc861_adc_nids
);
15366 set_capture_mixer(codec
);
15368 alc_ssid_check(codec
, 0x0e, 0x0f, 0x0b, 0);
15373 /* additional initialization for auto-configuration model */
15374 static void alc861_auto_init(struct hda_codec
*codec
)
15376 struct alc_spec
*spec
= codec
->spec
;
15377 alc861_auto_init_multi_out(codec
);
15378 alc861_auto_init_hp_out(codec
);
15379 alc861_auto_init_analog_input(codec
);
15380 if (spec
->unsol_event
)
15381 alc_inithook(codec
);
15384 #ifdef CONFIG_SND_HDA_POWER_SAVE
15385 static struct hda_amp_list alc861_loopbacks
[] = {
15386 { 0x15, HDA_INPUT
, 0 },
15387 { 0x15, HDA_INPUT
, 1 },
15388 { 0x15, HDA_INPUT
, 2 },
15389 { 0x15, HDA_INPUT
, 3 },
15396 * configuration and preset
15398 static const char *alc861_models
[ALC861_MODEL_LAST
] = {
15399 [ALC861_3ST
] = "3stack",
15400 [ALC660_3ST
] = "3stack-660",
15401 [ALC861_3ST_DIG
] = "3stack-dig",
15402 [ALC861_6ST_DIG
] = "6stack-dig",
15403 [ALC861_UNIWILL_M31
] = "uniwill-m31",
15404 [ALC861_TOSHIBA
] = "toshiba",
15405 [ALC861_ASUS
] = "asus",
15406 [ALC861_ASUS_LAPTOP
] = "asus-laptop",
15407 [ALC861_AUTO
] = "auto",
15410 static struct snd_pci_quirk alc861_cfg_tbl
[] = {
15411 SND_PCI_QUIRK(0x1043, 0x1205, "ASUS W7J", ALC861_3ST
),
15412 SND_PCI_QUIRK(0x1043, 0x1335, "ASUS F2/3", ALC861_ASUS_LAPTOP
),
15413 SND_PCI_QUIRK(0x1043, 0x1338, "ASUS F2/3", ALC861_ASUS_LAPTOP
),
15414 SND_PCI_QUIRK(0x1043, 0x1393, "ASUS", ALC861_ASUS
),
15415 SND_PCI_QUIRK(0x1043, 0x13d7, "ASUS A9rp", ALC861_ASUS_LAPTOP
),
15416 SND_PCI_QUIRK(0x1043, 0x81cb, "ASUS P1-AH2", ALC861_3ST_DIG
),
15417 SND_PCI_QUIRK(0x1179, 0xff00, "Toshiba", ALC861_TOSHIBA
),
15418 /* FIXME: the entry below breaks Toshiba A100 (model=auto works!)
15419 * Any other models that need this preset?
15421 /* SND_PCI_QUIRK(0x1179, 0xff10, "Toshiba", ALC861_TOSHIBA), */
15422 SND_PCI_QUIRK(0x1462, 0x7254, "HP dx2200 (MSI MS-7254)", ALC861_3ST
),
15423 SND_PCI_QUIRK(0x1462, 0x7297, "HP dx2250 (MSI MS-7297)", ALC861_3ST
),
15424 SND_PCI_QUIRK(0x1584, 0x2b01, "Uniwill X40AIx", ALC861_UNIWILL_M31
),
15425 SND_PCI_QUIRK(0x1584, 0x9072, "Uniwill m31", ALC861_UNIWILL_M31
),
15426 SND_PCI_QUIRK(0x1584, 0x9075, "Airis Praxis N1212", ALC861_ASUS_LAPTOP
),
15427 /* FIXME: the below seems conflict */
15428 /* SND_PCI_QUIRK(0x1584, 0x9075, "Uniwill", ALC861_UNIWILL_M31), */
15429 SND_PCI_QUIRK(0x1849, 0x0660, "Asrock 939SLI32", ALC660_3ST
),
15430 SND_PCI_QUIRK(0x8086, 0xd600, "Intel", ALC861_3ST
),
15434 static struct alc_config_preset alc861_presets
[] = {
15436 .mixers
= { alc861_3ST_mixer
},
15437 .init_verbs
= { alc861_threestack_init_verbs
},
15438 .num_dacs
= ARRAY_SIZE(alc861_dac_nids
),
15439 .dac_nids
= alc861_dac_nids
,
15440 .num_channel_mode
= ARRAY_SIZE(alc861_threestack_modes
),
15441 .channel_mode
= alc861_threestack_modes
,
15443 .num_adc_nids
= ARRAY_SIZE(alc861_adc_nids
),
15444 .adc_nids
= alc861_adc_nids
,
15445 .input_mux
= &alc861_capture_source
,
15447 [ALC861_3ST_DIG
] = {
15448 .mixers
= { alc861_base_mixer
},
15449 .init_verbs
= { alc861_threestack_init_verbs
},
15450 .num_dacs
= ARRAY_SIZE(alc861_dac_nids
),
15451 .dac_nids
= alc861_dac_nids
,
15452 .dig_out_nid
= ALC861_DIGOUT_NID
,
15453 .num_channel_mode
= ARRAY_SIZE(alc861_threestack_modes
),
15454 .channel_mode
= alc861_threestack_modes
,
15456 .num_adc_nids
= ARRAY_SIZE(alc861_adc_nids
),
15457 .adc_nids
= alc861_adc_nids
,
15458 .input_mux
= &alc861_capture_source
,
15460 [ALC861_6ST_DIG
] = {
15461 .mixers
= { alc861_base_mixer
},
15462 .init_verbs
= { alc861_base_init_verbs
},
15463 .num_dacs
= ARRAY_SIZE(alc861_dac_nids
),
15464 .dac_nids
= alc861_dac_nids
,
15465 .dig_out_nid
= ALC861_DIGOUT_NID
,
15466 .num_channel_mode
= ARRAY_SIZE(alc861_8ch_modes
),
15467 .channel_mode
= alc861_8ch_modes
,
15468 .num_adc_nids
= ARRAY_SIZE(alc861_adc_nids
),
15469 .adc_nids
= alc861_adc_nids
,
15470 .input_mux
= &alc861_capture_source
,
15473 .mixers
= { alc861_3ST_mixer
},
15474 .init_verbs
= { alc861_threestack_init_verbs
},
15475 .num_dacs
= ARRAY_SIZE(alc660_dac_nids
),
15476 .dac_nids
= alc660_dac_nids
,
15477 .num_channel_mode
= ARRAY_SIZE(alc861_threestack_modes
),
15478 .channel_mode
= alc861_threestack_modes
,
15480 .num_adc_nids
= ARRAY_SIZE(alc861_adc_nids
),
15481 .adc_nids
= alc861_adc_nids
,
15482 .input_mux
= &alc861_capture_source
,
15484 [ALC861_UNIWILL_M31
] = {
15485 .mixers
= { alc861_uniwill_m31_mixer
},
15486 .init_verbs
= { alc861_uniwill_m31_init_verbs
},
15487 .num_dacs
= ARRAY_SIZE(alc861_dac_nids
),
15488 .dac_nids
= alc861_dac_nids
,
15489 .dig_out_nid
= ALC861_DIGOUT_NID
,
15490 .num_channel_mode
= ARRAY_SIZE(alc861_uniwill_m31_modes
),
15491 .channel_mode
= alc861_uniwill_m31_modes
,
15493 .num_adc_nids
= ARRAY_SIZE(alc861_adc_nids
),
15494 .adc_nids
= alc861_adc_nids
,
15495 .input_mux
= &alc861_capture_source
,
15497 [ALC861_TOSHIBA
] = {
15498 .mixers
= { alc861_toshiba_mixer
},
15499 .init_verbs
= { alc861_base_init_verbs
,
15500 alc861_toshiba_init_verbs
},
15501 .num_dacs
= ARRAY_SIZE(alc861_dac_nids
),
15502 .dac_nids
= alc861_dac_nids
,
15503 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_2ch_modes
),
15504 .channel_mode
= alc883_3ST_2ch_modes
,
15505 .num_adc_nids
= ARRAY_SIZE(alc861_adc_nids
),
15506 .adc_nids
= alc861_adc_nids
,
15507 .input_mux
= &alc861_capture_source
,
15508 .unsol_event
= alc861_toshiba_unsol_event
,
15509 .init_hook
= alc861_toshiba_automute
,
15512 .mixers
= { alc861_asus_mixer
},
15513 .init_verbs
= { alc861_asus_init_verbs
},
15514 .num_dacs
= ARRAY_SIZE(alc861_dac_nids
),
15515 .dac_nids
= alc861_dac_nids
,
15516 .dig_out_nid
= ALC861_DIGOUT_NID
,
15517 .num_channel_mode
= ARRAY_SIZE(alc861_asus_modes
),
15518 .channel_mode
= alc861_asus_modes
,
15521 .num_adc_nids
= ARRAY_SIZE(alc861_adc_nids
),
15522 .adc_nids
= alc861_adc_nids
,
15523 .input_mux
= &alc861_capture_source
,
15525 [ALC861_ASUS_LAPTOP
] = {
15526 .mixers
= { alc861_toshiba_mixer
, alc861_asus_laptop_mixer
},
15527 .init_verbs
= { alc861_asus_init_verbs
,
15528 alc861_asus_laptop_init_verbs
},
15529 .num_dacs
= ARRAY_SIZE(alc861_dac_nids
),
15530 .dac_nids
= alc861_dac_nids
,
15531 .dig_out_nid
= ALC861_DIGOUT_NID
,
15532 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_2ch_modes
),
15533 .channel_mode
= alc883_3ST_2ch_modes
,
15535 .num_adc_nids
= ARRAY_SIZE(alc861_adc_nids
),
15536 .adc_nids
= alc861_adc_nids
,
15537 .input_mux
= &alc861_capture_source
,
15541 /* Pin config fixes */
15543 PINFIX_FSC_AMILO_PI1505
,
15546 static struct alc_pincfg alc861_fsc_amilo_pi1505_pinfix
[] = {
15547 { 0x0b, 0x0221101f }, /* HP */
15548 { 0x0f, 0x90170310 }, /* speaker */
15552 static const struct alc_fixup alc861_fixups
[] = {
15553 [PINFIX_FSC_AMILO_PI1505
] = {
15554 .pins
= alc861_fsc_amilo_pi1505_pinfix
15558 static struct snd_pci_quirk alc861_fixup_tbl
[] = {
15559 SND_PCI_QUIRK(0x1734, 0x10c7, "FSC Amilo Pi1505", PINFIX_FSC_AMILO_PI1505
),
15563 static int patch_alc861(struct hda_codec
*codec
)
15565 struct alc_spec
*spec
;
15569 spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
15573 codec
->spec
= spec
;
15575 board_config
= snd_hda_check_board_config(codec
, ALC861_MODEL_LAST
,
15579 if (board_config
< 0) {
15580 printk(KERN_INFO
"hda_codec: %s: BIOS auto-probing.\n",
15582 board_config
= ALC861_AUTO
;
15585 if (board_config
== ALC861_AUTO
)
15586 alc_pick_fixup(codec
, alc861_fixup_tbl
, alc861_fixups
, 1);
15588 if (board_config
== ALC861_AUTO
) {
15589 /* automatic parse from the BIOS config */
15590 err
= alc861_parse_auto_config(codec
);
15596 "hda_codec: Cannot set up configuration "
15597 "from BIOS. Using base mode...\n");
15598 board_config
= ALC861_3ST_DIG
;
15602 err
= snd_hda_attach_beep_device(codec
, 0x23);
15608 if (board_config
!= ALC861_AUTO
)
15609 setup_preset(codec
, &alc861_presets
[board_config
]);
15611 spec
->stream_analog_playback
= &alc861_pcm_analog_playback
;
15612 spec
->stream_analog_capture
= &alc861_pcm_analog_capture
;
15614 spec
->stream_digital_playback
= &alc861_pcm_digital_playback
;
15615 spec
->stream_digital_capture
= &alc861_pcm_digital_capture
;
15617 if (!spec
->cap_mixer
)
15618 set_capture_mixer(codec
);
15619 set_beep_amp(spec
, 0x23, 0, HDA_OUTPUT
);
15621 spec
->vmaster_nid
= 0x03;
15623 if (board_config
== ALC861_AUTO
)
15624 alc_pick_fixup(codec
, alc861_fixup_tbl
, alc861_fixups
, 0);
15626 codec
->patch_ops
= alc_patch_ops
;
15627 if (board_config
== ALC861_AUTO
) {
15628 spec
->init_hook
= alc861_auto_init
;
15629 #ifdef CONFIG_SND_HDA_POWER_SAVE
15630 spec
->power_hook
= alc_power_eapd
;
15633 #ifdef CONFIG_SND_HDA_POWER_SAVE
15634 if (!spec
->loopback
.amplist
)
15635 spec
->loopback
.amplist
= alc861_loopbacks
;
15642 * ALC861-VD support
15646 * In addition, an independent DAC
15648 #define ALC861VD_DIGOUT_NID 0x06
15650 static hda_nid_t alc861vd_dac_nids
[4] = {
15651 /* front, surr, clfe, side surr */
15652 0x02, 0x03, 0x04, 0x05
15655 /* dac_nids for ALC660vd are in a different order - according to
15656 * Realtek's driver.
15657 * This should probably result in a different mixer for 6stack models
15658 * of ALC660vd codecs, but for now there is only 3stack mixer
15659 * - and it is the same as in 861vd.
15660 * adc_nids in ALC660vd are (is) the same as in 861vd
15662 static hda_nid_t alc660vd_dac_nids
[3] = {
15663 /* front, rear, clfe, rear_surr */
15667 static hda_nid_t alc861vd_adc_nids
[1] = {
15672 static hda_nid_t alc861vd_capsrc_nids
[1] = { 0x22 };
15675 /* FIXME: should be a matrix-type input source selection */
15676 static struct hda_input_mux alc861vd_capture_source
= {
15680 { "Front Mic", 0x1 },
15686 static struct hda_input_mux alc861vd_dallas_capture_source
= {
15689 { "Ext Mic", 0x0 },
15690 { "Int Mic", 0x1 },
15694 static struct hda_input_mux alc861vd_hp_capture_source
= {
15697 { "Front Mic", 0x0 },
15698 { "ATAPI Mic", 0x1 },
15705 static struct hda_channel_mode alc861vd_3stack_2ch_modes
[1] = {
15712 static struct hda_verb alc861vd_6stack_ch6_init
[] = {
15713 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x00 },
15714 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
15715 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
15716 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
15723 static struct hda_verb alc861vd_6stack_ch8_init
[] = {
15724 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
15725 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
15726 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
15727 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
15731 static struct hda_channel_mode alc861vd_6stack_modes
[2] = {
15732 { 6, alc861vd_6stack_ch6_init
},
15733 { 8, alc861vd_6stack_ch8_init
},
15736 static struct snd_kcontrol_new alc861vd_chmode_mixer
[] = {
15738 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
15739 .name
= "Channel Mode",
15740 .info
= alc_ch_mode_info
,
15741 .get
= alc_ch_mode_get
,
15742 .put
= alc_ch_mode_put
,
15747 /* Pin assignment: Front=0x14, Rear=0x15, CLFE=0x16, Side=0x17
15748 * Mic=0x18, Front Mic=0x19, Line-In=0x1a, HP=0x1b
15750 static struct snd_kcontrol_new alc861vd_6st_mixer
[] = {
15751 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
15752 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
15754 HDA_CODEC_VOLUME("Surround Playback Volume", 0x03, 0x0, HDA_OUTPUT
),
15755 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT
),
15757 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x04, 1, 0x0,
15759 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x04, 2, 0x0,
15761 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT
),
15762 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT
),
15764 HDA_CODEC_VOLUME("Side Playback Volume", 0x05, 0x0, HDA_OUTPUT
),
15765 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT
),
15767 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
15769 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
15770 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
15771 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
15773 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT
),
15774 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
15775 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
15777 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
15778 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
15780 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
15781 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
15786 static struct snd_kcontrol_new alc861vd_3st_mixer
[] = {
15787 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
15788 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
15790 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
15792 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
15793 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
15794 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
15796 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT
),
15797 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
15798 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
15800 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
15801 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
15803 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
15804 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
15809 static struct snd_kcontrol_new alc861vd_lenovo_mixer
[] = {
15810 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
15811 /*HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),*/
15812 HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
15814 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
15816 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
15817 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
15818 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
15820 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT
),
15821 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
15822 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
15824 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
15825 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
15830 /* Pin assignment: Speaker=0x14, HP = 0x15,
15831 * Ext Mic=0x18, Int Mic = 0x19, CD = 0x1c, PC Beep = 0x1d
15833 static struct snd_kcontrol_new alc861vd_dallas_mixer
[] = {
15834 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
15835 HDA_BIND_MUTE("Speaker Playback Switch", 0x0c, 2, HDA_INPUT
),
15836 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x03, 0x0, HDA_OUTPUT
),
15837 HDA_BIND_MUTE("Headphone Playback Switch", 0x0d, 2, HDA_INPUT
),
15838 HDA_CODEC_VOLUME("Ext Mic Boost", 0x18, 0, HDA_INPUT
),
15839 HDA_CODEC_VOLUME("Ext Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
15840 HDA_CODEC_MUTE("Ext Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
15841 HDA_CODEC_VOLUME("Int Mic Boost", 0x19, 0, HDA_INPUT
),
15842 HDA_CODEC_VOLUME("Int Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
15843 HDA_CODEC_MUTE("Int Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
15847 /* Pin assignment: Speaker=0x14, Line-out = 0x15,
15848 * Front Mic=0x18, ATAPI Mic = 0x19,
15850 static struct snd_kcontrol_new alc861vd_hp_mixer
[] = {
15851 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
15852 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
15853 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x03, 0x0, HDA_OUTPUT
),
15854 HDA_BIND_MUTE("Headphone Playback Switch", 0x0d, 2, HDA_INPUT
),
15855 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
15856 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
15857 HDA_CODEC_VOLUME("ATAPI Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
15858 HDA_CODEC_MUTE("ATAPI Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
15864 * generic initialization of ADC, input mixers and output mixers
15866 static struct hda_verb alc861vd_volume_init_verbs
[] = {
15868 * Unmute ADC0 and set the default input to mic-in
15870 {0x09, AC_VERB_SET_CONNECT_SEL
, 0x00},
15871 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15873 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of
15874 * the analog-loopback mixer widget
15876 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
15877 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
15878 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
15879 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
15880 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
15881 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
15883 /* Capture mixer: unmute Mic, F-Mic, Line, CD inputs */
15884 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15885 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15886 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(2)},
15887 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(4)},
15890 * Set up output mixers (0x02 - 0x05)
15892 /* set vol=0 to output mixers */
15893 {0x02, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
15894 {0x03, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
15895 {0x04, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
15896 {0x05, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
15898 /* set up input amps for analog loopback */
15899 /* Amp Indices: DAC = 0, mixer = 1 */
15900 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
15901 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
15902 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
15903 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
15904 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
15905 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
15906 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
15907 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
15913 * 3-stack pin configuration:
15914 * front = 0x14, mic/clfe = 0x18, HP = 0x19, line/surr = 0x1a, f-mic = 0x1b
15916 static struct hda_verb alc861vd_3stack_init_verbs
[] = {
15918 * Set pin mode and muting
15920 /* set front pin widgets 0x14 for output */
15921 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
15922 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
15923 {0x14, AC_VERB_SET_CONNECT_SEL
, 0x00},
15925 /* Mic (rear) pin: input vref at 80% */
15926 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
15927 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
15928 /* Front Mic pin: input vref at 80% */
15929 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
15930 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
15931 /* Line In pin: input */
15932 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
15933 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
15934 /* Line-2 In: Headphone output (output 0 - 0x0c) */
15935 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
15936 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
15937 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0x00},
15938 /* CD pin widget for input */
15939 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
15945 * 6-stack pin configuration:
15947 static struct hda_verb alc861vd_6stack_init_verbs
[] = {
15949 * Set pin mode and muting
15951 /* set front pin widgets 0x14 for output */
15952 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
15953 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
15954 {0x14, AC_VERB_SET_CONNECT_SEL
, 0x00},
15956 /* Rear Pin: output 1 (0x0d) */
15957 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
15958 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
15959 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x01},
15960 /* CLFE Pin: output 2 (0x0e) */
15961 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
15962 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
15963 {0x16, AC_VERB_SET_CONNECT_SEL
, 0x02},
15964 /* Side Pin: output 3 (0x0f) */
15965 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
15966 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
15967 {0x17, AC_VERB_SET_CONNECT_SEL
, 0x03},
15969 /* Mic (rear) pin: input vref at 80% */
15970 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
15971 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
15972 /* Front Mic pin: input vref at 80% */
15973 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
15974 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
15975 /* Line In pin: input */
15976 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
15977 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
15978 /* Line-2 In: Headphone output (output 0 - 0x0c) */
15979 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
15980 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
15981 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0x00},
15982 /* CD pin widget for input */
15983 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
15988 static struct hda_verb alc861vd_eapd_verbs
[] = {
15989 {0x14, AC_VERB_SET_EAPD_BTLENABLE
, 2},
15993 static struct hda_verb alc660vd_eapd_verbs
[] = {
15994 {0x14, AC_VERB_SET_EAPD_BTLENABLE
, 2},
15995 {0x15, AC_VERB_SET_EAPD_BTLENABLE
, 2},
15999 static struct hda_verb alc861vd_lenovo_unsol_verbs
[] = {
16000 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
16001 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
16002 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(5)},
16003 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
16004 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
16008 static void alc861vd_lenovo_mic_automute(struct hda_codec
*codec
)
16010 unsigned int present
;
16011 unsigned char bits
;
16013 present
= snd_hda_jack_detect(codec
, 0x18);
16014 bits
= present
? HDA_AMP_MUTE
: 0;
16016 snd_hda_codec_amp_stereo(codec
, 0x0b, HDA_INPUT
, 1,
16017 HDA_AMP_MUTE
, bits
);
16020 static void alc861vd_lenovo_setup(struct hda_codec
*codec
)
16022 struct alc_spec
*spec
= codec
->spec
;
16023 spec
->autocfg
.hp_pins
[0] = 0x1b;
16024 spec
->autocfg
.speaker_pins
[0] = 0x14;
16027 static void alc861vd_lenovo_init_hook(struct hda_codec
*codec
)
16029 alc_automute_amp(codec
);
16030 alc861vd_lenovo_mic_automute(codec
);
16033 static void alc861vd_lenovo_unsol_event(struct hda_codec
*codec
,
16036 switch (res
>> 26) {
16037 case ALC880_MIC_EVENT
:
16038 alc861vd_lenovo_mic_automute(codec
);
16041 alc_automute_amp_unsol_event(codec
, res
);
16046 static struct hda_verb alc861vd_dallas_verbs
[] = {
16047 {0x02, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
16048 {0x03, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
16049 {0x04, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
16050 {0x05, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
16052 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
16053 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
16054 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
16055 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
16056 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
16057 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
16058 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
16059 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
16061 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
16062 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
16063 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
16064 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
16065 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
16066 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
16067 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
16068 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
16070 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF50
},
16071 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
16072 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF50
},
16073 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
16074 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
16075 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
16076 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
16077 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
16079 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
16080 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
16081 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
16082 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
16084 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
16085 {0x09, AC_VERB_SET_CONNECT_SEL
, 0x00},
16086 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
16091 /* toggle speaker-output according to the hp-jack state */
16092 static void alc861vd_dallas_setup(struct hda_codec
*codec
)
16094 struct alc_spec
*spec
= codec
->spec
;
16096 spec
->autocfg
.hp_pins
[0] = 0x15;
16097 spec
->autocfg
.speaker_pins
[0] = 0x14;
16100 #ifdef CONFIG_SND_HDA_POWER_SAVE
16101 #define alc861vd_loopbacks alc880_loopbacks
16104 /* pcm configuration: identical with ALC880 */
16105 #define alc861vd_pcm_analog_playback alc880_pcm_analog_playback
16106 #define alc861vd_pcm_analog_capture alc880_pcm_analog_capture
16107 #define alc861vd_pcm_digital_playback alc880_pcm_digital_playback
16108 #define alc861vd_pcm_digital_capture alc880_pcm_digital_capture
16111 * configuration and preset
16113 static const char *alc861vd_models
[ALC861VD_MODEL_LAST
] = {
16114 [ALC660VD_3ST
] = "3stack-660",
16115 [ALC660VD_3ST_DIG
] = "3stack-660-digout",
16116 [ALC660VD_ASUS_V1S
] = "asus-v1s",
16117 [ALC861VD_3ST
] = "3stack",
16118 [ALC861VD_3ST_DIG
] = "3stack-digout",
16119 [ALC861VD_6ST_DIG
] = "6stack-digout",
16120 [ALC861VD_LENOVO
] = "lenovo",
16121 [ALC861VD_DALLAS
] = "dallas",
16122 [ALC861VD_HP
] = "hp",
16123 [ALC861VD_AUTO
] = "auto",
16126 static struct snd_pci_quirk alc861vd_cfg_tbl
[] = {
16127 SND_PCI_QUIRK(0x1019, 0xa88d, "Realtek ALC660 demo", ALC660VD_3ST
),
16128 SND_PCI_QUIRK(0x103c, 0x30bf, "HP TX1000", ALC861VD_HP
),
16129 SND_PCI_QUIRK(0x1043, 0x12e2, "Asus z35m", ALC660VD_3ST
),
16130 /*SND_PCI_QUIRK(0x1043, 0x1339, "Asus G1", ALC660VD_3ST),*/ /* auto */
16131 SND_PCI_QUIRK(0x1043, 0x1633, "Asus V1Sn", ALC660VD_ASUS_V1S
),
16132 SND_PCI_QUIRK(0x1043, 0x81e7, "ASUS", ALC660VD_3ST_DIG
),
16133 SND_PCI_QUIRK(0x10de, 0x03f0, "Realtek ALC660 demo", ALC660VD_3ST
),
16134 SND_PCI_QUIRK(0x1179, 0xff00, "Toshiba A135", ALC861VD_LENOVO
),
16135 /*SND_PCI_QUIRK(0x1179, 0xff00, "DALLAS", ALC861VD_DALLAS),*/ /*lenovo*/
16136 SND_PCI_QUIRK(0x1179, 0xff01, "Toshiba A135", ALC861VD_LENOVO
),
16137 SND_PCI_QUIRK(0x1179, 0xff03, "Toshiba P205", ALC861VD_LENOVO
),
16138 SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba L30-149", ALC861VD_DALLAS
),
16139 SND_PCI_QUIRK(0x1565, 0x820d, "Biostar NF61S SE", ALC861VD_6ST_DIG
),
16140 SND_PCI_QUIRK_VENDOR(0x17aa, "Lenovo", ALC861VD_LENOVO
),
16141 SND_PCI_QUIRK(0x1849, 0x0862, "ASRock K8NF6G-VSTA", ALC861VD_6ST_DIG
),
16145 static struct alc_config_preset alc861vd_presets
[] = {
16147 .mixers
= { alc861vd_3st_mixer
},
16148 .init_verbs
= { alc861vd_volume_init_verbs
,
16149 alc861vd_3stack_init_verbs
},
16150 .num_dacs
= ARRAY_SIZE(alc660vd_dac_nids
),
16151 .dac_nids
= alc660vd_dac_nids
,
16152 .num_channel_mode
= ARRAY_SIZE(alc861vd_3stack_2ch_modes
),
16153 .channel_mode
= alc861vd_3stack_2ch_modes
,
16154 .input_mux
= &alc861vd_capture_source
,
16156 [ALC660VD_3ST_DIG
] = {
16157 .mixers
= { alc861vd_3st_mixer
},
16158 .init_verbs
= { alc861vd_volume_init_verbs
,
16159 alc861vd_3stack_init_verbs
},
16160 .num_dacs
= ARRAY_SIZE(alc660vd_dac_nids
),
16161 .dac_nids
= alc660vd_dac_nids
,
16162 .dig_out_nid
= ALC861VD_DIGOUT_NID
,
16163 .num_channel_mode
= ARRAY_SIZE(alc861vd_3stack_2ch_modes
),
16164 .channel_mode
= alc861vd_3stack_2ch_modes
,
16165 .input_mux
= &alc861vd_capture_source
,
16168 .mixers
= { alc861vd_3st_mixer
},
16169 .init_verbs
= { alc861vd_volume_init_verbs
,
16170 alc861vd_3stack_init_verbs
},
16171 .num_dacs
= ARRAY_SIZE(alc861vd_dac_nids
),
16172 .dac_nids
= alc861vd_dac_nids
,
16173 .num_channel_mode
= ARRAY_SIZE(alc861vd_3stack_2ch_modes
),
16174 .channel_mode
= alc861vd_3stack_2ch_modes
,
16175 .input_mux
= &alc861vd_capture_source
,
16177 [ALC861VD_3ST_DIG
] = {
16178 .mixers
= { alc861vd_3st_mixer
},
16179 .init_verbs
= { alc861vd_volume_init_verbs
,
16180 alc861vd_3stack_init_verbs
},
16181 .num_dacs
= ARRAY_SIZE(alc861vd_dac_nids
),
16182 .dac_nids
= alc861vd_dac_nids
,
16183 .dig_out_nid
= ALC861VD_DIGOUT_NID
,
16184 .num_channel_mode
= ARRAY_SIZE(alc861vd_3stack_2ch_modes
),
16185 .channel_mode
= alc861vd_3stack_2ch_modes
,
16186 .input_mux
= &alc861vd_capture_source
,
16188 [ALC861VD_6ST_DIG
] = {
16189 .mixers
= { alc861vd_6st_mixer
, alc861vd_chmode_mixer
},
16190 .init_verbs
= { alc861vd_volume_init_verbs
,
16191 alc861vd_6stack_init_verbs
},
16192 .num_dacs
= ARRAY_SIZE(alc861vd_dac_nids
),
16193 .dac_nids
= alc861vd_dac_nids
,
16194 .dig_out_nid
= ALC861VD_DIGOUT_NID
,
16195 .num_channel_mode
= ARRAY_SIZE(alc861vd_6stack_modes
),
16196 .channel_mode
= alc861vd_6stack_modes
,
16197 .input_mux
= &alc861vd_capture_source
,
16199 [ALC861VD_LENOVO
] = {
16200 .mixers
= { alc861vd_lenovo_mixer
},
16201 .init_verbs
= { alc861vd_volume_init_verbs
,
16202 alc861vd_3stack_init_verbs
,
16203 alc861vd_eapd_verbs
,
16204 alc861vd_lenovo_unsol_verbs
},
16205 .num_dacs
= ARRAY_SIZE(alc660vd_dac_nids
),
16206 .dac_nids
= alc660vd_dac_nids
,
16207 .num_channel_mode
= ARRAY_SIZE(alc861vd_3stack_2ch_modes
),
16208 .channel_mode
= alc861vd_3stack_2ch_modes
,
16209 .input_mux
= &alc861vd_capture_source
,
16210 .unsol_event
= alc861vd_lenovo_unsol_event
,
16211 .setup
= alc861vd_lenovo_setup
,
16212 .init_hook
= alc861vd_lenovo_init_hook
,
16214 [ALC861VD_DALLAS
] = {
16215 .mixers
= { alc861vd_dallas_mixer
},
16216 .init_verbs
= { alc861vd_dallas_verbs
},
16217 .num_dacs
= ARRAY_SIZE(alc861vd_dac_nids
),
16218 .dac_nids
= alc861vd_dac_nids
,
16219 .num_channel_mode
= ARRAY_SIZE(alc861vd_3stack_2ch_modes
),
16220 .channel_mode
= alc861vd_3stack_2ch_modes
,
16221 .input_mux
= &alc861vd_dallas_capture_source
,
16222 .unsol_event
= alc_automute_amp_unsol_event
,
16223 .setup
= alc861vd_dallas_setup
,
16224 .init_hook
= alc_automute_amp
,
16227 .mixers
= { alc861vd_hp_mixer
},
16228 .init_verbs
= { alc861vd_dallas_verbs
, alc861vd_eapd_verbs
},
16229 .num_dacs
= ARRAY_SIZE(alc861vd_dac_nids
),
16230 .dac_nids
= alc861vd_dac_nids
,
16231 .dig_out_nid
= ALC861VD_DIGOUT_NID
,
16232 .num_channel_mode
= ARRAY_SIZE(alc861vd_3stack_2ch_modes
),
16233 .channel_mode
= alc861vd_3stack_2ch_modes
,
16234 .input_mux
= &alc861vd_hp_capture_source
,
16235 .unsol_event
= alc_automute_amp_unsol_event
,
16236 .setup
= alc861vd_dallas_setup
,
16237 .init_hook
= alc_automute_amp
,
16239 [ALC660VD_ASUS_V1S
] = {
16240 .mixers
= { alc861vd_lenovo_mixer
},
16241 .init_verbs
= { alc861vd_volume_init_verbs
,
16242 alc861vd_3stack_init_verbs
,
16243 alc861vd_eapd_verbs
,
16244 alc861vd_lenovo_unsol_verbs
},
16245 .num_dacs
= ARRAY_SIZE(alc660vd_dac_nids
),
16246 .dac_nids
= alc660vd_dac_nids
,
16247 .dig_out_nid
= ALC861VD_DIGOUT_NID
,
16248 .num_channel_mode
= ARRAY_SIZE(alc861vd_3stack_2ch_modes
),
16249 .channel_mode
= alc861vd_3stack_2ch_modes
,
16250 .input_mux
= &alc861vd_capture_source
,
16251 .unsol_event
= alc861vd_lenovo_unsol_event
,
16252 .setup
= alc861vd_lenovo_setup
,
16253 .init_hook
= alc861vd_lenovo_init_hook
,
16258 * BIOS auto configuration
16260 static int alc861vd_auto_create_input_ctls(struct hda_codec
*codec
,
16261 const struct auto_pin_cfg
*cfg
)
16263 return alc_auto_create_input_ctls(codec
, cfg
, 0x15, 0x09, 0);
16267 static void alc861vd_auto_set_output_and_unmute(struct hda_codec
*codec
,
16268 hda_nid_t nid
, int pin_type
, int dac_idx
)
16270 alc_set_pin_output(codec
, nid
, pin_type
);
16273 static void alc861vd_auto_init_multi_out(struct hda_codec
*codec
)
16275 struct alc_spec
*spec
= codec
->spec
;
16278 for (i
= 0; i
<= HDA_SIDE
; i
++) {
16279 hda_nid_t nid
= spec
->autocfg
.line_out_pins
[i
];
16280 int pin_type
= get_pin_type(spec
->autocfg
.line_out_type
);
16282 alc861vd_auto_set_output_and_unmute(codec
, nid
,
16288 static void alc861vd_auto_init_hp_out(struct hda_codec
*codec
)
16290 struct alc_spec
*spec
= codec
->spec
;
16293 pin
= spec
->autocfg
.hp_pins
[0];
16294 if (pin
) /* connect to front and use dac 0 */
16295 alc861vd_auto_set_output_and_unmute(codec
, pin
, PIN_HP
, 0);
16296 pin
= spec
->autocfg
.speaker_pins
[0];
16298 alc861vd_auto_set_output_and_unmute(codec
, pin
, PIN_OUT
, 0);
16301 #define ALC861VD_PIN_CD_NID ALC880_PIN_CD_NID
16303 static void alc861vd_auto_init_analog_input(struct hda_codec
*codec
)
16305 struct alc_spec
*spec
= codec
->spec
;
16308 for (i
= 0; i
< AUTO_PIN_LAST
; i
++) {
16309 hda_nid_t nid
= spec
->autocfg
.input_pins
[i
];
16310 if (alc_is_input_pin(codec
, nid
)) {
16311 alc_set_input_pin(codec
, nid
, i
);
16312 if (nid
!= ALC861VD_PIN_CD_NID
&&
16313 (get_wcaps(codec
, nid
) & AC_WCAP_OUT_AMP
))
16314 snd_hda_codec_write(codec
, nid
, 0,
16315 AC_VERB_SET_AMP_GAIN_MUTE
,
16321 #define alc861vd_auto_init_input_src alc882_auto_init_input_src
16323 #define alc861vd_idx_to_mixer_vol(nid) ((nid) + 0x02)
16324 #define alc861vd_idx_to_mixer_switch(nid) ((nid) + 0x0c)
16326 /* add playback controls from the parsed DAC table */
16327 /* Based on ALC880 version. But ALC861VD has separate,
16328 * different NIDs for mute/unmute switch and volume control */
16329 static int alc861vd_auto_create_multi_out_ctls(struct alc_spec
*spec
,
16330 const struct auto_pin_cfg
*cfg
)
16332 static const char *chname
[4] = {"Front", "Surround", "CLFE", "Side"};
16333 hda_nid_t nid_v
, nid_s
;
16336 for (i
= 0; i
< cfg
->line_outs
; i
++) {
16337 if (!spec
->multiout
.dac_nids
[i
])
16339 nid_v
= alc861vd_idx_to_mixer_vol(
16341 spec
->multiout
.dac_nids
[i
]));
16342 nid_s
= alc861vd_idx_to_mixer_switch(
16344 spec
->multiout
.dac_nids
[i
]));
16348 err
= add_pb_vol_ctrl(spec
, ALC_CTL_WIDGET_VOL
,
16350 HDA_COMPOSE_AMP_VAL(nid_v
, 1, 0,
16354 err
= add_pb_vol_ctrl(spec
, ALC_CTL_WIDGET_VOL
,
16356 HDA_COMPOSE_AMP_VAL(nid_v
, 2, 0,
16360 err
= add_pb_sw_ctrl(spec
, ALC_CTL_BIND_MUTE
,
16362 HDA_COMPOSE_AMP_VAL(nid_s
, 1, 2,
16366 err
= add_pb_sw_ctrl(spec
, ALC_CTL_BIND_MUTE
,
16368 HDA_COMPOSE_AMP_VAL(nid_s
, 2, 2,
16374 if (cfg
->line_outs
== 1 &&
16375 cfg
->line_out_type
== AUTO_PIN_SPEAKER_OUT
) {
16382 err
= add_pb_vol_ctrl(spec
, ALC_CTL_WIDGET_VOL
, pfx
,
16383 HDA_COMPOSE_AMP_VAL(nid_v
, 3, 0,
16387 if (cfg
->line_outs
== 1 &&
16388 cfg
->line_out_type
== AUTO_PIN_SPEAKER_OUT
)
16390 err
= add_pb_sw_ctrl(spec
, ALC_CTL_BIND_MUTE
, pfx
,
16391 HDA_COMPOSE_AMP_VAL(nid_s
, 3, 2,
16400 /* add playback controls for speaker and HP outputs */
16401 /* Based on ALC880 version. But ALC861VD has separate,
16402 * different NIDs for mute/unmute switch and volume control */
16403 static int alc861vd_auto_create_extra_out(struct alc_spec
*spec
,
16404 hda_nid_t pin
, const char *pfx
)
16406 hda_nid_t nid_v
, nid_s
;
16412 if (alc880_is_fixed_pin(pin
)) {
16413 nid_v
= alc880_idx_to_dac(alc880_fixed_pin_idx(pin
));
16414 /* specify the DAC as the extra output */
16415 if (!spec
->multiout
.hp_nid
)
16416 spec
->multiout
.hp_nid
= nid_v
;
16418 spec
->multiout
.extra_out_nid
[0] = nid_v
;
16419 /* control HP volume/switch on the output mixer amp */
16420 nid_v
= alc861vd_idx_to_mixer_vol(
16421 alc880_fixed_pin_idx(pin
));
16422 nid_s
= alc861vd_idx_to_mixer_switch(
16423 alc880_fixed_pin_idx(pin
));
16425 err
= add_pb_vol_ctrl(spec
, ALC_CTL_WIDGET_VOL
, pfx
,
16426 HDA_COMPOSE_AMP_VAL(nid_v
, 3, 0, HDA_OUTPUT
));
16429 err
= add_pb_sw_ctrl(spec
, ALC_CTL_BIND_MUTE
, pfx
,
16430 HDA_COMPOSE_AMP_VAL(nid_s
, 3, 2, HDA_INPUT
));
16433 } else if (alc880_is_multi_pin(pin
)) {
16434 /* set manual connection */
16435 /* we have only a switch on HP-out PIN */
16436 err
= add_pb_sw_ctrl(spec
, ALC_CTL_WIDGET_MUTE
, pfx
,
16437 HDA_COMPOSE_AMP_VAL(pin
, 3, 0, HDA_OUTPUT
));
16444 /* parse the BIOS configuration and set up the alc_spec
16445 * return 1 if successful, 0 if the proper config is not found,
16446 * or a negative error code
16447 * Based on ALC880 version - had to change it to override
16448 * alc880_auto_create_extra_out and alc880_auto_create_multi_out_ctls */
16449 static int alc861vd_parse_auto_config(struct hda_codec
*codec
)
16451 struct alc_spec
*spec
= codec
->spec
;
16453 static hda_nid_t alc861vd_ignore
[] = { 0x1d, 0 };
16455 err
= snd_hda_parse_pin_def_config(codec
, &spec
->autocfg
,
16459 if (!spec
->autocfg
.line_outs
)
16460 return 0; /* can't find valid BIOS pin config */
16462 err
= alc880_auto_fill_dac_nids(spec
, &spec
->autocfg
);
16465 err
= alc861vd_auto_create_multi_out_ctls(spec
, &spec
->autocfg
);
16468 err
= alc861vd_auto_create_extra_out(spec
,
16469 spec
->autocfg
.speaker_pins
[0],
16473 err
= alc861vd_auto_create_extra_out(spec
,
16474 spec
->autocfg
.hp_pins
[0],
16478 err
= alc861vd_auto_create_input_ctls(codec
, &spec
->autocfg
);
16482 spec
->multiout
.max_channels
= spec
->multiout
.num_dacs
* 2;
16484 if (spec
->autocfg
.dig_outs
)
16485 spec
->multiout
.dig_out_nid
= ALC861VD_DIGOUT_NID
;
16487 if (spec
->kctls
.list
)
16488 add_mixer(spec
, spec
->kctls
.list
);
16490 add_verb(spec
, alc861vd_volume_init_verbs
);
16492 spec
->num_mux_defs
= 1;
16493 spec
->input_mux
= &spec
->private_imux
[0];
16495 err
= alc_auto_add_mic_boost(codec
);
16499 alc_ssid_check(codec
, 0x15, 0x1b, 0x14, 0);
16504 /* additional initialization for auto-configuration model */
16505 static void alc861vd_auto_init(struct hda_codec
*codec
)
16507 struct alc_spec
*spec
= codec
->spec
;
16508 alc861vd_auto_init_multi_out(codec
);
16509 alc861vd_auto_init_hp_out(codec
);
16510 alc861vd_auto_init_analog_input(codec
);
16511 alc861vd_auto_init_input_src(codec
);
16512 if (spec
->unsol_event
)
16513 alc_inithook(codec
);
16517 ALC660VD_FIX_ASUS_GPIO1
16521 static const struct hda_verb alc660vd_fix_asus_gpio1_verbs
[] = {
16522 {0x01, AC_VERB_SET_GPIO_MASK
, 0x03},
16523 {0x01, AC_VERB_SET_GPIO_DIRECTION
, 0x01},
16524 {0x01, AC_VERB_SET_GPIO_DATA
, 0x01},
16528 static const struct alc_fixup alc861vd_fixups
[] = {
16529 [ALC660VD_FIX_ASUS_GPIO1
] = {
16530 .verbs
= alc660vd_fix_asus_gpio1_verbs
,
16534 static struct snd_pci_quirk alc861vd_fixup_tbl
[] = {
16535 SND_PCI_QUIRK(0x1043, 0x1339, "ASUS A7-K", ALC660VD_FIX_ASUS_GPIO1
),
16539 static int patch_alc861vd(struct hda_codec
*codec
)
16541 struct alc_spec
*spec
;
16542 int err
, board_config
;
16544 spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
16548 codec
->spec
= spec
;
16550 board_config
= snd_hda_check_board_config(codec
, ALC861VD_MODEL_LAST
,
16554 if (board_config
< 0 || board_config
>= ALC861VD_MODEL_LAST
) {
16555 printk(KERN_INFO
"hda_codec: %s: BIOS auto-probing.\n",
16557 board_config
= ALC861VD_AUTO
;
16560 if (board_config
== ALC861VD_AUTO
)
16561 alc_pick_fixup(codec
, alc861vd_fixup_tbl
, alc861vd_fixups
, 1);
16563 if (board_config
== ALC861VD_AUTO
) {
16564 /* automatic parse from the BIOS config */
16565 err
= alc861vd_parse_auto_config(codec
);
16571 "hda_codec: Cannot set up configuration "
16572 "from BIOS. Using base mode...\n");
16573 board_config
= ALC861VD_3ST
;
16577 err
= snd_hda_attach_beep_device(codec
, 0x23);
16583 if (board_config
!= ALC861VD_AUTO
)
16584 setup_preset(codec
, &alc861vd_presets
[board_config
]);
16586 if (codec
->vendor_id
== 0x10ec0660) {
16587 /* always turn on EAPD */
16588 add_verb(spec
, alc660vd_eapd_verbs
);
16591 spec
->stream_analog_playback
= &alc861vd_pcm_analog_playback
;
16592 spec
->stream_analog_capture
= &alc861vd_pcm_analog_capture
;
16594 spec
->stream_digital_playback
= &alc861vd_pcm_digital_playback
;
16595 spec
->stream_digital_capture
= &alc861vd_pcm_digital_capture
;
16597 if (!spec
->adc_nids
) {
16598 spec
->adc_nids
= alc861vd_adc_nids
;
16599 spec
->num_adc_nids
= ARRAY_SIZE(alc861vd_adc_nids
);
16601 if (!spec
->capsrc_nids
)
16602 spec
->capsrc_nids
= alc861vd_capsrc_nids
;
16604 set_capture_mixer(codec
);
16605 set_beep_amp(spec
, 0x0b, 0x05, HDA_INPUT
);
16607 spec
->vmaster_nid
= 0x02;
16609 if (board_config
== ALC861VD_AUTO
)
16610 alc_pick_fixup(codec
, alc861vd_fixup_tbl
, alc861vd_fixups
, 0);
16612 codec
->patch_ops
= alc_patch_ops
;
16614 if (board_config
== ALC861VD_AUTO
)
16615 spec
->init_hook
= alc861vd_auto_init
;
16616 #ifdef CONFIG_SND_HDA_POWER_SAVE
16617 if (!spec
->loopback
.amplist
)
16618 spec
->loopback
.amplist
= alc861vd_loopbacks
;
16627 * ALC662 is almost identical with ALC880 but has cleaner and more flexible
16628 * configuration. Each pin widget can choose any input DACs and a mixer.
16629 * Each ADC is connected from a mixer of all inputs. This makes possible
16630 * 6-channel independent captures.
16632 * In addition, an independent DAC for the multi-playback (not used in this
16635 #define ALC662_DIGOUT_NID 0x06
16636 #define ALC662_DIGIN_NID 0x0a
16638 static hda_nid_t alc662_dac_nids
[4] = {
16639 /* front, rear, clfe, rear_surr */
16643 static hda_nid_t alc272_dac_nids
[2] = {
16647 static hda_nid_t alc662_adc_nids
[2] = {
16652 static hda_nid_t alc272_adc_nids
[1] = {
16657 static hda_nid_t alc662_capsrc_nids
[2] = { 0x22, 0x23 };
16658 static hda_nid_t alc272_capsrc_nids
[1] = { 0x23 };
16662 /* FIXME: should be a matrix-type input source selection */
16663 static struct hda_input_mux alc662_capture_source
= {
16667 { "Front Mic", 0x1 },
16673 static struct hda_input_mux alc662_lenovo_101e_capture_source
= {
16681 static struct hda_input_mux alc663_capture_source
= {
16685 { "Front Mic", 0x1 },
16690 #if 0 /* set to 1 for testing other input sources below */
16691 static struct hda_input_mux alc272_nc10_capture_source
= {
16694 { "Autoselect Mic", 0x0 },
16695 { "Internal Mic", 0x1 },
16696 { "In-0x02", 0x2 },
16697 { "In-0x03", 0x3 },
16698 { "In-0x04", 0x4 },
16699 { "In-0x05", 0x5 },
16700 { "In-0x06", 0x6 },
16701 { "In-0x07", 0x7 },
16702 { "In-0x08", 0x8 },
16703 { "In-0x09", 0x9 },
16704 { "In-0x0a", 0x0a },
16705 { "In-0x0b", 0x0b },
16706 { "In-0x0c", 0x0c },
16707 { "In-0x0d", 0x0d },
16708 { "In-0x0e", 0x0e },
16709 { "In-0x0f", 0x0f },
16717 static struct hda_channel_mode alc662_3ST_2ch_modes
[1] = {
16724 static struct hda_verb alc662_3ST_ch2_init
[] = {
16725 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
16726 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
16727 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
16728 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
16735 static struct hda_verb alc662_3ST_ch6_init
[] = {
16736 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
16737 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
16738 { 0x18, AC_VERB_SET_CONNECT_SEL
, 0x02 },
16739 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
16740 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
16741 { 0x1a, AC_VERB_SET_CONNECT_SEL
, 0x01 },
16745 static struct hda_channel_mode alc662_3ST_6ch_modes
[2] = {
16746 { 2, alc662_3ST_ch2_init
},
16747 { 6, alc662_3ST_ch6_init
},
16753 static struct hda_verb alc662_sixstack_ch6_init
[] = {
16754 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x00 },
16755 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x00 },
16756 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
16763 static struct hda_verb alc662_sixstack_ch8_init
[] = {
16764 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
16765 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
16766 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
16770 static struct hda_channel_mode alc662_5stack_modes
[2] = {
16771 { 2, alc662_sixstack_ch6_init
},
16772 { 6, alc662_sixstack_ch8_init
},
16775 /* Pin assignment: Front=0x14, Rear=0x15, CLFE=0x16, Side=0x17
16776 * Mic=0x18, Front Mic=0x19, Line-In=0x1a, HP=0x1b
16779 static struct snd_kcontrol_new alc662_base_mixer
[] = {
16780 /* output mixer control */
16781 HDA_CODEC_VOLUME("Front Playback Volume", 0x2, 0x0, HDA_OUTPUT
),
16782 HDA_CODEC_MUTE("Front Playback Switch", 0x0c, 0x0, HDA_INPUT
),
16783 HDA_CODEC_VOLUME("Surround Playback Volume", 0x3, 0x0, HDA_OUTPUT
),
16784 HDA_CODEC_MUTE("Surround Playback Switch", 0x0d, 0x0, HDA_INPUT
),
16785 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x04, 1, 0x0, HDA_OUTPUT
),
16786 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x04, 2, 0x0, HDA_OUTPUT
),
16787 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x0e, 1, 0x0, HDA_INPUT
),
16788 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 0x0, HDA_INPUT
),
16789 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
16791 /*Input mixer control */
16792 HDA_CODEC_VOLUME("CD Playback Volume", 0xb, 0x4, HDA_INPUT
),
16793 HDA_CODEC_MUTE("CD Playback Switch", 0xb, 0x4, HDA_INPUT
),
16794 HDA_CODEC_VOLUME("Line Playback Volume", 0xb, 0x02, HDA_INPUT
),
16795 HDA_CODEC_MUTE("Line Playback Switch", 0xb, 0x02, HDA_INPUT
),
16796 HDA_CODEC_VOLUME("Mic Playback Volume", 0xb, 0x0, HDA_INPUT
),
16797 HDA_CODEC_MUTE("Mic Playback Switch", 0xb, 0x0, HDA_INPUT
),
16798 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0xb, 0x01, HDA_INPUT
),
16799 HDA_CODEC_MUTE("Front Mic Playback Switch", 0xb, 0x01, HDA_INPUT
),
16803 static struct snd_kcontrol_new alc662_3ST_2ch_mixer
[] = {
16804 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
16805 HDA_CODEC_MUTE("Front Playback Switch", 0x0c, 0x0, HDA_INPUT
),
16806 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
16807 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
16808 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
16809 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
16810 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
16811 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
16812 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
16813 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
16814 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
16818 static struct snd_kcontrol_new alc662_3ST_6ch_mixer
[] = {
16819 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
16820 HDA_CODEC_MUTE("Front Playback Switch", 0x0c, 0x0, HDA_INPUT
),
16821 HDA_CODEC_VOLUME("Surround Playback Volume", 0x03, 0x0, HDA_OUTPUT
),
16822 HDA_CODEC_MUTE("Surround Playback Switch", 0x0d, 0x0, HDA_INPUT
),
16823 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x04, 1, 0x0, HDA_OUTPUT
),
16824 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x04, 2, 0x0, HDA_OUTPUT
),
16825 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x0e, 1, 0x0, HDA_INPUT
),
16826 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 0x0, HDA_INPUT
),
16827 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
16828 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
16829 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
16830 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
16831 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
16832 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
16833 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
16834 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
16835 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
16839 static struct snd_kcontrol_new alc662_lenovo_101e_mixer
[] = {
16840 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
16841 HDA_BIND_MUTE("Front Playback Switch", 0x02, 2, HDA_INPUT
),
16842 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x03, 0x0, HDA_OUTPUT
),
16843 HDA_BIND_MUTE("Speaker Playback Switch", 0x03, 2, HDA_INPUT
),
16844 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
16845 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
16846 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
16847 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
16848 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
16852 static struct snd_kcontrol_new alc662_eeepc_p701_mixer
[] = {
16853 HDA_CODEC_VOLUME("Master Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
16854 ALC262_HIPPO_MASTER_SWITCH
,
16856 HDA_CODEC_VOLUME("e-Mic Boost", 0x18, 0, HDA_INPUT
),
16857 HDA_CODEC_VOLUME("e-Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
16858 HDA_CODEC_MUTE("e-Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
16860 HDA_CODEC_VOLUME("i-Mic Boost", 0x19, 0, HDA_INPUT
),
16861 HDA_CODEC_VOLUME("i-Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
16862 HDA_CODEC_MUTE("i-Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
16866 static struct snd_kcontrol_new alc662_eeepc_ep20_mixer
[] = {
16867 ALC262_HIPPO_MASTER_SWITCH
,
16868 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
16869 HDA_CODEC_VOLUME("Surround Playback Volume", 0x03, 0x0, HDA_OUTPUT
),
16870 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x04, 1, 0x0, HDA_OUTPUT
),
16871 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x04, 2, 0x0, HDA_OUTPUT
),
16872 HDA_BIND_MUTE("MuteCtrl Playback Switch", 0x0c, 2, HDA_INPUT
),
16873 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
16874 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
16875 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
16876 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
16880 static struct hda_bind_ctls alc663_asus_bind_master_vol
= {
16881 .ops
= &snd_hda_bind_vol
,
16883 HDA_COMPOSE_AMP_VAL(0x02, 3, 0, HDA_OUTPUT
),
16884 HDA_COMPOSE_AMP_VAL(0x03, 3, 0, HDA_OUTPUT
),
16889 static struct hda_bind_ctls alc663_asus_one_bind_switch
= {
16890 .ops
= &snd_hda_bind_sw
,
16892 HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT
),
16893 HDA_COMPOSE_AMP_VAL(0x21, 3, 0, HDA_OUTPUT
),
16898 static struct snd_kcontrol_new alc663_m51va_mixer
[] = {
16899 HDA_BIND_VOL("Master Playback Volume", &alc663_asus_bind_master_vol
),
16900 HDA_BIND_SW("Master Playback Switch", &alc663_asus_one_bind_switch
),
16901 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
16902 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
16906 static struct hda_bind_ctls alc663_asus_tree_bind_switch
= {
16907 .ops
= &snd_hda_bind_sw
,
16909 HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT
),
16910 HDA_COMPOSE_AMP_VAL(0x15, 3, 0, HDA_OUTPUT
),
16911 HDA_COMPOSE_AMP_VAL(0x21, 3, 0, HDA_OUTPUT
),
16916 static struct snd_kcontrol_new alc663_two_hp_m1_mixer
[] = {
16917 HDA_BIND_VOL("Master Playback Volume", &alc663_asus_bind_master_vol
),
16918 HDA_BIND_SW("Master Playback Switch", &alc663_asus_tree_bind_switch
),
16919 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
16920 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
16921 HDA_CODEC_VOLUME("F-Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
16922 HDA_CODEC_MUTE("F-Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
16927 static struct hda_bind_ctls alc663_asus_four_bind_switch
= {
16928 .ops
= &snd_hda_bind_sw
,
16930 HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT
),
16931 HDA_COMPOSE_AMP_VAL(0x15, 3, 0, HDA_OUTPUT
),
16932 HDA_COMPOSE_AMP_VAL(0x1b, 3, 0, HDA_OUTPUT
),
16937 static struct snd_kcontrol_new alc663_two_hp_m2_mixer
[] = {
16938 HDA_BIND_VOL("Master Playback Volume", &alc663_asus_bind_master_vol
),
16939 HDA_BIND_SW("Master Playback Switch", &alc663_asus_four_bind_switch
),
16940 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
16941 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
16942 HDA_CODEC_VOLUME("F-Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
16943 HDA_CODEC_MUTE("F-Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
16947 static struct snd_kcontrol_new alc662_1bjd_mixer
[] = {
16948 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
16949 HDA_CODEC_MUTE("Speaker Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
16950 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
16951 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
16952 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
16953 HDA_CODEC_VOLUME("F-Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
16954 HDA_CODEC_MUTE("F-Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
16958 static struct hda_bind_ctls alc663_asus_two_bind_master_vol
= {
16959 .ops
= &snd_hda_bind_vol
,
16961 HDA_COMPOSE_AMP_VAL(0x02, 3, 0, HDA_OUTPUT
),
16962 HDA_COMPOSE_AMP_VAL(0x04, 3, 0, HDA_OUTPUT
),
16967 static struct hda_bind_ctls alc663_asus_two_bind_switch
= {
16968 .ops
= &snd_hda_bind_sw
,
16970 HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT
),
16971 HDA_COMPOSE_AMP_VAL(0x16, 3, 0, HDA_OUTPUT
),
16976 static struct snd_kcontrol_new alc663_asus_21jd_clfe_mixer
[] = {
16977 HDA_BIND_VOL("Master Playback Volume",
16978 &alc663_asus_two_bind_master_vol
),
16979 HDA_BIND_SW("Master Playback Switch", &alc663_asus_two_bind_switch
),
16980 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x03, 0x0, HDA_OUTPUT
),
16981 HDA_CODEC_MUTE("Headphone Playback Switch", 0x21, 0x0, HDA_OUTPUT
),
16982 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
16983 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
16987 static struct snd_kcontrol_new alc663_asus_15jd_clfe_mixer
[] = {
16988 HDA_BIND_VOL("Master Playback Volume", &alc663_asus_bind_master_vol
),
16989 HDA_BIND_SW("Master Playback Switch", &alc663_asus_two_bind_switch
),
16990 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x03, 0x0, HDA_OUTPUT
),
16991 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
16992 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
16993 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
16997 static struct snd_kcontrol_new alc663_g71v_mixer
[] = {
16998 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
16999 HDA_CODEC_MUTE("Speaker Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
17000 HDA_CODEC_VOLUME("Front Playback Volume", 0x03, 0x0, HDA_OUTPUT
),
17001 HDA_CODEC_MUTE("Front Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
17002 HDA_CODEC_MUTE("Headphone Playback Switch", 0x21, 0x0, HDA_OUTPUT
),
17004 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
17005 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
17006 HDA_CODEC_VOLUME("i-Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
17007 HDA_CODEC_MUTE("i-Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
17011 static struct snd_kcontrol_new alc663_g50v_mixer
[] = {
17012 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
17013 HDA_CODEC_MUTE("Speaker Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
17014 HDA_CODEC_MUTE("Headphone Playback Switch", 0x21, 0x0, HDA_OUTPUT
),
17016 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
17017 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
17018 HDA_CODEC_VOLUME("i-Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
17019 HDA_CODEC_MUTE("i-Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
17020 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
17021 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
17025 static struct hda_bind_ctls alc663_asus_mode7_8_all_bind_switch
= {
17026 .ops
= &snd_hda_bind_sw
,
17028 HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT
),
17029 HDA_COMPOSE_AMP_VAL(0x15, 3, 0, HDA_OUTPUT
),
17030 HDA_COMPOSE_AMP_VAL(0x17, 3, 0, HDA_OUTPUT
),
17031 HDA_COMPOSE_AMP_VAL(0x1b, 3, 0, HDA_OUTPUT
),
17032 HDA_COMPOSE_AMP_VAL(0x21, 3, 0, HDA_OUTPUT
),
17037 static struct hda_bind_ctls alc663_asus_mode7_8_sp_bind_switch
= {
17038 .ops
= &snd_hda_bind_sw
,
17040 HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT
),
17041 HDA_COMPOSE_AMP_VAL(0x17, 3, 0, HDA_OUTPUT
),
17046 static struct snd_kcontrol_new alc663_mode7_mixer
[] = {
17047 HDA_BIND_SW("Master Playback Switch", &alc663_asus_mode7_8_all_bind_switch
),
17048 HDA_BIND_VOL("Speaker Playback Volume", &alc663_asus_bind_master_vol
),
17049 HDA_BIND_SW("Speaker Playback Switch", &alc663_asus_mode7_8_sp_bind_switch
),
17050 HDA_CODEC_MUTE("Headphone1 Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
17051 HDA_CODEC_MUTE("Headphone2 Playback Switch", 0x21, 0x0, HDA_OUTPUT
),
17052 HDA_CODEC_VOLUME("IntMic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
17053 HDA_CODEC_MUTE("IntMic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
17054 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
17055 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
17059 static struct snd_kcontrol_new alc663_mode8_mixer
[] = {
17060 HDA_BIND_SW("Master Playback Switch", &alc663_asus_mode7_8_all_bind_switch
),
17061 HDA_BIND_VOL("Speaker Playback Volume", &alc663_asus_bind_master_vol
),
17062 HDA_BIND_SW("Speaker Playback Switch", &alc663_asus_mode7_8_sp_bind_switch
),
17063 HDA_CODEC_MUTE("Headphone1 Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
17064 HDA_CODEC_MUTE("Headphone2 Playback Switch", 0x21, 0x0, HDA_OUTPUT
),
17065 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
17066 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
17071 static struct snd_kcontrol_new alc662_chmode_mixer
[] = {
17073 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
17074 .name
= "Channel Mode",
17075 .info
= alc_ch_mode_info
,
17076 .get
= alc_ch_mode_get
,
17077 .put
= alc_ch_mode_put
,
17082 static struct hda_verb alc662_init_verbs
[] = {
17083 /* ADC: mute amp left and right */
17084 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
17085 {0x09, AC_VERB_SET_CONNECT_SEL
, 0x00},
17087 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
17088 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
17089 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
17090 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
17091 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
17092 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
17094 /* Front Pin: output 0 (0x0c) */
17095 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
17096 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17098 /* Rear Pin: output 1 (0x0d) */
17099 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
17100 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17102 /* CLFE Pin: output 2 (0x0e) */
17103 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
17104 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17106 /* Mic (rear) pin: input vref at 80% */
17107 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
17108 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
17109 /* Front Mic pin: input vref at 80% */
17110 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
17111 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
17112 /* Line In pin: input */
17113 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
17114 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
17115 /* Line-2 In: Headphone output (output 0 - 0x0c) */
17116 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
17117 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17118 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0x00},
17119 /* CD pin widget for input */
17120 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
17122 /* FIXME: use matrix-type input source selection */
17123 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
17125 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
17126 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
17128 /* always trun on EAPD */
17129 {0x14, AC_VERB_SET_EAPD_BTLENABLE
, 2},
17130 {0x15, AC_VERB_SET_EAPD_BTLENABLE
, 2},
17135 static struct hda_verb alc663_init_verbs
[] = {
17136 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
17137 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17138 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
17139 {0x21, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17140 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
17141 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
17145 static struct hda_verb alc272_init_verbs
[] = {
17146 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
17147 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
17148 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
17149 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17150 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
17151 {0x21, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17152 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
17153 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
17157 static struct hda_verb alc662_sue_init_verbs
[] = {
17158 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
|ALC880_FRONT_EVENT
},
17159 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
|ALC880_HP_EVENT
},
17163 static struct hda_verb alc662_eeepc_sue_init_verbs
[] = {
17164 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
17165 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
17169 /* Set Unsolicited Event*/
17170 static struct hda_verb alc662_eeepc_ep20_sue_init_verbs
[] = {
17171 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
17172 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
17176 static struct hda_verb alc663_m51va_init_verbs
[] = {
17177 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
17178 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
17179 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
17180 {0x21, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17181 {0x21, AC_VERB_SET_CONNECT_SEL
, 0x01}, /* Headphone */
17182 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
17183 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(9)},
17184 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
17185 {0x21, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
17189 static struct hda_verb alc663_21jd_amic_init_verbs
[] = {
17190 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
17191 {0x21, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17192 {0x21, AC_VERB_SET_CONNECT_SEL
, 0x01}, /* Headphone */
17193 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
17194 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
17195 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
17196 {0x21, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
17200 static struct hda_verb alc662_1bjd_amic_init_verbs
[] = {
17201 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
17202 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
17203 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17204 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* Headphone */
17205 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
17206 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
17207 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
17208 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
17212 static struct hda_verb alc663_15jd_amic_init_verbs
[] = {
17213 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
17214 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17215 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x01}, /* Headphone */
17216 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
17217 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
17218 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
17219 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
17223 static struct hda_verb alc663_two_hp_amic_m1_init_verbs
[] = {
17224 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
17225 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
17226 {0x21, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17227 {0x21, AC_VERB_SET_CONNECT_SEL
, 0x0}, /* Headphone */
17228 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
17229 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17230 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x0}, /* Headphone */
17231 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
17232 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
17233 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
17234 {0x21, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
17235 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
17239 static struct hda_verb alc663_two_hp_amic_m2_init_verbs
[] = {
17240 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
17241 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
17242 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17243 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0x01}, /* Headphone */
17244 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
17245 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17246 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x01}, /* Headphone */
17247 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
17248 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
17249 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
17250 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
17251 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
17255 static struct hda_verb alc663_g71v_init_verbs
[] = {
17256 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
17257 /* {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, */
17258 /* {0x15, AC_VERB_SET_CONNECT_SEL, 0x01}, */ /* Headphone */
17260 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
17261 {0x21, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17262 {0x21, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* Headphone */
17264 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
|ALC880_FRONT_EVENT
},
17265 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
|ALC880_MIC_EVENT
},
17266 {0x21, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
|ALC880_HP_EVENT
},
17270 static struct hda_verb alc663_g50v_init_verbs
[] = {
17271 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
17272 {0x21, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17273 {0x21, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* Headphone */
17275 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
17276 {0x21, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
17280 static struct hda_verb alc662_ecs_init_verbs
[] = {
17281 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, 0x701f},
17282 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
17283 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
17284 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
17288 static struct hda_verb alc272_dell_zm1_init_verbs
[] = {
17289 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
17290 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
17291 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
17292 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
17293 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
17294 {0x21, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17295 {0x21, AC_VERB_SET_CONNECT_SEL
, 0x01}, /* Headphone */
17296 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
17297 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(9)},
17298 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
17299 {0x21, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
17303 static struct hda_verb alc272_dell_init_verbs
[] = {
17304 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
17305 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
17306 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
17307 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
17308 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
17309 {0x21, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17310 {0x21, AC_VERB_SET_CONNECT_SEL
, 0x01}, /* Headphone */
17311 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
17312 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(9)},
17313 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
17314 {0x21, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
17318 static struct hda_verb alc663_mode7_init_verbs
[] = {
17319 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
17320 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
17321 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
17322 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17323 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
17324 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17325 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0x01},
17326 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
17327 {0x21, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17328 {0x21, AC_VERB_SET_CONNECT_SEL
, 0x01}, /* Headphone */
17329 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
17330 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(9)},
17331 {0x19, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
17332 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
17333 {0x21, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
17337 static struct hda_verb alc663_mode8_init_verbs
[] = {
17338 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
17339 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
17340 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17341 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x01},
17342 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
17343 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
17344 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17345 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
17346 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
17347 {0x21, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
17348 {0x21, AC_VERB_SET_CONNECT_SEL
, 0x01}, /* Headphone */
17349 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
17350 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(9)},
17351 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
17352 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
17353 {0x21, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
17357 static struct snd_kcontrol_new alc662_auto_capture_mixer
[] = {
17358 HDA_CODEC_VOLUME("Capture Volume", 0x09, 0x0, HDA_INPUT
),
17359 HDA_CODEC_MUTE("Capture Switch", 0x09, 0x0, HDA_INPUT
),
17363 static struct snd_kcontrol_new alc272_auto_capture_mixer
[] = {
17364 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT
),
17365 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT
),
17369 static void alc662_lenovo_101e_ispeaker_automute(struct hda_codec
*codec
)
17371 unsigned int present
;
17372 unsigned char bits
;
17374 present
= snd_hda_jack_detect(codec
, 0x14);
17375 bits
= present
? HDA_AMP_MUTE
: 0;
17377 snd_hda_codec_amp_stereo(codec
, 0x15, HDA_OUTPUT
, 0,
17378 HDA_AMP_MUTE
, bits
);
17381 static void alc662_lenovo_101e_all_automute(struct hda_codec
*codec
)
17383 unsigned int present
;
17384 unsigned char bits
;
17386 present
= snd_hda_jack_detect(codec
, 0x1b);
17387 bits
= present
? HDA_AMP_MUTE
: 0;
17389 snd_hda_codec_amp_stereo(codec
, 0x15, HDA_OUTPUT
, 0,
17390 HDA_AMP_MUTE
, bits
);
17391 snd_hda_codec_amp_stereo(codec
, 0x14, HDA_OUTPUT
, 0,
17392 HDA_AMP_MUTE
, bits
);
17395 static void alc662_lenovo_101e_unsol_event(struct hda_codec
*codec
,
17398 if ((res
>> 26) == ALC880_HP_EVENT
)
17399 alc662_lenovo_101e_all_automute(codec
);
17400 if ((res
>> 26) == ALC880_FRONT_EVENT
)
17401 alc662_lenovo_101e_ispeaker_automute(codec
);
17404 /* unsolicited event for HP jack sensing */
17405 static void alc662_eeepc_unsol_event(struct hda_codec
*codec
,
17408 if ((res
>> 26) == ALC880_MIC_EVENT
)
17409 alc_mic_automute(codec
);
17411 alc262_hippo_unsol_event(codec
, res
);
17414 static void alc662_eeepc_setup(struct hda_codec
*codec
)
17416 struct alc_spec
*spec
= codec
->spec
;
17418 alc262_hippo1_setup(codec
);
17419 spec
->ext_mic
.pin
= 0x18;
17420 spec
->ext_mic
.mux_idx
= 0;
17421 spec
->int_mic
.pin
= 0x19;
17422 spec
->int_mic
.mux_idx
= 1;
17423 spec
->auto_mic
= 1;
17426 static void alc662_eeepc_inithook(struct hda_codec
*codec
)
17428 alc262_hippo_automute(codec
);
17429 alc_mic_automute(codec
);
17432 static void alc662_eeepc_ep20_setup(struct hda_codec
*codec
)
17434 struct alc_spec
*spec
= codec
->spec
;
17436 spec
->autocfg
.hp_pins
[0] = 0x14;
17437 spec
->autocfg
.speaker_pins
[0] = 0x1b;
17440 #define alc662_eeepc_ep20_inithook alc262_hippo_master_update
17442 static void alc663_m51va_speaker_automute(struct hda_codec
*codec
)
17444 unsigned int present
;
17445 unsigned char bits
;
17447 present
= snd_hda_jack_detect(codec
, 0x21);
17448 bits
= present
? HDA_AMP_MUTE
: 0;
17449 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 0,
17450 HDA_AMP_MUTE
, bits
);
17451 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 1,
17452 HDA_AMP_MUTE
, bits
);
17455 static void alc663_21jd_two_speaker_automute(struct hda_codec
*codec
)
17457 unsigned int present
;
17458 unsigned char bits
;
17460 present
= snd_hda_jack_detect(codec
, 0x21);
17461 bits
= present
? HDA_AMP_MUTE
: 0;
17462 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 0,
17463 HDA_AMP_MUTE
, bits
);
17464 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 1,
17465 HDA_AMP_MUTE
, bits
);
17466 snd_hda_codec_amp_stereo(codec
, 0x0e, HDA_INPUT
, 0,
17467 HDA_AMP_MUTE
, bits
);
17468 snd_hda_codec_amp_stereo(codec
, 0x0e, HDA_INPUT
, 1,
17469 HDA_AMP_MUTE
, bits
);
17472 static void alc663_15jd_two_speaker_automute(struct hda_codec
*codec
)
17474 unsigned int present
;
17475 unsigned char bits
;
17477 present
= snd_hda_jack_detect(codec
, 0x15);
17478 bits
= present
? HDA_AMP_MUTE
: 0;
17479 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 0,
17480 HDA_AMP_MUTE
, bits
);
17481 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 1,
17482 HDA_AMP_MUTE
, bits
);
17483 snd_hda_codec_amp_stereo(codec
, 0x0e, HDA_INPUT
, 0,
17484 HDA_AMP_MUTE
, bits
);
17485 snd_hda_codec_amp_stereo(codec
, 0x0e, HDA_INPUT
, 1,
17486 HDA_AMP_MUTE
, bits
);
17489 static void alc662_f5z_speaker_automute(struct hda_codec
*codec
)
17491 unsigned int present
;
17492 unsigned char bits
;
17494 present
= snd_hda_jack_detect(codec
, 0x1b);
17495 bits
= present
? 0 : PIN_OUT
;
17496 snd_hda_codec_write(codec
, 0x14, 0,
17497 AC_VERB_SET_PIN_WIDGET_CONTROL
, bits
);
17500 static void alc663_two_hp_m1_speaker_automute(struct hda_codec
*codec
)
17502 unsigned int present1
, present2
;
17504 present1
= snd_hda_jack_detect(codec
, 0x21);
17505 present2
= snd_hda_jack_detect(codec
, 0x15);
17507 if (present1
|| present2
) {
17508 snd_hda_codec_write_cache(codec
, 0x14, 0,
17509 AC_VERB_SET_PIN_WIDGET_CONTROL
, 0);
17511 snd_hda_codec_write_cache(codec
, 0x14, 0,
17512 AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
);
17516 static void alc663_two_hp_m2_speaker_automute(struct hda_codec
*codec
)
17518 unsigned int present1
, present2
;
17520 present1
= snd_hda_jack_detect(codec
, 0x1b);
17521 present2
= snd_hda_jack_detect(codec
, 0x15);
17523 if (present1
|| present2
) {
17524 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 0,
17525 HDA_AMP_MUTE
, HDA_AMP_MUTE
);
17526 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 1,
17527 HDA_AMP_MUTE
, HDA_AMP_MUTE
);
17529 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 0,
17531 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 1,
17536 static void alc663_two_hp_m7_speaker_automute(struct hda_codec
*codec
)
17538 unsigned int present1
, present2
;
17540 present1
= snd_hda_codec_read(codec
, 0x1b, 0,
17541 AC_VERB_GET_PIN_SENSE
, 0)
17542 & AC_PINSENSE_PRESENCE
;
17543 present2
= snd_hda_codec_read(codec
, 0x21, 0,
17544 AC_VERB_GET_PIN_SENSE
, 0)
17545 & AC_PINSENSE_PRESENCE
;
17547 if (present1
|| present2
) {
17548 snd_hda_codec_write_cache(codec
, 0x14, 0,
17549 AC_VERB_SET_PIN_WIDGET_CONTROL
, 0);
17550 snd_hda_codec_write_cache(codec
, 0x17, 0,
17551 AC_VERB_SET_PIN_WIDGET_CONTROL
, 0);
17553 snd_hda_codec_write_cache(codec
, 0x14, 0,
17554 AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
);
17555 snd_hda_codec_write_cache(codec
, 0x17, 0,
17556 AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
);
17560 static void alc663_two_hp_m8_speaker_automute(struct hda_codec
*codec
)
17562 unsigned int present1
, present2
;
17564 present1
= snd_hda_codec_read(codec
, 0x21, 0,
17565 AC_VERB_GET_PIN_SENSE
, 0)
17566 & AC_PINSENSE_PRESENCE
;
17567 present2
= snd_hda_codec_read(codec
, 0x15, 0,
17568 AC_VERB_GET_PIN_SENSE
, 0)
17569 & AC_PINSENSE_PRESENCE
;
17571 if (present1
|| present2
) {
17572 snd_hda_codec_write_cache(codec
, 0x14, 0,
17573 AC_VERB_SET_PIN_WIDGET_CONTROL
, 0);
17574 snd_hda_codec_write_cache(codec
, 0x17, 0,
17575 AC_VERB_SET_PIN_WIDGET_CONTROL
, 0);
17577 snd_hda_codec_write_cache(codec
, 0x14, 0,
17578 AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
);
17579 snd_hda_codec_write_cache(codec
, 0x17, 0,
17580 AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
);
17584 static void alc663_m51va_unsol_event(struct hda_codec
*codec
,
17587 switch (res
>> 26) {
17588 case ALC880_HP_EVENT
:
17589 alc663_m51va_speaker_automute(codec
);
17591 case ALC880_MIC_EVENT
:
17592 alc_mic_automute(codec
);
17597 static void alc663_m51va_setup(struct hda_codec
*codec
)
17599 struct alc_spec
*spec
= codec
->spec
;
17600 spec
->ext_mic
.pin
= 0x18;
17601 spec
->ext_mic
.mux_idx
= 0;
17602 spec
->int_mic
.pin
= 0x12;
17603 spec
->int_mic
.mux_idx
= 9;
17604 spec
->auto_mic
= 1;
17607 static void alc663_m51va_inithook(struct hda_codec
*codec
)
17609 alc663_m51va_speaker_automute(codec
);
17610 alc_mic_automute(codec
);
17613 /* ***************** Mode1 ******************************/
17614 #define alc663_mode1_unsol_event alc663_m51va_unsol_event
17616 static void alc663_mode1_setup(struct hda_codec
*codec
)
17618 struct alc_spec
*spec
= codec
->spec
;
17619 spec
->ext_mic
.pin
= 0x18;
17620 spec
->ext_mic
.mux_idx
= 0;
17621 spec
->int_mic
.pin
= 0x19;
17622 spec
->int_mic
.mux_idx
= 1;
17623 spec
->auto_mic
= 1;
17626 #define alc663_mode1_inithook alc663_m51va_inithook
17628 /* ***************** Mode2 ******************************/
17629 static void alc662_mode2_unsol_event(struct hda_codec
*codec
,
17632 switch (res
>> 26) {
17633 case ALC880_HP_EVENT
:
17634 alc662_f5z_speaker_automute(codec
);
17636 case ALC880_MIC_EVENT
:
17637 alc_mic_automute(codec
);
17642 #define alc662_mode2_setup alc663_mode1_setup
17644 static void alc662_mode2_inithook(struct hda_codec
*codec
)
17646 alc662_f5z_speaker_automute(codec
);
17647 alc_mic_automute(codec
);
17649 /* ***************** Mode3 ******************************/
17650 static void alc663_mode3_unsol_event(struct hda_codec
*codec
,
17653 switch (res
>> 26) {
17654 case ALC880_HP_EVENT
:
17655 alc663_two_hp_m1_speaker_automute(codec
);
17657 case ALC880_MIC_EVENT
:
17658 alc_mic_automute(codec
);
17663 #define alc663_mode3_setup alc663_mode1_setup
17665 static void alc663_mode3_inithook(struct hda_codec
*codec
)
17667 alc663_two_hp_m1_speaker_automute(codec
);
17668 alc_mic_automute(codec
);
17670 /* ***************** Mode4 ******************************/
17671 static void alc663_mode4_unsol_event(struct hda_codec
*codec
,
17674 switch (res
>> 26) {
17675 case ALC880_HP_EVENT
:
17676 alc663_21jd_two_speaker_automute(codec
);
17678 case ALC880_MIC_EVENT
:
17679 alc_mic_automute(codec
);
17684 #define alc663_mode4_setup alc663_mode1_setup
17686 static void alc663_mode4_inithook(struct hda_codec
*codec
)
17688 alc663_21jd_two_speaker_automute(codec
);
17689 alc_mic_automute(codec
);
17691 /* ***************** Mode5 ******************************/
17692 static void alc663_mode5_unsol_event(struct hda_codec
*codec
,
17695 switch (res
>> 26) {
17696 case ALC880_HP_EVENT
:
17697 alc663_15jd_two_speaker_automute(codec
);
17699 case ALC880_MIC_EVENT
:
17700 alc_mic_automute(codec
);
17705 #define alc663_mode5_setup alc663_mode1_setup
17707 static void alc663_mode5_inithook(struct hda_codec
*codec
)
17709 alc663_15jd_two_speaker_automute(codec
);
17710 alc_mic_automute(codec
);
17712 /* ***************** Mode6 ******************************/
17713 static void alc663_mode6_unsol_event(struct hda_codec
*codec
,
17716 switch (res
>> 26) {
17717 case ALC880_HP_EVENT
:
17718 alc663_two_hp_m2_speaker_automute(codec
);
17720 case ALC880_MIC_EVENT
:
17721 alc_mic_automute(codec
);
17726 #define alc663_mode6_setup alc663_mode1_setup
17728 static void alc663_mode6_inithook(struct hda_codec
*codec
)
17730 alc663_two_hp_m2_speaker_automute(codec
);
17731 alc_mic_automute(codec
);
17734 /* ***************** Mode7 ******************************/
17735 static void alc663_mode7_unsol_event(struct hda_codec
*codec
,
17738 switch (res
>> 26) {
17739 case ALC880_HP_EVENT
:
17740 alc663_two_hp_m7_speaker_automute(codec
);
17742 case ALC880_MIC_EVENT
:
17743 alc_mic_automute(codec
);
17748 #define alc663_mode7_setup alc663_mode1_setup
17750 static void alc663_mode7_inithook(struct hda_codec
*codec
)
17752 alc663_two_hp_m7_speaker_automute(codec
);
17753 alc_mic_automute(codec
);
17756 /* ***************** Mode8 ******************************/
17757 static void alc663_mode8_unsol_event(struct hda_codec
*codec
,
17760 switch (res
>> 26) {
17761 case ALC880_HP_EVENT
:
17762 alc663_two_hp_m8_speaker_automute(codec
);
17764 case ALC880_MIC_EVENT
:
17765 alc_mic_automute(codec
);
17770 #define alc663_mode8_setup alc663_m51va_setup
17772 static void alc663_mode8_inithook(struct hda_codec
*codec
)
17774 alc663_two_hp_m8_speaker_automute(codec
);
17775 alc_mic_automute(codec
);
17778 static void alc663_g71v_hp_automute(struct hda_codec
*codec
)
17780 unsigned int present
;
17781 unsigned char bits
;
17783 present
= snd_hda_jack_detect(codec
, 0x21);
17784 bits
= present
? HDA_AMP_MUTE
: 0;
17785 snd_hda_codec_amp_stereo(codec
, 0x15, HDA_OUTPUT
, 0,
17786 HDA_AMP_MUTE
, bits
);
17787 snd_hda_codec_amp_stereo(codec
, 0x14, HDA_OUTPUT
, 0,
17788 HDA_AMP_MUTE
, bits
);
17791 static void alc663_g71v_front_automute(struct hda_codec
*codec
)
17793 unsigned int present
;
17794 unsigned char bits
;
17796 present
= snd_hda_jack_detect(codec
, 0x15);
17797 bits
= present
? HDA_AMP_MUTE
: 0;
17798 snd_hda_codec_amp_stereo(codec
, 0x14, HDA_OUTPUT
, 0,
17799 HDA_AMP_MUTE
, bits
);
17802 static void alc663_g71v_unsol_event(struct hda_codec
*codec
,
17805 switch (res
>> 26) {
17806 case ALC880_HP_EVENT
:
17807 alc663_g71v_hp_automute(codec
);
17809 case ALC880_FRONT_EVENT
:
17810 alc663_g71v_front_automute(codec
);
17812 case ALC880_MIC_EVENT
:
17813 alc_mic_automute(codec
);
17818 #define alc663_g71v_setup alc663_m51va_setup
17820 static void alc663_g71v_inithook(struct hda_codec
*codec
)
17822 alc663_g71v_front_automute(codec
);
17823 alc663_g71v_hp_automute(codec
);
17824 alc_mic_automute(codec
);
17827 static void alc663_g50v_unsol_event(struct hda_codec
*codec
,
17830 switch (res
>> 26) {
17831 case ALC880_HP_EVENT
:
17832 alc663_m51va_speaker_automute(codec
);
17834 case ALC880_MIC_EVENT
:
17835 alc_mic_automute(codec
);
17840 #define alc663_g50v_setup alc663_m51va_setup
17842 static void alc663_g50v_inithook(struct hda_codec
*codec
)
17844 alc663_m51va_speaker_automute(codec
);
17845 alc_mic_automute(codec
);
17848 static struct snd_kcontrol_new alc662_ecs_mixer
[] = {
17849 HDA_CODEC_VOLUME("Master Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
17850 ALC262_HIPPO_MASTER_SWITCH
,
17852 HDA_CODEC_VOLUME("e-Mic/LineIn Boost", 0x18, 0, HDA_INPUT
),
17853 HDA_CODEC_VOLUME("e-Mic/LineIn Playback Volume", 0x0b, 0x0, HDA_INPUT
),
17854 HDA_CODEC_MUTE("e-Mic/LineIn Playback Switch", 0x0b, 0x0, HDA_INPUT
),
17856 HDA_CODEC_VOLUME("i-Mic Boost", 0x19, 0, HDA_INPUT
),
17857 HDA_CODEC_VOLUME("i-Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
17858 HDA_CODEC_MUTE("i-Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
17862 static struct snd_kcontrol_new alc272_nc10_mixer
[] = {
17863 /* Master Playback automatically created from Speaker and Headphone */
17864 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
17865 HDA_CODEC_MUTE("Speaker Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
17866 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x03, 0x0, HDA_OUTPUT
),
17867 HDA_CODEC_MUTE("Headphone Playback Switch", 0x21, 0x0, HDA_OUTPUT
),
17869 HDA_CODEC_VOLUME("Ext Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
17870 HDA_CODEC_MUTE("Ext Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
17871 HDA_CODEC_VOLUME("Ext Mic Boost", 0x18, 0, HDA_INPUT
),
17873 HDA_CODEC_VOLUME("Int Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
17874 HDA_CODEC_MUTE("Int Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
17875 HDA_CODEC_VOLUME("Int Mic Boost", 0x19, 0, HDA_INPUT
),
17879 #ifdef CONFIG_SND_HDA_POWER_SAVE
17880 #define alc662_loopbacks alc880_loopbacks
17884 /* pcm configuration: identical with ALC880 */
17885 #define alc662_pcm_analog_playback alc880_pcm_analog_playback
17886 #define alc662_pcm_analog_capture alc880_pcm_analog_capture
17887 #define alc662_pcm_digital_playback alc880_pcm_digital_playback
17888 #define alc662_pcm_digital_capture alc880_pcm_digital_capture
17891 * configuration and preset
17893 static const char *alc662_models
[ALC662_MODEL_LAST
] = {
17894 [ALC662_3ST_2ch_DIG
] = "3stack-dig",
17895 [ALC662_3ST_6ch_DIG
] = "3stack-6ch-dig",
17896 [ALC662_3ST_6ch
] = "3stack-6ch",
17897 [ALC662_5ST_DIG
] = "6stack-dig",
17898 [ALC662_LENOVO_101E
] = "lenovo-101e",
17899 [ALC662_ASUS_EEEPC_P701
] = "eeepc-p701",
17900 [ALC662_ASUS_EEEPC_EP20
] = "eeepc-ep20",
17901 [ALC662_ECS
] = "ecs",
17902 [ALC663_ASUS_M51VA
] = "m51va",
17903 [ALC663_ASUS_G71V
] = "g71v",
17904 [ALC663_ASUS_H13
] = "h13",
17905 [ALC663_ASUS_G50V
] = "g50v",
17906 [ALC663_ASUS_MODE1
] = "asus-mode1",
17907 [ALC662_ASUS_MODE2
] = "asus-mode2",
17908 [ALC663_ASUS_MODE3
] = "asus-mode3",
17909 [ALC663_ASUS_MODE4
] = "asus-mode4",
17910 [ALC663_ASUS_MODE5
] = "asus-mode5",
17911 [ALC663_ASUS_MODE6
] = "asus-mode6",
17912 [ALC663_ASUS_MODE7
] = "asus-mode7",
17913 [ALC663_ASUS_MODE8
] = "asus-mode8",
17914 [ALC272_DELL
] = "dell",
17915 [ALC272_DELL_ZM1
] = "dell-zm1",
17916 [ALC272_SAMSUNG_NC10
] = "samsung-nc10",
17917 [ALC662_AUTO
] = "auto",
17920 static struct snd_pci_quirk alc662_cfg_tbl
[] = {
17921 SND_PCI_QUIRK(0x1019, 0x9087, "ECS", ALC662_ECS
),
17922 SND_PCI_QUIRK(0x1028, 0x02d6, "DELL", ALC272_DELL
),
17923 SND_PCI_QUIRK(0x1028, 0x02f4, "DELL ZM1", ALC272_DELL_ZM1
),
17924 SND_PCI_QUIRK(0x1043, 0x1000, "ASUS N50Vm", ALC663_ASUS_MODE1
),
17925 SND_PCI_QUIRK(0x1043, 0x1092, "ASUS NB", ALC663_ASUS_MODE3
),
17926 SND_PCI_QUIRK(0x1043, 0x1173, "ASUS K73Jn", ALC663_ASUS_MODE1
),
17927 SND_PCI_QUIRK(0x1043, 0x11c3, "ASUS M70V", ALC663_ASUS_MODE3
),
17928 SND_PCI_QUIRK(0x1043, 0x11d3, "ASUS NB", ALC663_ASUS_MODE1
),
17929 SND_PCI_QUIRK(0x1043, 0x11f3, "ASUS NB", ALC662_ASUS_MODE2
),
17930 SND_PCI_QUIRK(0x1043, 0x1203, "ASUS NB", ALC663_ASUS_MODE1
),
17931 SND_PCI_QUIRK(0x1043, 0x1303, "ASUS G60J", ALC663_ASUS_MODE1
),
17932 SND_PCI_QUIRK(0x1043, 0x1333, "ASUS G60Jx", ALC663_ASUS_MODE1
),
17933 SND_PCI_QUIRK(0x1043, 0x1339, "ASUS NB", ALC662_ASUS_MODE2
),
17934 SND_PCI_QUIRK(0x1043, 0x13e3, "ASUS N71JA", ALC663_ASUS_MODE7
),
17935 SND_PCI_QUIRK(0x1043, 0x1463, "ASUS N71", ALC663_ASUS_MODE7
),
17936 SND_PCI_QUIRK(0x1043, 0x14d3, "ASUS G72", ALC663_ASUS_MODE8
),
17937 SND_PCI_QUIRK(0x1043, 0x1563, "ASUS N90", ALC663_ASUS_MODE3
),
17938 SND_PCI_QUIRK(0x1043, 0x15d3, "ASUS N50SF F50SF", ALC663_ASUS_MODE1
),
17939 SND_PCI_QUIRK(0x1043, 0x16c3, "ASUS NB", ALC662_ASUS_MODE2
),
17940 SND_PCI_QUIRK(0x1043, 0x16f3, "ASUS K40C K50C", ALC662_ASUS_MODE2
),
17941 SND_PCI_QUIRK(0x1043, 0x1733, "ASUS N81De", ALC663_ASUS_MODE1
),
17942 SND_PCI_QUIRK(0x1043, 0x1753, "ASUS NB", ALC662_ASUS_MODE2
),
17943 SND_PCI_QUIRK(0x1043, 0x1763, "ASUS NB", ALC663_ASUS_MODE6
),
17944 SND_PCI_QUIRK(0x1043, 0x1765, "ASUS NB", ALC663_ASUS_MODE6
),
17945 SND_PCI_QUIRK(0x1043, 0x1783, "ASUS NB", ALC662_ASUS_MODE2
),
17946 SND_PCI_QUIRK(0x1043, 0x1793, "ASUS F50GX", ALC663_ASUS_MODE1
),
17947 SND_PCI_QUIRK(0x1043, 0x17b3, "ASUS F70SL", ALC663_ASUS_MODE3
),
17948 SND_PCI_QUIRK(0x1043, 0x17c3, "ASUS UX20", ALC663_ASUS_M51VA
),
17949 SND_PCI_QUIRK(0x1043, 0x17f3, "ASUS X58LE", ALC662_ASUS_MODE2
),
17950 SND_PCI_QUIRK(0x1043, 0x1813, "ASUS NB", ALC662_ASUS_MODE2
),
17951 SND_PCI_QUIRK(0x1043, 0x1823, "ASUS NB", ALC663_ASUS_MODE5
),
17952 SND_PCI_QUIRK(0x1043, 0x1833, "ASUS NB", ALC663_ASUS_MODE6
),
17953 SND_PCI_QUIRK(0x1043, 0x1843, "ASUS NB", ALC662_ASUS_MODE2
),
17954 SND_PCI_QUIRK(0x1043, 0x1853, "ASUS F50Z", ALC663_ASUS_MODE1
),
17955 SND_PCI_QUIRK(0x1043, 0x1864, "ASUS NB", ALC662_ASUS_MODE2
),
17956 SND_PCI_QUIRK(0x1043, 0x1876, "ASUS NB", ALC662_ASUS_MODE2
),
17957 SND_PCI_QUIRK(0x1043, 0x1878, "ASUS M51VA", ALC663_ASUS_M51VA
),
17958 /*SND_PCI_QUIRK(0x1043, 0x1878, "ASUS M50Vr", ALC663_ASUS_MODE1),*/
17959 SND_PCI_QUIRK(0x1043, 0x1893, "ASUS M50Vm", ALC663_ASUS_MODE3
),
17960 SND_PCI_QUIRK(0x1043, 0x1894, "ASUS X55", ALC663_ASUS_MODE3
),
17961 SND_PCI_QUIRK(0x1043, 0x18b3, "ASUS N80Vc", ALC663_ASUS_MODE1
),
17962 SND_PCI_QUIRK(0x1043, 0x18c3, "ASUS VX5", ALC663_ASUS_MODE1
),
17963 SND_PCI_QUIRK(0x1043, 0x18d3, "ASUS N81Te", ALC663_ASUS_MODE1
),
17964 SND_PCI_QUIRK(0x1043, 0x18f3, "ASUS N505Tp", ALC663_ASUS_MODE1
),
17965 SND_PCI_QUIRK(0x1043, 0x1903, "ASUS F5GL", ALC663_ASUS_MODE1
),
17966 SND_PCI_QUIRK(0x1043, 0x1913, "ASUS NB", ALC662_ASUS_MODE2
),
17967 SND_PCI_QUIRK(0x1043, 0x1933, "ASUS F80Q", ALC662_ASUS_MODE2
),
17968 SND_PCI_QUIRK(0x1043, 0x1943, "ASUS Vx3V", ALC663_ASUS_MODE1
),
17969 SND_PCI_QUIRK(0x1043, 0x1953, "ASUS NB", ALC663_ASUS_MODE1
),
17970 SND_PCI_QUIRK(0x1043, 0x1963, "ASUS X71C", ALC663_ASUS_MODE3
),
17971 SND_PCI_QUIRK(0x1043, 0x1983, "ASUS N5051A", ALC663_ASUS_MODE1
),
17972 SND_PCI_QUIRK(0x1043, 0x1993, "ASUS N20", ALC663_ASUS_MODE1
),
17973 SND_PCI_QUIRK(0x1043, 0x19a3, "ASUS G50V", ALC663_ASUS_G50V
),
17974 /*SND_PCI_QUIRK(0x1043, 0x19a3, "ASUS NB", ALC663_ASUS_MODE1),*/
17975 SND_PCI_QUIRK(0x1043, 0x19b3, "ASUS F7Z", ALC663_ASUS_MODE1
),
17976 SND_PCI_QUIRK(0x1043, 0x19c3, "ASUS F5Z/F6x", ALC662_ASUS_MODE2
),
17977 SND_PCI_QUIRK(0x1043, 0x19d3, "ASUS NB", ALC663_ASUS_M51VA
),
17978 SND_PCI_QUIRK(0x1043, 0x19e3, "ASUS NB", ALC663_ASUS_MODE1
),
17979 SND_PCI_QUIRK(0x1043, 0x19f3, "ASUS NB", ALC663_ASUS_MODE4
),
17980 SND_PCI_QUIRK(0x1043, 0x8290, "ASUS P5GC-MX", ALC662_3ST_6ch_DIG
),
17981 SND_PCI_QUIRK(0x1043, 0x82a1, "ASUS Eeepc", ALC662_ASUS_EEEPC_P701
),
17982 SND_PCI_QUIRK(0x1043, 0x82d1, "ASUS Eeepc EP20", ALC662_ASUS_EEEPC_EP20
),
17983 SND_PCI_QUIRK(0x105b, 0x0cd6, "Foxconn", ALC662_ECS
),
17984 SND_PCI_QUIRK(0x105b, 0x0d47, "Foxconn 45CMX/45GMX/45CMX-K",
17985 ALC662_3ST_6ch_DIG
),
17986 SND_PCI_QUIRK(0x1179, 0xff6e, "Toshiba NB20x", ALC662_AUTO
),
17987 SND_PCI_QUIRK(0x144d, 0xca00, "Samsung NC10", ALC272_SAMSUNG_NC10
),
17988 SND_PCI_QUIRK(0x1458, 0xa002, "Gigabyte 945GCM-S2L",
17989 ALC662_3ST_6ch_DIG
),
17990 SND_PCI_QUIRK(0x152d, 0x2304, "Quanta WH1", ALC663_ASUS_H13
),
17991 SND_PCI_QUIRK(0x1565, 0x820f, "Biostar TA780G M2+", ALC662_3ST_6ch_DIG
),
17992 SND_PCI_QUIRK(0x1631, 0xc10c, "PB RS65", ALC663_ASUS_M51VA
),
17993 SND_PCI_QUIRK(0x17aa, 0x101e, "Lenovo", ALC662_LENOVO_101E
),
17994 SND_PCI_QUIRK(0x1849, 0x3662, "ASROCK K10N78FullHD-hSLI R3.0",
17995 ALC662_3ST_6ch_DIG
),
17996 SND_PCI_QUIRK_MASK(0x1854, 0xf000, 0x2000, "ASUS H13-200x",
18001 static struct alc_config_preset alc662_presets
[] = {
18002 [ALC662_3ST_2ch_DIG
] = {
18003 .mixers
= { alc662_3ST_2ch_mixer
},
18004 .init_verbs
= { alc662_init_verbs
},
18005 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
18006 .dac_nids
= alc662_dac_nids
,
18007 .dig_out_nid
= ALC662_DIGOUT_NID
,
18008 .dig_in_nid
= ALC662_DIGIN_NID
,
18009 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
18010 .channel_mode
= alc662_3ST_2ch_modes
,
18011 .input_mux
= &alc662_capture_source
,
18013 [ALC662_3ST_6ch_DIG
] = {
18014 .mixers
= { alc662_3ST_6ch_mixer
, alc662_chmode_mixer
},
18015 .init_verbs
= { alc662_init_verbs
},
18016 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
18017 .dac_nids
= alc662_dac_nids
,
18018 .dig_out_nid
= ALC662_DIGOUT_NID
,
18019 .dig_in_nid
= ALC662_DIGIN_NID
,
18020 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_6ch_modes
),
18021 .channel_mode
= alc662_3ST_6ch_modes
,
18023 .input_mux
= &alc662_capture_source
,
18025 [ALC662_3ST_6ch
] = {
18026 .mixers
= { alc662_3ST_6ch_mixer
, alc662_chmode_mixer
},
18027 .init_verbs
= { alc662_init_verbs
},
18028 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
18029 .dac_nids
= alc662_dac_nids
,
18030 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_6ch_modes
),
18031 .channel_mode
= alc662_3ST_6ch_modes
,
18033 .input_mux
= &alc662_capture_source
,
18035 [ALC662_5ST_DIG
] = {
18036 .mixers
= { alc662_base_mixer
, alc662_chmode_mixer
},
18037 .init_verbs
= { alc662_init_verbs
},
18038 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
18039 .dac_nids
= alc662_dac_nids
,
18040 .dig_out_nid
= ALC662_DIGOUT_NID
,
18041 .dig_in_nid
= ALC662_DIGIN_NID
,
18042 .num_channel_mode
= ARRAY_SIZE(alc662_5stack_modes
),
18043 .channel_mode
= alc662_5stack_modes
,
18044 .input_mux
= &alc662_capture_source
,
18046 [ALC662_LENOVO_101E
] = {
18047 .mixers
= { alc662_lenovo_101e_mixer
},
18048 .init_verbs
= { alc662_init_verbs
, alc662_sue_init_verbs
},
18049 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
18050 .dac_nids
= alc662_dac_nids
,
18051 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
18052 .channel_mode
= alc662_3ST_2ch_modes
,
18053 .input_mux
= &alc662_lenovo_101e_capture_source
,
18054 .unsol_event
= alc662_lenovo_101e_unsol_event
,
18055 .init_hook
= alc662_lenovo_101e_all_automute
,
18057 [ALC662_ASUS_EEEPC_P701
] = {
18058 .mixers
= { alc662_eeepc_p701_mixer
},
18059 .init_verbs
= { alc662_init_verbs
,
18060 alc662_eeepc_sue_init_verbs
},
18061 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
18062 .dac_nids
= alc662_dac_nids
,
18063 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
18064 .channel_mode
= alc662_3ST_2ch_modes
,
18065 .unsol_event
= alc662_eeepc_unsol_event
,
18066 .setup
= alc662_eeepc_setup
,
18067 .init_hook
= alc662_eeepc_inithook
,
18069 [ALC662_ASUS_EEEPC_EP20
] = {
18070 .mixers
= { alc662_eeepc_ep20_mixer
,
18071 alc662_chmode_mixer
},
18072 .init_verbs
= { alc662_init_verbs
,
18073 alc662_eeepc_ep20_sue_init_verbs
},
18074 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
18075 .dac_nids
= alc662_dac_nids
,
18076 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_6ch_modes
),
18077 .channel_mode
= alc662_3ST_6ch_modes
,
18078 .input_mux
= &alc662_lenovo_101e_capture_source
,
18079 .unsol_event
= alc662_eeepc_unsol_event
,
18080 .setup
= alc662_eeepc_ep20_setup
,
18081 .init_hook
= alc662_eeepc_ep20_inithook
,
18084 .mixers
= { alc662_ecs_mixer
},
18085 .init_verbs
= { alc662_init_verbs
,
18086 alc662_ecs_init_verbs
},
18087 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
18088 .dac_nids
= alc662_dac_nids
,
18089 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
18090 .channel_mode
= alc662_3ST_2ch_modes
,
18091 .unsol_event
= alc662_eeepc_unsol_event
,
18092 .setup
= alc662_eeepc_setup
,
18093 .init_hook
= alc662_eeepc_inithook
,
18095 [ALC663_ASUS_M51VA
] = {
18096 .mixers
= { alc663_m51va_mixer
},
18097 .init_verbs
= { alc662_init_verbs
, alc663_m51va_init_verbs
},
18098 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
18099 .dac_nids
= alc662_dac_nids
,
18100 .dig_out_nid
= ALC662_DIGOUT_NID
,
18101 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
18102 .channel_mode
= alc662_3ST_2ch_modes
,
18103 .unsol_event
= alc663_m51va_unsol_event
,
18104 .setup
= alc663_m51va_setup
,
18105 .init_hook
= alc663_m51va_inithook
,
18107 [ALC663_ASUS_G71V
] = {
18108 .mixers
= { alc663_g71v_mixer
},
18109 .init_verbs
= { alc662_init_verbs
, alc663_g71v_init_verbs
},
18110 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
18111 .dac_nids
= alc662_dac_nids
,
18112 .dig_out_nid
= ALC662_DIGOUT_NID
,
18113 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
18114 .channel_mode
= alc662_3ST_2ch_modes
,
18115 .unsol_event
= alc663_g71v_unsol_event
,
18116 .setup
= alc663_g71v_setup
,
18117 .init_hook
= alc663_g71v_inithook
,
18119 [ALC663_ASUS_H13
] = {
18120 .mixers
= { alc663_m51va_mixer
},
18121 .init_verbs
= { alc662_init_verbs
, alc663_m51va_init_verbs
},
18122 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
18123 .dac_nids
= alc662_dac_nids
,
18124 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
18125 .channel_mode
= alc662_3ST_2ch_modes
,
18126 .unsol_event
= alc663_m51va_unsol_event
,
18127 .init_hook
= alc663_m51va_inithook
,
18129 [ALC663_ASUS_G50V
] = {
18130 .mixers
= { alc663_g50v_mixer
},
18131 .init_verbs
= { alc662_init_verbs
, alc663_g50v_init_verbs
},
18132 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
18133 .dac_nids
= alc662_dac_nids
,
18134 .dig_out_nid
= ALC662_DIGOUT_NID
,
18135 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_6ch_modes
),
18136 .channel_mode
= alc662_3ST_6ch_modes
,
18137 .input_mux
= &alc663_capture_source
,
18138 .unsol_event
= alc663_g50v_unsol_event
,
18139 .setup
= alc663_g50v_setup
,
18140 .init_hook
= alc663_g50v_inithook
,
18142 [ALC663_ASUS_MODE1
] = {
18143 .mixers
= { alc663_m51va_mixer
},
18144 .cap_mixer
= alc662_auto_capture_mixer
,
18145 .init_verbs
= { alc662_init_verbs
,
18146 alc663_21jd_amic_init_verbs
},
18147 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
18149 .dac_nids
= alc662_dac_nids
,
18150 .dig_out_nid
= ALC662_DIGOUT_NID
,
18151 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
18152 .channel_mode
= alc662_3ST_2ch_modes
,
18153 .unsol_event
= alc663_mode1_unsol_event
,
18154 .setup
= alc663_mode1_setup
,
18155 .init_hook
= alc663_mode1_inithook
,
18157 [ALC662_ASUS_MODE2
] = {
18158 .mixers
= { alc662_1bjd_mixer
},
18159 .cap_mixer
= alc662_auto_capture_mixer
,
18160 .init_verbs
= { alc662_init_verbs
,
18161 alc662_1bjd_amic_init_verbs
},
18162 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
18163 .dac_nids
= alc662_dac_nids
,
18164 .dig_out_nid
= ALC662_DIGOUT_NID
,
18165 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
18166 .channel_mode
= alc662_3ST_2ch_modes
,
18167 .unsol_event
= alc662_mode2_unsol_event
,
18168 .setup
= alc662_mode2_setup
,
18169 .init_hook
= alc662_mode2_inithook
,
18171 [ALC663_ASUS_MODE3
] = {
18172 .mixers
= { alc663_two_hp_m1_mixer
},
18173 .cap_mixer
= alc662_auto_capture_mixer
,
18174 .init_verbs
= { alc662_init_verbs
,
18175 alc663_two_hp_amic_m1_init_verbs
},
18176 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
18178 .dac_nids
= alc662_dac_nids
,
18179 .dig_out_nid
= ALC662_DIGOUT_NID
,
18180 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
18181 .channel_mode
= alc662_3ST_2ch_modes
,
18182 .unsol_event
= alc663_mode3_unsol_event
,
18183 .setup
= alc663_mode3_setup
,
18184 .init_hook
= alc663_mode3_inithook
,
18186 [ALC663_ASUS_MODE4
] = {
18187 .mixers
= { alc663_asus_21jd_clfe_mixer
},
18188 .cap_mixer
= alc662_auto_capture_mixer
,
18189 .init_verbs
= { alc662_init_verbs
,
18190 alc663_21jd_amic_init_verbs
},
18191 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
18193 .dac_nids
= alc662_dac_nids
,
18194 .dig_out_nid
= ALC662_DIGOUT_NID
,
18195 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
18196 .channel_mode
= alc662_3ST_2ch_modes
,
18197 .unsol_event
= alc663_mode4_unsol_event
,
18198 .setup
= alc663_mode4_setup
,
18199 .init_hook
= alc663_mode4_inithook
,
18201 [ALC663_ASUS_MODE5
] = {
18202 .mixers
= { alc663_asus_15jd_clfe_mixer
},
18203 .cap_mixer
= alc662_auto_capture_mixer
,
18204 .init_verbs
= { alc662_init_verbs
,
18205 alc663_15jd_amic_init_verbs
},
18206 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
18208 .dac_nids
= alc662_dac_nids
,
18209 .dig_out_nid
= ALC662_DIGOUT_NID
,
18210 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
18211 .channel_mode
= alc662_3ST_2ch_modes
,
18212 .unsol_event
= alc663_mode5_unsol_event
,
18213 .setup
= alc663_mode5_setup
,
18214 .init_hook
= alc663_mode5_inithook
,
18216 [ALC663_ASUS_MODE6
] = {
18217 .mixers
= { alc663_two_hp_m2_mixer
},
18218 .cap_mixer
= alc662_auto_capture_mixer
,
18219 .init_verbs
= { alc662_init_verbs
,
18220 alc663_two_hp_amic_m2_init_verbs
},
18221 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
18223 .dac_nids
= alc662_dac_nids
,
18224 .dig_out_nid
= ALC662_DIGOUT_NID
,
18225 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
18226 .channel_mode
= alc662_3ST_2ch_modes
,
18227 .unsol_event
= alc663_mode6_unsol_event
,
18228 .setup
= alc663_mode6_setup
,
18229 .init_hook
= alc663_mode6_inithook
,
18231 [ALC663_ASUS_MODE7
] = {
18232 .mixers
= { alc663_mode7_mixer
},
18233 .cap_mixer
= alc662_auto_capture_mixer
,
18234 .init_verbs
= { alc662_init_verbs
,
18235 alc663_mode7_init_verbs
},
18236 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
18238 .dac_nids
= alc662_dac_nids
,
18239 .dig_out_nid
= ALC662_DIGOUT_NID
,
18240 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
18241 .channel_mode
= alc662_3ST_2ch_modes
,
18242 .unsol_event
= alc663_mode7_unsol_event
,
18243 .setup
= alc663_mode7_setup
,
18244 .init_hook
= alc663_mode7_inithook
,
18246 [ALC663_ASUS_MODE8
] = {
18247 .mixers
= { alc663_mode8_mixer
},
18248 .cap_mixer
= alc662_auto_capture_mixer
,
18249 .init_verbs
= { alc662_init_verbs
,
18250 alc663_mode8_init_verbs
},
18251 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
18253 .dac_nids
= alc662_dac_nids
,
18254 .dig_out_nid
= ALC662_DIGOUT_NID
,
18255 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
18256 .channel_mode
= alc662_3ST_2ch_modes
,
18257 .unsol_event
= alc663_mode8_unsol_event
,
18258 .setup
= alc663_mode8_setup
,
18259 .init_hook
= alc663_mode8_inithook
,
18262 .mixers
= { alc663_m51va_mixer
},
18263 .cap_mixer
= alc272_auto_capture_mixer
,
18264 .init_verbs
= { alc662_init_verbs
, alc272_dell_init_verbs
},
18265 .num_dacs
= ARRAY_SIZE(alc272_dac_nids
),
18266 .dac_nids
= alc662_dac_nids
,
18267 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
18268 .adc_nids
= alc272_adc_nids
,
18269 .num_adc_nids
= ARRAY_SIZE(alc272_adc_nids
),
18270 .capsrc_nids
= alc272_capsrc_nids
,
18271 .channel_mode
= alc662_3ST_2ch_modes
,
18272 .unsol_event
= alc663_m51va_unsol_event
,
18273 .setup
= alc663_m51va_setup
,
18274 .init_hook
= alc663_m51va_inithook
,
18276 [ALC272_DELL_ZM1
] = {
18277 .mixers
= { alc663_m51va_mixer
},
18278 .cap_mixer
= alc662_auto_capture_mixer
,
18279 .init_verbs
= { alc662_init_verbs
, alc272_dell_zm1_init_verbs
},
18280 .num_dacs
= ARRAY_SIZE(alc272_dac_nids
),
18281 .dac_nids
= alc662_dac_nids
,
18282 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
18283 .adc_nids
= alc662_adc_nids
,
18285 .capsrc_nids
= alc662_capsrc_nids
,
18286 .channel_mode
= alc662_3ST_2ch_modes
,
18287 .unsol_event
= alc663_m51va_unsol_event
,
18288 .setup
= alc663_m51va_setup
,
18289 .init_hook
= alc663_m51va_inithook
,
18291 [ALC272_SAMSUNG_NC10
] = {
18292 .mixers
= { alc272_nc10_mixer
},
18293 .init_verbs
= { alc662_init_verbs
,
18294 alc663_21jd_amic_init_verbs
},
18295 .num_dacs
= ARRAY_SIZE(alc272_dac_nids
),
18296 .dac_nids
= alc272_dac_nids
,
18297 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
18298 .channel_mode
= alc662_3ST_2ch_modes
,
18299 /*.input_mux = &alc272_nc10_capture_source,*/
18300 .unsol_event
= alc663_mode4_unsol_event
,
18301 .setup
= alc663_mode4_setup
,
18302 .init_hook
= alc663_mode4_inithook
,
18308 * BIOS auto configuration
18311 /* convert from MIX nid to DAC */
18312 static inline hda_nid_t
alc662_mix_to_dac(hda_nid_t nid
)
18316 else if (nid
>= 0x0c && nid
<= 0x0e)
18317 return nid
- 0x0c + 0x02;
18322 /* get MIX nid connected to the given pin targeted to DAC */
18323 static hda_nid_t
alc662_dac_to_mix(struct hda_codec
*codec
, hda_nid_t pin
,
18329 num
= snd_hda_get_connections(codec
, pin
, mix
, ARRAY_SIZE(mix
));
18330 for (i
= 0; i
< num
; i
++) {
18331 if (alc662_mix_to_dac(mix
[i
]) == dac
)
18337 /* look for an empty DAC slot */
18338 static hda_nid_t
alc662_look_for_dac(struct hda_codec
*codec
, hda_nid_t pin
)
18340 struct alc_spec
*spec
= codec
->spec
;
18344 num
= snd_hda_get_connections(codec
, pin
, srcs
, ARRAY_SIZE(srcs
));
18347 for (i
= 0; i
< num
; i
++) {
18348 hda_nid_t nid
= alc662_mix_to_dac(srcs
[i
]);
18351 for (j
= 0; j
< spec
->multiout
.num_dacs
; j
++)
18352 if (spec
->multiout
.dac_nids
[j
] == nid
)
18354 if (j
>= spec
->multiout
.num_dacs
)
18360 /* fill in the dac_nids table from the parsed pin configuration */
18361 static int alc662_auto_fill_dac_nids(struct hda_codec
*codec
,
18362 const struct auto_pin_cfg
*cfg
)
18364 struct alc_spec
*spec
= codec
->spec
;
18368 spec
->multiout
.dac_nids
= spec
->private_dac_nids
;
18369 for (i
= 0; i
< cfg
->line_outs
; i
++) {
18370 dac
= alc662_look_for_dac(codec
, cfg
->line_out_pins
[i
]);
18373 spec
->multiout
.dac_nids
[spec
->multiout
.num_dacs
++] = dac
;
18378 static inline int alc662_add_vol_ctl(struct alc_spec
*spec
, const char *pfx
,
18379 hda_nid_t nid
, unsigned int chs
)
18381 return add_pb_vol_ctrl(spec
, ALC_CTL_WIDGET_VOL
, pfx
,
18382 HDA_COMPOSE_AMP_VAL(nid
, chs
, 0, HDA_OUTPUT
));
18385 static inline int alc662_add_sw_ctl(struct alc_spec
*spec
, const char *pfx
,
18386 hda_nid_t nid
, unsigned int chs
)
18388 return add_pb_sw_ctrl(spec
, ALC_CTL_WIDGET_MUTE
, pfx
,
18389 HDA_COMPOSE_AMP_VAL(nid
, chs
, 0, HDA_INPUT
));
18392 #define alc662_add_stereo_vol(spec, pfx, nid) \
18393 alc662_add_vol_ctl(spec, pfx, nid, 3)
18394 #define alc662_add_stereo_sw(spec, pfx, nid) \
18395 alc662_add_sw_ctl(spec, pfx, nid, 3)
18397 /* add playback controls from the parsed DAC table */
18398 static int alc662_auto_create_multi_out_ctls(struct hda_codec
*codec
,
18399 const struct auto_pin_cfg
*cfg
)
18401 struct alc_spec
*spec
= codec
->spec
;
18402 static const char *chname
[4] = {
18403 "Front", "Surround", NULL
/*CLFE*/, "Side"
18405 hda_nid_t nid
, mix
;
18408 for (i
= 0; i
< cfg
->line_outs
; i
++) {
18409 nid
= spec
->multiout
.dac_nids
[i
];
18412 mix
= alc662_dac_to_mix(codec
, cfg
->line_out_pins
[i
], nid
);
18417 err
= alc662_add_vol_ctl(spec
, "Center", nid
, 1);
18420 err
= alc662_add_vol_ctl(spec
, "LFE", nid
, 2);
18423 err
= alc662_add_sw_ctl(spec
, "Center", mix
, 1);
18426 err
= alc662_add_sw_ctl(spec
, "LFE", mix
, 2);
18431 if (cfg
->line_outs
== 1 &&
18432 cfg
->line_out_type
== AUTO_PIN_SPEAKER_OUT
) {
18439 err
= alc662_add_vol_ctl(spec
, pfx
, nid
, 3);
18442 if (cfg
->line_outs
== 1 &&
18443 cfg
->line_out_type
== AUTO_PIN_SPEAKER_OUT
)
18445 err
= alc662_add_sw_ctl(spec
, pfx
, mix
, 3);
18453 /* add playback controls for speaker and HP outputs */
18454 /* return DAC nid if any new DAC is assigned */
18455 static int alc662_auto_create_extra_out(struct hda_codec
*codec
, hda_nid_t pin
,
18458 struct alc_spec
*spec
= codec
->spec
;
18459 hda_nid_t nid
, mix
;
18464 nid
= alc662_look_for_dac(codec
, pin
);
18466 /* the corresponding DAC is already occupied */
18467 if (!(get_wcaps(codec
, pin
) & AC_WCAP_OUT_AMP
))
18468 return 0; /* no way */
18469 /* create a switch only */
18470 return add_pb_sw_ctrl(spec
, ALC_CTL_WIDGET_MUTE
, pfx
,
18471 HDA_COMPOSE_AMP_VAL(pin
, 3, 0, HDA_OUTPUT
));
18474 mix
= alc662_dac_to_mix(codec
, pin
, nid
);
18477 err
= alc662_add_vol_ctl(spec
, pfx
, nid
, 3);
18480 err
= alc662_add_sw_ctl(spec
, pfx
, mix
, 3);
18486 /* create playback/capture controls for input pins */
18487 #define alc662_auto_create_input_ctls \
18488 alc882_auto_create_input_ctls
18490 static void alc662_auto_set_output_and_unmute(struct hda_codec
*codec
,
18491 hda_nid_t nid
, int pin_type
,
18497 alc_set_pin_output(codec
, nid
, pin_type
);
18498 /* need the manual connection? */
18499 num
= snd_hda_get_connections(codec
, nid
, srcs
, ARRAY_SIZE(srcs
));
18502 for (i
= 0; i
< num
; i
++) {
18503 if (alc662_mix_to_dac(srcs
[i
]) != dac
)
18505 snd_hda_codec_write(codec
, nid
, 0, AC_VERB_SET_CONNECT_SEL
, i
);
18510 static void alc662_auto_init_multi_out(struct hda_codec
*codec
)
18512 struct alc_spec
*spec
= codec
->spec
;
18513 int pin_type
= get_pin_type(spec
->autocfg
.line_out_type
);
18516 for (i
= 0; i
<= HDA_SIDE
; i
++) {
18517 hda_nid_t nid
= spec
->autocfg
.line_out_pins
[i
];
18519 alc662_auto_set_output_and_unmute(codec
, nid
, pin_type
,
18520 spec
->multiout
.dac_nids
[i
]);
18524 static void alc662_auto_init_hp_out(struct hda_codec
*codec
)
18526 struct alc_spec
*spec
= codec
->spec
;
18529 pin
= spec
->autocfg
.hp_pins
[0];
18531 alc662_auto_set_output_and_unmute(codec
, pin
, PIN_HP
,
18532 spec
->multiout
.hp_nid
);
18533 pin
= spec
->autocfg
.speaker_pins
[0];
18535 alc662_auto_set_output_and_unmute(codec
, pin
, PIN_OUT
,
18536 spec
->multiout
.extra_out_nid
[0]);
18539 #define ALC662_PIN_CD_NID ALC880_PIN_CD_NID
18541 static void alc662_auto_init_analog_input(struct hda_codec
*codec
)
18543 struct alc_spec
*spec
= codec
->spec
;
18546 for (i
= 0; i
< AUTO_PIN_LAST
; i
++) {
18547 hda_nid_t nid
= spec
->autocfg
.input_pins
[i
];
18548 if (alc_is_input_pin(codec
, nid
)) {
18549 alc_set_input_pin(codec
, nid
, i
);
18550 if (nid
!= ALC662_PIN_CD_NID
&&
18551 (get_wcaps(codec
, nid
) & AC_WCAP_OUT_AMP
))
18552 snd_hda_codec_write(codec
, nid
, 0,
18553 AC_VERB_SET_AMP_GAIN_MUTE
,
18559 #define alc662_auto_init_input_src alc882_auto_init_input_src
18561 static int alc662_parse_auto_config(struct hda_codec
*codec
)
18563 struct alc_spec
*spec
= codec
->spec
;
18565 static hda_nid_t alc662_ignore
[] = { 0x1d, 0 };
18567 err
= snd_hda_parse_pin_def_config(codec
, &spec
->autocfg
,
18571 if (!spec
->autocfg
.line_outs
)
18572 return 0; /* can't find valid BIOS pin config */
18574 err
= alc662_auto_fill_dac_nids(codec
, &spec
->autocfg
);
18577 err
= alc662_auto_create_multi_out_ctls(codec
, &spec
->autocfg
);
18580 err
= alc662_auto_create_extra_out(codec
,
18581 spec
->autocfg
.speaker_pins
[0],
18586 spec
->multiout
.extra_out_nid
[0] = err
;
18587 err
= alc662_auto_create_extra_out(codec
, spec
->autocfg
.hp_pins
[0],
18592 spec
->multiout
.hp_nid
= err
;
18593 err
= alc662_auto_create_input_ctls(codec
, &spec
->autocfg
);
18597 spec
->multiout
.max_channels
= spec
->multiout
.num_dacs
* 2;
18599 if (spec
->autocfg
.dig_outs
)
18600 spec
->multiout
.dig_out_nid
= ALC880_DIGOUT_NID
;
18602 if (spec
->kctls
.list
)
18603 add_mixer(spec
, spec
->kctls
.list
);
18605 spec
->num_mux_defs
= 1;
18606 spec
->input_mux
= &spec
->private_imux
[0];
18608 add_verb(spec
, alc662_init_verbs
);
18609 if (codec
->vendor_id
== 0x10ec0272 || codec
->vendor_id
== 0x10ec0663 ||
18610 codec
->vendor_id
== 0x10ec0665)
18611 add_verb(spec
, alc663_init_verbs
);
18613 if (codec
->vendor_id
== 0x10ec0272)
18614 add_verb(spec
, alc272_init_verbs
);
18616 err
= alc_auto_add_mic_boost(codec
);
18620 if (codec
->vendor_id
== 0x10ec0272 || codec
->vendor_id
== 0x10ec0663 ||
18621 codec
->vendor_id
== 0x10ec0665 || codec
->vendor_id
== 0x10ec0670)
18622 alc_ssid_check(codec
, 0x15, 0x1b, 0x14, 0x21);
18624 alc_ssid_check(codec
, 0x15, 0x1b, 0x14, 0);
18629 /* additional initialization for auto-configuration model */
18630 static void alc662_auto_init(struct hda_codec
*codec
)
18632 struct alc_spec
*spec
= codec
->spec
;
18633 alc662_auto_init_multi_out(codec
);
18634 alc662_auto_init_hp_out(codec
);
18635 alc662_auto_init_analog_input(codec
);
18636 alc662_auto_init_input_src(codec
);
18637 if (spec
->unsol_event
)
18638 alc_inithook(codec
);
18641 static int patch_alc662(struct hda_codec
*codec
)
18643 struct alc_spec
*spec
;
18644 int err
, board_config
;
18646 spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
18650 codec
->spec
= spec
;
18652 alc_auto_parse_customize_define(codec
);
18654 alc_fix_pll_init(codec
, 0x20, 0x04, 15);
18656 if (alc_read_coef_idx(codec
, 0) == 0x8020)
18657 alc_codec_rename(codec
, "ALC661");
18658 else if ((alc_read_coef_idx(codec
, 0) & (1 << 14)) &&
18659 codec
->bus
->pci
->subsystem_vendor
== 0x1025 &&
18660 spec
->cdefine
.platform_type
== 1)
18661 alc_codec_rename(codec
, "ALC272X");
18663 board_config
= snd_hda_check_board_config(codec
, ALC662_MODEL_LAST
,
18666 if (board_config
< 0) {
18667 printk(KERN_INFO
"hda_codec: %s: BIOS auto-probing.\n",
18669 board_config
= ALC662_AUTO
;
18672 if (board_config
== ALC662_AUTO
) {
18673 /* automatic parse from the BIOS config */
18674 err
= alc662_parse_auto_config(codec
);
18680 "hda_codec: Cannot set up configuration "
18681 "from BIOS. Using base mode...\n");
18682 board_config
= ALC662_3ST_2ch_DIG
;
18686 err
= snd_hda_attach_beep_device(codec
, 0x1);
18692 if (board_config
!= ALC662_AUTO
)
18693 setup_preset(codec
, &alc662_presets
[board_config
]);
18695 spec
->stream_analog_playback
= &alc662_pcm_analog_playback
;
18696 spec
->stream_analog_capture
= &alc662_pcm_analog_capture
;
18698 spec
->stream_digital_playback
= &alc662_pcm_digital_playback
;
18699 spec
->stream_digital_capture
= &alc662_pcm_digital_capture
;
18701 if (!spec
->adc_nids
) {
18702 spec
->adc_nids
= alc662_adc_nids
;
18703 spec
->num_adc_nids
= ARRAY_SIZE(alc662_adc_nids
);
18705 if (!spec
->capsrc_nids
)
18706 spec
->capsrc_nids
= alc662_capsrc_nids
;
18708 if (!spec
->cap_mixer
)
18709 set_capture_mixer(codec
);
18711 if (spec
->cdefine
.enable_pcbeep
) {
18712 switch (codec
->vendor_id
) {
18714 set_beep_amp(spec
, 0x0b, 0x05, HDA_INPUT
);
18719 set_beep_amp(spec
, 0x0b, 0x04, HDA_INPUT
);
18722 set_beep_amp(spec
, 0x0b, 0x03, HDA_INPUT
);
18726 spec
->vmaster_nid
= 0x02;
18728 codec
->patch_ops
= alc_patch_ops
;
18729 if (board_config
== ALC662_AUTO
)
18730 spec
->init_hook
= alc662_auto_init
;
18731 #ifdef CONFIG_SND_HDA_POWER_SAVE
18732 if (!spec
->loopback
.amplist
)
18733 spec
->loopback
.amplist
= alc662_loopbacks
;
18739 static int patch_alc888(struct hda_codec
*codec
)
18741 if ((alc_read_coef_idx(codec
, 0) & 0x00f0)==0x0030){
18742 kfree(codec
->chip_name
);
18743 codec
->chip_name
= kstrdup("ALC888-VD", GFP_KERNEL
);
18744 if (!codec
->chip_name
) {
18748 return patch_alc662(codec
);
18750 return patch_alc882(codec
);
18756 static struct hda_codec_preset snd_hda_preset_realtek
[] = {
18757 { .id
= 0x10ec0260, .name
= "ALC260", .patch
= patch_alc260
},
18758 { .id
= 0x10ec0262, .name
= "ALC262", .patch
= patch_alc262
},
18759 { .id
= 0x10ec0267, .name
= "ALC267", .patch
= patch_alc268
},
18760 { .id
= 0x10ec0268, .name
= "ALC268", .patch
= patch_alc268
},
18761 { .id
= 0x10ec0269, .name
= "ALC269", .patch
= patch_alc269
},
18762 { .id
= 0x10ec0270, .name
= "ALC270", .patch
= patch_alc269
},
18763 { .id
= 0x10ec0272, .name
= "ALC272", .patch
= patch_alc662
},
18764 { .id
= 0x10ec0275, .name
= "ALC275", .patch
= patch_alc269
},
18765 { .id
= 0x10ec0861, .rev
= 0x100340, .name
= "ALC660",
18766 .patch
= patch_alc861
},
18767 { .id
= 0x10ec0660, .name
= "ALC660-VD", .patch
= patch_alc861vd
},
18768 { .id
= 0x10ec0861, .name
= "ALC861", .patch
= patch_alc861
},
18769 { .id
= 0x10ec0862, .name
= "ALC861-VD", .patch
= patch_alc861vd
},
18770 { .id
= 0x10ec0662, .rev
= 0x100002, .name
= "ALC662 rev2",
18771 .patch
= patch_alc882
},
18772 { .id
= 0x10ec0662, .rev
= 0x100101, .name
= "ALC662 rev1",
18773 .patch
= patch_alc662
},
18774 { .id
= 0x10ec0663, .name
= "ALC663", .patch
= patch_alc662
},
18775 { .id
= 0x10ec0665, .name
= "ALC665", .patch
= patch_alc662
},
18776 { .id
= 0x10ec0670, .name
= "ALC670", .patch
= patch_alc662
},
18777 { .id
= 0x10ec0880, .name
= "ALC880", .patch
= patch_alc880
},
18778 { .id
= 0x10ec0882, .name
= "ALC882", .patch
= patch_alc882
},
18779 { .id
= 0x10ec0883, .name
= "ALC883", .patch
= patch_alc882
},
18780 { .id
= 0x10ec0885, .rev
= 0x100101, .name
= "ALC889A",
18781 .patch
= patch_alc882
},
18782 { .id
= 0x10ec0885, .rev
= 0x100103, .name
= "ALC889A",
18783 .patch
= patch_alc882
},
18784 { .id
= 0x10ec0885, .name
= "ALC885", .patch
= patch_alc882
},
18785 { .id
= 0x10ec0887, .name
= "ALC887", .patch
= patch_alc882
},
18786 { .id
= 0x10ec0888, .rev
= 0x100101, .name
= "ALC1200",
18787 .patch
= patch_alc882
},
18788 { .id
= 0x10ec0888, .name
= "ALC888", .patch
= patch_alc888
},
18789 { .id
= 0x10ec0889, .name
= "ALC889", .patch
= patch_alc882
},
18790 { .id
= 0x10ec0892, .name
= "ALC892", .patch
= patch_alc662
},
18791 {} /* terminator */
18794 MODULE_ALIAS("snd-hda-codec-id:10ec*");
18796 MODULE_LICENSE("GPL");
18797 MODULE_DESCRIPTION("Realtek HD-audio codec");
18799 static struct hda_codec_preset_list realtek_list
= {
18800 .preset
= snd_hda_preset_realtek
,
18801 .owner
= THIS_MODULE
,
18804 static int __init
patch_realtek_init(void)
18806 return snd_hda_add_codec_preset(&realtek_list
);
18809 static void __exit
patch_realtek_exit(void)
18811 snd_hda_delete_codec_preset(&realtek_list
);
18814 module_init(patch_realtek_init
)
18815 module_exit(patch_realtek_exit
)