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 */
134 ALC269_ASUS_EEEPC_P703
,
135 ALC269_ASUS_EEEPC_P901
,
139 ALC269_MODEL_LAST
/* last tag */
156 /* ALC861-VD models */
178 ALC662_ASUS_EEEPC_P701
,
179 ALC662_ASUS_EEEPC_EP20
,
222 ALC883_TARGA_2ch_DIG
,
223 ALC883_TARGA_8ch_DIG
,
226 ALC888_ACER_ASPIRE_4930G
,
227 ALC888_ACER_ASPIRE_6530G
,
228 ALC888_ACER_ASPIRE_8930G
,
232 ALC883_LENOVO_101E_2ch
,
233 ALC883_LENOVO_NB0763
,
234 ALC888_LENOVO_MS7195_DIG
,
241 ALC883_FUJITSU_PI2515
,
242 ALC888_FUJITSU_XA3530
,
243 ALC883_3ST_6ch_INTEL
,
254 #define GPIO_MASK 0x03
256 /* extra amp-initialization sequence types */
266 /* codec parameterization */
267 struct snd_kcontrol_new
*mixers
[5]; /* mixer arrays */
268 unsigned int num_mixers
;
269 struct snd_kcontrol_new
*cap_mixer
; /* capture mixer */
270 unsigned int beep_amp
; /* beep amp value, set via set_beep_amp() */
272 const struct hda_verb
*init_verbs
[5]; /* initialization verbs
276 unsigned int num_init_verbs
;
278 char stream_name_analog
[32]; /* analog PCM stream */
279 struct hda_pcm_stream
*stream_analog_playback
;
280 struct hda_pcm_stream
*stream_analog_capture
;
281 struct hda_pcm_stream
*stream_analog_alt_playback
;
282 struct hda_pcm_stream
*stream_analog_alt_capture
;
284 char stream_name_digital
[32]; /* digital PCM stream */
285 struct hda_pcm_stream
*stream_digital_playback
;
286 struct hda_pcm_stream
*stream_digital_capture
;
289 struct hda_multi_out multiout
; /* playback set-up
290 * max_channels, dacs must be set
291 * dig_out_nid and hp_nid are optional
293 hda_nid_t alt_dac_nid
;
294 hda_nid_t slave_dig_outs
[3]; /* optional - for auto-parsing */
298 unsigned int num_adc_nids
;
300 hda_nid_t
*capsrc_nids
;
301 hda_nid_t dig_in_nid
; /* digital-in NID; optional */
304 unsigned int num_mux_defs
;
305 const struct hda_input_mux
*input_mux
;
306 unsigned int cur_mux
[3];
309 const struct hda_channel_mode
*channel_mode
;
310 int num_channel_mode
;
312 int const_channel_count
;
313 int ext_channel_count
;
315 /* PCM information */
316 struct hda_pcm pcm_rec
[3]; /* used in alc_build_pcms() */
318 /* dynamic controls, init_verbs and input_mux */
319 struct auto_pin_cfg autocfg
;
320 struct snd_array kctls
;
321 struct hda_input_mux private_imux
[3];
322 hda_nid_t private_dac_nids
[AUTO_CFG_MAX_OUTS
];
325 void (*init_hook
)(struct hda_codec
*codec
);
326 void (*unsol_event
)(struct hda_codec
*codec
, unsigned int res
);
328 /* for pin sensing */
329 unsigned int sense_updated
: 1;
330 unsigned int jack_present
: 1;
331 unsigned int master_sw
: 1;
334 unsigned int no_analog
:1; /* digital I/O only */
337 /* for virtual master */
338 hda_nid_t vmaster_nid
;
339 #ifdef CONFIG_SND_HDA_POWER_SAVE
340 struct hda_loopback_check loopback
;
345 unsigned int pll_coef_idx
, pll_coef_bit
;
349 * configuration template - to be copied to the spec instance
351 struct alc_config_preset
{
352 struct snd_kcontrol_new
*mixers
[5]; /* should be identical size
355 struct snd_kcontrol_new
*cap_mixer
; /* capture mixer */
356 const struct hda_verb
*init_verbs
[5];
357 unsigned int num_dacs
;
359 hda_nid_t dig_out_nid
; /* optional */
360 hda_nid_t hp_nid
; /* optional */
361 hda_nid_t
*slave_dig_outs
;
362 unsigned int num_adc_nids
;
364 hda_nid_t
*capsrc_nids
;
365 hda_nid_t dig_in_nid
;
366 unsigned int num_channel_mode
;
367 const struct hda_channel_mode
*channel_mode
;
369 int const_channel_count
;
370 unsigned int num_mux_defs
;
371 const struct hda_input_mux
*input_mux
;
372 void (*unsol_event
)(struct hda_codec
*, unsigned int);
373 void (*init_hook
)(struct hda_codec
*);
374 #ifdef CONFIG_SND_HDA_POWER_SAVE
375 struct hda_amp_list
*loopbacks
;
383 static int alc_mux_enum_info(struct snd_kcontrol
*kcontrol
,
384 struct snd_ctl_elem_info
*uinfo
)
386 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
387 struct alc_spec
*spec
= codec
->spec
;
388 unsigned int mux_idx
= snd_ctl_get_ioffidx(kcontrol
, &uinfo
->id
);
389 if (mux_idx
>= spec
->num_mux_defs
)
391 return snd_hda_input_mux_info(&spec
->input_mux
[mux_idx
], uinfo
);
394 static int alc_mux_enum_get(struct snd_kcontrol
*kcontrol
,
395 struct snd_ctl_elem_value
*ucontrol
)
397 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
398 struct alc_spec
*spec
= codec
->spec
;
399 unsigned int adc_idx
= snd_ctl_get_ioffidx(kcontrol
, &ucontrol
->id
);
401 ucontrol
->value
.enumerated
.item
[0] = spec
->cur_mux
[adc_idx
];
405 static int alc_mux_enum_put(struct snd_kcontrol
*kcontrol
,
406 struct snd_ctl_elem_value
*ucontrol
)
408 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
409 struct alc_spec
*spec
= codec
->spec
;
410 const struct hda_input_mux
*imux
;
411 unsigned int adc_idx
= snd_ctl_get_ioffidx(kcontrol
, &ucontrol
->id
);
412 unsigned int mux_idx
;
413 hda_nid_t nid
= spec
->capsrc_nids
?
414 spec
->capsrc_nids
[adc_idx
] : spec
->adc_nids
[adc_idx
];
417 mux_idx
= adc_idx
>= spec
->num_mux_defs
? 0 : adc_idx
;
418 imux
= &spec
->input_mux
[mux_idx
];
420 type
= (get_wcaps(codec
, nid
) & AC_WCAP_TYPE
) >> AC_WCAP_TYPE_SHIFT
;
421 if (type
== AC_WID_AUD_MIX
) {
422 /* Matrix-mixer style (e.g. ALC882) */
423 unsigned int *cur_val
= &spec
->cur_mux
[adc_idx
];
426 idx
= ucontrol
->value
.enumerated
.item
[0];
427 if (idx
>= imux
->num_items
)
428 idx
= imux
->num_items
- 1;
431 for (i
= 0; i
< imux
->num_items
; i
++) {
432 unsigned int v
= (i
== idx
) ? 0 : HDA_AMP_MUTE
;
433 snd_hda_codec_amp_stereo(codec
, nid
, HDA_INPUT
,
434 imux
->items
[i
].index
,
440 /* MUX style (e.g. ALC880) */
441 return snd_hda_input_mux_put(codec
, imux
, ucontrol
, nid
,
442 &spec
->cur_mux
[adc_idx
]);
447 * channel mode setting
449 static int alc_ch_mode_info(struct snd_kcontrol
*kcontrol
,
450 struct snd_ctl_elem_info
*uinfo
)
452 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
453 struct alc_spec
*spec
= codec
->spec
;
454 return snd_hda_ch_mode_info(codec
, uinfo
, spec
->channel_mode
,
455 spec
->num_channel_mode
);
458 static int alc_ch_mode_get(struct snd_kcontrol
*kcontrol
,
459 struct snd_ctl_elem_value
*ucontrol
)
461 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
462 struct alc_spec
*spec
= codec
->spec
;
463 return snd_hda_ch_mode_get(codec
, ucontrol
, spec
->channel_mode
,
464 spec
->num_channel_mode
,
465 spec
->ext_channel_count
);
468 static int alc_ch_mode_put(struct snd_kcontrol
*kcontrol
,
469 struct snd_ctl_elem_value
*ucontrol
)
471 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
472 struct alc_spec
*spec
= codec
->spec
;
473 int err
= snd_hda_ch_mode_put(codec
, ucontrol
, spec
->channel_mode
,
474 spec
->num_channel_mode
,
475 &spec
->ext_channel_count
);
476 if (err
>= 0 && !spec
->const_channel_count
) {
477 spec
->multiout
.max_channels
= spec
->ext_channel_count
;
478 if (spec
->need_dac_fix
)
479 spec
->multiout
.num_dacs
= spec
->multiout
.max_channels
/ 2;
485 * Control the mode of pin widget settings via the mixer. "pc" is used
486 * instead of "%" to avoid consequences of accidently treating the % as
487 * being part of a format specifier. Maximum allowed length of a value is
488 * 63 characters plus NULL terminator.
490 * Note: some retasking pin complexes seem to ignore requests for input
491 * states other than HiZ (eg: PIN_VREFxx) and revert to HiZ if any of these
492 * are requested. Therefore order this list so that this behaviour will not
493 * cause problems when mixer clients move through the enum sequentially.
494 * NIDs 0x0f and 0x10 have been observed to have this behaviour as of
497 static char *alc_pin_mode_names
[] = {
498 "Mic 50pc bias", "Mic 80pc bias",
499 "Line in", "Line out", "Headphone out",
501 static unsigned char alc_pin_mode_values
[] = {
502 PIN_VREF50
, PIN_VREF80
, PIN_IN
, PIN_OUT
, PIN_HP
,
504 /* The control can present all 5 options, or it can limit the options based
505 * in the pin being assumed to be exclusively an input or an output pin. In
506 * addition, "input" pins may or may not process the mic bias option
507 * depending on actual widget capability (NIDs 0x0f and 0x10 don't seem to
508 * accept requests for bias as of chip versions up to March 2006) and/or
509 * wiring in the computer.
511 #define ALC_PIN_DIR_IN 0x00
512 #define ALC_PIN_DIR_OUT 0x01
513 #define ALC_PIN_DIR_INOUT 0x02
514 #define ALC_PIN_DIR_IN_NOMICBIAS 0x03
515 #define ALC_PIN_DIR_INOUT_NOMICBIAS 0x04
517 /* Info about the pin modes supported by the different pin direction modes.
518 * For each direction the minimum and maximum values are given.
520 static signed char alc_pin_mode_dir_info
[5][2] = {
521 { 0, 2 }, /* ALC_PIN_DIR_IN */
522 { 3, 4 }, /* ALC_PIN_DIR_OUT */
523 { 0, 4 }, /* ALC_PIN_DIR_INOUT */
524 { 2, 2 }, /* ALC_PIN_DIR_IN_NOMICBIAS */
525 { 2, 4 }, /* ALC_PIN_DIR_INOUT_NOMICBIAS */
527 #define alc_pin_mode_min(_dir) (alc_pin_mode_dir_info[_dir][0])
528 #define alc_pin_mode_max(_dir) (alc_pin_mode_dir_info[_dir][1])
529 #define alc_pin_mode_n_items(_dir) \
530 (alc_pin_mode_max(_dir)-alc_pin_mode_min(_dir)+1)
532 static int alc_pin_mode_info(struct snd_kcontrol
*kcontrol
,
533 struct snd_ctl_elem_info
*uinfo
)
535 unsigned int item_num
= uinfo
->value
.enumerated
.item
;
536 unsigned char dir
= (kcontrol
->private_value
>> 16) & 0xff;
538 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
540 uinfo
->value
.enumerated
.items
= alc_pin_mode_n_items(dir
);
542 if (item_num
<alc_pin_mode_min(dir
) || item_num
>alc_pin_mode_max(dir
))
543 item_num
= alc_pin_mode_min(dir
);
544 strcpy(uinfo
->value
.enumerated
.name
, alc_pin_mode_names
[item_num
]);
548 static int alc_pin_mode_get(struct snd_kcontrol
*kcontrol
,
549 struct snd_ctl_elem_value
*ucontrol
)
552 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
553 hda_nid_t nid
= kcontrol
->private_value
& 0xffff;
554 unsigned char dir
= (kcontrol
->private_value
>> 16) & 0xff;
555 long *valp
= ucontrol
->value
.integer
.value
;
556 unsigned int pinctl
= snd_hda_codec_read(codec
, nid
, 0,
557 AC_VERB_GET_PIN_WIDGET_CONTROL
,
560 /* Find enumerated value for current pinctl setting */
561 i
= alc_pin_mode_min(dir
);
562 while (alc_pin_mode_values
[i
] != pinctl
&& i
<= alc_pin_mode_max(dir
))
564 *valp
= i
<= alc_pin_mode_max(dir
) ? i
: alc_pin_mode_min(dir
);
568 static int alc_pin_mode_put(struct snd_kcontrol
*kcontrol
,
569 struct snd_ctl_elem_value
*ucontrol
)
572 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
573 hda_nid_t nid
= kcontrol
->private_value
& 0xffff;
574 unsigned char dir
= (kcontrol
->private_value
>> 16) & 0xff;
575 long val
= *ucontrol
->value
.integer
.value
;
576 unsigned int pinctl
= snd_hda_codec_read(codec
, nid
, 0,
577 AC_VERB_GET_PIN_WIDGET_CONTROL
,
580 if (val
< alc_pin_mode_min(dir
) || val
> alc_pin_mode_max(dir
))
581 val
= alc_pin_mode_min(dir
);
583 change
= pinctl
!= alc_pin_mode_values
[val
];
585 /* Set pin mode to that requested */
586 snd_hda_codec_write_cache(codec
, nid
, 0,
587 AC_VERB_SET_PIN_WIDGET_CONTROL
,
588 alc_pin_mode_values
[val
]);
590 /* Also enable the retasking pin's input/output as required
591 * for the requested pin mode. Enum values of 2 or less are
594 * Dynamically switching the input/output buffers probably
595 * reduces noise slightly (particularly on input) so we'll
596 * do it. However, having both input and output buffers
597 * enabled simultaneously doesn't seem to be problematic if
598 * this turns out to be necessary in the future.
601 snd_hda_codec_amp_stereo(codec
, nid
, HDA_OUTPUT
, 0,
602 HDA_AMP_MUTE
, HDA_AMP_MUTE
);
603 snd_hda_codec_amp_stereo(codec
, nid
, HDA_INPUT
, 0,
606 snd_hda_codec_amp_stereo(codec
, nid
, HDA_INPUT
, 0,
607 HDA_AMP_MUTE
, HDA_AMP_MUTE
);
608 snd_hda_codec_amp_stereo(codec
, nid
, HDA_OUTPUT
, 0,
615 #define ALC_PIN_MODE(xname, nid, dir) \
616 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0, \
617 .info = alc_pin_mode_info, \
618 .get = alc_pin_mode_get, \
619 .put = alc_pin_mode_put, \
620 .private_value = nid | (dir<<16) }
622 /* A switch control for ALC260 GPIO pins. Multiple GPIOs can be ganged
623 * together using a mask with more than one bit set. This control is
624 * currently used only by the ALC260 test model. At this stage they are not
625 * needed for any "production" models.
627 #ifdef CONFIG_SND_DEBUG
628 #define alc_gpio_data_info snd_ctl_boolean_mono_info
630 static int alc_gpio_data_get(struct snd_kcontrol
*kcontrol
,
631 struct snd_ctl_elem_value
*ucontrol
)
633 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
634 hda_nid_t nid
= kcontrol
->private_value
& 0xffff;
635 unsigned char mask
= (kcontrol
->private_value
>> 16) & 0xff;
636 long *valp
= ucontrol
->value
.integer
.value
;
637 unsigned int val
= snd_hda_codec_read(codec
, nid
, 0,
638 AC_VERB_GET_GPIO_DATA
, 0x00);
640 *valp
= (val
& mask
) != 0;
643 static int alc_gpio_data_put(struct snd_kcontrol
*kcontrol
,
644 struct snd_ctl_elem_value
*ucontrol
)
647 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
648 hda_nid_t nid
= kcontrol
->private_value
& 0xffff;
649 unsigned char mask
= (kcontrol
->private_value
>> 16) & 0xff;
650 long val
= *ucontrol
->value
.integer
.value
;
651 unsigned int gpio_data
= snd_hda_codec_read(codec
, nid
, 0,
652 AC_VERB_GET_GPIO_DATA
,
655 /* Set/unset the masked GPIO bit(s) as needed */
656 change
= (val
== 0 ? 0 : mask
) != (gpio_data
& mask
);
661 snd_hda_codec_write_cache(codec
, nid
, 0,
662 AC_VERB_SET_GPIO_DATA
, gpio_data
);
666 #define ALC_GPIO_DATA_SWITCH(xname, nid, mask) \
667 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0, \
668 .info = alc_gpio_data_info, \
669 .get = alc_gpio_data_get, \
670 .put = alc_gpio_data_put, \
671 .private_value = nid | (mask<<16) }
672 #endif /* CONFIG_SND_DEBUG */
674 /* A switch control to allow the enabling of the digital IO pins on the
675 * ALC260. This is incredibly simplistic; the intention of this control is
676 * to provide something in the test model allowing digital outputs to be
677 * identified if present. If models are found which can utilise these
678 * outputs a more complete mixer control can be devised for those models if
681 #ifdef CONFIG_SND_DEBUG
682 #define alc_spdif_ctrl_info snd_ctl_boolean_mono_info
684 static int alc_spdif_ctrl_get(struct snd_kcontrol
*kcontrol
,
685 struct snd_ctl_elem_value
*ucontrol
)
687 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
688 hda_nid_t nid
= kcontrol
->private_value
& 0xffff;
689 unsigned char mask
= (kcontrol
->private_value
>> 16) & 0xff;
690 long *valp
= ucontrol
->value
.integer
.value
;
691 unsigned int val
= snd_hda_codec_read(codec
, nid
, 0,
692 AC_VERB_GET_DIGI_CONVERT_1
, 0x00);
694 *valp
= (val
& mask
) != 0;
697 static int alc_spdif_ctrl_put(struct snd_kcontrol
*kcontrol
,
698 struct snd_ctl_elem_value
*ucontrol
)
701 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
702 hda_nid_t nid
= kcontrol
->private_value
& 0xffff;
703 unsigned char mask
= (kcontrol
->private_value
>> 16) & 0xff;
704 long val
= *ucontrol
->value
.integer
.value
;
705 unsigned int ctrl_data
= snd_hda_codec_read(codec
, nid
, 0,
706 AC_VERB_GET_DIGI_CONVERT_1
,
709 /* Set/unset the masked control bit(s) as needed */
710 change
= (val
== 0 ? 0 : mask
) != (ctrl_data
& mask
);
715 snd_hda_codec_write_cache(codec
, nid
, 0, AC_VERB_SET_DIGI_CONVERT_1
,
720 #define ALC_SPDIF_CTRL_SWITCH(xname, nid, mask) \
721 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0, \
722 .info = alc_spdif_ctrl_info, \
723 .get = alc_spdif_ctrl_get, \
724 .put = alc_spdif_ctrl_put, \
725 .private_value = nid | (mask<<16) }
726 #endif /* CONFIG_SND_DEBUG */
728 /* A switch control to allow the enabling EAPD digital outputs on the ALC26x.
729 * Again, this is only used in the ALC26x test models to help identify when
730 * the EAPD line must be asserted for features to work.
732 #ifdef CONFIG_SND_DEBUG
733 #define alc_eapd_ctrl_info snd_ctl_boolean_mono_info
735 static int alc_eapd_ctrl_get(struct snd_kcontrol
*kcontrol
,
736 struct snd_ctl_elem_value
*ucontrol
)
738 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
739 hda_nid_t nid
= kcontrol
->private_value
& 0xffff;
740 unsigned char mask
= (kcontrol
->private_value
>> 16) & 0xff;
741 long *valp
= ucontrol
->value
.integer
.value
;
742 unsigned int val
= snd_hda_codec_read(codec
, nid
, 0,
743 AC_VERB_GET_EAPD_BTLENABLE
, 0x00);
745 *valp
= (val
& mask
) != 0;
749 static int alc_eapd_ctrl_put(struct snd_kcontrol
*kcontrol
,
750 struct snd_ctl_elem_value
*ucontrol
)
753 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
754 hda_nid_t nid
= kcontrol
->private_value
& 0xffff;
755 unsigned char mask
= (kcontrol
->private_value
>> 16) & 0xff;
756 long val
= *ucontrol
->value
.integer
.value
;
757 unsigned int ctrl_data
= snd_hda_codec_read(codec
, nid
, 0,
758 AC_VERB_GET_EAPD_BTLENABLE
,
761 /* Set/unset the masked control bit(s) as needed */
762 change
= (!val
? 0 : mask
) != (ctrl_data
& mask
);
767 snd_hda_codec_write_cache(codec
, nid
, 0, AC_VERB_SET_EAPD_BTLENABLE
,
773 #define ALC_EAPD_CTRL_SWITCH(xname, nid, mask) \
774 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0, \
775 .info = alc_eapd_ctrl_info, \
776 .get = alc_eapd_ctrl_get, \
777 .put = alc_eapd_ctrl_put, \
778 .private_value = nid | (mask<<16) }
779 #endif /* CONFIG_SND_DEBUG */
782 * set up the input pin config (depending on the given auto-pin type)
784 static void alc_set_input_pin(struct hda_codec
*codec
, hda_nid_t nid
,
787 unsigned int val
= PIN_IN
;
789 if (auto_pin_type
<= AUTO_PIN_FRONT_MIC
) {
791 pincap
= snd_hda_query_pin_caps(codec
, nid
);
792 pincap
= (pincap
& AC_PINCAP_VREF
) >> AC_PINCAP_VREF_SHIFT
;
793 if (pincap
& AC_PINCAP_VREF_80
)
795 else if (pincap
& AC_PINCAP_VREF_50
)
797 else if (pincap
& AC_PINCAP_VREF_100
)
799 else if (pincap
& AC_PINCAP_VREF_GRD
)
802 snd_hda_codec_write(codec
, nid
, 0, AC_VERB_SET_PIN_WIDGET_CONTROL
, val
);
807 static void add_mixer(struct alc_spec
*spec
, struct snd_kcontrol_new
*mix
)
809 if (snd_BUG_ON(spec
->num_mixers
>= ARRAY_SIZE(spec
->mixers
)))
811 spec
->mixers
[spec
->num_mixers
++] = mix
;
814 static void add_verb(struct alc_spec
*spec
, const struct hda_verb
*verb
)
816 if (snd_BUG_ON(spec
->num_init_verbs
>= ARRAY_SIZE(spec
->init_verbs
)))
818 spec
->init_verbs
[spec
->num_init_verbs
++] = verb
;
821 #ifdef CONFIG_PROC_FS
825 static void print_realtek_coef(struct snd_info_buffer
*buffer
,
826 struct hda_codec
*codec
, hda_nid_t nid
)
832 coeff
= snd_hda_codec_read(codec
, nid
, 0, AC_VERB_GET_PROC_COEF
, 0);
833 snd_iprintf(buffer
, " Processing Coefficient: 0x%02x\n", coeff
);
834 coeff
= snd_hda_codec_read(codec
, nid
, 0,
835 AC_VERB_GET_COEF_INDEX
, 0);
836 snd_iprintf(buffer
, " Coefficient Index: 0x%02x\n", coeff
);
839 #define print_realtek_coef NULL
843 * set up from the preset table
845 static void setup_preset(struct alc_spec
*spec
,
846 const struct alc_config_preset
*preset
)
850 for (i
= 0; i
< ARRAY_SIZE(preset
->mixers
) && preset
->mixers
[i
]; i
++)
851 add_mixer(spec
, preset
->mixers
[i
]);
852 spec
->cap_mixer
= preset
->cap_mixer
;
853 for (i
= 0; i
< ARRAY_SIZE(preset
->init_verbs
) && preset
->init_verbs
[i
];
855 add_verb(spec
, preset
->init_verbs
[i
]);
857 spec
->channel_mode
= preset
->channel_mode
;
858 spec
->num_channel_mode
= preset
->num_channel_mode
;
859 spec
->need_dac_fix
= preset
->need_dac_fix
;
860 spec
->const_channel_count
= preset
->const_channel_count
;
862 if (preset
->const_channel_count
)
863 spec
->multiout
.max_channels
= preset
->const_channel_count
;
865 spec
->multiout
.max_channels
= spec
->channel_mode
[0].channels
;
866 spec
->ext_channel_count
= spec
->channel_mode
[0].channels
;
868 spec
->multiout
.num_dacs
= preset
->num_dacs
;
869 spec
->multiout
.dac_nids
= preset
->dac_nids
;
870 spec
->multiout
.dig_out_nid
= preset
->dig_out_nid
;
871 spec
->multiout
.slave_dig_outs
= preset
->slave_dig_outs
;
872 spec
->multiout
.hp_nid
= preset
->hp_nid
;
874 spec
->num_mux_defs
= preset
->num_mux_defs
;
875 if (!spec
->num_mux_defs
)
876 spec
->num_mux_defs
= 1;
877 spec
->input_mux
= preset
->input_mux
;
879 spec
->num_adc_nids
= preset
->num_adc_nids
;
880 spec
->adc_nids
= preset
->adc_nids
;
881 spec
->capsrc_nids
= preset
->capsrc_nids
;
882 spec
->dig_in_nid
= preset
->dig_in_nid
;
884 spec
->unsol_event
= preset
->unsol_event
;
885 spec
->init_hook
= preset
->init_hook
;
886 #ifdef CONFIG_SND_HDA_POWER_SAVE
887 spec
->loopback
.amplist
= preset
->loopbacks
;
891 /* Enable GPIO mask and set output */
892 static struct hda_verb alc_gpio1_init_verbs
[] = {
893 {0x01, AC_VERB_SET_GPIO_MASK
, 0x01},
894 {0x01, AC_VERB_SET_GPIO_DIRECTION
, 0x01},
895 {0x01, AC_VERB_SET_GPIO_DATA
, 0x01},
899 static struct hda_verb alc_gpio2_init_verbs
[] = {
900 {0x01, AC_VERB_SET_GPIO_MASK
, 0x02},
901 {0x01, AC_VERB_SET_GPIO_DIRECTION
, 0x02},
902 {0x01, AC_VERB_SET_GPIO_DATA
, 0x02},
906 static struct hda_verb alc_gpio3_init_verbs
[] = {
907 {0x01, AC_VERB_SET_GPIO_MASK
, 0x03},
908 {0x01, AC_VERB_SET_GPIO_DIRECTION
, 0x03},
909 {0x01, AC_VERB_SET_GPIO_DATA
, 0x03},
914 * Fix hardware PLL issue
915 * On some codecs, the analog PLL gating control must be off while
916 * the default value is 1.
918 static void alc_fix_pll(struct hda_codec
*codec
)
920 struct alc_spec
*spec
= codec
->spec
;
925 snd_hda_codec_write(codec
, spec
->pll_nid
, 0, AC_VERB_SET_COEF_INDEX
,
927 val
= snd_hda_codec_read(codec
, spec
->pll_nid
, 0,
928 AC_VERB_GET_PROC_COEF
, 0);
929 snd_hda_codec_write(codec
, spec
->pll_nid
, 0, AC_VERB_SET_COEF_INDEX
,
931 snd_hda_codec_write(codec
, spec
->pll_nid
, 0, AC_VERB_SET_PROC_COEF
,
932 val
& ~(1 << spec
->pll_coef_bit
));
935 static void alc_fix_pll_init(struct hda_codec
*codec
, hda_nid_t nid
,
936 unsigned int coef_idx
, unsigned int coef_bit
)
938 struct alc_spec
*spec
= codec
->spec
;
940 spec
->pll_coef_idx
= coef_idx
;
941 spec
->pll_coef_bit
= coef_bit
;
945 static void alc_automute_pin(struct hda_codec
*codec
)
947 struct alc_spec
*spec
= codec
->spec
;
948 unsigned int present
, pincap
;
949 unsigned int nid
= spec
->autocfg
.hp_pins
[0];
952 pincap
= snd_hda_query_pin_caps(codec
, nid
);
953 if (pincap
& AC_PINCAP_TRIG_REQ
) /* need trigger? */
954 snd_hda_codec_read(codec
, nid
, 0, AC_VERB_SET_PIN_SENSE
, 0);
955 present
= snd_hda_codec_read(codec
, nid
, 0,
956 AC_VERB_GET_PIN_SENSE
, 0);
957 spec
->jack_present
= (present
& AC_PINSENSE_PRESENCE
) != 0;
958 for (i
= 0; i
< ARRAY_SIZE(spec
->autocfg
.speaker_pins
); i
++) {
959 nid
= spec
->autocfg
.speaker_pins
[i
];
962 snd_hda_codec_write(codec
, nid
, 0,
963 AC_VERB_SET_PIN_WIDGET_CONTROL
,
964 spec
->jack_present
? 0 : PIN_OUT
);
968 #if 0 /* it's broken in some cases -- temporarily disabled */
969 static void alc_mic_automute(struct hda_codec
*codec
)
971 struct alc_spec
*spec
= codec
->spec
;
972 unsigned int present
;
973 unsigned int mic_nid
= spec
->autocfg
.input_pins
[AUTO_PIN_MIC
];
974 unsigned int fmic_nid
= spec
->autocfg
.input_pins
[AUTO_PIN_FRONT_MIC
];
975 unsigned int mix_nid
= spec
->capsrc_nids
[0];
976 unsigned int capsrc_idx_mic
, capsrc_idx_fmic
;
978 capsrc_idx_mic
= mic_nid
- 0x18;
979 capsrc_idx_fmic
= fmic_nid
- 0x18;
980 present
= snd_hda_codec_read(codec
, mic_nid
, 0,
981 AC_VERB_GET_PIN_SENSE
, 0) & 0x80000000;
982 snd_hda_codec_write(codec
, mix_nid
, 0, AC_VERB_SET_AMP_GAIN_MUTE
,
983 0x7000 | (capsrc_idx_mic
<< 8) | (present
? 0 : 0x80));
984 snd_hda_codec_write(codec
, mix_nid
, 0, AC_VERB_SET_AMP_GAIN_MUTE
,
985 0x7000 | (capsrc_idx_fmic
<< 8) | (present
? 0x80 : 0));
986 snd_hda_codec_amp_stereo(codec
, 0x0b, HDA_INPUT
, capsrc_idx_fmic
,
987 HDA_AMP_MUTE
, present
? HDA_AMP_MUTE
: 0);
990 #define alc_mic_automute(codec) do {} while(0) /* NOP */
991 #endif /* disabled */
993 /* unsolicited event for HP jack sensing */
994 static void alc_sku_unsol_event(struct hda_codec
*codec
, unsigned int res
)
996 if (codec
->vendor_id
== 0x10ec0880)
1001 case ALC880_HP_EVENT
:
1002 alc_automute_pin(codec
);
1004 case ALC880_MIC_EVENT
:
1005 alc_mic_automute(codec
);
1010 static void alc_inithook(struct hda_codec
*codec
)
1012 alc_automute_pin(codec
);
1013 alc_mic_automute(codec
);
1016 /* additional initialization for ALC888 variants */
1017 static void alc888_coef_init(struct hda_codec
*codec
)
1021 snd_hda_codec_write(codec
, 0x20, 0, AC_VERB_SET_COEF_INDEX
, 0);
1022 tmp
= snd_hda_codec_read(codec
, 0x20, 0, AC_VERB_GET_PROC_COEF
, 0);
1023 snd_hda_codec_write(codec
, 0x20, 0, AC_VERB_SET_COEF_INDEX
, 7);
1024 if ((tmp
& 0xf0) == 0x20)
1026 snd_hda_codec_read(codec
, 0x20, 0,
1027 AC_VERB_SET_PROC_COEF
, 0x830);
1030 snd_hda_codec_read(codec
, 0x20, 0,
1031 AC_VERB_SET_PROC_COEF
, 0x3030);
1034 static void alc_auto_init_amp(struct hda_codec
*codec
, int type
)
1039 case ALC_INIT_GPIO1
:
1040 snd_hda_sequence_write(codec
, alc_gpio1_init_verbs
);
1042 case ALC_INIT_GPIO2
:
1043 snd_hda_sequence_write(codec
, alc_gpio2_init_verbs
);
1045 case ALC_INIT_GPIO3
:
1046 snd_hda_sequence_write(codec
, alc_gpio3_init_verbs
);
1048 case ALC_INIT_DEFAULT
:
1049 switch (codec
->vendor_id
) {
1051 snd_hda_codec_write(codec
, 0x0f, 0,
1052 AC_VERB_SET_EAPD_BTLENABLE
, 2);
1053 snd_hda_codec_write(codec
, 0x10, 0,
1054 AC_VERB_SET_EAPD_BTLENABLE
, 2);
1066 snd_hda_codec_write(codec
, 0x14, 0,
1067 AC_VERB_SET_EAPD_BTLENABLE
, 2);
1068 snd_hda_codec_write(codec
, 0x15, 0,
1069 AC_VERB_SET_EAPD_BTLENABLE
, 2);
1072 switch (codec
->vendor_id
) {
1074 snd_hda_codec_write(codec
, 0x1a, 0,
1075 AC_VERB_SET_COEF_INDEX
, 7);
1076 tmp
= snd_hda_codec_read(codec
, 0x1a, 0,
1077 AC_VERB_GET_PROC_COEF
, 0);
1078 snd_hda_codec_write(codec
, 0x1a, 0,
1079 AC_VERB_SET_COEF_INDEX
, 7);
1080 snd_hda_codec_write(codec
, 0x1a, 0,
1081 AC_VERB_SET_PROC_COEF
,
1091 snd_hda_codec_write(codec
, 0x20, 0,
1092 AC_VERB_SET_COEF_INDEX
, 7);
1093 tmp
= snd_hda_codec_read(codec
, 0x20, 0,
1094 AC_VERB_GET_PROC_COEF
, 0);
1095 snd_hda_codec_write(codec
, 0x20, 0,
1096 AC_VERB_SET_COEF_INDEX
, 7);
1097 snd_hda_codec_write(codec
, 0x20, 0,
1098 AC_VERB_SET_PROC_COEF
,
1102 alc888_coef_init(codec
);
1106 snd_hda_codec_write(codec
, 0x20, 0,
1107 AC_VERB_SET_COEF_INDEX
, 7);
1108 tmp
= snd_hda_codec_read(codec
, 0x20, 0,
1109 AC_VERB_GET_PROC_COEF
, 0);
1110 snd_hda_codec_write(codec
, 0x20, 0,
1111 AC_VERB_SET_COEF_INDEX
, 7);
1112 snd_hda_codec_write(codec
, 0x20, 0,
1113 AC_VERB_SET_PROC_COEF
,
1121 static void alc_init_auto_hp(struct hda_codec
*codec
)
1123 struct alc_spec
*spec
= codec
->spec
;
1125 if (!spec
->autocfg
.hp_pins
[0])
1128 if (!spec
->autocfg
.speaker_pins
[0]) {
1129 if (spec
->autocfg
.line_out_pins
[0] &&
1130 spec
->autocfg
.line_out_type
== AUTO_PIN_SPEAKER_OUT
)
1131 spec
->autocfg
.speaker_pins
[0] =
1132 spec
->autocfg
.line_out_pins
[0];
1137 snd_printdd("realtek: Enable HP auto-muting on NID 0x%x\n",
1138 spec
->autocfg
.hp_pins
[0]);
1139 snd_hda_codec_write_cache(codec
, spec
->autocfg
.hp_pins
[0], 0,
1140 AC_VERB_SET_UNSOLICITED_ENABLE
,
1141 AC_USRSP_EN
| ALC880_HP_EVENT
);
1142 spec
->unsol_event
= alc_sku_unsol_event
;
1145 /* check subsystem ID and set up device-specific initialization;
1146 * return 1 if initialized, 0 if invalid SSID
1148 /* 32-bit subsystem ID for BIOS loading in HD Audio codec.
1149 * 31 ~ 16 : Manufacture ID
1151 * 7 ~ 0 : Assembly ID
1152 * port-A --> pin 39/41, port-E --> pin 14/15, port-D --> pin 35/36
1154 static int alc_subsystem_id(struct hda_codec
*codec
,
1155 hda_nid_t porta
, hda_nid_t porte
,
1158 unsigned int ass
, tmp
, i
;
1160 struct alc_spec
*spec
= codec
->spec
;
1162 ass
= codec
->subsystem_id
& 0xffff;
1163 if ((ass
!= codec
->bus
->pci
->subsystem_device
) && (ass
& 1))
1166 /* invalid SSID, check the special NID pin defcfg instead */
1168 * 31~30 : port connectivity
1171 * 19~16 : Check sum (15:1)
1176 if (codec
->vendor_id
== 0x10ec0260)
1178 ass
= snd_hda_codec_get_pincfg(codec
, nid
);
1179 snd_printd("realtek: No valid SSID, "
1180 "checking pincfg 0x%08x for NID 0x%x\n",
1182 if (!(ass
& 1) && !(ass
& 0x100000))
1184 if ((ass
>> 30) != 1) /* no physical connection */
1189 for (i
= 1; i
< 16; i
++) {
1193 if (((ass
>> 16) & 0xf) != tmp
)
1196 snd_printd("realtek: Enabling init ASM_ID=0x%04x CODEC_ID=%08x\n",
1197 ass
& 0xffff, codec
->vendor_id
);
1201 * 2 : 0 --> Desktop, 1 --> Laptop
1202 * 3~5 : External Amplifier control
1205 tmp
= (ass
& 0x38) >> 3; /* external Amp control */
1208 spec
->init_amp
= ALC_INIT_GPIO1
;
1211 spec
->init_amp
= ALC_INIT_GPIO2
;
1214 spec
->init_amp
= ALC_INIT_GPIO3
;
1217 spec
->init_amp
= ALC_INIT_DEFAULT
;
1221 /* is laptop or Desktop and enable the function "Mute internal speaker
1222 * when the external headphone out jack is plugged"
1224 if (!(ass
& 0x8000))
1227 * 10~8 : Jack location
1228 * 12~11: Headphone out -> 00: PortA, 01: PortE, 02: PortD, 03: Resvered
1230 * 15 : 1 --> enable the function "Mute internal speaker
1231 * when the external headphone out jack is plugged"
1233 if (!spec
->autocfg
.hp_pins
[0]) {
1234 tmp
= (ass
>> 11) & 0x3; /* HP to chassis */
1236 spec
->autocfg
.hp_pins
[0] = porta
;
1238 spec
->autocfg
.hp_pins
[0] = porte
;
1240 spec
->autocfg
.hp_pins
[0] = portd
;
1245 alc_init_auto_hp(codec
);
1249 static void alc_ssid_check(struct hda_codec
*codec
,
1250 hda_nid_t porta
, hda_nid_t porte
, hda_nid_t portd
)
1252 if (!alc_subsystem_id(codec
, porta
, porte
, portd
)) {
1253 struct alc_spec
*spec
= codec
->spec
;
1254 snd_printd("realtek: "
1255 "Enable default setup for auto mode as fallback\n");
1256 spec
->init_amp
= ALC_INIT_DEFAULT
;
1257 alc_init_auto_hp(codec
);
1262 * Fix-up pin default configurations
1270 static void alc_fix_pincfg(struct hda_codec
*codec
,
1271 const struct snd_pci_quirk
*quirk
,
1272 const struct alc_pincfg
**pinfix
)
1274 const struct alc_pincfg
*cfg
;
1276 quirk
= snd_pci_quirk_lookup(codec
->bus
->pci
, quirk
);
1280 cfg
= pinfix
[quirk
->value
];
1281 for (; cfg
->nid
; cfg
++)
1282 snd_hda_codec_set_pincfg(codec
, cfg
->nid
, cfg
->val
);
1292 static struct hda_verb alc888_4ST_ch2_intel_init
[] = {
1293 /* Mic-in jack as mic in */
1294 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
1295 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
1296 /* Line-in jack as Line in */
1297 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
1298 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
1299 /* Line-Out as Front */
1300 { 0x17, AC_VERB_SET_CONNECT_SEL
, 0x00},
1307 static struct hda_verb alc888_4ST_ch4_intel_init
[] = {
1308 /* Mic-in jack as mic in */
1309 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
1310 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
1311 /* Line-in jack as Surround */
1312 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
1313 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
1314 /* Line-Out as Front */
1315 { 0x17, AC_VERB_SET_CONNECT_SEL
, 0x00},
1322 static struct hda_verb alc888_4ST_ch6_intel_init
[] = {
1323 /* Mic-in jack as CLFE */
1324 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
1325 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
1326 /* Line-in jack as Surround */
1327 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
1328 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
1329 /* Line-Out as CLFE (workaround because Mic-in is not loud enough) */
1330 { 0x17, AC_VERB_SET_CONNECT_SEL
, 0x03},
1337 static struct hda_verb alc888_4ST_ch8_intel_init
[] = {
1338 /* Mic-in jack as CLFE */
1339 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
1340 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
1341 /* Line-in jack as Surround */
1342 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
1343 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
1344 /* Line-Out as Side */
1345 { 0x17, AC_VERB_SET_CONNECT_SEL
, 0x03},
1349 static struct hda_channel_mode alc888_4ST_8ch_intel_modes
[4] = {
1350 { 2, alc888_4ST_ch2_intel_init
},
1351 { 4, alc888_4ST_ch4_intel_init
},
1352 { 6, alc888_4ST_ch6_intel_init
},
1353 { 8, alc888_4ST_ch8_intel_init
},
1357 * ALC888 Fujitsu Siemens Amillo xa3530
1360 static struct hda_verb alc888_fujitsu_xa3530_verbs
[] = {
1361 /* Front Mic: set to PIN_IN (empty by default) */
1362 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
1363 /* Connect Internal HP to Front */
1364 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
1365 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
1366 {0x14, AC_VERB_SET_CONNECT_SEL
, 0x00},
1367 /* Connect Bass HP to Front */
1368 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
1369 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
1370 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00},
1371 /* Connect Line-Out side jack (SPDIF) to Side */
1372 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
1373 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
1374 {0x17, AC_VERB_SET_CONNECT_SEL
, 0x03},
1375 /* Connect Mic jack to CLFE */
1376 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
1377 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
1378 {0x18, AC_VERB_SET_CONNECT_SEL
, 0x02},
1379 /* Connect Line-in jack to Surround */
1380 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
1381 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
1382 {0x1a, AC_VERB_SET_CONNECT_SEL
, 0x01},
1383 /* Connect HP out jack to Front */
1384 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
1385 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
1386 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0x00},
1387 /* Enable unsolicited event for HP jack and Line-out jack */
1388 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
1389 {0x17, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
1393 static void alc_automute_amp(struct hda_codec
*codec
)
1395 struct alc_spec
*spec
= codec
->spec
;
1396 unsigned int val
, mute
, pincap
;
1400 spec
->jack_present
= 0;
1401 for (i
= 0; i
< ARRAY_SIZE(spec
->autocfg
.hp_pins
); i
++) {
1402 nid
= spec
->autocfg
.hp_pins
[i
];
1405 pincap
= snd_hda_query_pin_caps(codec
, nid
);
1406 if (pincap
& AC_PINCAP_TRIG_REQ
) /* need trigger? */
1407 snd_hda_codec_read(codec
, nid
, 0,
1408 AC_VERB_SET_PIN_SENSE
, 0);
1409 val
= snd_hda_codec_read(codec
, nid
, 0,
1410 AC_VERB_GET_PIN_SENSE
, 0);
1411 if (val
& AC_PINSENSE_PRESENCE
) {
1412 spec
->jack_present
= 1;
1417 mute
= spec
->jack_present
? HDA_AMP_MUTE
: 0;
1418 /* Toggle internal speakers muting */
1419 for (i
= 0; i
< ARRAY_SIZE(spec
->autocfg
.speaker_pins
); i
++) {
1420 nid
= spec
->autocfg
.speaker_pins
[i
];
1423 snd_hda_codec_amp_stereo(codec
, nid
, HDA_OUTPUT
, 0,
1424 HDA_AMP_MUTE
, mute
);
1428 static void alc_automute_amp_unsol_event(struct hda_codec
*codec
,
1431 if (codec
->vendor_id
== 0x10ec0880)
1435 if (res
== ALC880_HP_EVENT
)
1436 alc_automute_amp(codec
);
1439 static void alc888_fujitsu_xa3530_init_hook(struct hda_codec
*codec
)
1441 struct alc_spec
*spec
= codec
->spec
;
1443 spec
->autocfg
.hp_pins
[0] = 0x17; /* line-out */
1444 spec
->autocfg
.hp_pins
[1] = 0x1b; /* hp */
1445 spec
->autocfg
.speaker_pins
[0] = 0x14; /* speaker */
1446 spec
->autocfg
.speaker_pins
[1] = 0x15; /* bass */
1447 alc_automute_amp(codec
);
1451 * ALC888 Acer Aspire 4930G model
1454 static struct hda_verb alc888_acer_aspire_4930g_verbs
[] = {
1455 /* Front Mic: set to PIN_IN (empty by default) */
1456 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
1457 /* Unselect Front Mic by default in input mixer 3 */
1458 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0xb)},
1459 /* Enable unsolicited event for HP jack */
1460 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
1461 /* Connect Internal HP to front */
1462 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
1463 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
1464 {0x14, AC_VERB_SET_CONNECT_SEL
, 0x00},
1465 /* Connect HP out to front */
1466 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
1467 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
1468 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00},
1473 * ALC888 Acer Aspire 6530G model
1476 static struct hda_verb alc888_acer_aspire_6530g_verbs
[] = {
1477 /* Bias voltage on for external mic port */
1478 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
| PIN_VREF80
},
1479 /* Front Mic: set to PIN_IN (empty by default) */
1480 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
1481 /* Unselect Front Mic by default in input mixer 3 */
1482 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0xb)},
1483 /* Enable unsolicited event for HP jack */
1484 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
1485 /* Enable speaker output */
1486 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
1487 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
1488 /* Enable headphone output */
1489 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
| PIN_HP
},
1490 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
1491 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00},
1496 * ALC889 Acer Aspire 8930G model
1499 static struct hda_verb alc889_acer_aspire_8930g_verbs
[] = {
1500 /* Front Mic: set to PIN_IN (empty by default) */
1501 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
1502 /* Unselect Front Mic by default in input mixer 3 */
1503 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0xb)},
1504 /* Enable unsolicited event for HP jack */
1505 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
1506 /* Connect Internal Front to Front */
1507 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
1508 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
1509 {0x14, AC_VERB_SET_CONNECT_SEL
, 0x00},
1510 /* Connect Internal Rear to Rear */
1511 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
1512 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
1513 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0x01},
1514 /* Connect Internal CLFE to CLFE */
1515 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
1516 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
1517 {0x16, AC_VERB_SET_CONNECT_SEL
, 0x02},
1518 /* Connect HP out to Front */
1519 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
| PIN_HP
},
1520 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
1521 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00},
1522 /* Enable all DACs */
1523 /* DAC DISABLE/MUTE 1? */
1524 /* setting bits 1-5 disables DAC nids 0x02-0x06 apparently. Init=0x38 */
1525 {0x20, AC_VERB_SET_COEF_INDEX
, 0x03},
1526 {0x20, AC_VERB_SET_PROC_COEF
, 0x0000},
1527 /* DAC DISABLE/MUTE 2? */
1528 /* some bit here disables the other DACs. Init=0x4900 */
1529 {0x20, AC_VERB_SET_COEF_INDEX
, 0x08},
1530 {0x20, AC_VERB_SET_PROC_COEF
, 0x0000},
1531 /* Enable amplifiers */
1532 {0x14, AC_VERB_SET_EAPD_BTLENABLE
, 0x02},
1533 {0x15, AC_VERB_SET_EAPD_BTLENABLE
, 0x02},
1535 * This laptop has a stereo digital microphone. The mics are only 1cm apart
1536 * which makes the stereo useless. However, either the mic or the ALC889
1537 * makes the signal become a difference/sum signal instead of standard
1538 * stereo, which is annoying. So instead we flip this bit which makes the
1539 * codec replicate the sum signal to both channels, turning it into a
1542 /* DMIC_CONTROL? Init value = 0x0001 */
1543 {0x20, AC_VERB_SET_COEF_INDEX
, 0x0b},
1544 {0x20, AC_VERB_SET_PROC_COEF
, 0x0003},
1548 static struct hda_input_mux alc888_2_capture_sources
[2] = {
1549 /* Front mic only available on one ADC */
1556 { "Front Mic", 0xb },
1569 static struct hda_input_mux alc888_acer_aspire_6530_sources
[2] = {
1570 /* Interal mic only available on one ADC */
1577 { "Input Mix", 0xa },
1587 { "Input Mix", 0xa },
1592 static struct hda_input_mux alc889_capture_sources
[3] = {
1593 /* Digital mic only available on first "ADC" */
1600 { "Front Mic", 0xb },
1601 { "Input Mix", 0xa },
1610 { "Input Mix", 0xa },
1619 { "Input Mix", 0xa },
1624 static struct snd_kcontrol_new alc888_base_mixer
[] = {
1625 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
1626 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
1627 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
1628 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT
),
1629 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0,
1631 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT
),
1632 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT
),
1633 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT
),
1634 HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT
),
1635 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT
),
1636 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
1637 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
1638 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
1639 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
1640 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
1641 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
1642 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
1646 static void alc888_acer_aspire_4930g_init_hook(struct hda_codec
*codec
)
1648 struct alc_spec
*spec
= codec
->spec
;
1650 spec
->autocfg
.hp_pins
[0] = 0x15;
1651 spec
->autocfg
.speaker_pins
[0] = 0x14;
1652 alc_automute_amp(codec
);
1655 static void alc888_acer_aspire_6530g_init_hook(struct hda_codec
*codec
)
1657 struct alc_spec
*spec
= codec
->spec
;
1659 spec
->autocfg
.hp_pins
[0] = 0x15;
1660 spec
->autocfg
.speaker_pins
[0] = 0x14;
1661 spec
->autocfg
.speaker_pins
[1] = 0x16;
1662 spec
->autocfg
.speaker_pins
[2] = 0x17;
1663 alc_automute_amp(codec
);
1666 static void alc889_acer_aspire_8930g_init_hook(struct hda_codec
*codec
)
1668 struct alc_spec
*spec
= codec
->spec
;
1670 spec
->autocfg
.hp_pins
[0] = 0x15;
1671 spec
->autocfg
.speaker_pins
[0] = 0x14;
1672 spec
->autocfg
.speaker_pins
[1] = 0x16;
1673 spec
->autocfg
.speaker_pins
[2] = 0x1b;
1674 alc_automute_amp(codec
);
1678 * ALC880 3-stack model
1680 * DAC: Front = 0x02 (0x0c), Surr = 0x05 (0x0f), CLFE = 0x04 (0x0e)
1681 * Pin assignment: Front = 0x14, Line-In/Surr = 0x1a, Mic/CLFE = 0x18,
1682 * F-Mic = 0x1b, HP = 0x19
1685 static hda_nid_t alc880_dac_nids
[4] = {
1686 /* front, rear, clfe, rear_surr */
1687 0x02, 0x05, 0x04, 0x03
1690 static hda_nid_t alc880_adc_nids
[3] = {
1695 /* The datasheet says the node 0x07 is connected from inputs,
1696 * but it shows zero connection in the real implementation on some devices.
1697 * Note: this is a 915GAV bug, fixed on 915GLV
1699 static hda_nid_t alc880_adc_nids_alt
[2] = {
1704 #define ALC880_DIGOUT_NID 0x06
1705 #define ALC880_DIGIN_NID 0x0a
1707 static struct hda_input_mux alc880_capture_source
= {
1711 { "Front Mic", 0x3 },
1717 /* channel source setting (2/6 channel selection for 3-stack) */
1719 static struct hda_verb alc880_threestack_ch2_init
[] = {
1720 /* set line-in to input, mute it */
1721 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
1722 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
1723 /* set mic-in to input vref 80%, mute it */
1724 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
1725 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
1730 static struct hda_verb alc880_threestack_ch6_init
[] = {
1731 /* set line-in to output, unmute it */
1732 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
1733 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
1734 /* set mic-in to output, unmute it */
1735 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
1736 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
1740 static struct hda_channel_mode alc880_threestack_modes
[2] = {
1741 { 2, alc880_threestack_ch2_init
},
1742 { 6, alc880_threestack_ch6_init
},
1745 static struct snd_kcontrol_new alc880_three_stack_mixer
[] = {
1746 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
1747 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
1748 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0f, 0x0, HDA_OUTPUT
),
1749 HDA_BIND_MUTE("Surround Playback Switch", 0x0f, 2, HDA_INPUT
),
1750 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT
),
1751 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT
),
1752 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT
),
1753 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT
),
1754 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
1755 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
1756 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
1757 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
1758 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
1759 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
1760 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x3, HDA_INPUT
),
1761 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x3, HDA_INPUT
),
1762 HDA_CODEC_MUTE("Headphone Playback Switch", 0x19, 0x0, HDA_OUTPUT
),
1764 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
1765 .name
= "Channel Mode",
1766 .info
= alc_ch_mode_info
,
1767 .get
= alc_ch_mode_get
,
1768 .put
= alc_ch_mode_put
,
1773 /* capture mixer elements */
1774 static int alc_cap_vol_info(struct snd_kcontrol
*kcontrol
,
1775 struct snd_ctl_elem_info
*uinfo
)
1777 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
1778 struct alc_spec
*spec
= codec
->spec
;
1781 mutex_lock(&codec
->control_mutex
);
1782 kcontrol
->private_value
= HDA_COMPOSE_AMP_VAL(spec
->adc_nids
[0], 3, 0,
1784 err
= snd_hda_mixer_amp_volume_info(kcontrol
, uinfo
);
1785 mutex_unlock(&codec
->control_mutex
);
1789 static int alc_cap_vol_tlv(struct snd_kcontrol
*kcontrol
, int op_flag
,
1790 unsigned int size
, unsigned int __user
*tlv
)
1792 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
1793 struct alc_spec
*spec
= codec
->spec
;
1796 mutex_lock(&codec
->control_mutex
);
1797 kcontrol
->private_value
= HDA_COMPOSE_AMP_VAL(spec
->adc_nids
[0], 3, 0,
1799 err
= snd_hda_mixer_amp_tlv(kcontrol
, op_flag
, size
, tlv
);
1800 mutex_unlock(&codec
->control_mutex
);
1804 typedef int (*getput_call_t
)(struct snd_kcontrol
*kcontrol
,
1805 struct snd_ctl_elem_value
*ucontrol
);
1807 static int alc_cap_getput_caller(struct snd_kcontrol
*kcontrol
,
1808 struct snd_ctl_elem_value
*ucontrol
,
1811 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
1812 struct alc_spec
*spec
= codec
->spec
;
1813 unsigned int adc_idx
= snd_ctl_get_ioffidx(kcontrol
, &ucontrol
->id
);
1816 mutex_lock(&codec
->control_mutex
);
1817 kcontrol
->private_value
= HDA_COMPOSE_AMP_VAL(spec
->adc_nids
[adc_idx
],
1819 err
= func(kcontrol
, ucontrol
);
1820 mutex_unlock(&codec
->control_mutex
);
1824 static int alc_cap_vol_get(struct snd_kcontrol
*kcontrol
,
1825 struct snd_ctl_elem_value
*ucontrol
)
1827 return alc_cap_getput_caller(kcontrol
, ucontrol
,
1828 snd_hda_mixer_amp_volume_get
);
1831 static int alc_cap_vol_put(struct snd_kcontrol
*kcontrol
,
1832 struct snd_ctl_elem_value
*ucontrol
)
1834 return alc_cap_getput_caller(kcontrol
, ucontrol
,
1835 snd_hda_mixer_amp_volume_put
);
1838 /* capture mixer elements */
1839 #define alc_cap_sw_info snd_ctl_boolean_stereo_info
1841 static int alc_cap_sw_get(struct snd_kcontrol
*kcontrol
,
1842 struct snd_ctl_elem_value
*ucontrol
)
1844 return alc_cap_getput_caller(kcontrol
, ucontrol
,
1845 snd_hda_mixer_amp_switch_get
);
1848 static int alc_cap_sw_put(struct snd_kcontrol
*kcontrol
,
1849 struct snd_ctl_elem_value
*ucontrol
)
1851 return alc_cap_getput_caller(kcontrol
, ucontrol
,
1852 snd_hda_mixer_amp_switch_put
);
1855 #define _DEFINE_CAPMIX(num) \
1857 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1858 .name = "Capture Switch", \
1859 .access = SNDRV_CTL_ELEM_ACCESS_READWRITE, \
1861 .info = alc_cap_sw_info, \
1862 .get = alc_cap_sw_get, \
1863 .put = alc_cap_sw_put, \
1866 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1867 .name = "Capture Volume", \
1868 .access = (SNDRV_CTL_ELEM_ACCESS_READWRITE | \
1869 SNDRV_CTL_ELEM_ACCESS_TLV_READ | \
1870 SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK), \
1872 .info = alc_cap_vol_info, \
1873 .get = alc_cap_vol_get, \
1874 .put = alc_cap_vol_put, \
1875 .tlv = { .c = alc_cap_vol_tlv }, \
1878 #define _DEFINE_CAPSRC(num) \
1880 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
1881 /* .name = "Capture Source", */ \
1882 .name = "Input Source", \
1884 .info = alc_mux_enum_info, \
1885 .get = alc_mux_enum_get, \
1886 .put = alc_mux_enum_put, \
1889 #define DEFINE_CAPMIX(num) \
1890 static struct snd_kcontrol_new alc_capture_mixer ## num[] = { \
1891 _DEFINE_CAPMIX(num), \
1892 _DEFINE_CAPSRC(num), \
1896 #define DEFINE_CAPMIX_NOSRC(num) \
1897 static struct snd_kcontrol_new alc_capture_mixer_nosrc ## num[] = { \
1898 _DEFINE_CAPMIX(num), \
1902 /* up to three ADCs */
1906 DEFINE_CAPMIX_NOSRC(1);
1907 DEFINE_CAPMIX_NOSRC(2);
1908 DEFINE_CAPMIX_NOSRC(3);
1911 * ALC880 5-stack model
1913 * DAC: Front = 0x02 (0x0c), Surr = 0x05 (0x0f), CLFE = 0x04 (0x0d),
1915 * Pin assignment: Front = 0x14, Surr = 0x17, CLFE = 0x16
1916 * Line-In/Side = 0x1a, Mic = 0x18, F-Mic = 0x1b, HP = 0x19
1919 /* additional mixers to alc880_three_stack_mixer */
1920 static struct snd_kcontrol_new alc880_five_stack_mixer
[] = {
1921 HDA_CODEC_VOLUME("Side Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
1922 HDA_BIND_MUTE("Side Playback Switch", 0x0d, 2, HDA_INPUT
),
1926 /* channel source setting (6/8 channel selection for 5-stack) */
1928 static struct hda_verb alc880_fivestack_ch6_init
[] = {
1929 /* set line-in to input, mute it */
1930 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
1931 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
1936 static struct hda_verb alc880_fivestack_ch8_init
[] = {
1937 /* set line-in to output, unmute it */
1938 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
1939 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
1943 static struct hda_channel_mode alc880_fivestack_modes
[2] = {
1944 { 6, alc880_fivestack_ch6_init
},
1945 { 8, alc880_fivestack_ch8_init
},
1950 * ALC880 6-stack model
1952 * DAC: Front = 0x02 (0x0c), Surr = 0x03 (0x0d), CLFE = 0x04 (0x0e),
1953 * Side = 0x05 (0x0f)
1954 * Pin assignment: Front = 0x14, Surr = 0x15, CLFE = 0x16, Side = 0x17,
1955 * Mic = 0x18, F-Mic = 0x19, Line = 0x1a, HP = 0x1b
1958 static hda_nid_t alc880_6st_dac_nids
[4] = {
1959 /* front, rear, clfe, rear_surr */
1960 0x02, 0x03, 0x04, 0x05
1963 static struct hda_input_mux alc880_6stack_capture_source
= {
1967 { "Front Mic", 0x1 },
1973 /* fixed 8-channels */
1974 static struct hda_channel_mode alc880_sixstack_modes
[1] = {
1978 static struct snd_kcontrol_new alc880_six_stack_mixer
[] = {
1979 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
1980 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
1981 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
1982 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT
),
1983 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT
),
1984 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT
),
1985 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT
),
1986 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT
),
1987 HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT
),
1988 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT
),
1989 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
1990 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
1991 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
1992 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
1993 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
1994 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
1995 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
1996 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
1998 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
1999 .name
= "Channel Mode",
2000 .info
= alc_ch_mode_info
,
2001 .get
= alc_ch_mode_get
,
2002 .put
= alc_ch_mode_put
,
2011 * W810 has rear IO for:
2014 * Center/LFE (DAC 04)
2017 * The system also has a pair of internal speakers, and a headphone jack.
2018 * These are both connected to Line2 on the codec, hence to DAC 02.
2020 * There is a variable resistor to control the speaker or headphone
2021 * volume. This is a hardware-only device without a software API.
2023 * Plugging headphones in will disable the internal speakers. This is
2024 * implemented in hardware, not via the driver using jack sense. In
2025 * a similar fashion, plugging into the rear socket marked "front" will
2026 * disable both the speakers and headphones.
2028 * For input, there's a microphone jack, and an "audio in" jack.
2029 * These may not do anything useful with this driver yet, because I
2030 * haven't setup any initialization verbs for these yet...
2033 static hda_nid_t alc880_w810_dac_nids
[3] = {
2034 /* front, rear/surround, clfe */
2038 /* fixed 6 channels */
2039 static struct hda_channel_mode alc880_w810_modes
[1] = {
2043 /* Pin assignment: Front = 0x14, Surr = 0x15, CLFE = 0x16, HP = 0x1b */
2044 static struct snd_kcontrol_new alc880_w810_base_mixer
[] = {
2045 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
2046 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
2047 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
2048 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT
),
2049 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT
),
2050 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT
),
2051 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT
),
2052 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT
),
2053 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
2061 * DAC: Front = 0x02 (0x0c), HP = 0x03 (0x0d)
2062 * Pin assignment: Front = 0x14, HP = 0x15, Mic = 0x18, Mic2 = 0x19(?),
2066 static hda_nid_t alc880_z71v_dac_nids
[1] = {
2069 #define ALC880_Z71V_HP_DAC 0x03
2071 /* fixed 2 channels */
2072 static struct hda_channel_mode alc880_2_jack_modes
[1] = {
2076 static struct snd_kcontrol_new alc880_z71v_mixer
[] = {
2077 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
2078 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
2079 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
2080 HDA_BIND_MUTE("Headphone Playback Switch", 0x0d, 2, HDA_INPUT
),
2081 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
2082 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
2083 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
2084 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
2090 * ALC880 F1734 model
2092 * DAC: HP = 0x02 (0x0c), Front = 0x03 (0x0d)
2093 * Pin assignment: HP = 0x14, Front = 0x15, Mic = 0x18
2096 static hda_nid_t alc880_f1734_dac_nids
[1] = {
2099 #define ALC880_F1734_HP_DAC 0x02
2101 static struct snd_kcontrol_new alc880_f1734_mixer
[] = {
2102 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
2103 HDA_BIND_MUTE("Headphone Playback Switch", 0x0c, 2, HDA_INPUT
),
2104 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
2105 HDA_BIND_MUTE("Speaker Playback Switch", 0x0d, 2, HDA_INPUT
),
2106 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
2107 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
2108 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
2109 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
2113 static struct hda_input_mux alc880_f1734_capture_source
= {
2125 * DAC: HP/Front = 0x02 (0x0c), Surr = 0x03 (0x0d), CLFE = 0x04 (0x0e)
2126 * Pin assignment: HP/Front = 0x14, Surr = 0x15, CLFE = 0x16,
2127 * Mic = 0x18, Line = 0x1a
2130 #define alc880_asus_dac_nids alc880_w810_dac_nids /* identical with w810 */
2131 #define alc880_asus_modes alc880_threestack_modes /* 2/6 channel mode */
2133 static struct snd_kcontrol_new alc880_asus_mixer
[] = {
2134 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
2135 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
2136 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
2137 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT
),
2138 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT
),
2139 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT
),
2140 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT
),
2141 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT
),
2142 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
2143 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
2144 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
2145 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
2146 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
2147 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
2149 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
2150 .name
= "Channel Mode",
2151 .info
= alc_ch_mode_info
,
2152 .get
= alc_ch_mode_get
,
2153 .put
= alc_ch_mode_put
,
2159 * ALC880 ASUS W1V model
2161 * DAC: HP/Front = 0x02 (0x0c), Surr = 0x03 (0x0d), CLFE = 0x04 (0x0e)
2162 * Pin assignment: HP/Front = 0x14, Surr = 0x15, CLFE = 0x16,
2163 * Mic = 0x18, Line = 0x1a, Line2 = 0x1b
2166 /* additional mixers to alc880_asus_mixer */
2167 static struct snd_kcontrol_new alc880_asus_w1v_mixer
[] = {
2168 HDA_CODEC_VOLUME("Line2 Playback Volume", 0x0b, 0x03, HDA_INPUT
),
2169 HDA_CODEC_MUTE("Line2 Playback Switch", 0x0b, 0x03, HDA_INPUT
),
2174 static struct snd_kcontrol_new alc880_tcl_s700_mixer
[] = {
2175 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
2176 HDA_CODEC_MUTE("Front Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
2177 HDA_CODEC_MUTE("Headphone Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
2178 HDA_CODEC_VOLUME("CD Playback Volume", 0x0B, 0x04, HDA_INPUT
),
2179 HDA_CODEC_MUTE("CD Playback Switch", 0x0B, 0x04, HDA_INPUT
),
2180 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0B, 0x0, HDA_INPUT
),
2181 HDA_CODEC_MUTE("Mic Playback Switch", 0x0B, 0x0, HDA_INPUT
),
2182 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT
),
2183 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT
),
2188 static struct snd_kcontrol_new alc880_uniwill_mixer
[] = {
2189 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
2190 HDA_BIND_MUTE("Headphone Playback Switch", 0x0c, 2, HDA_INPUT
),
2191 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
2192 HDA_BIND_MUTE("Speaker Playback Switch", 0x0d, 2, HDA_INPUT
),
2193 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT
),
2194 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT
),
2195 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT
),
2196 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT
),
2197 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
2198 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
2199 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
2200 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
2201 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
2202 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
2203 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
2204 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
2206 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
2207 .name
= "Channel Mode",
2208 .info
= alc_ch_mode_info
,
2209 .get
= alc_ch_mode_get
,
2210 .put
= alc_ch_mode_put
,
2215 static struct snd_kcontrol_new alc880_fujitsu_mixer
[] = {
2216 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
2217 HDA_BIND_MUTE("Headphone Playback Switch", 0x0c, 2, HDA_INPUT
),
2218 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
2219 HDA_BIND_MUTE("Speaker Playback Switch", 0x0d, 2, HDA_INPUT
),
2220 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
2221 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
2222 HDA_CODEC_VOLUME("Ext Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
2223 HDA_CODEC_MUTE("Ext Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
2224 HDA_CODEC_VOLUME("Int Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
2225 HDA_CODEC_MUTE("Int Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
2229 static struct snd_kcontrol_new alc880_uniwill_p53_mixer
[] = {
2230 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
2231 HDA_BIND_MUTE("Headphone Playback Switch", 0x0c, 2, HDA_INPUT
),
2232 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
2233 HDA_BIND_MUTE("Speaker Playback Switch", 0x0d, 2, HDA_INPUT
),
2234 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
2235 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
2240 * virtual master controls
2244 * slave controls for virtual master
2246 static const char *alc_slave_vols
[] = {
2247 "Front Playback Volume",
2248 "Surround Playback Volume",
2249 "Center Playback Volume",
2250 "LFE Playback Volume",
2251 "Side Playback Volume",
2252 "Headphone Playback Volume",
2253 "Speaker Playback Volume",
2254 "Mono Playback Volume",
2255 "Line-Out Playback Volume",
2256 "PCM Playback Volume",
2260 static const char *alc_slave_sws
[] = {
2261 "Front Playback Switch",
2262 "Surround Playback Switch",
2263 "Center Playback Switch",
2264 "LFE Playback Switch",
2265 "Side Playback Switch",
2266 "Headphone Playback Switch",
2267 "Speaker Playback Switch",
2268 "Mono Playback Switch",
2269 "IEC958 Playback Switch",
2274 * build control elements
2277 static void alc_free_kctls(struct hda_codec
*codec
);
2279 /* additional beep mixers; the actual parameters are overwritten at build */
2280 static struct snd_kcontrol_new alc_beep_mixer
[] = {
2281 HDA_CODEC_VOLUME("Beep Playback Volume", 0, 0, HDA_INPUT
),
2282 HDA_CODEC_MUTE("Beep Playback Switch", 0, 0, HDA_INPUT
),
2286 static int alc_build_controls(struct hda_codec
*codec
)
2288 struct alc_spec
*spec
= codec
->spec
;
2292 for (i
= 0; i
< spec
->num_mixers
; i
++) {
2293 err
= snd_hda_add_new_ctls(codec
, spec
->mixers
[i
]);
2297 if (spec
->cap_mixer
) {
2298 err
= snd_hda_add_new_ctls(codec
, spec
->cap_mixer
);
2302 if (spec
->multiout
.dig_out_nid
) {
2303 err
= snd_hda_create_spdif_out_ctls(codec
,
2304 spec
->multiout
.dig_out_nid
);
2307 if (!spec
->no_analog
) {
2308 err
= snd_hda_create_spdif_share_sw(codec
,
2312 spec
->multiout
.share_spdif
= 1;
2315 if (spec
->dig_in_nid
) {
2316 err
= snd_hda_create_spdif_in_ctls(codec
, spec
->dig_in_nid
);
2321 /* create beep controls if needed */
2322 if (spec
->beep_amp
) {
2323 struct snd_kcontrol_new
*knew
;
2324 for (knew
= alc_beep_mixer
; knew
->name
; knew
++) {
2325 struct snd_kcontrol
*kctl
;
2326 kctl
= snd_ctl_new1(knew
, codec
);
2329 kctl
->private_value
= spec
->beep_amp
;
2330 err
= snd_hda_ctl_add(codec
, kctl
);
2336 /* if we have no master control, let's create it */
2337 if (!spec
->no_analog
&&
2338 !snd_hda_find_mixer_ctl(codec
, "Master Playback Volume")) {
2339 unsigned int vmaster_tlv
[4];
2340 snd_hda_set_vmaster_tlv(codec
, spec
->vmaster_nid
,
2341 HDA_OUTPUT
, vmaster_tlv
);
2342 err
= snd_hda_add_vmaster(codec
, "Master Playback Volume",
2343 vmaster_tlv
, alc_slave_vols
);
2347 if (!spec
->no_analog
&&
2348 !snd_hda_find_mixer_ctl(codec
, "Master Playback Switch")) {
2349 err
= snd_hda_add_vmaster(codec
, "Master Playback Switch",
2350 NULL
, alc_slave_sws
);
2355 alc_free_kctls(codec
); /* no longer needed */
2361 * initialize the codec volumes, etc
2365 * generic initialization of ADC, input mixers and output mixers
2367 static struct hda_verb alc880_volume_init_verbs
[] = {
2369 * Unmute ADC0-2 and set the default input to mic-in
2371 {0x07, AC_VERB_SET_CONNECT_SEL
, 0x00},
2372 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
2373 {0x08, AC_VERB_SET_CONNECT_SEL
, 0x00},
2374 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
2375 {0x09, AC_VERB_SET_CONNECT_SEL
, 0x00},
2376 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
2378 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
2380 * Note: PASD motherboards uses the Line In 2 as the input for front
2383 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
2384 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
2385 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
2386 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
2387 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
2388 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
2389 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(6)},
2390 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(7)},
2393 * Set up output mixers (0x0c - 0x0f)
2395 /* set vol=0 to output mixers */
2396 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
2397 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
2398 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
2399 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
2400 /* set up input amps for analog loopback */
2401 /* Amp Indices: DAC = 0, mixer = 1 */
2402 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
2403 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
2404 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
2405 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
2406 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
2407 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
2408 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
2409 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
2415 * 3-stack pin configuration:
2416 * front = 0x14, mic/clfe = 0x18, HP = 0x19, line/surr = 0x1a, f-mic = 0x1b
2418 static struct hda_verb alc880_pin_3stack_init_verbs
[] = {
2420 * preset connection lists of input pins
2421 * 0 = front, 1 = rear_surr, 2 = CLFE, 3 = surround
2423 {0x10, AC_VERB_SET_CONNECT_SEL
, 0x02}, /* mic/clfe */
2424 {0x11, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* HP */
2425 {0x12, AC_VERB_SET_CONNECT_SEL
, 0x03}, /* line/surround */
2428 * Set pin mode and muting
2430 /* set front pin widgets 0x14 for output */
2431 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
2432 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2433 /* Mic1 (rear panel) pin widget for input and vref at 80% */
2434 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
2435 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
2436 /* Mic2 (as headphone out) for HP output */
2437 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
2438 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2439 /* Line In pin widget for input */
2440 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
2441 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
2442 /* Line2 (as front mic) pin widget for input and vref at 80% */
2443 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
2444 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
2445 /* CD pin widget for input */
2446 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
2452 * 5-stack pin configuration:
2453 * front = 0x14, surround = 0x17, clfe = 0x16, mic = 0x18, HP = 0x19,
2454 * line-in/side = 0x1a, f-mic = 0x1b
2456 static struct hda_verb alc880_pin_5stack_init_verbs
[] = {
2458 * preset connection lists of input pins
2459 * 0 = front, 1 = rear_surr, 2 = CLFE, 3 = surround
2461 {0x11, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* HP */
2462 {0x12, AC_VERB_SET_CONNECT_SEL
, 0x01}, /* line/side */
2465 * Set pin mode and muting
2467 /* set pin widgets 0x14-0x17 for output */
2468 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
2469 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
2470 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
2471 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
2472 /* unmute pins for output (no gain on this amp) */
2473 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2474 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2475 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2476 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2478 /* Mic1 (rear panel) pin widget for input and vref at 80% */
2479 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
2480 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
2481 /* Mic2 (as headphone out) for HP output */
2482 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
2483 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2484 /* Line In pin widget for input */
2485 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
2486 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
2487 /* Line2 (as front mic) pin widget for input and vref at 80% */
2488 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
2489 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
2490 /* CD pin widget for input */
2491 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
2497 * W810 pin configuration:
2498 * front = 0x14, surround = 0x15, clfe = 0x16, HP = 0x1b
2500 static struct hda_verb alc880_pin_w810_init_verbs
[] = {
2501 /* hphone/speaker input selector: front DAC */
2502 {0x13, AC_VERB_SET_CONNECT_SEL
, 0x0},
2504 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
2505 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2506 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
2507 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2508 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
2509 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2511 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
2512 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
2518 * Z71V pin configuration:
2519 * Speaker-out = 0x14, HP = 0x15, Mic = 0x18, Line-in = 0x1a, Mic2 = 0x1b (?)
2521 static struct hda_verb alc880_pin_z71v_init_verbs
[] = {
2522 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
2523 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2524 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
2525 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2527 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
2528 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
2529 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
2530 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
2536 * 6-stack pin configuration:
2537 * front = 0x14, surr = 0x15, clfe = 0x16, side = 0x17, mic = 0x18,
2538 * f-mic = 0x19, line = 0x1a, HP = 0x1b
2540 static struct hda_verb alc880_pin_6stack_init_verbs
[] = {
2541 {0x13, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* HP */
2543 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
2544 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2545 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
2546 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2547 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
2548 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2549 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
2550 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2552 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
2553 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
2554 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
2555 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
2556 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
2557 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
2558 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
2559 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2560 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
2566 * Uniwill pin configuration:
2567 * HP = 0x14, InternalSpeaker = 0x15, mic = 0x18, internal mic = 0x19,
2570 static struct hda_verb alc880_uniwill_init_verbs
[] = {
2571 {0x13, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* HP */
2573 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
2574 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2575 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
2576 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2577 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
2578 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2579 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
2580 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2581 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
2582 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x01 << 8))},
2583 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
2584 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x01 << 8))},
2585 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
2586 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x01 << 8))},
2588 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
2589 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
2590 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
2591 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
2592 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
2593 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
2594 /* {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP}, */
2595 /* {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, */
2596 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
2598 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
2599 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
2606 * HP = 0x14, InternalSpeaker = 0x15, mic = 0x19,
2608 static struct hda_verb alc880_uniwill_p53_init_verbs
[] = {
2609 {0x13, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* HP */
2611 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
2612 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2613 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
2614 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2615 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
2616 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2617 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
2618 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x01 << 8))},
2619 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
2620 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x01 << 8))},
2621 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
2622 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x01 << 8))},
2624 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
2625 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
2626 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
2627 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
2628 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
2629 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
2631 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
2632 {0x21, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_DCVOL_EVENT
},
2637 static struct hda_verb alc880_beep_init_verbs
[] = {
2638 { 0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(5) },
2642 /* auto-toggle front mic */
2643 static void alc880_uniwill_mic_automute(struct hda_codec
*codec
)
2645 unsigned int present
;
2648 present
= snd_hda_codec_read(codec
, 0x18, 0,
2649 AC_VERB_GET_PIN_SENSE
, 0) & 0x80000000;
2650 bits
= present
? HDA_AMP_MUTE
: 0;
2651 snd_hda_codec_amp_stereo(codec
, 0x0b, HDA_INPUT
, 1, HDA_AMP_MUTE
, bits
);
2654 static void alc880_uniwill_init_hook(struct hda_codec
*codec
)
2656 struct alc_spec
*spec
= codec
->spec
;
2658 spec
->autocfg
.hp_pins
[0] = 0x14;
2659 spec
->autocfg
.speaker_pins
[0] = 0x15;
2660 spec
->autocfg
.speaker_pins
[0] = 0x16;
2661 alc_automute_amp(codec
);
2662 alc880_uniwill_mic_automute(codec
);
2665 static void alc880_uniwill_unsol_event(struct hda_codec
*codec
,
2668 /* Looks like the unsol event is incompatible with the standard
2669 * definition. 4bit tag is placed at 28 bit!
2671 switch (res
>> 28) {
2672 case ALC880_MIC_EVENT
:
2673 alc880_uniwill_mic_automute(codec
);
2676 alc_automute_amp_unsol_event(codec
, res
);
2681 static void alc880_uniwill_p53_init_hook(struct hda_codec
*codec
)
2683 struct alc_spec
*spec
= codec
->spec
;
2685 spec
->autocfg
.hp_pins
[0] = 0x14;
2686 spec
->autocfg
.speaker_pins
[0] = 0x15;
2687 alc_automute_amp(codec
);
2690 static void alc880_uniwill_p53_dcvol_automute(struct hda_codec
*codec
)
2692 unsigned int present
;
2694 present
= snd_hda_codec_read(codec
, 0x21, 0,
2695 AC_VERB_GET_VOLUME_KNOB_CONTROL
, 0);
2696 present
&= HDA_AMP_VOLMASK
;
2697 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_OUTPUT
, 0,
2698 HDA_AMP_VOLMASK
, present
);
2699 snd_hda_codec_amp_stereo(codec
, 0x0d, HDA_OUTPUT
, 0,
2700 HDA_AMP_VOLMASK
, present
);
2703 static void alc880_uniwill_p53_unsol_event(struct hda_codec
*codec
,
2706 /* Looks like the unsol event is incompatible with the standard
2707 * definition. 4bit tag is placed at 28 bit!
2709 if ((res
>> 28) == ALC880_DCVOL_EVENT
)
2710 alc880_uniwill_p53_dcvol_automute(codec
);
2712 alc_automute_amp_unsol_event(codec
, res
);
2716 * F1734 pin configuration:
2717 * HP = 0x14, speaker-out = 0x15, mic = 0x18
2719 static struct hda_verb alc880_pin_f1734_init_verbs
[] = {
2720 {0x07, AC_VERB_SET_CONNECT_SEL
, 0x01},
2721 {0x10, AC_VERB_SET_CONNECT_SEL
, 0x02},
2722 {0x11, AC_VERB_SET_CONNECT_SEL
, 0x00},
2723 {0x12, AC_VERB_SET_CONNECT_SEL
, 0x01},
2724 {0x13, AC_VERB_SET_CONNECT_SEL
, 0x00},
2726 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
2727 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2728 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
2729 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2731 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
2732 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
2733 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF50
},
2734 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
2735 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
2736 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2737 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
2738 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2739 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
2741 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
|ALC880_HP_EVENT
},
2742 {0x21, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
|ALC880_DCVOL_EVENT
},
2748 * ASUS pin configuration:
2749 * HP/front = 0x14, surr = 0x15, clfe = 0x16, mic = 0x18, line = 0x1a
2751 static struct hda_verb alc880_pin_asus_init_verbs
[] = {
2752 {0x10, AC_VERB_SET_CONNECT_SEL
, 0x02},
2753 {0x11, AC_VERB_SET_CONNECT_SEL
, 0x00},
2754 {0x12, AC_VERB_SET_CONNECT_SEL
, 0x01},
2755 {0x13, AC_VERB_SET_CONNECT_SEL
, 0x00},
2757 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
2758 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2759 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
2760 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2761 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
2762 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2763 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
2764 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2766 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
2767 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
2768 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
2769 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
2770 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
2771 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
2772 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
2773 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2774 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
2779 /* Enable GPIO mask and set output */
2780 #define alc880_gpio1_init_verbs alc_gpio1_init_verbs
2781 #define alc880_gpio2_init_verbs alc_gpio2_init_verbs
2782 #define alc880_gpio3_init_verbs alc_gpio3_init_verbs
2784 /* Clevo m520g init */
2785 static struct hda_verb alc880_pin_clevo_init_verbs
[] = {
2786 /* headphone output */
2787 {0x11, AC_VERB_SET_CONNECT_SEL
, 0x01},
2789 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
2790 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2792 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
2793 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2795 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
2796 {0x1c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2797 /* Mic1 (rear panel) */
2798 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
2799 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2800 /* Mic2 (front panel) */
2801 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
2802 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2804 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
2805 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2806 /* change to EAPD mode */
2807 {0x20, AC_VERB_SET_COEF_INDEX
, 0x07},
2808 {0x20, AC_VERB_SET_PROC_COEF
, 0x3060},
2813 static struct hda_verb alc880_pin_tcl_S700_init_verbs
[] = {
2814 /* change to EAPD mode */
2815 {0x20, AC_VERB_SET_COEF_INDEX
, 0x07},
2816 {0x20, AC_VERB_SET_PROC_COEF
, 0x3060},
2818 /* Headphone output */
2819 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
2821 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
2822 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0x00},
2824 /* Line In pin widget for input */
2825 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
2826 /* CD pin widget for input */
2827 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
2828 /* Mic1 (rear panel) pin widget for input and vref at 80% */
2829 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
2831 /* change to EAPD mode */
2832 {0x20, AC_VERB_SET_COEF_INDEX
, 0x07},
2833 {0x20, AC_VERB_SET_PROC_COEF
, 0x3070},
2839 * LG m1 express dual
2842 * Rear Line-In/Out (blue): 0x14
2843 * Build-in Mic-In: 0x15
2845 * HP-Out (green): 0x1b
2846 * Mic-In/Out (red): 0x19
2850 /* To make 5.1 output working (green=Front, blue=Surr, red=CLFE) */
2851 static hda_nid_t alc880_lg_dac_nids
[3] = {
2855 /* seems analog CD is not working */
2856 static struct hda_input_mux alc880_lg_capture_source
= {
2861 { "Internal Mic", 0x6 },
2865 /* 2,4,6 channel modes */
2866 static struct hda_verb alc880_lg_ch2_init
[] = {
2867 /* set line-in and mic-in to input */
2868 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
2869 { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
2873 static struct hda_verb alc880_lg_ch4_init
[] = {
2874 /* set line-in to out and mic-in to input */
2875 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
2876 { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
2880 static struct hda_verb alc880_lg_ch6_init
[] = {
2881 /* set line-in and mic-in to output */
2882 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
2883 { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
2887 static struct hda_channel_mode alc880_lg_ch_modes
[3] = {
2888 { 2, alc880_lg_ch2_init
},
2889 { 4, alc880_lg_ch4_init
},
2890 { 6, alc880_lg_ch6_init
},
2893 static struct snd_kcontrol_new alc880_lg_mixer
[] = {
2894 HDA_CODEC_VOLUME("Front Playback Volume", 0x0f, 0x0, HDA_OUTPUT
),
2895 HDA_BIND_MUTE("Front Playback Switch", 0x0f, 2, HDA_INPUT
),
2896 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
2897 HDA_BIND_MUTE("Surround Playback Switch", 0x0c, 2, HDA_INPUT
),
2898 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0d, 1, 0x0, HDA_OUTPUT
),
2899 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0d, 2, 0x0, HDA_OUTPUT
),
2900 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0d, 1, 2, HDA_INPUT
),
2901 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0d, 2, 2, HDA_INPUT
),
2902 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
2903 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
2904 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x06, HDA_INPUT
),
2905 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x06, HDA_INPUT
),
2906 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x0b, 0x07, HDA_INPUT
),
2907 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x0b, 0x07, HDA_INPUT
),
2909 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
2910 .name
= "Channel Mode",
2911 .info
= alc_ch_mode_info
,
2912 .get
= alc_ch_mode_get
,
2913 .put
= alc_ch_mode_put
,
2918 static struct hda_verb alc880_lg_init_verbs
[] = {
2919 /* set capture source to mic-in */
2920 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
2921 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
2922 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
2923 /* mute all amp mixer inputs */
2924 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(5)},
2925 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(6)},
2926 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(7)},
2927 /* line-in to input */
2928 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
2929 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2931 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
2932 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2934 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
2935 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2936 /* mic-in to input */
2937 {0x11, AC_VERB_SET_CONNECT_SEL
, 0x01},
2938 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
2939 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2941 {0x13, AC_VERB_SET_CONNECT_SEL
, 0x03},
2942 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
2943 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
2945 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
2949 /* toggle speaker-output according to the hp-jack state */
2950 static void alc880_lg_init_hook(struct hda_codec
*codec
)
2952 struct alc_spec
*spec
= codec
->spec
;
2954 spec
->autocfg
.hp_pins
[0] = 0x1b;
2955 spec
->autocfg
.speaker_pins
[0] = 0x17;
2956 alc_automute_amp(codec
);
2965 * Built-in Mic-In: 0x19
2971 static struct hda_input_mux alc880_lg_lw_capture_source
= {
2975 { "Internal Mic", 0x1 },
2980 #define alc880_lg_lw_modes alc880_threestack_modes
2982 static struct snd_kcontrol_new alc880_lg_lw_mixer
[] = {
2983 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
2984 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
2985 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0f, 0x0, HDA_OUTPUT
),
2986 HDA_BIND_MUTE("Surround Playback Switch", 0x0f, 2, HDA_INPUT
),
2987 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT
),
2988 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT
),
2989 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT
),
2990 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT
),
2991 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
2992 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
2993 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
2994 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
2995 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x0b, 0x01, HDA_INPUT
),
2996 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x0b, 0x01, HDA_INPUT
),
2998 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
2999 .name
= "Channel Mode",
3000 .info
= alc_ch_mode_info
,
3001 .get
= alc_ch_mode_get
,
3002 .put
= alc_ch_mode_put
,
3007 static struct hda_verb alc880_lg_lw_init_verbs
[] = {
3008 {0x13, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* HP */
3009 {0x10, AC_VERB_SET_CONNECT_SEL
, 0x02}, /* mic/clfe */
3010 {0x12, AC_VERB_SET_CONNECT_SEL
, 0x03}, /* line/surround */
3012 /* set capture source to mic-in */
3013 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
3014 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
3015 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
3016 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(7)},
3018 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
3019 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3021 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
3022 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3023 /* mic-in to input */
3024 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
3025 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3027 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
3028 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3030 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
3034 /* toggle speaker-output according to the hp-jack state */
3035 static void alc880_lg_lw_init_hook(struct hda_codec
*codec
)
3037 struct alc_spec
*spec
= codec
->spec
;
3039 spec
->autocfg
.hp_pins
[0] = 0x1b;
3040 spec
->autocfg
.speaker_pins
[0] = 0x14;
3041 alc_automute_amp(codec
);
3044 static struct snd_kcontrol_new alc880_medion_rim_mixer
[] = {
3045 HDA_CODEC_VOLUME("Master Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
3046 HDA_BIND_MUTE("Master Playback Switch", 0x0c, 2, HDA_INPUT
),
3047 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
3048 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
3049 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
3050 HDA_CODEC_MUTE("Internal Playback Switch", 0x0b, 0x1, HDA_INPUT
),
3054 static struct hda_input_mux alc880_medion_rim_capture_source
= {
3058 { "Internal Mic", 0x1 },
3062 static struct hda_verb alc880_medion_rim_init_verbs
[] = {
3063 {0x13, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* HP */
3065 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
3066 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3068 /* Mic1 (rear panel) pin widget for input and vref at 80% */
3069 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
3070 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
3071 /* Mic2 (as headphone out) for HP output */
3072 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
3073 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
3074 /* Internal Speaker */
3075 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
3076 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3078 {0x20, AC_VERB_SET_COEF_INDEX
, 0x07},
3079 {0x20, AC_VERB_SET_PROC_COEF
, 0x3060},
3081 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
3085 /* toggle speaker-output according to the hp-jack state */
3086 static void alc880_medion_rim_automute(struct hda_codec
*codec
)
3088 struct alc_spec
*spec
= codec
->spec
;
3089 alc_automute_amp(codec
);
3091 if (spec
->jack_present
)
3092 snd_hda_codec_write(codec
, 0x01, 0, AC_VERB_SET_GPIO_DATA
, 0);
3094 snd_hda_codec_write(codec
, 0x01, 0, AC_VERB_SET_GPIO_DATA
, 2);
3097 static void alc880_medion_rim_unsol_event(struct hda_codec
*codec
,
3100 /* Looks like the unsol event is incompatible with the standard
3101 * definition. 4bit tag is placed at 28 bit!
3103 if ((res
>> 28) == ALC880_HP_EVENT
)
3104 alc880_medion_rim_automute(codec
);
3107 static void alc880_medion_rim_init_hook(struct hda_codec
*codec
)
3109 struct alc_spec
*spec
= codec
->spec
;
3111 spec
->autocfg
.hp_pins
[0] = 0x14;
3112 spec
->autocfg
.speaker_pins
[0] = 0x1b;
3113 alc880_medion_rim_automute(codec
);
3116 #ifdef CONFIG_SND_HDA_POWER_SAVE
3117 static struct hda_amp_list alc880_loopbacks
[] = {
3118 { 0x0b, HDA_INPUT
, 0 },
3119 { 0x0b, HDA_INPUT
, 1 },
3120 { 0x0b, HDA_INPUT
, 2 },
3121 { 0x0b, HDA_INPUT
, 3 },
3122 { 0x0b, HDA_INPUT
, 4 },
3126 static struct hda_amp_list alc880_lg_loopbacks
[] = {
3127 { 0x0b, HDA_INPUT
, 1 },
3128 { 0x0b, HDA_INPUT
, 6 },
3129 { 0x0b, HDA_INPUT
, 7 },
3138 static int alc_init(struct hda_codec
*codec
)
3140 struct alc_spec
*spec
= codec
->spec
;
3144 alc_auto_init_amp(codec
, spec
->init_amp
);
3146 for (i
= 0; i
< spec
->num_init_verbs
; i
++)
3147 snd_hda_sequence_write(codec
, spec
->init_verbs
[i
]);
3149 if (spec
->init_hook
)
3150 spec
->init_hook(codec
);
3155 static void alc_unsol_event(struct hda_codec
*codec
, unsigned int res
)
3157 struct alc_spec
*spec
= codec
->spec
;
3159 if (spec
->unsol_event
)
3160 spec
->unsol_event(codec
, res
);
3163 #ifdef CONFIG_SND_HDA_POWER_SAVE
3164 static int alc_check_power_status(struct hda_codec
*codec
, hda_nid_t nid
)
3166 struct alc_spec
*spec
= codec
->spec
;
3167 return snd_hda_check_amp_list_power(codec
, &spec
->loopback
, nid
);
3172 * Analog playback callbacks
3174 static int alc880_playback_pcm_open(struct hda_pcm_stream
*hinfo
,
3175 struct hda_codec
*codec
,
3176 struct snd_pcm_substream
*substream
)
3178 struct alc_spec
*spec
= codec
->spec
;
3179 return snd_hda_multi_out_analog_open(codec
, &spec
->multiout
, substream
,
3183 static int alc880_playback_pcm_prepare(struct hda_pcm_stream
*hinfo
,
3184 struct hda_codec
*codec
,
3185 unsigned int stream_tag
,
3186 unsigned int format
,
3187 struct snd_pcm_substream
*substream
)
3189 struct alc_spec
*spec
= codec
->spec
;
3190 return snd_hda_multi_out_analog_prepare(codec
, &spec
->multiout
,
3191 stream_tag
, format
, substream
);
3194 static int alc880_playback_pcm_cleanup(struct hda_pcm_stream
*hinfo
,
3195 struct hda_codec
*codec
,
3196 struct snd_pcm_substream
*substream
)
3198 struct alc_spec
*spec
= codec
->spec
;
3199 return snd_hda_multi_out_analog_cleanup(codec
, &spec
->multiout
);
3205 static int alc880_dig_playback_pcm_open(struct hda_pcm_stream
*hinfo
,
3206 struct hda_codec
*codec
,
3207 struct snd_pcm_substream
*substream
)
3209 struct alc_spec
*spec
= codec
->spec
;
3210 return snd_hda_multi_out_dig_open(codec
, &spec
->multiout
);
3213 static int alc880_dig_playback_pcm_prepare(struct hda_pcm_stream
*hinfo
,
3214 struct hda_codec
*codec
,
3215 unsigned int stream_tag
,
3216 unsigned int format
,
3217 struct snd_pcm_substream
*substream
)
3219 struct alc_spec
*spec
= codec
->spec
;
3220 return snd_hda_multi_out_dig_prepare(codec
, &spec
->multiout
,
3221 stream_tag
, format
, substream
);
3224 static int alc880_dig_playback_pcm_cleanup(struct hda_pcm_stream
*hinfo
,
3225 struct hda_codec
*codec
,
3226 struct snd_pcm_substream
*substream
)
3228 struct alc_spec
*spec
= codec
->spec
;
3229 return snd_hda_multi_out_dig_cleanup(codec
, &spec
->multiout
);
3232 static int alc880_dig_playback_pcm_close(struct hda_pcm_stream
*hinfo
,
3233 struct hda_codec
*codec
,
3234 struct snd_pcm_substream
*substream
)
3236 struct alc_spec
*spec
= codec
->spec
;
3237 return snd_hda_multi_out_dig_close(codec
, &spec
->multiout
);
3243 static int alc880_alt_capture_pcm_prepare(struct hda_pcm_stream
*hinfo
,
3244 struct hda_codec
*codec
,
3245 unsigned int stream_tag
,
3246 unsigned int format
,
3247 struct snd_pcm_substream
*substream
)
3249 struct alc_spec
*spec
= codec
->spec
;
3251 snd_hda_codec_setup_stream(codec
, spec
->adc_nids
[substream
->number
+ 1],
3252 stream_tag
, 0, format
);
3256 static int alc880_alt_capture_pcm_cleanup(struct hda_pcm_stream
*hinfo
,
3257 struct hda_codec
*codec
,
3258 struct snd_pcm_substream
*substream
)
3260 struct alc_spec
*spec
= codec
->spec
;
3262 snd_hda_codec_cleanup_stream(codec
,
3263 spec
->adc_nids
[substream
->number
+ 1]);
3270 static struct hda_pcm_stream alc880_pcm_analog_playback
= {
3274 /* NID is set in alc_build_pcms */
3276 .open
= alc880_playback_pcm_open
,
3277 .prepare
= alc880_playback_pcm_prepare
,
3278 .cleanup
= alc880_playback_pcm_cleanup
3282 static struct hda_pcm_stream alc880_pcm_analog_capture
= {
3286 /* NID is set in alc_build_pcms */
3289 static struct hda_pcm_stream alc880_pcm_analog_alt_playback
= {
3293 /* NID is set in alc_build_pcms */
3296 static struct hda_pcm_stream alc880_pcm_analog_alt_capture
= {
3297 .substreams
= 2, /* can be overridden */
3300 /* NID is set in alc_build_pcms */
3302 .prepare
= alc880_alt_capture_pcm_prepare
,
3303 .cleanup
= alc880_alt_capture_pcm_cleanup
3307 static struct hda_pcm_stream alc880_pcm_digital_playback
= {
3311 /* NID is set in alc_build_pcms */
3313 .open
= alc880_dig_playback_pcm_open
,
3314 .close
= alc880_dig_playback_pcm_close
,
3315 .prepare
= alc880_dig_playback_pcm_prepare
,
3316 .cleanup
= alc880_dig_playback_pcm_cleanup
3320 static struct hda_pcm_stream alc880_pcm_digital_capture
= {
3324 /* NID is set in alc_build_pcms */
3327 /* Used by alc_build_pcms to flag that a PCM has no playback stream */
3328 static struct hda_pcm_stream alc_pcm_null_stream
= {
3334 static int alc_build_pcms(struct hda_codec
*codec
)
3336 struct alc_spec
*spec
= codec
->spec
;
3337 struct hda_pcm
*info
= spec
->pcm_rec
;
3340 codec
->num_pcms
= 1;
3341 codec
->pcm_info
= info
;
3343 if (spec
->no_analog
)
3346 snprintf(spec
->stream_name_analog
, sizeof(spec
->stream_name_analog
),
3347 "%s Analog", codec
->chip_name
);
3348 info
->name
= spec
->stream_name_analog
;
3350 if (spec
->stream_analog_playback
) {
3351 if (snd_BUG_ON(!spec
->multiout
.dac_nids
))
3353 info
->stream
[SNDRV_PCM_STREAM_PLAYBACK
] = *(spec
->stream_analog_playback
);
3354 info
->stream
[SNDRV_PCM_STREAM_PLAYBACK
].nid
= spec
->multiout
.dac_nids
[0];
3356 if (spec
->stream_analog_capture
) {
3357 if (snd_BUG_ON(!spec
->adc_nids
))
3359 info
->stream
[SNDRV_PCM_STREAM_CAPTURE
] = *(spec
->stream_analog_capture
);
3360 info
->stream
[SNDRV_PCM_STREAM_CAPTURE
].nid
= spec
->adc_nids
[0];
3363 if (spec
->channel_mode
) {
3364 info
->stream
[SNDRV_PCM_STREAM_PLAYBACK
].channels_max
= 0;
3365 for (i
= 0; i
< spec
->num_channel_mode
; i
++) {
3366 if (spec
->channel_mode
[i
].channels
> info
->stream
[SNDRV_PCM_STREAM_PLAYBACK
].channels_max
) {
3367 info
->stream
[SNDRV_PCM_STREAM_PLAYBACK
].channels_max
= spec
->channel_mode
[i
].channels
;
3373 /* SPDIF for stream index #1 */
3374 if (spec
->multiout
.dig_out_nid
|| spec
->dig_in_nid
) {
3375 snprintf(spec
->stream_name_digital
,
3376 sizeof(spec
->stream_name_digital
),
3377 "%s Digital", codec
->chip_name
);
3378 codec
->num_pcms
= 2;
3379 codec
->slave_dig_outs
= spec
->multiout
.slave_dig_outs
;
3380 info
= spec
->pcm_rec
+ 1;
3381 info
->name
= spec
->stream_name_digital
;
3382 if (spec
->dig_out_type
)
3383 info
->pcm_type
= spec
->dig_out_type
;
3385 info
->pcm_type
= HDA_PCM_TYPE_SPDIF
;
3386 if (spec
->multiout
.dig_out_nid
&&
3387 spec
->stream_digital_playback
) {
3388 info
->stream
[SNDRV_PCM_STREAM_PLAYBACK
] = *(spec
->stream_digital_playback
);
3389 info
->stream
[SNDRV_PCM_STREAM_PLAYBACK
].nid
= spec
->multiout
.dig_out_nid
;
3391 if (spec
->dig_in_nid
&&
3392 spec
->stream_digital_capture
) {
3393 info
->stream
[SNDRV_PCM_STREAM_CAPTURE
] = *(spec
->stream_digital_capture
);
3394 info
->stream
[SNDRV_PCM_STREAM_CAPTURE
].nid
= spec
->dig_in_nid
;
3396 /* FIXME: do we need this for all Realtek codec models? */
3397 codec
->spdif_status_reset
= 1;
3400 if (spec
->no_analog
)
3403 /* If the use of more than one ADC is requested for the current
3404 * model, configure a second analog capture-only PCM.
3406 /* Additional Analaog capture for index #2 */
3407 if ((spec
->alt_dac_nid
&& spec
->stream_analog_alt_playback
) ||
3408 (spec
->num_adc_nids
> 1 && spec
->stream_analog_alt_capture
)) {
3409 codec
->num_pcms
= 3;
3410 info
= spec
->pcm_rec
+ 2;
3411 info
->name
= spec
->stream_name_analog
;
3412 if (spec
->alt_dac_nid
) {
3413 info
->stream
[SNDRV_PCM_STREAM_PLAYBACK
] =
3414 *spec
->stream_analog_alt_playback
;
3415 info
->stream
[SNDRV_PCM_STREAM_PLAYBACK
].nid
=
3418 info
->stream
[SNDRV_PCM_STREAM_PLAYBACK
] =
3419 alc_pcm_null_stream
;
3420 info
->stream
[SNDRV_PCM_STREAM_PLAYBACK
].nid
= 0;
3422 if (spec
->num_adc_nids
> 1) {
3423 info
->stream
[SNDRV_PCM_STREAM_CAPTURE
] =
3424 *spec
->stream_analog_alt_capture
;
3425 info
->stream
[SNDRV_PCM_STREAM_CAPTURE
].nid
=
3427 info
->stream
[SNDRV_PCM_STREAM_CAPTURE
].substreams
=
3428 spec
->num_adc_nids
- 1;
3430 info
->stream
[SNDRV_PCM_STREAM_CAPTURE
] =
3431 alc_pcm_null_stream
;
3432 info
->stream
[SNDRV_PCM_STREAM_CAPTURE
].nid
= 0;
3439 static void alc_free_kctls(struct hda_codec
*codec
)
3441 struct alc_spec
*spec
= codec
->spec
;
3443 if (spec
->kctls
.list
) {
3444 struct snd_kcontrol_new
*kctl
= spec
->kctls
.list
;
3446 for (i
= 0; i
< spec
->kctls
.used
; i
++)
3447 kfree(kctl
[i
].name
);
3449 snd_array_free(&spec
->kctls
);
3452 static void alc_free(struct hda_codec
*codec
)
3454 struct alc_spec
*spec
= codec
->spec
;
3459 alc_free_kctls(codec
);
3461 snd_hda_detach_beep_device(codec
);
3464 #ifdef SND_HDA_NEEDS_RESUME
3465 static int alc_resume(struct hda_codec
*codec
)
3467 codec
->patch_ops
.init(codec
);
3468 snd_hda_codec_resume_amp(codec
);
3469 snd_hda_codec_resume_cache(codec
);
3476 static struct hda_codec_ops alc_patch_ops
= {
3477 .build_controls
= alc_build_controls
,
3478 .build_pcms
= alc_build_pcms
,
3481 .unsol_event
= alc_unsol_event
,
3482 #ifdef SND_HDA_NEEDS_RESUME
3483 .resume
= alc_resume
,
3485 #ifdef CONFIG_SND_HDA_POWER_SAVE
3486 .check_power_status
= alc_check_power_status
,
3492 * Test configuration for debugging
3494 * Almost all inputs/outputs are enabled. I/O pins can be configured via
3497 #ifdef CONFIG_SND_DEBUG
3498 static hda_nid_t alc880_test_dac_nids
[4] = {
3499 0x02, 0x03, 0x04, 0x05
3502 static struct hda_input_mux alc880_test_capture_source
= {
3511 { "Surround", 0x6 },
3515 static struct hda_channel_mode alc880_test_modes
[4] = {
3522 static int alc_test_pin_ctl_info(struct snd_kcontrol
*kcontrol
,
3523 struct snd_ctl_elem_info
*uinfo
)
3525 static char *texts
[] = {
3526 "N/A", "Line Out", "HP Out",
3527 "In Hi-Z", "In 50%", "In Grd", "In 80%", "In 100%"
3529 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
3531 uinfo
->value
.enumerated
.items
= 8;
3532 if (uinfo
->value
.enumerated
.item
>= 8)
3533 uinfo
->value
.enumerated
.item
= 7;
3534 strcpy(uinfo
->value
.enumerated
.name
, texts
[uinfo
->value
.enumerated
.item
]);
3538 static int alc_test_pin_ctl_get(struct snd_kcontrol
*kcontrol
,
3539 struct snd_ctl_elem_value
*ucontrol
)
3541 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
3542 hda_nid_t nid
= (hda_nid_t
)kcontrol
->private_value
;
3543 unsigned int pin_ctl
, item
= 0;
3545 pin_ctl
= snd_hda_codec_read(codec
, nid
, 0,
3546 AC_VERB_GET_PIN_WIDGET_CONTROL
, 0);
3547 if (pin_ctl
& AC_PINCTL_OUT_EN
) {
3548 if (pin_ctl
& AC_PINCTL_HP_EN
)
3552 } else if (pin_ctl
& AC_PINCTL_IN_EN
) {
3553 switch (pin_ctl
& AC_PINCTL_VREFEN
) {
3554 case AC_PINCTL_VREF_HIZ
: item
= 3; break;
3555 case AC_PINCTL_VREF_50
: item
= 4; break;
3556 case AC_PINCTL_VREF_GRD
: item
= 5; break;
3557 case AC_PINCTL_VREF_80
: item
= 6; break;
3558 case AC_PINCTL_VREF_100
: item
= 7; break;
3561 ucontrol
->value
.enumerated
.item
[0] = item
;
3565 static int alc_test_pin_ctl_put(struct snd_kcontrol
*kcontrol
,
3566 struct snd_ctl_elem_value
*ucontrol
)
3568 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
3569 hda_nid_t nid
= (hda_nid_t
)kcontrol
->private_value
;
3570 static unsigned int ctls
[] = {
3571 0, AC_PINCTL_OUT_EN
, AC_PINCTL_OUT_EN
| AC_PINCTL_HP_EN
,
3572 AC_PINCTL_IN_EN
| AC_PINCTL_VREF_HIZ
,
3573 AC_PINCTL_IN_EN
| AC_PINCTL_VREF_50
,
3574 AC_PINCTL_IN_EN
| AC_PINCTL_VREF_GRD
,
3575 AC_PINCTL_IN_EN
| AC_PINCTL_VREF_80
,
3576 AC_PINCTL_IN_EN
| AC_PINCTL_VREF_100
,
3578 unsigned int old_ctl
, new_ctl
;
3580 old_ctl
= snd_hda_codec_read(codec
, nid
, 0,
3581 AC_VERB_GET_PIN_WIDGET_CONTROL
, 0);
3582 new_ctl
= ctls
[ucontrol
->value
.enumerated
.item
[0]];
3583 if (old_ctl
!= new_ctl
) {
3585 snd_hda_codec_write_cache(codec
, nid
, 0,
3586 AC_VERB_SET_PIN_WIDGET_CONTROL
,
3588 val
= ucontrol
->value
.enumerated
.item
[0] >= 3 ?
3590 snd_hda_codec_amp_stereo(codec
, nid
, HDA_OUTPUT
, 0,
3597 static int alc_test_pin_src_info(struct snd_kcontrol
*kcontrol
,
3598 struct snd_ctl_elem_info
*uinfo
)
3600 static char *texts
[] = {
3601 "Front", "Surround", "CLFE", "Side"
3603 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_ENUMERATED
;
3605 uinfo
->value
.enumerated
.items
= 4;
3606 if (uinfo
->value
.enumerated
.item
>= 4)
3607 uinfo
->value
.enumerated
.item
= 3;
3608 strcpy(uinfo
->value
.enumerated
.name
, texts
[uinfo
->value
.enumerated
.item
]);
3612 static int alc_test_pin_src_get(struct snd_kcontrol
*kcontrol
,
3613 struct snd_ctl_elem_value
*ucontrol
)
3615 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
3616 hda_nid_t nid
= (hda_nid_t
)kcontrol
->private_value
;
3619 sel
= snd_hda_codec_read(codec
, nid
, 0, AC_VERB_GET_CONNECT_SEL
, 0);
3620 ucontrol
->value
.enumerated
.item
[0] = sel
& 3;
3624 static int alc_test_pin_src_put(struct snd_kcontrol
*kcontrol
,
3625 struct snd_ctl_elem_value
*ucontrol
)
3627 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
3628 hda_nid_t nid
= (hda_nid_t
)kcontrol
->private_value
;
3631 sel
= snd_hda_codec_read(codec
, nid
, 0, AC_VERB_GET_CONNECT_SEL
, 0) & 3;
3632 if (ucontrol
->value
.enumerated
.item
[0] != sel
) {
3633 sel
= ucontrol
->value
.enumerated
.item
[0] & 3;
3634 snd_hda_codec_write_cache(codec
, nid
, 0,
3635 AC_VERB_SET_CONNECT_SEL
, sel
);
3641 #define PIN_CTL_TEST(xname,nid) { \
3642 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
3644 .info = alc_test_pin_ctl_info, \
3645 .get = alc_test_pin_ctl_get, \
3646 .put = alc_test_pin_ctl_put, \
3647 .private_value = nid \
3650 #define PIN_SRC_TEST(xname,nid) { \
3651 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
3653 .info = alc_test_pin_src_info, \
3654 .get = alc_test_pin_src_get, \
3655 .put = alc_test_pin_src_put, \
3656 .private_value = nid \
3659 static struct snd_kcontrol_new alc880_test_mixer
[] = {
3660 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
3661 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
3662 HDA_CODEC_VOLUME("CLFE Playback Volume", 0x0e, 0x0, HDA_OUTPUT
),
3663 HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT
),
3664 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
3665 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT
),
3666 HDA_BIND_MUTE("CLFE Playback Switch", 0x0e, 2, HDA_INPUT
),
3667 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT
),
3668 PIN_CTL_TEST("Front Pin Mode", 0x14),
3669 PIN_CTL_TEST("Surround Pin Mode", 0x15),
3670 PIN_CTL_TEST("CLFE Pin Mode", 0x16),
3671 PIN_CTL_TEST("Side Pin Mode", 0x17),
3672 PIN_CTL_TEST("In-1 Pin Mode", 0x18),
3673 PIN_CTL_TEST("In-2 Pin Mode", 0x19),
3674 PIN_CTL_TEST("In-3 Pin Mode", 0x1a),
3675 PIN_CTL_TEST("In-4 Pin Mode", 0x1b),
3676 PIN_SRC_TEST("In-1 Pin Source", 0x18),
3677 PIN_SRC_TEST("In-2 Pin Source", 0x19),
3678 PIN_SRC_TEST("In-3 Pin Source", 0x1a),
3679 PIN_SRC_TEST("In-4 Pin Source", 0x1b),
3680 HDA_CODEC_VOLUME("In-1 Playback Volume", 0x0b, 0x0, HDA_INPUT
),
3681 HDA_CODEC_MUTE("In-1 Playback Switch", 0x0b, 0x0, HDA_INPUT
),
3682 HDA_CODEC_VOLUME("In-2 Playback Volume", 0x0b, 0x1, HDA_INPUT
),
3683 HDA_CODEC_MUTE("In-2 Playback Switch", 0x0b, 0x1, HDA_INPUT
),
3684 HDA_CODEC_VOLUME("In-3 Playback Volume", 0x0b, 0x2, HDA_INPUT
),
3685 HDA_CODEC_MUTE("In-3 Playback Switch", 0x0b, 0x2, HDA_INPUT
),
3686 HDA_CODEC_VOLUME("In-4 Playback Volume", 0x0b, 0x3, HDA_INPUT
),
3687 HDA_CODEC_MUTE("In-4 Playback Switch", 0x0b, 0x3, HDA_INPUT
),
3688 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x4, HDA_INPUT
),
3689 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x4, HDA_INPUT
),
3691 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
3692 .name
= "Channel Mode",
3693 .info
= alc_ch_mode_info
,
3694 .get
= alc_ch_mode_get
,
3695 .put
= alc_ch_mode_put
,
3700 static struct hda_verb alc880_test_init_verbs
[] = {
3701 /* Unmute inputs of 0x0c - 0x0f */
3702 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
3703 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
3704 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
3705 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
3706 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
3707 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
3708 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
3709 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
3710 /* Vol output for 0x0c-0x0f */
3711 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
3712 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
3713 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
3714 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
3715 /* Set output pins 0x14-0x17 */
3716 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
3717 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
3718 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
3719 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
3720 /* Unmute output pins 0x14-0x17 */
3721 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3722 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3723 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3724 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
3725 /* Set input pins 0x18-0x1c */
3726 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
3727 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
3728 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
3729 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
3730 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
3731 /* Mute input pins 0x18-0x1b */
3732 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
3733 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
3734 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
3735 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
3737 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
3738 {0x07, AC_VERB_SET_CONNECT_SEL
, 0x00},
3739 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
3740 {0x08, AC_VERB_SET_CONNECT_SEL
, 0x00},
3741 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
3742 {0x09, AC_VERB_SET_CONNECT_SEL
, 0x00},
3743 /* Analog input/passthru */
3744 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
3745 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
3746 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
3747 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
3748 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
3756 static const char *alc880_models
[ALC880_MODEL_LAST
] = {
3757 [ALC880_3ST
] = "3stack",
3758 [ALC880_TCL_S700
] = "tcl",
3759 [ALC880_3ST_DIG
] = "3stack-digout",
3760 [ALC880_CLEVO
] = "clevo",
3761 [ALC880_5ST
] = "5stack",
3762 [ALC880_5ST_DIG
] = "5stack-digout",
3763 [ALC880_W810
] = "w810",
3764 [ALC880_Z71V
] = "z71v",
3765 [ALC880_6ST
] = "6stack",
3766 [ALC880_6ST_DIG
] = "6stack-digout",
3767 [ALC880_ASUS
] = "asus",
3768 [ALC880_ASUS_W1V
] = "asus-w1v",
3769 [ALC880_ASUS_DIG
] = "asus-dig",
3770 [ALC880_ASUS_DIG2
] = "asus-dig2",
3771 [ALC880_UNIWILL_DIG
] = "uniwill",
3772 [ALC880_UNIWILL_P53
] = "uniwill-p53",
3773 [ALC880_FUJITSU
] = "fujitsu",
3774 [ALC880_F1734
] = "F1734",
3776 [ALC880_LG_LW
] = "lg-lw",
3777 [ALC880_MEDION_RIM
] = "medion",
3778 #ifdef CONFIG_SND_DEBUG
3779 [ALC880_TEST
] = "test",
3781 [ALC880_AUTO
] = "auto",
3784 static struct snd_pci_quirk alc880_cfg_tbl
[] = {
3785 SND_PCI_QUIRK(0x1019, 0x0f69, "Coeus G610P", ALC880_W810
),
3786 SND_PCI_QUIRK(0x1019, 0xa880, "ECS", ALC880_5ST_DIG
),
3787 SND_PCI_QUIRK(0x1019, 0xa884, "Acer APFV", ALC880_6ST
),
3788 SND_PCI_QUIRK(0x1025, 0x0070, "ULI", ALC880_3ST_DIG
),
3789 SND_PCI_QUIRK(0x1025, 0x0077, "ULI", ALC880_6ST_DIG
),
3790 SND_PCI_QUIRK(0x1025, 0x0078, "ULI", ALC880_6ST_DIG
),
3791 SND_PCI_QUIRK(0x1025, 0x0087, "ULI", ALC880_6ST_DIG
),
3792 SND_PCI_QUIRK(0x1025, 0xe309, "ULI", ALC880_3ST_DIG
),
3793 SND_PCI_QUIRK(0x1025, 0xe310, "ULI", ALC880_3ST
),
3794 SND_PCI_QUIRK(0x1039, 0x1234, NULL
, ALC880_6ST_DIG
),
3795 SND_PCI_QUIRK(0x103c, 0x2a09, "HP", ALC880_5ST
),
3796 SND_PCI_QUIRK(0x1043, 0x10b3, "ASUS W1V", ALC880_ASUS_W1V
),
3797 SND_PCI_QUIRK(0x1043, 0x10c2, "ASUS W6A", ALC880_ASUS_DIG
),
3798 SND_PCI_QUIRK(0x1043, 0x10c3, "ASUS Wxx", ALC880_ASUS_DIG
),
3799 SND_PCI_QUIRK(0x1043, 0x1113, "ASUS", ALC880_ASUS_DIG
),
3800 SND_PCI_QUIRK(0x1043, 0x1123, "ASUS", ALC880_ASUS_DIG
),
3801 SND_PCI_QUIRK(0x1043, 0x1173, "ASUS", ALC880_ASUS_DIG
),
3802 SND_PCI_QUIRK(0x1043, 0x1964, "ASUS Z71V", ALC880_Z71V
),
3803 /* SND_PCI_QUIRK(0x1043, 0x1964, "ASUS", ALC880_ASUS_DIG), */
3804 SND_PCI_QUIRK(0x1043, 0x1973, "ASUS", ALC880_ASUS_DIG
),
3805 SND_PCI_QUIRK(0x1043, 0x19b3, "ASUS", ALC880_ASUS_DIG
),
3806 SND_PCI_QUIRK(0x1043, 0x814e, "ASUS P5GD1 w/SPDIF", ALC880_6ST_DIG
),
3807 SND_PCI_QUIRK(0x1043, 0x8181, "ASUS P4GPL", ALC880_ASUS_DIG
),
3808 SND_PCI_QUIRK(0x1043, 0x8196, "ASUS P5GD1", ALC880_6ST
),
3809 SND_PCI_QUIRK(0x1043, 0x81b4, "ASUS", ALC880_6ST
),
3810 SND_PCI_QUIRK_VENDOR(0x1043, "ASUS", ALC880_ASUS
), /* default ASUS */
3811 SND_PCI_QUIRK(0x104d, 0x81a0, "Sony", ALC880_3ST
),
3812 SND_PCI_QUIRK(0x104d, 0x81d6, "Sony", ALC880_3ST
),
3813 SND_PCI_QUIRK(0x107b, 0x3032, "Gateway", ALC880_5ST
),
3814 SND_PCI_QUIRK(0x107b, 0x3033, "Gateway", ALC880_5ST
),
3815 SND_PCI_QUIRK(0x107b, 0x4039, "Gateway", ALC880_5ST
),
3816 SND_PCI_QUIRK(0x1297, 0xc790, "Shuttle ST20G5", ALC880_6ST_DIG
),
3817 SND_PCI_QUIRK(0x1458, 0xa102, "Gigabyte K8", ALC880_6ST_DIG
),
3818 SND_PCI_QUIRK(0x1462, 0x1150, "MSI", ALC880_6ST_DIG
),
3819 SND_PCI_QUIRK(0x1509, 0x925d, "FIC P4M", ALC880_6ST_DIG
),
3820 SND_PCI_QUIRK(0x1558, 0x0520, "Clevo m520G", ALC880_CLEVO
),
3821 SND_PCI_QUIRK(0x1558, 0x0660, "Clevo m655n", ALC880_CLEVO
),
3822 SND_PCI_QUIRK(0x1558, 0x5401, "ASUS", ALC880_ASUS_DIG2
),
3823 SND_PCI_QUIRK(0x1565, 0x8202, "Biostar", ALC880_5ST_DIG
),
3824 SND_PCI_QUIRK(0x1584, 0x9050, "Uniwill", ALC880_UNIWILL_DIG
),
3825 SND_PCI_QUIRK(0x1584, 0x9054, "Uniwlll", ALC880_F1734
),
3826 SND_PCI_QUIRK(0x1584, 0x9070, "Uniwill", ALC880_UNIWILL
),
3827 SND_PCI_QUIRK(0x1584, 0x9077, "Uniwill P53", ALC880_UNIWILL_P53
),
3828 SND_PCI_QUIRK(0x161f, 0x203d, "W810", ALC880_W810
),
3829 SND_PCI_QUIRK(0x161f, 0x205d, "Medion Rim 2150", ALC880_MEDION_RIM
),
3830 SND_PCI_QUIRK(0x1695, 0x400d, "EPoX", ALC880_5ST_DIG
),
3831 SND_PCI_QUIRK(0x1695, 0x4012, "EPox EP-5LDA", ALC880_5ST_DIG
),
3832 SND_PCI_QUIRK(0x1734, 0x107c, "FSC F1734", ALC880_F1734
),
3833 SND_PCI_QUIRK(0x1734, 0x1094, "FSC Amilo M1451G", ALC880_FUJITSU
),
3834 SND_PCI_QUIRK(0x1734, 0x10ac, "FSC", ALC880_UNIWILL
),
3835 SND_PCI_QUIRK(0x1734, 0x10b0, "Fujitsu", ALC880_FUJITSU
),
3836 SND_PCI_QUIRK(0x1854, 0x0018, "LG LW20", ALC880_LG_LW
),
3837 SND_PCI_QUIRK(0x1854, 0x003b, "LG", ALC880_LG
),
3838 SND_PCI_QUIRK(0x1854, 0x0068, "LG w1", ALC880_LG
),
3839 SND_PCI_QUIRK(0x1854, 0x0077, "LG LW25", ALC880_LG_LW
),
3840 SND_PCI_QUIRK(0x19db, 0x4188, "TCL S700", ALC880_TCL_S700
),
3841 SND_PCI_QUIRK(0x2668, 0x8086, NULL
, ALC880_6ST_DIG
), /* broken BIOS */
3842 SND_PCI_QUIRK(0x8086, 0x2668, NULL
, ALC880_6ST_DIG
),
3843 SND_PCI_QUIRK(0x8086, 0xa100, "Intel mobo", ALC880_5ST_DIG
),
3844 SND_PCI_QUIRK(0x8086, 0xd400, "Intel mobo", ALC880_5ST_DIG
),
3845 SND_PCI_QUIRK(0x8086, 0xd401, "Intel mobo", ALC880_5ST_DIG
),
3846 SND_PCI_QUIRK(0x8086, 0xd402, "Intel mobo", ALC880_3ST_DIG
),
3847 SND_PCI_QUIRK(0x8086, 0xe224, "Intel mobo", ALC880_5ST_DIG
),
3848 SND_PCI_QUIRK(0x8086, 0xe305, "Intel mobo", ALC880_3ST_DIG
),
3849 SND_PCI_QUIRK(0x8086, 0xe308, "Intel mobo", ALC880_3ST_DIG
),
3850 SND_PCI_QUIRK(0x8086, 0xe400, "Intel mobo", ALC880_5ST_DIG
),
3851 SND_PCI_QUIRK(0x8086, 0xe401, "Intel mobo", ALC880_5ST_DIG
),
3852 SND_PCI_QUIRK(0x8086, 0xe402, "Intel mobo", ALC880_5ST_DIG
),
3854 SND_PCI_QUIRK_VENDOR(0x8086, "Intel mobo", ALC880_3ST
),
3855 SND_PCI_QUIRK(0xa0a0, 0x0560, "AOpen i915GMm-HFS", ALC880_5ST_DIG
),
3856 SND_PCI_QUIRK(0xe803, 0x1019, NULL
, ALC880_6ST_DIG
),
3861 * ALC880 codec presets
3863 static struct alc_config_preset alc880_presets
[] = {
3865 .mixers
= { alc880_three_stack_mixer
},
3866 .init_verbs
= { alc880_volume_init_verbs
,
3867 alc880_pin_3stack_init_verbs
},
3868 .num_dacs
= ARRAY_SIZE(alc880_dac_nids
),
3869 .dac_nids
= alc880_dac_nids
,
3870 .num_channel_mode
= ARRAY_SIZE(alc880_threestack_modes
),
3871 .channel_mode
= alc880_threestack_modes
,
3873 .input_mux
= &alc880_capture_source
,
3875 [ALC880_3ST_DIG
] = {
3876 .mixers
= { alc880_three_stack_mixer
},
3877 .init_verbs
= { alc880_volume_init_verbs
,
3878 alc880_pin_3stack_init_verbs
},
3879 .num_dacs
= ARRAY_SIZE(alc880_dac_nids
),
3880 .dac_nids
= alc880_dac_nids
,
3881 .dig_out_nid
= ALC880_DIGOUT_NID
,
3882 .num_channel_mode
= ARRAY_SIZE(alc880_threestack_modes
),
3883 .channel_mode
= alc880_threestack_modes
,
3885 .input_mux
= &alc880_capture_source
,
3887 [ALC880_TCL_S700
] = {
3888 .mixers
= { alc880_tcl_s700_mixer
},
3889 .init_verbs
= { alc880_volume_init_verbs
,
3890 alc880_pin_tcl_S700_init_verbs
,
3891 alc880_gpio2_init_verbs
},
3892 .num_dacs
= ARRAY_SIZE(alc880_dac_nids
),
3893 .dac_nids
= alc880_dac_nids
,
3894 .adc_nids
= alc880_adc_nids_alt
, /* FIXME: correct? */
3895 .num_adc_nids
= 1, /* single ADC */
3897 .num_channel_mode
= ARRAY_SIZE(alc880_2_jack_modes
),
3898 .channel_mode
= alc880_2_jack_modes
,
3899 .input_mux
= &alc880_capture_source
,
3902 .mixers
= { alc880_three_stack_mixer
,
3903 alc880_five_stack_mixer
},
3904 .init_verbs
= { alc880_volume_init_verbs
,
3905 alc880_pin_5stack_init_verbs
},
3906 .num_dacs
= ARRAY_SIZE(alc880_dac_nids
),
3907 .dac_nids
= alc880_dac_nids
,
3908 .num_channel_mode
= ARRAY_SIZE(alc880_fivestack_modes
),
3909 .channel_mode
= alc880_fivestack_modes
,
3910 .input_mux
= &alc880_capture_source
,
3912 [ALC880_5ST_DIG
] = {
3913 .mixers
= { alc880_three_stack_mixer
,
3914 alc880_five_stack_mixer
},
3915 .init_verbs
= { alc880_volume_init_verbs
,
3916 alc880_pin_5stack_init_verbs
},
3917 .num_dacs
= ARRAY_SIZE(alc880_dac_nids
),
3918 .dac_nids
= alc880_dac_nids
,
3919 .dig_out_nid
= ALC880_DIGOUT_NID
,
3920 .num_channel_mode
= ARRAY_SIZE(alc880_fivestack_modes
),
3921 .channel_mode
= alc880_fivestack_modes
,
3922 .input_mux
= &alc880_capture_source
,
3925 .mixers
= { alc880_six_stack_mixer
},
3926 .init_verbs
= { alc880_volume_init_verbs
,
3927 alc880_pin_6stack_init_verbs
},
3928 .num_dacs
= ARRAY_SIZE(alc880_6st_dac_nids
),
3929 .dac_nids
= alc880_6st_dac_nids
,
3930 .num_channel_mode
= ARRAY_SIZE(alc880_sixstack_modes
),
3931 .channel_mode
= alc880_sixstack_modes
,
3932 .input_mux
= &alc880_6stack_capture_source
,
3934 [ALC880_6ST_DIG
] = {
3935 .mixers
= { alc880_six_stack_mixer
},
3936 .init_verbs
= { alc880_volume_init_verbs
,
3937 alc880_pin_6stack_init_verbs
},
3938 .num_dacs
= ARRAY_SIZE(alc880_6st_dac_nids
),
3939 .dac_nids
= alc880_6st_dac_nids
,
3940 .dig_out_nid
= ALC880_DIGOUT_NID
,
3941 .num_channel_mode
= ARRAY_SIZE(alc880_sixstack_modes
),
3942 .channel_mode
= alc880_sixstack_modes
,
3943 .input_mux
= &alc880_6stack_capture_source
,
3946 .mixers
= { alc880_w810_base_mixer
},
3947 .init_verbs
= { alc880_volume_init_verbs
,
3948 alc880_pin_w810_init_verbs
,
3949 alc880_gpio2_init_verbs
},
3950 .num_dacs
= ARRAY_SIZE(alc880_w810_dac_nids
),
3951 .dac_nids
= alc880_w810_dac_nids
,
3952 .dig_out_nid
= ALC880_DIGOUT_NID
,
3953 .num_channel_mode
= ARRAY_SIZE(alc880_w810_modes
),
3954 .channel_mode
= alc880_w810_modes
,
3955 .input_mux
= &alc880_capture_source
,
3958 .mixers
= { alc880_z71v_mixer
},
3959 .init_verbs
= { alc880_volume_init_verbs
,
3960 alc880_pin_z71v_init_verbs
},
3961 .num_dacs
= ARRAY_SIZE(alc880_z71v_dac_nids
),
3962 .dac_nids
= alc880_z71v_dac_nids
,
3963 .dig_out_nid
= ALC880_DIGOUT_NID
,
3965 .num_channel_mode
= ARRAY_SIZE(alc880_2_jack_modes
),
3966 .channel_mode
= alc880_2_jack_modes
,
3967 .input_mux
= &alc880_capture_source
,
3970 .mixers
= { alc880_f1734_mixer
},
3971 .init_verbs
= { alc880_volume_init_verbs
,
3972 alc880_pin_f1734_init_verbs
},
3973 .num_dacs
= ARRAY_SIZE(alc880_f1734_dac_nids
),
3974 .dac_nids
= alc880_f1734_dac_nids
,
3976 .num_channel_mode
= ARRAY_SIZE(alc880_2_jack_modes
),
3977 .channel_mode
= alc880_2_jack_modes
,
3978 .input_mux
= &alc880_f1734_capture_source
,
3979 .unsol_event
= alc880_uniwill_p53_unsol_event
,
3980 .init_hook
= alc880_uniwill_p53_init_hook
,
3983 .mixers
= { alc880_asus_mixer
},
3984 .init_verbs
= { alc880_volume_init_verbs
,
3985 alc880_pin_asus_init_verbs
,
3986 alc880_gpio1_init_verbs
},
3987 .num_dacs
= ARRAY_SIZE(alc880_asus_dac_nids
),
3988 .dac_nids
= alc880_asus_dac_nids
,
3989 .num_channel_mode
= ARRAY_SIZE(alc880_asus_modes
),
3990 .channel_mode
= alc880_asus_modes
,
3992 .input_mux
= &alc880_capture_source
,
3994 [ALC880_ASUS_DIG
] = {
3995 .mixers
= { alc880_asus_mixer
},
3996 .init_verbs
= { alc880_volume_init_verbs
,
3997 alc880_pin_asus_init_verbs
,
3998 alc880_gpio1_init_verbs
},
3999 .num_dacs
= ARRAY_SIZE(alc880_asus_dac_nids
),
4000 .dac_nids
= alc880_asus_dac_nids
,
4001 .dig_out_nid
= ALC880_DIGOUT_NID
,
4002 .num_channel_mode
= ARRAY_SIZE(alc880_asus_modes
),
4003 .channel_mode
= alc880_asus_modes
,
4005 .input_mux
= &alc880_capture_source
,
4007 [ALC880_ASUS_DIG2
] = {
4008 .mixers
= { alc880_asus_mixer
},
4009 .init_verbs
= { alc880_volume_init_verbs
,
4010 alc880_pin_asus_init_verbs
,
4011 alc880_gpio2_init_verbs
}, /* use GPIO2 */
4012 .num_dacs
= ARRAY_SIZE(alc880_asus_dac_nids
),
4013 .dac_nids
= alc880_asus_dac_nids
,
4014 .dig_out_nid
= ALC880_DIGOUT_NID
,
4015 .num_channel_mode
= ARRAY_SIZE(alc880_asus_modes
),
4016 .channel_mode
= alc880_asus_modes
,
4018 .input_mux
= &alc880_capture_source
,
4020 [ALC880_ASUS_W1V
] = {
4021 .mixers
= { alc880_asus_mixer
, alc880_asus_w1v_mixer
},
4022 .init_verbs
= { alc880_volume_init_verbs
,
4023 alc880_pin_asus_init_verbs
,
4024 alc880_gpio1_init_verbs
},
4025 .num_dacs
= ARRAY_SIZE(alc880_asus_dac_nids
),
4026 .dac_nids
= alc880_asus_dac_nids
,
4027 .dig_out_nid
= ALC880_DIGOUT_NID
,
4028 .num_channel_mode
= ARRAY_SIZE(alc880_asus_modes
),
4029 .channel_mode
= alc880_asus_modes
,
4031 .input_mux
= &alc880_capture_source
,
4033 [ALC880_UNIWILL_DIG
] = {
4034 .mixers
= { alc880_asus_mixer
},
4035 .init_verbs
= { alc880_volume_init_verbs
,
4036 alc880_pin_asus_init_verbs
},
4037 .num_dacs
= ARRAY_SIZE(alc880_asus_dac_nids
),
4038 .dac_nids
= alc880_asus_dac_nids
,
4039 .dig_out_nid
= ALC880_DIGOUT_NID
,
4040 .num_channel_mode
= ARRAY_SIZE(alc880_asus_modes
),
4041 .channel_mode
= alc880_asus_modes
,
4043 .input_mux
= &alc880_capture_source
,
4045 [ALC880_UNIWILL
] = {
4046 .mixers
= { alc880_uniwill_mixer
},
4047 .init_verbs
= { alc880_volume_init_verbs
,
4048 alc880_uniwill_init_verbs
},
4049 .num_dacs
= ARRAY_SIZE(alc880_asus_dac_nids
),
4050 .dac_nids
= alc880_asus_dac_nids
,
4051 .dig_out_nid
= ALC880_DIGOUT_NID
,
4052 .num_channel_mode
= ARRAY_SIZE(alc880_threestack_modes
),
4053 .channel_mode
= alc880_threestack_modes
,
4055 .input_mux
= &alc880_capture_source
,
4056 .unsol_event
= alc880_uniwill_unsol_event
,
4057 .init_hook
= alc880_uniwill_init_hook
,
4059 [ALC880_UNIWILL_P53
] = {
4060 .mixers
= { alc880_uniwill_p53_mixer
},
4061 .init_verbs
= { alc880_volume_init_verbs
,
4062 alc880_uniwill_p53_init_verbs
},
4063 .num_dacs
= ARRAY_SIZE(alc880_asus_dac_nids
),
4064 .dac_nids
= alc880_asus_dac_nids
,
4065 .num_channel_mode
= ARRAY_SIZE(alc880_w810_modes
),
4066 .channel_mode
= alc880_threestack_modes
,
4067 .input_mux
= &alc880_capture_source
,
4068 .unsol_event
= alc880_uniwill_p53_unsol_event
,
4069 .init_hook
= alc880_uniwill_p53_init_hook
,
4071 [ALC880_FUJITSU
] = {
4072 .mixers
= { alc880_fujitsu_mixer
},
4073 .init_verbs
= { alc880_volume_init_verbs
,
4074 alc880_uniwill_p53_init_verbs
,
4075 alc880_beep_init_verbs
},
4076 .num_dacs
= ARRAY_SIZE(alc880_dac_nids
),
4077 .dac_nids
= alc880_dac_nids
,
4078 .dig_out_nid
= ALC880_DIGOUT_NID
,
4079 .num_channel_mode
= ARRAY_SIZE(alc880_2_jack_modes
),
4080 .channel_mode
= alc880_2_jack_modes
,
4081 .input_mux
= &alc880_capture_source
,
4082 .unsol_event
= alc880_uniwill_p53_unsol_event
,
4083 .init_hook
= alc880_uniwill_p53_init_hook
,
4086 .mixers
= { alc880_three_stack_mixer
},
4087 .init_verbs
= { alc880_volume_init_verbs
,
4088 alc880_pin_clevo_init_verbs
},
4089 .num_dacs
= ARRAY_SIZE(alc880_dac_nids
),
4090 .dac_nids
= alc880_dac_nids
,
4092 .num_channel_mode
= ARRAY_SIZE(alc880_threestack_modes
),
4093 .channel_mode
= alc880_threestack_modes
,
4095 .input_mux
= &alc880_capture_source
,
4098 .mixers
= { alc880_lg_mixer
},
4099 .init_verbs
= { alc880_volume_init_verbs
,
4100 alc880_lg_init_verbs
},
4101 .num_dacs
= ARRAY_SIZE(alc880_lg_dac_nids
),
4102 .dac_nids
= alc880_lg_dac_nids
,
4103 .dig_out_nid
= ALC880_DIGOUT_NID
,
4104 .num_channel_mode
= ARRAY_SIZE(alc880_lg_ch_modes
),
4105 .channel_mode
= alc880_lg_ch_modes
,
4107 .input_mux
= &alc880_lg_capture_source
,
4108 .unsol_event
= alc_automute_amp_unsol_event
,
4109 .init_hook
= alc880_lg_init_hook
,
4110 #ifdef CONFIG_SND_HDA_POWER_SAVE
4111 .loopbacks
= alc880_lg_loopbacks
,
4115 .mixers
= { alc880_lg_lw_mixer
},
4116 .init_verbs
= { alc880_volume_init_verbs
,
4117 alc880_lg_lw_init_verbs
},
4118 .num_dacs
= ARRAY_SIZE(alc880_dac_nids
),
4119 .dac_nids
= alc880_dac_nids
,
4120 .dig_out_nid
= ALC880_DIGOUT_NID
,
4121 .num_channel_mode
= ARRAY_SIZE(alc880_lg_lw_modes
),
4122 .channel_mode
= alc880_lg_lw_modes
,
4123 .input_mux
= &alc880_lg_lw_capture_source
,
4124 .unsol_event
= alc_automute_amp_unsol_event
,
4125 .init_hook
= alc880_lg_lw_init_hook
,
4127 [ALC880_MEDION_RIM
] = {
4128 .mixers
= { alc880_medion_rim_mixer
},
4129 .init_verbs
= { alc880_volume_init_verbs
,
4130 alc880_medion_rim_init_verbs
,
4131 alc_gpio2_init_verbs
},
4132 .num_dacs
= ARRAY_SIZE(alc880_dac_nids
),
4133 .dac_nids
= alc880_dac_nids
,
4134 .dig_out_nid
= ALC880_DIGOUT_NID
,
4135 .num_channel_mode
= ARRAY_SIZE(alc880_2_jack_modes
),
4136 .channel_mode
= alc880_2_jack_modes
,
4137 .input_mux
= &alc880_medion_rim_capture_source
,
4138 .unsol_event
= alc880_medion_rim_unsol_event
,
4139 .init_hook
= alc880_medion_rim_init_hook
,
4141 #ifdef CONFIG_SND_DEBUG
4143 .mixers
= { alc880_test_mixer
},
4144 .init_verbs
= { alc880_test_init_verbs
},
4145 .num_dacs
= ARRAY_SIZE(alc880_test_dac_nids
),
4146 .dac_nids
= alc880_test_dac_nids
,
4147 .dig_out_nid
= ALC880_DIGOUT_NID
,
4148 .num_channel_mode
= ARRAY_SIZE(alc880_test_modes
),
4149 .channel_mode
= alc880_test_modes
,
4150 .input_mux
= &alc880_test_capture_source
,
4156 * Automatic parse of I/O pins from the BIOS configuration
4161 ALC_CTL_WIDGET_MUTE
,
4164 static struct snd_kcontrol_new alc880_control_templates
[] = {
4165 HDA_CODEC_VOLUME(NULL
, 0, 0, 0),
4166 HDA_CODEC_MUTE(NULL
, 0, 0, 0),
4167 HDA_BIND_MUTE(NULL
, 0, 0, 0),
4170 /* add dynamic controls */
4171 static int add_control(struct alc_spec
*spec
, int type
, const char *name
,
4174 struct snd_kcontrol_new
*knew
;
4176 snd_array_init(&spec
->kctls
, sizeof(*knew
), 32);
4177 knew
= snd_array_new(&spec
->kctls
);
4180 *knew
= alc880_control_templates
[type
];
4181 knew
->name
= kstrdup(name
, GFP_KERNEL
);
4184 knew
->private_value
= val
;
4188 #define alc880_is_fixed_pin(nid) ((nid) >= 0x14 && (nid) <= 0x17)
4189 #define alc880_fixed_pin_idx(nid) ((nid) - 0x14)
4190 #define alc880_is_multi_pin(nid) ((nid) >= 0x18)
4191 #define alc880_multi_pin_idx(nid) ((nid) - 0x18)
4192 #define alc880_is_input_pin(nid) ((nid) >= 0x18)
4193 #define alc880_input_pin_idx(nid) ((nid) - 0x18)
4194 #define alc880_idx_to_dac(nid) ((nid) + 0x02)
4195 #define alc880_dac_to_idx(nid) ((nid) - 0x02)
4196 #define alc880_idx_to_mixer(nid) ((nid) + 0x0c)
4197 #define alc880_idx_to_selector(nid) ((nid) + 0x10)
4198 #define ALC880_PIN_CD_NID 0x1c
4200 /* fill in the dac_nids table from the parsed pin configuration */
4201 static int alc880_auto_fill_dac_nids(struct alc_spec
*spec
,
4202 const struct auto_pin_cfg
*cfg
)
4208 memset(assigned
, 0, sizeof(assigned
));
4209 spec
->multiout
.dac_nids
= spec
->private_dac_nids
;
4211 /* check the pins hardwired to audio widget */
4212 for (i
= 0; i
< cfg
->line_outs
; i
++) {
4213 nid
= cfg
->line_out_pins
[i
];
4214 if (alc880_is_fixed_pin(nid
)) {
4215 int idx
= alc880_fixed_pin_idx(nid
);
4216 spec
->multiout
.dac_nids
[i
] = alc880_idx_to_dac(idx
);
4220 /* left pins can be connect to any audio widget */
4221 for (i
= 0; i
< cfg
->line_outs
; i
++) {
4222 nid
= cfg
->line_out_pins
[i
];
4223 if (alc880_is_fixed_pin(nid
))
4225 /* search for an empty channel */
4226 for (j
= 0; j
< cfg
->line_outs
; j
++) {
4228 spec
->multiout
.dac_nids
[i
] =
4229 alc880_idx_to_dac(j
);
4235 spec
->multiout
.num_dacs
= cfg
->line_outs
;
4239 /* add playback controls from the parsed DAC table */
4240 static int alc880_auto_create_multi_out_ctls(struct alc_spec
*spec
,
4241 const struct auto_pin_cfg
*cfg
)
4244 static const char *chname
[4] = {
4245 "Front", "Surround", NULL
/*CLFE*/, "Side"
4250 for (i
= 0; i
< cfg
->line_outs
; i
++) {
4251 if (!spec
->multiout
.dac_nids
[i
])
4253 nid
= alc880_idx_to_mixer(alc880_dac_to_idx(spec
->multiout
.dac_nids
[i
]));
4256 err
= add_control(spec
, ALC_CTL_WIDGET_VOL
,
4257 "Center Playback Volume",
4258 HDA_COMPOSE_AMP_VAL(nid
, 1, 0,
4262 err
= add_control(spec
, ALC_CTL_WIDGET_VOL
,
4263 "LFE Playback Volume",
4264 HDA_COMPOSE_AMP_VAL(nid
, 2, 0,
4268 err
= add_control(spec
, ALC_CTL_BIND_MUTE
,
4269 "Center Playback Switch",
4270 HDA_COMPOSE_AMP_VAL(nid
, 1, 2,
4274 err
= add_control(spec
, ALC_CTL_BIND_MUTE
,
4275 "LFE Playback Switch",
4276 HDA_COMPOSE_AMP_VAL(nid
, 2, 2,
4281 sprintf(name
, "%s Playback Volume", chname
[i
]);
4282 err
= add_control(spec
, ALC_CTL_WIDGET_VOL
, name
,
4283 HDA_COMPOSE_AMP_VAL(nid
, 3, 0,
4287 sprintf(name
, "%s Playback Switch", chname
[i
]);
4288 err
= add_control(spec
, ALC_CTL_BIND_MUTE
, name
,
4289 HDA_COMPOSE_AMP_VAL(nid
, 3, 2,
4298 /* add playback controls for speaker and HP outputs */
4299 static int alc880_auto_create_extra_out(struct alc_spec
*spec
, hda_nid_t pin
,
4309 if (alc880_is_fixed_pin(pin
)) {
4310 nid
= alc880_idx_to_dac(alc880_fixed_pin_idx(pin
));
4311 /* specify the DAC as the extra output */
4312 if (!spec
->multiout
.hp_nid
)
4313 spec
->multiout
.hp_nid
= nid
;
4315 spec
->multiout
.extra_out_nid
[0] = nid
;
4316 /* control HP volume/switch on the output mixer amp */
4317 nid
= alc880_idx_to_mixer(alc880_fixed_pin_idx(pin
));
4318 sprintf(name
, "%s Playback Volume", pfx
);
4319 err
= add_control(spec
, ALC_CTL_WIDGET_VOL
, name
,
4320 HDA_COMPOSE_AMP_VAL(nid
, 3, 0, HDA_OUTPUT
));
4323 sprintf(name
, "%s Playback Switch", pfx
);
4324 err
= add_control(spec
, ALC_CTL_BIND_MUTE
, name
,
4325 HDA_COMPOSE_AMP_VAL(nid
, 3, 2, HDA_INPUT
));
4328 } else if (alc880_is_multi_pin(pin
)) {
4329 /* set manual connection */
4330 /* we have only a switch on HP-out PIN */
4331 sprintf(name
, "%s Playback Switch", pfx
);
4332 err
= add_control(spec
, ALC_CTL_WIDGET_MUTE
, name
,
4333 HDA_COMPOSE_AMP_VAL(pin
, 3, 0, HDA_OUTPUT
));
4340 /* create input playback/capture controls for the given pin */
4341 static int new_analog_input(struct alc_spec
*spec
, hda_nid_t pin
,
4342 const char *ctlname
,
4343 int idx
, hda_nid_t mix_nid
)
4348 sprintf(name
, "%s Playback Volume", ctlname
);
4349 err
= add_control(spec
, ALC_CTL_WIDGET_VOL
, name
,
4350 HDA_COMPOSE_AMP_VAL(mix_nid
, 3, idx
, HDA_INPUT
));
4353 sprintf(name
, "%s Playback Switch", ctlname
);
4354 err
= add_control(spec
, ALC_CTL_WIDGET_MUTE
, name
,
4355 HDA_COMPOSE_AMP_VAL(mix_nid
, 3, idx
, HDA_INPUT
));
4361 /* create playback/capture controls for input pins */
4362 static int alc880_auto_create_analog_input_ctls(struct alc_spec
*spec
,
4363 const struct auto_pin_cfg
*cfg
)
4365 struct hda_input_mux
*imux
= &spec
->private_imux
[0];
4368 for (i
= 0; i
< AUTO_PIN_LAST
; i
++) {
4369 if (alc880_is_input_pin(cfg
->input_pins
[i
])) {
4370 idx
= alc880_input_pin_idx(cfg
->input_pins
[i
]);
4371 err
= new_analog_input(spec
, cfg
->input_pins
[i
],
4372 auto_pin_cfg_labels
[i
],
4376 imux
->items
[imux
->num_items
].label
=
4377 auto_pin_cfg_labels
[i
];
4378 imux
->items
[imux
->num_items
].index
=
4379 alc880_input_pin_idx(cfg
->input_pins
[i
]);
4386 static void alc_set_pin_output(struct hda_codec
*codec
, hda_nid_t nid
,
4387 unsigned int pin_type
)
4389 snd_hda_codec_write(codec
, nid
, 0, AC_VERB_SET_PIN_WIDGET_CONTROL
,
4392 snd_hda_codec_write(codec
, nid
, 0, AC_VERB_SET_AMP_GAIN_MUTE
,
4396 static void alc880_auto_set_output_and_unmute(struct hda_codec
*codec
,
4397 hda_nid_t nid
, int pin_type
,
4400 alc_set_pin_output(codec
, nid
, pin_type
);
4401 /* need the manual connection? */
4402 if (alc880_is_multi_pin(nid
)) {
4403 struct alc_spec
*spec
= codec
->spec
;
4404 int idx
= alc880_multi_pin_idx(nid
);
4405 snd_hda_codec_write(codec
, alc880_idx_to_selector(idx
), 0,
4406 AC_VERB_SET_CONNECT_SEL
,
4407 alc880_dac_to_idx(spec
->multiout
.dac_nids
[dac_idx
]));
4411 static int get_pin_type(int line_out_type
)
4413 if (line_out_type
== AUTO_PIN_HP_OUT
)
4419 static void alc880_auto_init_multi_out(struct hda_codec
*codec
)
4421 struct alc_spec
*spec
= codec
->spec
;
4424 for (i
= 0; i
< spec
->autocfg
.line_outs
; i
++) {
4425 hda_nid_t nid
= spec
->autocfg
.line_out_pins
[i
];
4426 int pin_type
= get_pin_type(spec
->autocfg
.line_out_type
);
4427 alc880_auto_set_output_and_unmute(codec
, nid
, pin_type
, i
);
4431 static void alc880_auto_init_extra_out(struct hda_codec
*codec
)
4433 struct alc_spec
*spec
= codec
->spec
;
4436 pin
= spec
->autocfg
.speaker_pins
[0];
4437 if (pin
) /* connect to front */
4438 alc880_auto_set_output_and_unmute(codec
, pin
, PIN_OUT
, 0);
4439 pin
= spec
->autocfg
.hp_pins
[0];
4440 if (pin
) /* connect to front */
4441 alc880_auto_set_output_and_unmute(codec
, pin
, PIN_HP
, 0);
4444 static void alc880_auto_init_analog_input(struct hda_codec
*codec
)
4446 struct alc_spec
*spec
= codec
->spec
;
4449 for (i
= 0; i
< AUTO_PIN_LAST
; i
++) {
4450 hda_nid_t nid
= spec
->autocfg
.input_pins
[i
];
4451 if (alc880_is_input_pin(nid
)) {
4452 alc_set_input_pin(codec
, nid
, i
);
4453 if (nid
!= ALC880_PIN_CD_NID
&&
4454 (get_wcaps(codec
, nid
) & AC_WCAP_OUT_AMP
))
4455 snd_hda_codec_write(codec
, nid
, 0,
4456 AC_VERB_SET_AMP_GAIN_MUTE
,
4462 /* parse the BIOS configuration and set up the alc_spec */
4463 /* return 1 if successful, 0 if the proper config is not found,
4464 * or a negative error code
4466 static int alc880_parse_auto_config(struct hda_codec
*codec
)
4468 struct alc_spec
*spec
= codec
->spec
;
4470 static hda_nid_t alc880_ignore
[] = { 0x1d, 0 };
4472 err
= snd_hda_parse_pin_def_config(codec
, &spec
->autocfg
,
4476 if (!spec
->autocfg
.line_outs
)
4477 return 0; /* can't find valid BIOS pin config */
4479 err
= alc880_auto_fill_dac_nids(spec
, &spec
->autocfg
);
4482 err
= alc880_auto_create_multi_out_ctls(spec
, &spec
->autocfg
);
4485 err
= alc880_auto_create_extra_out(spec
,
4486 spec
->autocfg
.speaker_pins
[0],
4490 err
= alc880_auto_create_extra_out(spec
, spec
->autocfg
.hp_pins
[0],
4494 err
= alc880_auto_create_analog_input_ctls(spec
, &spec
->autocfg
);
4498 spec
->multiout
.max_channels
= spec
->multiout
.num_dacs
* 2;
4500 /* check multiple SPDIF-out (for recent codecs) */
4501 for (i
= 0; i
< spec
->autocfg
.dig_outs
; i
++) {
4503 err
= snd_hda_get_connections(codec
,
4504 spec
->autocfg
.dig_out_pins
[i
],
4508 if (dig_nid
> 0x7f) {
4509 printk(KERN_ERR
"alc880_auto: invalid dig_nid "
4510 "connection 0x%x for NID 0x%x\n", dig_nid
,
4511 spec
->autocfg
.dig_out_pins
[i
]);
4515 spec
->multiout
.dig_out_nid
= dig_nid
;
4517 spec
->multiout
.slave_dig_outs
= spec
->slave_dig_outs
;
4518 spec
->slave_dig_outs
[i
- 1] = dig_nid
;
4519 if (i
== ARRAY_SIZE(spec
->slave_dig_outs
) - 1)
4523 if (spec
->autocfg
.dig_in_pin
)
4524 spec
->dig_in_nid
= ALC880_DIGIN_NID
;
4526 if (spec
->kctls
.list
)
4527 add_mixer(spec
, spec
->kctls
.list
);
4529 add_verb(spec
, alc880_volume_init_verbs
);
4531 spec
->num_mux_defs
= 1;
4532 spec
->input_mux
= &spec
->private_imux
[0];
4534 alc_ssid_check(codec
, 0x15, 0x1b, 0x14);
4539 /* additional initialization for auto-configuration model */
4540 static void alc880_auto_init(struct hda_codec
*codec
)
4542 struct alc_spec
*spec
= codec
->spec
;
4543 alc880_auto_init_multi_out(codec
);
4544 alc880_auto_init_extra_out(codec
);
4545 alc880_auto_init_analog_input(codec
);
4546 if (spec
->unsol_event
)
4547 alc_inithook(codec
);
4550 static void set_capture_mixer(struct alc_spec
*spec
)
4552 static struct snd_kcontrol_new
*caps
[2][3] = {
4553 { alc_capture_mixer_nosrc1
,
4554 alc_capture_mixer_nosrc2
,
4555 alc_capture_mixer_nosrc3
},
4556 { alc_capture_mixer1
,
4558 alc_capture_mixer3
},
4560 if (spec
->num_adc_nids
> 0 && spec
->num_adc_nids
<= 3) {
4562 if (spec
->input_mux
&& spec
->input_mux
->num_items
> 1)
4566 spec
->cap_mixer
= caps
[mux
][spec
->num_adc_nids
- 1];
4570 #define set_beep_amp(spec, nid, idx, dir) \
4571 ((spec)->beep_amp = HDA_COMPOSE_AMP_VAL(nid, 3, idx, dir))
4574 * OK, here we have finally the patch for ALC880
4577 static int patch_alc880(struct hda_codec
*codec
)
4579 struct alc_spec
*spec
;
4583 spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
4589 board_config
= snd_hda_check_board_config(codec
, ALC880_MODEL_LAST
,
4592 if (board_config
< 0) {
4593 printk(KERN_INFO
"hda_codec: Unknown model for %s, "
4594 "trying auto-probe from BIOS...\n", codec
->chip_name
);
4595 board_config
= ALC880_AUTO
;
4598 if (board_config
== ALC880_AUTO
) {
4599 /* automatic parse from the BIOS config */
4600 err
= alc880_parse_auto_config(codec
);
4606 "hda_codec: Cannot set up configuration "
4607 "from BIOS. Using 3-stack mode...\n");
4608 board_config
= ALC880_3ST
;
4612 err
= snd_hda_attach_beep_device(codec
, 0x1);
4618 if (board_config
!= ALC880_AUTO
)
4619 setup_preset(spec
, &alc880_presets
[board_config
]);
4621 spec
->stream_analog_playback
= &alc880_pcm_analog_playback
;
4622 spec
->stream_analog_capture
= &alc880_pcm_analog_capture
;
4623 spec
->stream_analog_alt_capture
= &alc880_pcm_analog_alt_capture
;
4625 spec
->stream_digital_playback
= &alc880_pcm_digital_playback
;
4626 spec
->stream_digital_capture
= &alc880_pcm_digital_capture
;
4628 if (!spec
->adc_nids
&& spec
->input_mux
) {
4629 /* check whether NID 0x07 is valid */
4630 unsigned int wcap
= get_wcaps(codec
, alc880_adc_nids
[0]);
4632 wcap
= (wcap
& AC_WCAP_TYPE
) >> AC_WCAP_TYPE_SHIFT
;
4633 if (wcap
!= AC_WID_AUD_IN
) {
4634 spec
->adc_nids
= alc880_adc_nids_alt
;
4635 spec
->num_adc_nids
= ARRAY_SIZE(alc880_adc_nids_alt
);
4637 spec
->adc_nids
= alc880_adc_nids
;
4638 spec
->num_adc_nids
= ARRAY_SIZE(alc880_adc_nids
);
4641 set_capture_mixer(spec
);
4642 set_beep_amp(spec
, 0x0b, 0x05, HDA_INPUT
);
4644 spec
->vmaster_nid
= 0x0c;
4646 codec
->patch_ops
= alc_patch_ops
;
4647 if (board_config
== ALC880_AUTO
)
4648 spec
->init_hook
= alc880_auto_init
;
4649 #ifdef CONFIG_SND_HDA_POWER_SAVE
4650 if (!spec
->loopback
.amplist
)
4651 spec
->loopback
.amplist
= alc880_loopbacks
;
4653 codec
->proc_widget_hook
= print_realtek_coef
;
4663 static hda_nid_t alc260_dac_nids
[1] = {
4668 static hda_nid_t alc260_adc_nids
[1] = {
4673 static hda_nid_t alc260_adc_nids_alt
[1] = {
4678 /* NIDs used when simultaneous access to both ADCs makes sense. Note that
4679 * alc260_capture_mixer assumes ADC0 (nid 0x04) is the first ADC.
4681 static hda_nid_t alc260_dual_adc_nids
[2] = {
4686 #define ALC260_DIGOUT_NID 0x03
4687 #define ALC260_DIGIN_NID 0x06
4689 static struct hda_input_mux alc260_capture_source
= {
4693 { "Front Mic", 0x1 },
4699 /* On Fujitsu S702x laptops capture only makes sense from Mic/LineIn jack,
4700 * headphone jack and the internal CD lines since these are the only pins at
4701 * which audio can appear. For flexibility, also allow the option of
4702 * recording the mixer output on the second ADC (ADC0 doesn't have a
4703 * connection to the mixer output).
4705 static struct hda_input_mux alc260_fujitsu_capture_sources
[2] = {
4709 { "Mic/Line", 0x0 },
4711 { "Headphone", 0x2 },
4717 { "Mic/Line", 0x0 },
4719 { "Headphone", 0x2 },
4726 /* Acer TravelMate(/Extensa/Aspire) notebooks have similar configuration to
4727 * the Fujitsu S702x, but jacks are marked differently.
4729 static struct hda_input_mux alc260_acer_capture_sources
[2] = {
4736 { "Headphone", 0x5 },
4745 { "Headphone", 0x6 },
4751 /* Maxdata Favorit 100XS */
4752 static struct hda_input_mux alc260_favorit100_capture_sources
[2] = {
4756 { "Line/Mic", 0x0 },
4763 { "Line/Mic", 0x0 },
4771 * This is just place-holder, so there's something for alc_build_pcms to look
4772 * at when it calculates the maximum number of channels. ALC260 has no mixer
4773 * element which allows changing the channel mode, so the verb list is
4776 static struct hda_channel_mode alc260_modes
[1] = {
4781 /* Mixer combinations
4783 * basic: base_output + input + pc_beep + capture
4784 * HP: base_output + input + capture_alt
4785 * HP_3013: hp_3013 + input + capture
4786 * fujitsu: fujitsu + capture
4787 * acer: acer + capture
4790 static struct snd_kcontrol_new alc260_base_output_mixer
[] = {
4791 HDA_CODEC_VOLUME("Front Playback Volume", 0x08, 0x0, HDA_OUTPUT
),
4792 HDA_BIND_MUTE("Front Playback Switch", 0x08, 2, HDA_INPUT
),
4793 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x09, 0x0, HDA_OUTPUT
),
4794 HDA_BIND_MUTE("Headphone Playback Switch", 0x09, 2, HDA_INPUT
),
4795 HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x0a, 1, 0x0, HDA_OUTPUT
),
4796 HDA_BIND_MUTE_MONO("Mono Playback Switch", 0x0a, 1, 2, HDA_INPUT
),
4800 static struct snd_kcontrol_new alc260_input_mixer
[] = {
4801 HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT
),
4802 HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT
),
4803 HDA_CODEC_VOLUME("Line Playback Volume", 0x07, 0x02, HDA_INPUT
),
4804 HDA_CODEC_MUTE("Line Playback Switch", 0x07, 0x02, HDA_INPUT
),
4805 HDA_CODEC_VOLUME("Mic Playback Volume", 0x07, 0x0, HDA_INPUT
),
4806 HDA_CODEC_MUTE("Mic Playback Switch", 0x07, 0x0, HDA_INPUT
),
4807 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x07, 0x01, HDA_INPUT
),
4808 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x07, 0x01, HDA_INPUT
),
4812 /* update HP, line and mono out pins according to the master switch */
4813 static void alc260_hp_master_update(struct hda_codec
*codec
,
4814 hda_nid_t hp
, hda_nid_t line
,
4817 struct alc_spec
*spec
= codec
->spec
;
4818 unsigned int val
= spec
->master_sw
? PIN_HP
: 0;
4819 /* change HP and line-out pins */
4820 snd_hda_codec_write(codec
, hp
, 0, AC_VERB_SET_PIN_WIDGET_CONTROL
,
4822 snd_hda_codec_write(codec
, line
, 0, AC_VERB_SET_PIN_WIDGET_CONTROL
,
4824 /* mono (speaker) depending on the HP jack sense */
4825 val
= (val
&& !spec
->jack_present
) ? PIN_OUT
: 0;
4826 snd_hda_codec_write(codec
, mono
, 0, AC_VERB_SET_PIN_WIDGET_CONTROL
,
4830 static int alc260_hp_master_sw_get(struct snd_kcontrol
*kcontrol
,
4831 struct snd_ctl_elem_value
*ucontrol
)
4833 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
4834 struct alc_spec
*spec
= codec
->spec
;
4835 *ucontrol
->value
.integer
.value
= spec
->master_sw
;
4839 static int alc260_hp_master_sw_put(struct snd_kcontrol
*kcontrol
,
4840 struct snd_ctl_elem_value
*ucontrol
)
4842 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
4843 struct alc_spec
*spec
= codec
->spec
;
4844 int val
= !!*ucontrol
->value
.integer
.value
;
4845 hda_nid_t hp
, line
, mono
;
4847 if (val
== spec
->master_sw
)
4849 spec
->master_sw
= val
;
4850 hp
= (kcontrol
->private_value
>> 16) & 0xff;
4851 line
= (kcontrol
->private_value
>> 8) & 0xff;
4852 mono
= kcontrol
->private_value
& 0xff;
4853 alc260_hp_master_update(codec
, hp
, line
, mono
);
4857 static struct snd_kcontrol_new alc260_hp_output_mixer
[] = {
4859 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
4860 .name
= "Master Playback Switch",
4861 .info
= snd_ctl_boolean_mono_info
,
4862 .get
= alc260_hp_master_sw_get
,
4863 .put
= alc260_hp_master_sw_put
,
4864 .private_value
= (0x0f << 16) | (0x10 << 8) | 0x11
4866 HDA_CODEC_VOLUME("Front Playback Volume", 0x08, 0x0, HDA_OUTPUT
),
4867 HDA_BIND_MUTE("Front Playback Switch", 0x08, 2, HDA_INPUT
),
4868 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x09, 0x0, HDA_OUTPUT
),
4869 HDA_BIND_MUTE("Headphone Playback Switch", 0x09, 2, HDA_INPUT
),
4870 HDA_CODEC_VOLUME_MONO("Speaker Playback Volume", 0x0a, 1, 0x0,
4872 HDA_BIND_MUTE_MONO("Speaker Playback Switch", 0x0a, 1, 2, HDA_INPUT
),
4876 static struct hda_verb alc260_hp_unsol_verbs
[] = {
4877 {0x10, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
4881 static void alc260_hp_automute(struct hda_codec
*codec
)
4883 struct alc_spec
*spec
= codec
->spec
;
4884 unsigned int present
;
4886 present
= snd_hda_codec_read(codec
, 0x10, 0,
4887 AC_VERB_GET_PIN_SENSE
, 0);
4888 spec
->jack_present
= (present
& AC_PINSENSE_PRESENCE
) != 0;
4889 alc260_hp_master_update(codec
, 0x0f, 0x10, 0x11);
4892 static void alc260_hp_unsol_event(struct hda_codec
*codec
, unsigned int res
)
4894 if ((res
>> 26) == ALC880_HP_EVENT
)
4895 alc260_hp_automute(codec
);
4898 static struct snd_kcontrol_new alc260_hp_3013_mixer
[] = {
4900 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
4901 .name
= "Master Playback Switch",
4902 .info
= snd_ctl_boolean_mono_info
,
4903 .get
= alc260_hp_master_sw_get
,
4904 .put
= alc260_hp_master_sw_put
,
4905 .private_value
= (0x15 << 16) | (0x10 << 8) | 0x11
4907 HDA_CODEC_VOLUME("Front Playback Volume", 0x09, 0x0, HDA_OUTPUT
),
4908 HDA_CODEC_MUTE("Front Playback Switch", 0x10, 0x0, HDA_OUTPUT
),
4909 HDA_CODEC_VOLUME("Aux-In Playback Volume", 0x07, 0x06, HDA_INPUT
),
4910 HDA_CODEC_MUTE("Aux-In Playback Switch", 0x07, 0x06, HDA_INPUT
),
4911 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x08, 0x0, HDA_OUTPUT
),
4912 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
4913 HDA_CODEC_VOLUME_MONO("Speaker Playback Volume", 0x0a, 1, 0x0, HDA_OUTPUT
),
4914 HDA_CODEC_MUTE_MONO("Speaker Playback Switch", 0x11, 1, 0x0, HDA_OUTPUT
),
4918 static struct hda_bind_ctls alc260_dc7600_bind_master_vol
= {
4919 .ops
= &snd_hda_bind_vol
,
4921 HDA_COMPOSE_AMP_VAL(0x08, 3, 0, HDA_OUTPUT
),
4922 HDA_COMPOSE_AMP_VAL(0x09, 3, 0, HDA_OUTPUT
),
4923 HDA_COMPOSE_AMP_VAL(0x0a, 3, 0, HDA_OUTPUT
),
4928 static struct hda_bind_ctls alc260_dc7600_bind_switch
= {
4929 .ops
= &snd_hda_bind_sw
,
4931 HDA_COMPOSE_AMP_VAL(0x11, 3, 0, HDA_OUTPUT
),
4932 HDA_COMPOSE_AMP_VAL(0x15, 3, 0, HDA_OUTPUT
),
4937 static struct snd_kcontrol_new alc260_hp_dc7600_mixer
[] = {
4938 HDA_BIND_VOL("Master Playback Volume", &alc260_dc7600_bind_master_vol
),
4939 HDA_BIND_SW("LineOut Playback Switch", &alc260_dc7600_bind_switch
),
4940 HDA_CODEC_MUTE("Speaker Playback Switch", 0x0f, 0x0, HDA_OUTPUT
),
4941 HDA_CODEC_MUTE("Headphone Playback Switch", 0x10, 0x0, HDA_OUTPUT
),
4945 static struct hda_verb alc260_hp_3013_unsol_verbs
[] = {
4946 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
4950 static void alc260_hp_3013_automute(struct hda_codec
*codec
)
4952 struct alc_spec
*spec
= codec
->spec
;
4953 unsigned int present
;
4955 present
= snd_hda_codec_read(codec
, 0x15, 0,
4956 AC_VERB_GET_PIN_SENSE
, 0);
4957 spec
->jack_present
= (present
& AC_PINSENSE_PRESENCE
) != 0;
4958 alc260_hp_master_update(codec
, 0x15, 0x10, 0x11);
4961 static void alc260_hp_3013_unsol_event(struct hda_codec
*codec
,
4964 if ((res
>> 26) == ALC880_HP_EVENT
)
4965 alc260_hp_3013_automute(codec
);
4968 static void alc260_hp_3012_automute(struct hda_codec
*codec
)
4970 unsigned int present
, bits
;
4972 present
= snd_hda_codec_read(codec
, 0x10, 0,
4973 AC_VERB_GET_PIN_SENSE
, 0) & AC_PINSENSE_PRESENCE
;
4975 bits
= present
? 0 : PIN_OUT
;
4976 snd_hda_codec_write(codec
, 0x0f, 0, AC_VERB_SET_PIN_WIDGET_CONTROL
,
4978 snd_hda_codec_write(codec
, 0x11, 0, AC_VERB_SET_PIN_WIDGET_CONTROL
,
4980 snd_hda_codec_write(codec
, 0x15, 0, AC_VERB_SET_PIN_WIDGET_CONTROL
,
4984 static void alc260_hp_3012_unsol_event(struct hda_codec
*codec
,
4987 if ((res
>> 26) == ALC880_HP_EVENT
)
4988 alc260_hp_3012_automute(codec
);
4991 /* Fujitsu S702x series laptops. ALC260 pin usage: Mic/Line jack = 0x12,
4992 * HP jack = 0x14, CD audio = 0x16, internal speaker = 0x10.
4994 static struct snd_kcontrol_new alc260_fujitsu_mixer
[] = {
4995 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x08, 0x0, HDA_OUTPUT
),
4996 HDA_BIND_MUTE("Headphone Playback Switch", 0x08, 2, HDA_INPUT
),
4997 ALC_PIN_MODE("Headphone Jack Mode", 0x14, ALC_PIN_DIR_INOUT
),
4998 HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT
),
4999 HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT
),
5000 HDA_CODEC_VOLUME("Mic/Line Playback Volume", 0x07, 0x0, HDA_INPUT
),
5001 HDA_CODEC_MUTE("Mic/Line Playback Switch", 0x07, 0x0, HDA_INPUT
),
5002 ALC_PIN_MODE("Mic/Line Jack Mode", 0x12, ALC_PIN_DIR_IN
),
5003 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x09, 0x0, HDA_OUTPUT
),
5004 HDA_BIND_MUTE("Speaker Playback Switch", 0x09, 2, HDA_INPUT
),
5008 /* Mixer for Acer TravelMate(/Extensa/Aspire) notebooks. Note that current
5009 * versions of the ALC260 don't act on requests to enable mic bias from NID
5010 * 0x0f (used to drive the headphone jack in these laptops). The ALC260
5011 * datasheet doesn't mention this restriction. At this stage it's not clear
5012 * whether this behaviour is intentional or is a hardware bug in chip
5013 * revisions available in early 2006. Therefore for now allow the
5014 * "Headphone Jack Mode" control to span all choices, but if it turns out
5015 * that the lack of mic bias for this NID is intentional we could change the
5016 * mode from ALC_PIN_DIR_INOUT to ALC_PIN_DIR_INOUT_NOMICBIAS.
5018 * In addition, Acer TravelMate(/Extensa/Aspire) notebooks in early 2006
5019 * don't appear to make the mic bias available from the "line" jack, even
5020 * though the NID used for this jack (0x14) can supply it. The theory is
5021 * that perhaps Acer have included blocking capacitors between the ALC260
5022 * and the output jack. If this turns out to be the case for all such
5023 * models the "Line Jack Mode" mode could be changed from ALC_PIN_DIR_INOUT
5024 * to ALC_PIN_DIR_INOUT_NOMICBIAS.
5026 * The C20x Tablet series have a mono internal speaker which is controlled
5027 * via the chip's Mono sum widget and pin complex, so include the necessary
5028 * controls for such models. On models without a "mono speaker" the control
5029 * won't do anything.
5031 static struct snd_kcontrol_new alc260_acer_mixer
[] = {
5032 HDA_CODEC_VOLUME("Master Playback Volume", 0x08, 0x0, HDA_OUTPUT
),
5033 HDA_BIND_MUTE("Master Playback Switch", 0x08, 2, HDA_INPUT
),
5034 ALC_PIN_MODE("Headphone Jack Mode", 0x0f, ALC_PIN_DIR_INOUT
),
5035 HDA_CODEC_VOLUME_MONO("Speaker Playback Volume", 0x0a, 1, 0x0,
5037 HDA_BIND_MUTE_MONO("Speaker Playback Switch", 0x0a, 1, 2,
5039 HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT
),
5040 HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT
),
5041 HDA_CODEC_VOLUME("Mic Playback Volume", 0x07, 0x0, HDA_INPUT
),
5042 HDA_CODEC_MUTE("Mic Playback Switch", 0x07, 0x0, HDA_INPUT
),
5043 ALC_PIN_MODE("Mic Jack Mode", 0x12, ALC_PIN_DIR_IN
),
5044 HDA_CODEC_VOLUME("Line Playback Volume", 0x07, 0x02, HDA_INPUT
),
5045 HDA_CODEC_MUTE("Line Playback Switch", 0x07, 0x02, HDA_INPUT
),
5046 ALC_PIN_MODE("Line Jack Mode", 0x14, ALC_PIN_DIR_INOUT
),
5050 /* Maxdata Favorit 100XS: one output and one input (0x12) jack
5052 static struct snd_kcontrol_new alc260_favorit100_mixer
[] = {
5053 HDA_CODEC_VOLUME("Master Playback Volume", 0x08, 0x0, HDA_OUTPUT
),
5054 HDA_BIND_MUTE("Master Playback Switch", 0x08, 2, HDA_INPUT
),
5055 ALC_PIN_MODE("Output Jack Mode", 0x0f, ALC_PIN_DIR_INOUT
),
5056 HDA_CODEC_VOLUME("Line/Mic Playback Volume", 0x07, 0x0, HDA_INPUT
),
5057 HDA_CODEC_MUTE("Line/Mic Playback Switch", 0x07, 0x0, HDA_INPUT
),
5058 ALC_PIN_MODE("Line/Mic Jack Mode", 0x12, ALC_PIN_DIR_IN
),
5062 /* Packard bell V7900 ALC260 pin usage: HP = 0x0f, Mic jack = 0x12,
5063 * Line In jack = 0x14, CD audio = 0x16, pc beep = 0x17.
5065 static struct snd_kcontrol_new alc260_will_mixer
[] = {
5066 HDA_CODEC_VOLUME("Master Playback Volume", 0x08, 0x0, HDA_OUTPUT
),
5067 HDA_BIND_MUTE("Master Playback Switch", 0x08, 0x2, HDA_INPUT
),
5068 HDA_CODEC_VOLUME("Mic Playback Volume", 0x07, 0x0, HDA_INPUT
),
5069 HDA_CODEC_MUTE("Mic Playback Switch", 0x07, 0x0, HDA_INPUT
),
5070 ALC_PIN_MODE("Mic Jack Mode", 0x12, ALC_PIN_DIR_IN
),
5071 HDA_CODEC_VOLUME("Line Playback Volume", 0x07, 0x02, HDA_INPUT
),
5072 HDA_CODEC_MUTE("Line Playback Switch", 0x07, 0x02, HDA_INPUT
),
5073 ALC_PIN_MODE("Line Jack Mode", 0x14, ALC_PIN_DIR_INOUT
),
5074 HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT
),
5075 HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT
),
5079 /* Replacer 672V ALC260 pin usage: Mic jack = 0x12,
5080 * Line In jack = 0x14, ATAPI Mic = 0x13, speaker = 0x0f.
5082 static struct snd_kcontrol_new alc260_replacer_672v_mixer
[] = {
5083 HDA_CODEC_VOLUME("Master Playback Volume", 0x08, 0x0, HDA_OUTPUT
),
5084 HDA_BIND_MUTE("Master Playback Switch", 0x08, 0x2, HDA_INPUT
),
5085 HDA_CODEC_VOLUME("Mic Playback Volume", 0x07, 0x0, HDA_INPUT
),
5086 HDA_CODEC_MUTE("Mic Playback Switch", 0x07, 0x0, HDA_INPUT
),
5087 ALC_PIN_MODE("Mic Jack Mode", 0x12, ALC_PIN_DIR_IN
),
5088 HDA_CODEC_VOLUME("ATAPI Mic Playback Volume", 0x07, 0x1, HDA_INPUT
),
5089 HDA_CODEC_MUTE("ATATI Mic Playback Switch", 0x07, 0x1, HDA_INPUT
),
5090 HDA_CODEC_VOLUME("Line Playback Volume", 0x07, 0x02, HDA_INPUT
),
5091 HDA_CODEC_MUTE("Line Playback Switch", 0x07, 0x02, HDA_INPUT
),
5092 ALC_PIN_MODE("Line Jack Mode", 0x14, ALC_PIN_DIR_INOUT
),
5097 * initialization verbs
5099 static struct hda_verb alc260_init_verbs
[] = {
5100 /* Line In pin widget for input */
5101 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
5102 /* CD pin widget for input */
5103 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
5104 /* Mic1 (rear panel) pin widget for input and vref at 80% */
5105 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
5106 /* Mic2 (front panel) pin widget for input and vref at 80% */
5107 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
5108 /* LINE-2 is used for line-out in rear */
5109 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
5110 /* select line-out */
5111 {0x0e, AC_VERB_SET_CONNECT_SEL
, 0x00},
5113 {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
5115 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
5117 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
5118 /* mute capture amp left and right */
5119 {0x04, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
5120 /* set connection select to line in (default select for this ADC) */
5121 {0x04, AC_VERB_SET_CONNECT_SEL
, 0x02},
5122 /* mute capture amp left and right */
5123 {0x05, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
5124 /* set connection select to line in (default select for this ADC) */
5125 {0x05, AC_VERB_SET_CONNECT_SEL
, 0x02},
5126 /* set vol=0 Line-Out mixer amp left and right */
5127 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
5128 /* unmute pin widget amp left and right (no gain on this amp) */
5129 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
5130 /* set vol=0 HP mixer amp left and right */
5131 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
5132 /* unmute pin widget amp left and right (no gain on this amp) */
5133 {0x10, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
5134 /* set vol=0 Mono mixer amp left and right */
5135 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
5136 /* unmute pin widget amp left and right (no gain on this amp) */
5137 {0x11, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
5138 /* unmute LINE-2 out pin */
5139 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
5140 /* Amp Indexes: CD = 0x04, Line In 1 = 0x02, Mic 1 = 0x00 &
5143 /* mute analog inputs */
5144 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
5145 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
5146 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
5147 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
5148 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
5149 /* Amp Indexes: DAC = 0x01 & mixer = 0x00 */
5150 /* mute Front out path */
5151 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
5152 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
5153 /* mute Headphone out path */
5154 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
5155 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
5156 /* mute Mono out path */
5157 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
5158 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
5162 #if 0 /* should be identical with alc260_init_verbs? */
5163 static struct hda_verb alc260_hp_init_verbs
[] = {
5164 /* Headphone and output */
5165 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0xc0},
5167 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40},
5168 /* Mic1 (rear panel) pin widget for input and vref at 80% */
5169 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24},
5170 /* Mic2 (front panel) pin widget for input and vref at 80% */
5171 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24},
5172 /* Line In pin widget for input */
5173 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20},
5174 /* Line-2 pin widget for output */
5175 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40},
5176 /* CD pin widget for input */
5177 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20},
5178 /* unmute amp left and right */
5179 {0x04, AC_VERB_SET_AMP_GAIN_MUTE
, 0x7000},
5180 /* set connection select to line in (default select for this ADC) */
5181 {0x04, AC_VERB_SET_CONNECT_SEL
, 0x02},
5182 /* unmute Line-Out mixer amp left and right (volume = 0) */
5183 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb000},
5184 /* mute pin widget amp left and right (no gain on this amp) */
5185 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, 0x0000},
5186 /* unmute HP mixer amp left and right (volume = 0) */
5187 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb000},
5188 /* mute pin widget amp left and right (no gain on this amp) */
5189 {0x10, AC_VERB_SET_AMP_GAIN_MUTE
, 0x0000},
5190 /* Amp Indexes: CD = 0x04, Line In 1 = 0x02, Mic 1 = 0x00 &
5193 /* mute analog inputs */
5194 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
5195 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
5196 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
5197 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
5198 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
5199 /* Amp Indexes: DAC = 0x01 & mixer = 0x00 */
5200 /* Unmute Front out path */
5201 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
5202 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x01 << 8))},
5203 /* Unmute Headphone out path */
5204 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
5205 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x01 << 8))},
5206 /* Unmute Mono out path */
5207 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
5208 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x01 << 8))},
5213 static struct hda_verb alc260_hp_3013_init_verbs
[] = {
5214 /* Line out and output */
5215 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40},
5217 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40},
5218 /* Mic1 (rear panel) pin widget for input and vref at 80% */
5219 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24},
5220 /* Mic2 (front panel) pin widget for input and vref at 80% */
5221 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24},
5222 /* Line In pin widget for input */
5223 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20},
5224 /* Headphone pin widget for output */
5225 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0xc0},
5226 /* CD pin widget for input */
5227 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20},
5228 /* unmute amp left and right */
5229 {0x04, AC_VERB_SET_AMP_GAIN_MUTE
, 0x7000},
5230 /* set connection select to line in (default select for this ADC) */
5231 {0x04, AC_VERB_SET_CONNECT_SEL
, 0x02},
5232 /* unmute Line-Out mixer amp left and right (volume = 0) */
5233 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb000},
5234 /* mute pin widget amp left and right (no gain on this amp) */
5235 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, 0x0000},
5236 /* unmute HP mixer amp left and right (volume = 0) */
5237 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb000},
5238 /* mute pin widget amp left and right (no gain on this amp) */
5239 {0x10, AC_VERB_SET_AMP_GAIN_MUTE
, 0x0000},
5240 /* Amp Indexes: CD = 0x04, Line In 1 = 0x02, Mic 1 = 0x00 &
5243 /* mute analog inputs */
5244 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
5245 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
5246 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
5247 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
5248 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
5249 /* Amp Indexes: DAC = 0x01 & mixer = 0x00 */
5250 /* Unmute Front out path */
5251 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
5252 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x01 << 8))},
5253 /* Unmute Headphone out path */
5254 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
5255 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x01 << 8))},
5256 /* Unmute Mono out path */
5257 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
5258 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x01 << 8))},
5262 /* Initialisation sequence for ALC260 as configured in Fujitsu S702x
5263 * laptops. ALC260 pin usage: Mic/Line jack = 0x12, HP jack = 0x14, CD
5264 * audio = 0x16, internal speaker = 0x10.
5266 static struct hda_verb alc260_fujitsu_init_verbs
[] = {
5267 /* Disable all GPIOs */
5268 {0x01, AC_VERB_SET_GPIO_MASK
, 0},
5269 /* Internal speaker is connected to headphone pin */
5270 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
5271 /* Headphone/Line-out jack connects to Line1 pin; make it an output */
5272 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
5273 /* Mic/Line-in jack is connected to mic1 pin, so make it an input */
5274 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
5275 /* Ensure all other unused pins are disabled and muted. */
5276 {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
5277 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
5278 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
5279 {0x11, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
5280 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
5281 {0x13, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
5282 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
5283 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
5285 /* Disable digital (SPDIF) pins */
5286 {0x03, AC_VERB_SET_DIGI_CONVERT_1
, 0},
5287 {0x06, AC_VERB_SET_DIGI_CONVERT_1
, 0},
5289 /* Ensure Line1 pin widget takes its input from the OUT1 sum bus
5290 * when acting as an output.
5292 {0x0d, AC_VERB_SET_CONNECT_SEL
, 0},
5294 /* Start with output sum widgets muted and their output gains at min */
5295 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
5296 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
5297 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
5298 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
5299 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
5300 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
5301 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
5302 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
5303 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
5305 /* Unmute HP pin widget amp left and right (no equiv mixer ctrl) */
5306 {0x10, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
5307 /* Unmute Line1 pin widget output buffer since it starts as an output.
5308 * If the pin mode is changed by the user the pin mode control will
5309 * take care of enabling the pin's input/output buffers as needed.
5310 * Therefore there's no need to enable the input buffer at this
5313 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
5314 /* Unmute input buffer of pin widget used for Line-in (no equiv
5317 {0x12, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
5319 /* Mute capture amp left and right */
5320 {0x04, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
5321 /* Set ADC connection select to match default mixer setting - line
5324 {0x04, AC_VERB_SET_CONNECT_SEL
, 0x00},
5326 /* Do the same for the second ADC: mute capture input amp and
5327 * set ADC connection to line in (on mic1 pin)
5329 {0x05, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
5330 {0x05, AC_VERB_SET_CONNECT_SEL
, 0x00},
5332 /* Mute all inputs to mixer widget (even unconnected ones) */
5333 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)}, /* mic1 pin */
5334 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)}, /* mic2 pin */
5335 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)}, /* line1 pin */
5336 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)}, /* line2 pin */
5337 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)}, /* CD pin */
5338 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(5)}, /* Beep-gen pin */
5339 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(6)}, /* Line-out pin */
5340 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(7)}, /* HP-pin pin */
5345 /* Initialisation sequence for ALC260 as configured in Acer TravelMate and
5346 * similar laptops (adapted from Fujitsu init verbs).
5348 static struct hda_verb alc260_acer_init_verbs
[] = {
5349 /* On TravelMate laptops, GPIO 0 enables the internal speaker and
5350 * the headphone jack. Turn this on and rely on the standard mute
5351 * methods whenever the user wants to turn these outputs off.
5353 {0x01, AC_VERB_SET_GPIO_MASK
, 0x01},
5354 {0x01, AC_VERB_SET_GPIO_DIRECTION
, 0x01},
5355 {0x01, AC_VERB_SET_GPIO_DATA
, 0x01},
5356 /* Internal speaker/Headphone jack is connected to Line-out pin */
5357 {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
5358 /* Internal microphone/Mic jack is connected to Mic1 pin */
5359 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF50
},
5360 /* Line In jack is connected to Line1 pin */
5361 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
5362 /* Some Acers (eg: C20x Tablets) use Mono pin for internal speaker */
5363 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
5364 /* Ensure all other unused pins are disabled and muted. */
5365 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
5366 {0x10, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
5367 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
5368 {0x13, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
5369 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
5370 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
5371 /* Disable digital (SPDIF) pins */
5372 {0x03, AC_VERB_SET_DIGI_CONVERT_1
, 0},
5373 {0x06, AC_VERB_SET_DIGI_CONVERT_1
, 0},
5375 /* Ensure Mic1 and Line1 pin widgets take input from the OUT1 sum
5376 * bus when acting as outputs.
5378 {0x0b, AC_VERB_SET_CONNECT_SEL
, 0},
5379 {0x0d, AC_VERB_SET_CONNECT_SEL
, 0},
5381 /* Start with output sum widgets muted and their output gains at min */
5382 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
5383 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
5384 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
5385 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
5386 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
5387 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
5388 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
5389 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
5390 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
5392 /* Unmute Line-out pin widget amp left and right
5393 * (no equiv mixer ctrl)
5395 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
5396 /* Unmute mono pin widget amp output (no equiv mixer ctrl) */
5397 {0x11, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
5398 /* Unmute Mic1 and Line1 pin widget input buffers since they start as
5399 * inputs. If the pin mode is changed by the user the pin mode control
5400 * will take care of enabling the pin's input/output buffers as needed.
5401 * Therefore there's no need to enable the input buffer at this
5404 {0x12, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
5405 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
5407 /* Mute capture amp left and right */
5408 {0x04, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
5409 /* Set ADC connection select to match default mixer setting - mic
5412 {0x04, AC_VERB_SET_CONNECT_SEL
, 0x00},
5414 /* Do similar with the second ADC: mute capture input amp and
5415 * set ADC connection to mic to match ALSA's default state.
5417 {0x05, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
5418 {0x05, AC_VERB_SET_CONNECT_SEL
, 0x00},
5420 /* Mute all inputs to mixer widget (even unconnected ones) */
5421 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)}, /* mic1 pin */
5422 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)}, /* mic2 pin */
5423 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)}, /* line1 pin */
5424 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)}, /* line2 pin */
5425 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)}, /* CD pin */
5426 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(5)}, /* Beep-gen pin */
5427 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(6)}, /* Line-out pin */
5428 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(7)}, /* HP-pin pin */
5433 /* Initialisation sequence for Maxdata Favorit 100XS
5434 * (adapted from Acer init verbs).
5436 static struct hda_verb alc260_favorit100_init_verbs
[] = {
5437 /* GPIO 0 enables the output jack.
5438 * Turn this on and rely on the standard mute
5439 * methods whenever the user wants to turn these outputs off.
5441 {0x01, AC_VERB_SET_GPIO_MASK
, 0x01},
5442 {0x01, AC_VERB_SET_GPIO_DIRECTION
, 0x01},
5443 {0x01, AC_VERB_SET_GPIO_DATA
, 0x01},
5444 /* Line/Mic input jack is connected to Mic1 pin */
5445 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF50
},
5446 /* Ensure all other unused pins are disabled and muted. */
5447 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
5448 {0x10, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
5449 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
5450 {0x11, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
5451 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
5452 {0x13, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
5453 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
5454 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
5455 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0},
5456 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
5457 /* Disable digital (SPDIF) pins */
5458 {0x03, AC_VERB_SET_DIGI_CONVERT_1
, 0},
5459 {0x06, AC_VERB_SET_DIGI_CONVERT_1
, 0},
5461 /* Ensure Mic1 and Line1 pin widgets take input from the OUT1 sum
5462 * bus when acting as outputs.
5464 {0x0b, AC_VERB_SET_CONNECT_SEL
, 0},
5465 {0x0d, AC_VERB_SET_CONNECT_SEL
, 0},
5467 /* Start with output sum widgets muted and their output gains at min */
5468 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
5469 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
5470 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
5471 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
5472 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
5473 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
5474 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
5475 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
5476 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
5478 /* Unmute Line-out pin widget amp left and right
5479 * (no equiv mixer ctrl)
5481 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
5482 /* Unmute Mic1 and Line1 pin widget input buffers since they start as
5483 * inputs. If the pin mode is changed by the user the pin mode control
5484 * will take care of enabling the pin's input/output buffers as needed.
5485 * Therefore there's no need to enable the input buffer at this
5488 {0x12, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
5490 /* Mute capture amp left and right */
5491 {0x04, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
5492 /* Set ADC connection select to match default mixer setting - mic
5495 {0x04, AC_VERB_SET_CONNECT_SEL
, 0x00},
5497 /* Do similar with the second ADC: mute capture input amp and
5498 * set ADC connection to mic to match ALSA's default state.
5500 {0x05, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
5501 {0x05, AC_VERB_SET_CONNECT_SEL
, 0x00},
5503 /* Mute all inputs to mixer widget (even unconnected ones) */
5504 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)}, /* mic1 pin */
5505 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)}, /* mic2 pin */
5506 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)}, /* line1 pin */
5507 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)}, /* line2 pin */
5508 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)}, /* CD pin */
5509 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(5)}, /* Beep-gen pin */
5510 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(6)}, /* Line-out pin */
5511 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(7)}, /* HP-pin pin */
5516 static struct hda_verb alc260_will_verbs
[] = {
5517 {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
5518 {0x0b, AC_VERB_SET_CONNECT_SEL
, 0x00},
5519 {0x0d, AC_VERB_SET_CONNECT_SEL
, 0x00},
5520 {0x0f, AC_VERB_SET_EAPD_BTLENABLE
, 0x02},
5521 {0x1a, AC_VERB_SET_COEF_INDEX
, 0x07},
5522 {0x1a, AC_VERB_SET_PROC_COEF
, 0x3040},
5526 static struct hda_verb alc260_replacer_672v_verbs
[] = {
5527 {0x0f, AC_VERB_SET_EAPD_BTLENABLE
, 0x02},
5528 {0x1a, AC_VERB_SET_COEF_INDEX
, 0x07},
5529 {0x1a, AC_VERB_SET_PROC_COEF
, 0x3050},
5531 {0x01, AC_VERB_SET_GPIO_MASK
, 0x01},
5532 {0x01, AC_VERB_SET_GPIO_DIRECTION
, 0x01},
5533 {0x01, AC_VERB_SET_GPIO_DATA
, 0x00},
5535 {0x0f, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
5539 /* toggle speaker-output according to the hp-jack state */
5540 static void alc260_replacer_672v_automute(struct hda_codec
*codec
)
5542 unsigned int present
;
5544 /* speaker --> GPIO Data 0, hp or spdif --> GPIO data 1 */
5545 present
= snd_hda_codec_read(codec
, 0x0f, 0,
5546 AC_VERB_GET_PIN_SENSE
, 0) & 0x80000000;
5548 snd_hda_codec_write_cache(codec
, 0x01, 0,
5549 AC_VERB_SET_GPIO_DATA
, 1);
5550 snd_hda_codec_write_cache(codec
, 0x0f, 0,
5551 AC_VERB_SET_PIN_WIDGET_CONTROL
,
5554 snd_hda_codec_write_cache(codec
, 0x01, 0,
5555 AC_VERB_SET_GPIO_DATA
, 0);
5556 snd_hda_codec_write_cache(codec
, 0x0f, 0,
5557 AC_VERB_SET_PIN_WIDGET_CONTROL
,
5562 static void alc260_replacer_672v_unsol_event(struct hda_codec
*codec
,
5565 if ((res
>> 26) == ALC880_HP_EVENT
)
5566 alc260_replacer_672v_automute(codec
);
5569 static struct hda_verb alc260_hp_dc7600_verbs
[] = {
5570 {0x05, AC_VERB_SET_CONNECT_SEL
, 0x01},
5571 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x01},
5572 {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
5573 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
5574 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
5575 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
5576 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
5577 {0x10, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
5578 {0x11, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
5579 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
5583 /* Test configuration for debugging, modelled after the ALC880 test
5586 #ifdef CONFIG_SND_DEBUG
5587 static hda_nid_t alc260_test_dac_nids
[1] = {
5590 static hda_nid_t alc260_test_adc_nids
[2] = {
5593 /* For testing the ALC260, each input MUX needs its own definition since
5594 * the signal assignments are different. This assumes that the first ADC
5597 static struct hda_input_mux alc260_test_capture_sources
[2] = {
5601 { "MIC1 pin", 0x0 },
5602 { "MIC2 pin", 0x1 },
5603 { "LINE1 pin", 0x2 },
5604 { "LINE2 pin", 0x3 },
5606 { "LINE-OUT pin", 0x5 },
5607 { "HP-OUT pin", 0x6 },
5613 { "MIC1 pin", 0x0 },
5614 { "MIC2 pin", 0x1 },
5615 { "LINE1 pin", 0x2 },
5616 { "LINE2 pin", 0x3 },
5619 { "LINE-OUT pin", 0x6 },
5620 { "HP-OUT pin", 0x7 },
5624 static struct snd_kcontrol_new alc260_test_mixer
[] = {
5625 /* Output driver widgets */
5626 HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x0a, 1, 0x0, HDA_OUTPUT
),
5627 HDA_BIND_MUTE_MONO("Mono Playback Switch", 0x0a, 1, 2, HDA_INPUT
),
5628 HDA_CODEC_VOLUME("LOUT2 Playback Volume", 0x09, 0x0, HDA_OUTPUT
),
5629 HDA_BIND_MUTE("LOUT2 Playback Switch", 0x09, 2, HDA_INPUT
),
5630 HDA_CODEC_VOLUME("LOUT1 Playback Volume", 0x08, 0x0, HDA_OUTPUT
),
5631 HDA_BIND_MUTE("LOUT1 Playback Switch", 0x08, 2, HDA_INPUT
),
5633 /* Modes for retasking pin widgets
5634 * Note: the ALC260 doesn't seem to act on requests to enable mic
5635 * bias from NIDs 0x0f and 0x10. The ALC260 datasheet doesn't
5636 * mention this restriction. At this stage it's not clear whether
5637 * this behaviour is intentional or is a hardware bug in chip
5638 * revisions available at least up until early 2006. Therefore for
5639 * now allow the "HP-OUT" and "LINE-OUT" Mode controls to span all
5640 * choices, but if it turns out that the lack of mic bias for these
5641 * NIDs is intentional we could change their modes from
5642 * ALC_PIN_DIR_INOUT to ALC_PIN_DIR_INOUT_NOMICBIAS.
5644 ALC_PIN_MODE("HP-OUT pin mode", 0x10, ALC_PIN_DIR_INOUT
),
5645 ALC_PIN_MODE("LINE-OUT pin mode", 0x0f, ALC_PIN_DIR_INOUT
),
5646 ALC_PIN_MODE("LINE2 pin mode", 0x15, ALC_PIN_DIR_INOUT
),
5647 ALC_PIN_MODE("LINE1 pin mode", 0x14, ALC_PIN_DIR_INOUT
),
5648 ALC_PIN_MODE("MIC2 pin mode", 0x13, ALC_PIN_DIR_INOUT
),
5649 ALC_PIN_MODE("MIC1 pin mode", 0x12, ALC_PIN_DIR_INOUT
),
5651 /* Loopback mixer controls */
5652 HDA_CODEC_VOLUME("MIC1 Playback Volume", 0x07, 0x00, HDA_INPUT
),
5653 HDA_CODEC_MUTE("MIC1 Playback Switch", 0x07, 0x00, HDA_INPUT
),
5654 HDA_CODEC_VOLUME("MIC2 Playback Volume", 0x07, 0x01, HDA_INPUT
),
5655 HDA_CODEC_MUTE("MIC2 Playback Switch", 0x07, 0x01, HDA_INPUT
),
5656 HDA_CODEC_VOLUME("LINE1 Playback Volume", 0x07, 0x02, HDA_INPUT
),
5657 HDA_CODEC_MUTE("LINE1 Playback Switch", 0x07, 0x02, HDA_INPUT
),
5658 HDA_CODEC_VOLUME("LINE2 Playback Volume", 0x07, 0x03, HDA_INPUT
),
5659 HDA_CODEC_MUTE("LINE2 Playback Switch", 0x07, 0x03, HDA_INPUT
),
5660 HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT
),
5661 HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT
),
5662 HDA_CODEC_VOLUME("LINE-OUT loopback Playback Volume", 0x07, 0x06, HDA_INPUT
),
5663 HDA_CODEC_MUTE("LINE-OUT loopback Playback Switch", 0x07, 0x06, HDA_INPUT
),
5664 HDA_CODEC_VOLUME("HP-OUT loopback Playback Volume", 0x07, 0x7, HDA_INPUT
),
5665 HDA_CODEC_MUTE("HP-OUT loopback Playback Switch", 0x07, 0x7, HDA_INPUT
),
5667 /* Controls for GPIO pins, assuming they are configured as outputs */
5668 ALC_GPIO_DATA_SWITCH("GPIO pin 0", 0x01, 0x01),
5669 ALC_GPIO_DATA_SWITCH("GPIO pin 1", 0x01, 0x02),
5670 ALC_GPIO_DATA_SWITCH("GPIO pin 2", 0x01, 0x04),
5671 ALC_GPIO_DATA_SWITCH("GPIO pin 3", 0x01, 0x08),
5673 /* Switches to allow the digital IO pins to be enabled. The datasheet
5674 * is ambigious as to which NID is which; testing on laptops which
5675 * make this output available should provide clarification.
5677 ALC_SPDIF_CTRL_SWITCH("SPDIF Playback Switch", 0x03, 0x01),
5678 ALC_SPDIF_CTRL_SWITCH("SPDIF Capture Switch", 0x06, 0x01),
5680 /* A switch allowing EAPD to be enabled. Some laptops seem to use
5681 * this output to turn on an external amplifier.
5683 ALC_EAPD_CTRL_SWITCH("LINE-OUT EAPD Enable Switch", 0x0f, 0x02),
5684 ALC_EAPD_CTRL_SWITCH("HP-OUT EAPD Enable Switch", 0x10, 0x02),
5688 static struct hda_verb alc260_test_init_verbs
[] = {
5689 /* Enable all GPIOs as outputs with an initial value of 0 */
5690 {0x01, AC_VERB_SET_GPIO_DIRECTION
, 0x0f},
5691 {0x01, AC_VERB_SET_GPIO_DATA
, 0x00},
5692 {0x01, AC_VERB_SET_GPIO_MASK
, 0x0f},
5694 /* Enable retasking pins as output, initially without power amp */
5695 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
5696 {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
5697 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
5698 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
5699 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
5700 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
5702 /* Disable digital (SPDIF) pins initially, but users can enable
5703 * them via a mixer switch. In the case of SPDIF-out, this initverb
5704 * payload also sets the generation to 0, output to be in "consumer"
5705 * PCM format, copyright asserted, no pre-emphasis and no validity
5708 {0x03, AC_VERB_SET_DIGI_CONVERT_1
, 0},
5709 {0x06, AC_VERB_SET_DIGI_CONVERT_1
, 0},
5711 /* Ensure mic1, mic2, line1 and line2 pin widgets take input from the
5712 * OUT1 sum bus when acting as an output.
5714 {0x0b, AC_VERB_SET_CONNECT_SEL
, 0},
5715 {0x0c, AC_VERB_SET_CONNECT_SEL
, 0},
5716 {0x0d, AC_VERB_SET_CONNECT_SEL
, 0},
5717 {0x0e, AC_VERB_SET_CONNECT_SEL
, 0},
5719 /* Start with output sum widgets muted and their output gains at min */
5720 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
5721 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
5722 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
5723 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
5724 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
5725 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
5726 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
5727 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
5728 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
5730 /* Unmute retasking pin widget output buffers since the default
5731 * state appears to be output. As the pin mode is changed by the
5732 * user the pin mode control will take care of enabling the pin's
5733 * input/output buffers as needed.
5735 {0x10, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
5736 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
5737 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
5738 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
5739 {0x13, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
5740 {0x12, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
5741 /* Also unmute the mono-out pin widget */
5742 {0x11, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
5744 /* Mute capture amp left and right */
5745 {0x04, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
5746 /* Set ADC connection select to match default mixer setting (mic1
5749 {0x04, AC_VERB_SET_CONNECT_SEL
, 0x00},
5751 /* Do the same for the second ADC: mute capture input amp and
5752 * set ADC connection to mic1 pin
5754 {0x05, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
5755 {0x05, AC_VERB_SET_CONNECT_SEL
, 0x00},
5757 /* Mute all inputs to mixer widget (even unconnected ones) */
5758 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)}, /* mic1 pin */
5759 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)}, /* mic2 pin */
5760 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)}, /* line1 pin */
5761 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)}, /* line2 pin */
5762 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)}, /* CD pin */
5763 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(5)}, /* Beep-gen pin */
5764 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(6)}, /* Line-out pin */
5765 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(7)}, /* HP-pin pin */
5771 #define alc260_pcm_analog_playback alc880_pcm_analog_alt_playback
5772 #define alc260_pcm_analog_capture alc880_pcm_analog_capture
5774 #define alc260_pcm_digital_playback alc880_pcm_digital_playback
5775 #define alc260_pcm_digital_capture alc880_pcm_digital_capture
5778 * for BIOS auto-configuration
5781 static int alc260_add_playback_controls(struct alc_spec
*spec
, hda_nid_t nid
,
5782 const char *pfx
, int *vol_bits
)
5785 unsigned long vol_val
, sw_val
;
5789 if (nid
>= 0x0f && nid
< 0x11) {
5790 nid_vol
= nid
- 0x7;
5791 vol_val
= HDA_COMPOSE_AMP_VAL(nid_vol
, 3, 0, HDA_OUTPUT
);
5792 sw_val
= HDA_COMPOSE_AMP_VAL(nid
, 3, 0, HDA_OUTPUT
);
5793 } else if (nid
== 0x11) {
5794 nid_vol
= nid
- 0x7;
5795 vol_val
= HDA_COMPOSE_AMP_VAL(nid_vol
, 2, 0, HDA_OUTPUT
);
5796 sw_val
= HDA_COMPOSE_AMP_VAL(nid
, 2, 0, HDA_OUTPUT
);
5797 } else if (nid
>= 0x12 && nid
<= 0x15) {
5799 vol_val
= HDA_COMPOSE_AMP_VAL(nid_vol
, 3, 0, HDA_OUTPUT
);
5800 sw_val
= HDA_COMPOSE_AMP_VAL(nid
, 3, 0, HDA_OUTPUT
);
5804 if (!(*vol_bits
& (1 << nid_vol
))) {
5805 /* first control for the volume widget */
5806 snprintf(name
, sizeof(name
), "%s Playback Volume", pfx
);
5807 err
= add_control(spec
, ALC_CTL_WIDGET_VOL
, name
, vol_val
);
5810 *vol_bits
|= (1 << nid_vol
);
5812 snprintf(name
, sizeof(name
), "%s Playback Switch", pfx
);
5813 err
= add_control(spec
, ALC_CTL_WIDGET_MUTE
, name
, sw_val
);
5819 /* add playback controls from the parsed DAC table */
5820 static int alc260_auto_create_multi_out_ctls(struct alc_spec
*spec
,
5821 const struct auto_pin_cfg
*cfg
)
5827 spec
->multiout
.num_dacs
= 1;
5828 spec
->multiout
.dac_nids
= spec
->private_dac_nids
;
5829 spec
->multiout
.dac_nids
[0] = 0x02;
5831 nid
= cfg
->line_out_pins
[0];
5833 err
= alc260_add_playback_controls(spec
, nid
, "Front", &vols
);
5838 nid
= cfg
->speaker_pins
[0];
5840 err
= alc260_add_playback_controls(spec
, nid
, "Speaker", &vols
);
5845 nid
= cfg
->hp_pins
[0];
5847 err
= alc260_add_playback_controls(spec
, nid
, "Headphone",
5855 /* create playback/capture controls for input pins */
5856 static int alc260_auto_create_analog_input_ctls(struct alc_spec
*spec
,
5857 const struct auto_pin_cfg
*cfg
)
5859 struct hda_input_mux
*imux
= &spec
->private_imux
[0];
5862 for (i
= 0; i
< AUTO_PIN_LAST
; i
++) {
5863 if (cfg
->input_pins
[i
] >= 0x12) {
5864 idx
= cfg
->input_pins
[i
] - 0x12;
5865 err
= new_analog_input(spec
, cfg
->input_pins
[i
],
5866 auto_pin_cfg_labels
[i
], idx
,
5870 imux
->items
[imux
->num_items
].label
=
5871 auto_pin_cfg_labels
[i
];
5872 imux
->items
[imux
->num_items
].index
= idx
;
5875 if (cfg
->input_pins
[i
] >= 0x0f && cfg
->input_pins
[i
] <= 0x10){
5876 idx
= cfg
->input_pins
[i
] - 0x09;
5877 err
= new_analog_input(spec
, cfg
->input_pins
[i
],
5878 auto_pin_cfg_labels
[i
], idx
,
5882 imux
->items
[imux
->num_items
].label
=
5883 auto_pin_cfg_labels
[i
];
5884 imux
->items
[imux
->num_items
].index
= idx
;
5891 static void alc260_auto_set_output_and_unmute(struct hda_codec
*codec
,
5892 hda_nid_t nid
, int pin_type
,
5895 alc_set_pin_output(codec
, nid
, pin_type
);
5896 /* need the manual connection? */
5898 int idx
= nid
- 0x12;
5899 snd_hda_codec_write(codec
, idx
+ 0x0b, 0,
5900 AC_VERB_SET_CONNECT_SEL
, sel_idx
);
5904 static void alc260_auto_init_multi_out(struct hda_codec
*codec
)
5906 struct alc_spec
*spec
= codec
->spec
;
5909 nid
= spec
->autocfg
.line_out_pins
[0];
5911 int pin_type
= get_pin_type(spec
->autocfg
.line_out_type
);
5912 alc260_auto_set_output_and_unmute(codec
, nid
, pin_type
, 0);
5915 nid
= spec
->autocfg
.speaker_pins
[0];
5917 alc260_auto_set_output_and_unmute(codec
, nid
, PIN_OUT
, 0);
5919 nid
= spec
->autocfg
.hp_pins
[0];
5921 alc260_auto_set_output_and_unmute(codec
, nid
, PIN_HP
, 0);
5924 #define ALC260_PIN_CD_NID 0x16
5925 static void alc260_auto_init_analog_input(struct hda_codec
*codec
)
5927 struct alc_spec
*spec
= codec
->spec
;
5930 for (i
= 0; i
< AUTO_PIN_LAST
; i
++) {
5931 hda_nid_t nid
= spec
->autocfg
.input_pins
[i
];
5933 alc_set_input_pin(codec
, nid
, i
);
5934 if (nid
!= ALC260_PIN_CD_NID
&&
5935 (get_wcaps(codec
, nid
) & AC_WCAP_OUT_AMP
))
5936 snd_hda_codec_write(codec
, nid
, 0,
5937 AC_VERB_SET_AMP_GAIN_MUTE
,
5944 * generic initialization of ADC, input mixers and output mixers
5946 static struct hda_verb alc260_volume_init_verbs
[] = {
5948 * Unmute ADC0-1 and set the default input to mic-in
5950 {0x04, AC_VERB_SET_CONNECT_SEL
, 0x00},
5951 {0x04, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
5952 {0x05, AC_VERB_SET_CONNECT_SEL
, 0x00},
5953 {0x05, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
5955 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
5957 * Note: PASD motherboards uses the Line In 2 as the input for
5958 * front panel mic (mic 2)
5960 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
5961 /* mute analog inputs */
5962 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
5963 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
5964 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
5965 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
5966 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
5969 * Set up output mixers (0x08 - 0x0a)
5971 /* set vol=0 to output mixers */
5972 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
5973 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
5974 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
5975 /* set up input amps for analog loopback */
5976 /* Amp Indices: DAC = 0, mixer = 1 */
5977 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
5978 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
5979 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
5980 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
5981 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
5982 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
5987 static int alc260_parse_auto_config(struct hda_codec
*codec
)
5989 struct alc_spec
*spec
= codec
->spec
;
5991 static hda_nid_t alc260_ignore
[] = { 0x17, 0 };
5993 err
= snd_hda_parse_pin_def_config(codec
, &spec
->autocfg
,
5997 err
= alc260_auto_create_multi_out_ctls(spec
, &spec
->autocfg
);
6000 if (!spec
->kctls
.list
)
6001 return 0; /* can't find valid BIOS pin config */
6002 err
= alc260_auto_create_analog_input_ctls(spec
, &spec
->autocfg
);
6006 spec
->multiout
.max_channels
= 2;
6008 if (spec
->autocfg
.dig_outs
)
6009 spec
->multiout
.dig_out_nid
= ALC260_DIGOUT_NID
;
6010 if (spec
->kctls
.list
)
6011 add_mixer(spec
, spec
->kctls
.list
);
6013 add_verb(spec
, alc260_volume_init_verbs
);
6015 spec
->num_mux_defs
= 1;
6016 spec
->input_mux
= &spec
->private_imux
[0];
6018 alc_ssid_check(codec
, 0x10, 0x15, 0x0f);
6023 /* additional initialization for auto-configuration model */
6024 static void alc260_auto_init(struct hda_codec
*codec
)
6026 struct alc_spec
*spec
= codec
->spec
;
6027 alc260_auto_init_multi_out(codec
);
6028 alc260_auto_init_analog_input(codec
);
6029 if (spec
->unsol_event
)
6030 alc_inithook(codec
);
6033 #ifdef CONFIG_SND_HDA_POWER_SAVE
6034 static struct hda_amp_list alc260_loopbacks
[] = {
6035 { 0x07, HDA_INPUT
, 0 },
6036 { 0x07, HDA_INPUT
, 1 },
6037 { 0x07, HDA_INPUT
, 2 },
6038 { 0x07, HDA_INPUT
, 3 },
6039 { 0x07, HDA_INPUT
, 4 },
6045 * ALC260 configurations
6047 static const char *alc260_models
[ALC260_MODEL_LAST
] = {
6048 [ALC260_BASIC
] = "basic",
6050 [ALC260_HP_3013
] = "hp-3013",
6051 [ALC260_HP_DC7600
] = "hp-dc7600",
6052 [ALC260_FUJITSU_S702X
] = "fujitsu",
6053 [ALC260_ACER
] = "acer",
6054 [ALC260_WILL
] = "will",
6055 [ALC260_REPLACER_672V
] = "replacer",
6056 [ALC260_FAVORIT100
] = "favorit100",
6057 #ifdef CONFIG_SND_DEBUG
6058 [ALC260_TEST
] = "test",
6060 [ALC260_AUTO
] = "auto",
6063 static struct snd_pci_quirk alc260_cfg_tbl
[] = {
6064 SND_PCI_QUIRK(0x1025, 0x007b, "Acer C20x", ALC260_ACER
),
6065 SND_PCI_QUIRK(0x1025, 0x008f, "Acer", ALC260_ACER
),
6066 SND_PCI_QUIRK(0x1509, 0x4540, "Favorit 100XS", ALC260_FAVORIT100
),
6067 SND_PCI_QUIRK(0x103c, 0x2808, "HP d5700", ALC260_HP_3013
),
6068 SND_PCI_QUIRK(0x103c, 0x280a, "HP d5750", ALC260_HP_3013
),
6069 SND_PCI_QUIRK(0x103c, 0x3010, "HP", ALC260_HP_3013
),
6070 SND_PCI_QUIRK(0x103c, 0x3011, "HP", ALC260_HP_3013
),
6071 SND_PCI_QUIRK(0x103c, 0x3012, "HP", ALC260_HP_DC7600
),
6072 SND_PCI_QUIRK(0x103c, 0x3013, "HP", ALC260_HP_3013
),
6073 SND_PCI_QUIRK(0x103c, 0x3014, "HP", ALC260_HP
),
6074 SND_PCI_QUIRK(0x103c, 0x3015, "HP", ALC260_HP
),
6075 SND_PCI_QUIRK(0x103c, 0x3016, "HP", ALC260_HP
),
6076 SND_PCI_QUIRK(0x104d, 0x81bb, "Sony VAIO", ALC260_BASIC
),
6077 SND_PCI_QUIRK(0x104d, 0x81cc, "Sony VAIO", ALC260_BASIC
),
6078 SND_PCI_QUIRK(0x104d, 0x81cd, "Sony VAIO", ALC260_BASIC
),
6079 SND_PCI_QUIRK(0x10cf, 0x1326, "Fujitsu S702X", ALC260_FUJITSU_S702X
),
6080 SND_PCI_QUIRK(0x152d, 0x0729, "CTL U553W", ALC260_BASIC
),
6081 SND_PCI_QUIRK(0x161f, 0x2057, "Replacer 672V", ALC260_REPLACER_672V
),
6082 SND_PCI_QUIRK(0x1631, 0xc017, "PB V7900", ALC260_WILL
),
6086 static struct alc_config_preset alc260_presets
[] = {
6088 .mixers
= { alc260_base_output_mixer
,
6089 alc260_input_mixer
},
6090 .init_verbs
= { alc260_init_verbs
},
6091 .num_dacs
= ARRAY_SIZE(alc260_dac_nids
),
6092 .dac_nids
= alc260_dac_nids
,
6093 .num_adc_nids
= ARRAY_SIZE(alc260_dual_adc_nids
),
6094 .adc_nids
= alc260_adc_nids
,
6095 .num_channel_mode
= ARRAY_SIZE(alc260_modes
),
6096 .channel_mode
= alc260_modes
,
6097 .input_mux
= &alc260_capture_source
,
6100 .mixers
= { alc260_hp_output_mixer
,
6101 alc260_input_mixer
},
6102 .init_verbs
= { alc260_init_verbs
,
6103 alc260_hp_unsol_verbs
},
6104 .num_dacs
= ARRAY_SIZE(alc260_dac_nids
),
6105 .dac_nids
= alc260_dac_nids
,
6106 .num_adc_nids
= ARRAY_SIZE(alc260_adc_nids_alt
),
6107 .adc_nids
= alc260_adc_nids_alt
,
6108 .num_channel_mode
= ARRAY_SIZE(alc260_modes
),
6109 .channel_mode
= alc260_modes
,
6110 .input_mux
= &alc260_capture_source
,
6111 .unsol_event
= alc260_hp_unsol_event
,
6112 .init_hook
= alc260_hp_automute
,
6114 [ALC260_HP_DC7600
] = {
6115 .mixers
= { alc260_hp_dc7600_mixer
,
6116 alc260_input_mixer
},
6117 .init_verbs
= { alc260_init_verbs
,
6118 alc260_hp_dc7600_verbs
},
6119 .num_dacs
= ARRAY_SIZE(alc260_dac_nids
),
6120 .dac_nids
= alc260_dac_nids
,
6121 .num_adc_nids
= ARRAY_SIZE(alc260_adc_nids_alt
),
6122 .adc_nids
= alc260_adc_nids_alt
,
6123 .num_channel_mode
= ARRAY_SIZE(alc260_modes
),
6124 .channel_mode
= alc260_modes
,
6125 .input_mux
= &alc260_capture_source
,
6126 .unsol_event
= alc260_hp_3012_unsol_event
,
6127 .init_hook
= alc260_hp_3012_automute
,
6129 [ALC260_HP_3013
] = {
6130 .mixers
= { alc260_hp_3013_mixer
,
6131 alc260_input_mixer
},
6132 .init_verbs
= { alc260_hp_3013_init_verbs
,
6133 alc260_hp_3013_unsol_verbs
},
6134 .num_dacs
= ARRAY_SIZE(alc260_dac_nids
),
6135 .dac_nids
= alc260_dac_nids
,
6136 .num_adc_nids
= ARRAY_SIZE(alc260_adc_nids_alt
),
6137 .adc_nids
= alc260_adc_nids_alt
,
6138 .num_channel_mode
= ARRAY_SIZE(alc260_modes
),
6139 .channel_mode
= alc260_modes
,
6140 .input_mux
= &alc260_capture_source
,
6141 .unsol_event
= alc260_hp_3013_unsol_event
,
6142 .init_hook
= alc260_hp_3013_automute
,
6144 [ALC260_FUJITSU_S702X
] = {
6145 .mixers
= { alc260_fujitsu_mixer
},
6146 .init_verbs
= { alc260_fujitsu_init_verbs
},
6147 .num_dacs
= ARRAY_SIZE(alc260_dac_nids
),
6148 .dac_nids
= alc260_dac_nids
,
6149 .num_adc_nids
= ARRAY_SIZE(alc260_dual_adc_nids
),
6150 .adc_nids
= alc260_dual_adc_nids
,
6151 .num_channel_mode
= ARRAY_SIZE(alc260_modes
),
6152 .channel_mode
= alc260_modes
,
6153 .num_mux_defs
= ARRAY_SIZE(alc260_fujitsu_capture_sources
),
6154 .input_mux
= alc260_fujitsu_capture_sources
,
6157 .mixers
= { alc260_acer_mixer
},
6158 .init_verbs
= { alc260_acer_init_verbs
},
6159 .num_dacs
= ARRAY_SIZE(alc260_dac_nids
),
6160 .dac_nids
= alc260_dac_nids
,
6161 .num_adc_nids
= ARRAY_SIZE(alc260_dual_adc_nids
),
6162 .adc_nids
= alc260_dual_adc_nids
,
6163 .num_channel_mode
= ARRAY_SIZE(alc260_modes
),
6164 .channel_mode
= alc260_modes
,
6165 .num_mux_defs
= ARRAY_SIZE(alc260_acer_capture_sources
),
6166 .input_mux
= alc260_acer_capture_sources
,
6168 [ALC260_FAVORIT100
] = {
6169 .mixers
= { alc260_favorit100_mixer
},
6170 .init_verbs
= { alc260_favorit100_init_verbs
},
6171 .num_dacs
= ARRAY_SIZE(alc260_dac_nids
),
6172 .dac_nids
= alc260_dac_nids
,
6173 .num_adc_nids
= ARRAY_SIZE(alc260_dual_adc_nids
),
6174 .adc_nids
= alc260_dual_adc_nids
,
6175 .num_channel_mode
= ARRAY_SIZE(alc260_modes
),
6176 .channel_mode
= alc260_modes
,
6177 .num_mux_defs
= ARRAY_SIZE(alc260_favorit100_capture_sources
),
6178 .input_mux
= alc260_favorit100_capture_sources
,
6181 .mixers
= { alc260_will_mixer
},
6182 .init_verbs
= { alc260_init_verbs
, alc260_will_verbs
},
6183 .num_dacs
= ARRAY_SIZE(alc260_dac_nids
),
6184 .dac_nids
= alc260_dac_nids
,
6185 .num_adc_nids
= ARRAY_SIZE(alc260_adc_nids
),
6186 .adc_nids
= alc260_adc_nids
,
6187 .dig_out_nid
= ALC260_DIGOUT_NID
,
6188 .num_channel_mode
= ARRAY_SIZE(alc260_modes
),
6189 .channel_mode
= alc260_modes
,
6190 .input_mux
= &alc260_capture_source
,
6192 [ALC260_REPLACER_672V
] = {
6193 .mixers
= { alc260_replacer_672v_mixer
},
6194 .init_verbs
= { alc260_init_verbs
, alc260_replacer_672v_verbs
},
6195 .num_dacs
= ARRAY_SIZE(alc260_dac_nids
),
6196 .dac_nids
= alc260_dac_nids
,
6197 .num_adc_nids
= ARRAY_SIZE(alc260_adc_nids
),
6198 .adc_nids
= alc260_adc_nids
,
6199 .dig_out_nid
= ALC260_DIGOUT_NID
,
6200 .num_channel_mode
= ARRAY_SIZE(alc260_modes
),
6201 .channel_mode
= alc260_modes
,
6202 .input_mux
= &alc260_capture_source
,
6203 .unsol_event
= alc260_replacer_672v_unsol_event
,
6204 .init_hook
= alc260_replacer_672v_automute
,
6206 #ifdef CONFIG_SND_DEBUG
6208 .mixers
= { alc260_test_mixer
},
6209 .init_verbs
= { alc260_test_init_verbs
},
6210 .num_dacs
= ARRAY_SIZE(alc260_test_dac_nids
),
6211 .dac_nids
= alc260_test_dac_nids
,
6212 .num_adc_nids
= ARRAY_SIZE(alc260_test_adc_nids
),
6213 .adc_nids
= alc260_test_adc_nids
,
6214 .num_channel_mode
= ARRAY_SIZE(alc260_modes
),
6215 .channel_mode
= alc260_modes
,
6216 .num_mux_defs
= ARRAY_SIZE(alc260_test_capture_sources
),
6217 .input_mux
= alc260_test_capture_sources
,
6222 static int patch_alc260(struct hda_codec
*codec
)
6224 struct alc_spec
*spec
;
6225 int err
, board_config
;
6227 spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
6233 board_config
= snd_hda_check_board_config(codec
, ALC260_MODEL_LAST
,
6236 if (board_config
< 0) {
6237 snd_printd(KERN_INFO
"hda_codec: Unknown model for %s, "
6238 "trying auto-probe from BIOS...\n",
6240 board_config
= ALC260_AUTO
;
6243 if (board_config
== ALC260_AUTO
) {
6244 /* automatic parse from the BIOS config */
6245 err
= alc260_parse_auto_config(codec
);
6251 "hda_codec: Cannot set up configuration "
6252 "from BIOS. Using base mode...\n");
6253 board_config
= ALC260_BASIC
;
6257 err
= snd_hda_attach_beep_device(codec
, 0x1);
6263 if (board_config
!= ALC260_AUTO
)
6264 setup_preset(spec
, &alc260_presets
[board_config
]);
6266 spec
->stream_analog_playback
= &alc260_pcm_analog_playback
;
6267 spec
->stream_analog_capture
= &alc260_pcm_analog_capture
;
6269 spec
->stream_digital_playback
= &alc260_pcm_digital_playback
;
6270 spec
->stream_digital_capture
= &alc260_pcm_digital_capture
;
6272 if (!spec
->adc_nids
&& spec
->input_mux
) {
6273 /* check whether NID 0x04 is valid */
6274 unsigned int wcap
= get_wcaps(codec
, 0x04);
6275 wcap
= (wcap
& AC_WCAP_TYPE
) >> AC_WCAP_TYPE_SHIFT
;
6277 if (wcap
!= AC_WID_AUD_IN
|| spec
->input_mux
->num_items
== 1) {
6278 spec
->adc_nids
= alc260_adc_nids_alt
;
6279 spec
->num_adc_nids
= ARRAY_SIZE(alc260_adc_nids_alt
);
6281 spec
->adc_nids
= alc260_adc_nids
;
6282 spec
->num_adc_nids
= ARRAY_SIZE(alc260_adc_nids
);
6285 set_capture_mixer(spec
);
6286 set_beep_amp(spec
, 0x07, 0x05, HDA_INPUT
);
6288 spec
->vmaster_nid
= 0x08;
6290 codec
->patch_ops
= alc_patch_ops
;
6291 if (board_config
== ALC260_AUTO
)
6292 spec
->init_hook
= alc260_auto_init
;
6293 #ifdef CONFIG_SND_HDA_POWER_SAVE
6294 if (!spec
->loopback
.amplist
)
6295 spec
->loopback
.amplist
= alc260_loopbacks
;
6297 codec
->proc_widget_hook
= print_realtek_coef
;
6306 * ALC882 is almost identical with ALC880 but has cleaner and more flexible
6307 * configuration. Each pin widget can choose any input DACs and a mixer.
6308 * Each ADC is connected from a mixer of all inputs. This makes possible
6309 * 6-channel independent captures.
6311 * In addition, an independent DAC for the multi-playback (not used in this
6314 #define ALC882_DIGOUT_NID 0x06
6315 #define ALC882_DIGIN_NID 0x0a
6317 static struct hda_channel_mode alc882_ch_modes
[1] = {
6321 static hda_nid_t alc882_dac_nids
[4] = {
6322 /* front, rear, clfe, rear_surr */
6323 0x02, 0x03, 0x04, 0x05
6326 /* identical with ALC880 */
6327 #define alc882_adc_nids alc880_adc_nids
6328 #define alc882_adc_nids_alt alc880_adc_nids_alt
6330 static hda_nid_t alc882_capsrc_nids
[3] = { 0x24, 0x23, 0x22 };
6331 static hda_nid_t alc882_capsrc_nids_alt
[2] = { 0x23, 0x22 };
6334 /* FIXME: should be a matrix-type input source selection */
6336 static struct hda_input_mux alc882_capture_source
= {
6340 { "Front Mic", 0x1 },
6346 static struct hda_input_mux mb5_capture_source
= {
6358 static struct hda_verb alc882_3ST_ch2_init
[] = {
6359 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
6360 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
6361 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
6362 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
6369 static struct hda_verb alc882_3ST_ch6_init
[] = {
6370 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
6371 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
6372 { 0x18, AC_VERB_SET_CONNECT_SEL
, 0x02 },
6373 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
6374 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
6375 { 0x1a, AC_VERB_SET_CONNECT_SEL
, 0x01 },
6379 static struct hda_channel_mode alc882_3ST_6ch_modes
[2] = {
6380 { 2, alc882_3ST_ch2_init
},
6381 { 6, alc882_3ST_ch6_init
},
6387 static struct hda_verb alc882_sixstack_ch6_init
[] = {
6388 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x00 },
6389 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
6390 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
6391 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
6398 static struct hda_verb alc882_sixstack_ch8_init
[] = {
6399 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
6400 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
6401 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
6402 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
6406 static struct hda_channel_mode alc882_sixstack_modes
[2] = {
6407 { 6, alc882_sixstack_ch6_init
},
6408 { 8, alc882_sixstack_ch8_init
},
6412 * macbook pro ALC885 can switch LineIn to LineOut without losing Mic
6418 static struct hda_verb alc885_mbp_ch2_init
[] = {
6419 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
6420 { 0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6421 { 0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
6428 static struct hda_verb alc885_mbp_ch6_init
[] = {
6429 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
6430 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
6431 { 0x1a, AC_VERB_SET_CONNECT_SEL
, 0x01 },
6432 { 0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
6433 { 0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
6437 static struct hda_channel_mode alc885_mbp_6ch_modes
[2] = {
6438 { 2, alc885_mbp_ch2_init
},
6439 { 6, alc885_mbp_ch6_init
},
6444 * Speakers/Woofer/HP = Front
6447 static struct hda_verb alc885_mb5_ch2_init
[] = {
6448 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
6449 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
6455 * Speakers/HP = Front
6459 static struct hda_verb alc885_mb5_ch6_init
[] = {
6460 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
6461 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
6462 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x01},
6466 static struct hda_channel_mode alc885_mb5_6ch_modes
[2] = {
6467 { 2, alc885_mb5_ch2_init
},
6468 { 6, alc885_mb5_ch6_init
},
6471 /* Pin assignment: Front=0x14, Rear=0x15, CLFE=0x16, Side=0x17
6472 * Mic=0x18, Front Mic=0x19, Line-In=0x1a, HP=0x1b
6474 static struct snd_kcontrol_new alc882_base_mixer
[] = {
6475 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
6476 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
6477 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
6478 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT
),
6479 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT
),
6480 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT
),
6481 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT
),
6482 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT
),
6483 HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT
),
6484 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT
),
6485 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
6486 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
6487 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
6488 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
6489 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
6490 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
6491 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
6492 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
6493 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
6494 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT
),
6495 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
6499 static struct snd_kcontrol_new alc885_mbp3_mixer
[] = {
6500 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x00, HDA_OUTPUT
),
6501 HDA_BIND_MUTE ("Front Playback Switch", 0x0c, 0x02, HDA_INPUT
),
6502 HDA_CODEC_MUTE ("Speaker Playback Switch", 0x14, 0x00, HDA_OUTPUT
),
6503 HDA_CODEC_VOLUME("Line-Out Playback Volume", 0x0d, 0x00, HDA_OUTPUT
),
6504 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
6505 HDA_CODEC_MUTE ("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
6506 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x00, HDA_INPUT
),
6507 HDA_CODEC_MUTE ("Mic Playback Switch", 0x0b, 0x00, HDA_INPUT
),
6508 HDA_CODEC_VOLUME("Line Boost", 0x1a, 0x00, HDA_INPUT
),
6509 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0x00, HDA_INPUT
),
6513 static struct snd_kcontrol_new alc885_mb5_mixer
[] = {
6514 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x00, HDA_OUTPUT
),
6515 HDA_BIND_MUTE ("Front Playback Switch", 0x0c, 0x02, HDA_INPUT
),
6516 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x00, HDA_OUTPUT
),
6517 HDA_BIND_MUTE ("Surround Playback Switch", 0x0d, 0x02, HDA_INPUT
),
6518 HDA_CODEC_VOLUME("LFE Playback Volume", 0x0e, 0x00, HDA_OUTPUT
),
6519 HDA_BIND_MUTE ("LFE Playback Switch", 0x0e, 0x02, HDA_INPUT
),
6520 HDA_CODEC_VOLUME("HP Playback Volume", 0x0f, 0x00, HDA_OUTPUT
),
6521 HDA_BIND_MUTE ("HP Playback Switch", 0x0f, 0x02, HDA_INPUT
),
6522 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
6523 HDA_CODEC_MUTE ("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
6524 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x01, HDA_INPUT
),
6525 HDA_CODEC_MUTE ("Mic Playback Switch", 0x0b, 0x01, HDA_INPUT
),
6526 HDA_CODEC_VOLUME("Line Boost", 0x15, 0x00, HDA_INPUT
),
6527 HDA_CODEC_VOLUME("Mic Boost", 0x19, 0x00, HDA_INPUT
),
6531 static struct snd_kcontrol_new alc882_w2jc_mixer
[] = {
6532 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
6533 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
6534 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
6535 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
6536 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
6537 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
6538 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
6539 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
6540 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
6544 static struct snd_kcontrol_new alc882_targa_mixer
[] = {
6545 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
6546 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
6547 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
6548 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
6549 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
6550 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
6551 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
6552 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
6553 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
6554 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
6555 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
6556 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
6557 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT
),
6561 /* Pin assignment: Front=0x14, HP = 0x15, Front = 0x16, ???
6562 * Front Mic=0x18, Line In = 0x1a, Line In = 0x1b, CD = 0x1c
6564 static struct snd_kcontrol_new alc882_asus_a7j_mixer
[] = {
6565 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
6566 HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
6567 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
6568 HDA_CODEC_MUTE("Mobile Front Playback Switch", 0x16, 0x0, HDA_OUTPUT
),
6569 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
6570 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
6571 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
6572 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
6573 HDA_CODEC_VOLUME("Mobile Line Playback Volume", 0x0b, 0x03, HDA_INPUT
),
6574 HDA_CODEC_MUTE("Mobile Line Playback Switch", 0x0b, 0x03, HDA_INPUT
),
6575 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
6576 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
6577 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
6581 static struct snd_kcontrol_new alc882_asus_a7m_mixer
[] = {
6582 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
6583 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
6584 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
6585 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
6586 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
6587 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
6588 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
6589 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
6590 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
6591 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
6595 static struct snd_kcontrol_new alc882_chmode_mixer
[] = {
6597 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
6598 .name
= "Channel Mode",
6599 .info
= alc_ch_mode_info
,
6600 .get
= alc_ch_mode_get
,
6601 .put
= alc_ch_mode_put
,
6606 static struct hda_verb alc882_init_verbs
[] = {
6607 /* Front mixer: unmute input/output amp left and right (volume = 0) */
6608 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
6609 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6610 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
6612 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
6613 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6614 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
6616 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
6617 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6618 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
6620 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
6621 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6622 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
6624 /* Front Pin: output 0 (0x0c) */
6625 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
6626 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
6627 {0x14, AC_VERB_SET_CONNECT_SEL
, 0x00},
6628 /* Rear Pin: output 1 (0x0d) */
6629 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
6630 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
6631 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x01},
6632 /* CLFE Pin: output 2 (0x0e) */
6633 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
6634 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
6635 {0x16, AC_VERB_SET_CONNECT_SEL
, 0x02},
6636 /* Side Pin: output 3 (0x0f) */
6637 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
6638 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
6639 {0x17, AC_VERB_SET_CONNECT_SEL
, 0x03},
6640 /* Mic (rear) pin: input vref at 80% */
6641 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
6642 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
6643 /* Front Mic pin: input vref at 80% */
6644 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
6645 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
6646 /* Line In pin: input */
6647 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
6648 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
6649 /* Line-2 In: Headphone output (output 0 - 0x0c) */
6650 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
6651 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
6652 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0x00},
6653 /* CD pin widget for input */
6654 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
6656 /* FIXME: use matrix-type input source selection */
6657 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
6658 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
6659 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
6660 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
6661 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
6662 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
6664 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
6665 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
6666 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
6667 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
6669 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
6670 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
6671 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
6672 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
6673 /* ADC1: mute amp left and right */
6674 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6675 {0x07, AC_VERB_SET_CONNECT_SEL
, 0x00},
6676 /* ADC2: mute amp left and right */
6677 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6678 {0x08, AC_VERB_SET_CONNECT_SEL
, 0x00},
6679 /* ADC3: mute amp left and right */
6680 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6681 {0x09, AC_VERB_SET_CONNECT_SEL
, 0x00},
6686 static struct hda_verb alc882_eapd_verbs
[] = {
6687 /* change to EAPD mode */
6688 {0x20, AC_VERB_SET_COEF_INDEX
, 0x07},
6689 {0x20, AC_VERB_SET_PROC_COEF
, 0x3060},
6694 static struct snd_kcontrol_new alc882_macpro_mixer
[] = {
6695 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
6696 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
6697 HDA_CODEC_MUTE("Headphone Playback Switch", 0x18, 0x0, HDA_OUTPUT
),
6698 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x01, HDA_INPUT
),
6699 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x01, HDA_INPUT
),
6700 /* FIXME: this looks suspicious...
6701 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x02, HDA_INPUT),
6702 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x02, HDA_INPUT),
6707 static struct hda_verb alc882_macpro_init_verbs
[] = {
6708 /* Front mixer: unmute input/output amp left and right (volume = 0) */
6709 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
6710 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6711 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
6712 /* Front Pin: output 0 (0x0c) */
6713 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
6714 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
6715 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00},
6716 /* Front Mic pin: input vref at 80% */
6717 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
6718 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
6719 /* Speaker: output */
6720 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
6721 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
6722 {0x1a, AC_VERB_SET_CONNECT_SEL
, 0x04},
6723 /* Headphone output (output 0 - 0x0c) */
6724 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
6725 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
6726 {0x18, AC_VERB_SET_CONNECT_SEL
, 0x00},
6728 /* FIXME: use matrix-type input source selection */
6729 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
6730 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
6731 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
6732 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
6733 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
6734 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
6736 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
6737 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
6738 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
6739 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
6741 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
6742 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
6743 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
6744 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
6745 /* ADC1: mute amp left and right */
6746 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6747 {0x07, AC_VERB_SET_CONNECT_SEL
, 0x00},
6748 /* ADC2: mute amp left and right */
6749 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6750 {0x08, AC_VERB_SET_CONNECT_SEL
, 0x00},
6751 /* ADC3: mute amp left and right */
6752 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6753 {0x09, AC_VERB_SET_CONNECT_SEL
, 0x00},
6759 static struct hda_verb alc885_mb5_init_verbs
[] = {
6761 {0x02, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
6762 {0x03, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
6763 {0x04, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
6764 {0x05, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
6766 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
6767 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6768 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
6769 /* Surround mixer */
6770 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
6771 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6772 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
6774 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
6775 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6776 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
6778 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
6779 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6780 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
6781 /* Front Pin (0x0c) */
6782 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
| 0x01},
6783 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
6784 {0x18, AC_VERB_SET_CONNECT_SEL
, 0x00},
6785 /* LFE Pin (0x0e) */
6786 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
| 0x01},
6787 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
6788 {0x1a, AC_VERB_SET_CONNECT_SEL
, 0x02},
6790 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
6791 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
6792 {0x14, AC_VERB_SET_CONNECT_SEL
, 0x03},
6793 /* Front Mic pin: input vref at 80% */
6794 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
6795 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
6797 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
6798 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
6800 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
6801 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
6802 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
6803 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
6807 /* Macbook Pro rev3 */
6808 static struct hda_verb alc885_mbp3_init_verbs
[] = {
6809 /* Front mixer: unmute input/output amp left and right (volume = 0) */
6810 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
6811 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6812 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
6814 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
6815 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6816 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
6817 /* Front Pin: output 0 (0x0c) */
6818 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
6819 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
6820 {0x14, AC_VERB_SET_CONNECT_SEL
, 0x00},
6821 /* HP Pin: output 0 (0x0d) */
6822 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0xc4},
6823 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
6824 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00},
6825 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
6826 /* Mic (rear) pin: input vref at 80% */
6827 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
6828 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
6829 /* Front Mic pin: input vref at 80% */
6830 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
6831 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
6832 /* Line In pin: use output 1 when in LineOut mode */
6833 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
6834 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
6835 {0x1a, AC_VERB_SET_CONNECT_SEL
, 0x01},
6837 /* FIXME: use matrix-type input source selection */
6838 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
6839 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
6840 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
6841 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
6842 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
6843 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
6845 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
6846 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
6847 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
6848 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
6850 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
6851 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
6852 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
6853 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
6854 /* ADC1: mute amp left and right */
6855 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6856 {0x07, AC_VERB_SET_CONNECT_SEL
, 0x00},
6857 /* ADC2: mute amp left and right */
6858 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6859 {0x08, AC_VERB_SET_CONNECT_SEL
, 0x00},
6860 /* ADC3: mute amp left and right */
6861 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
6862 {0x09, AC_VERB_SET_CONNECT_SEL
, 0x00},
6867 /* iMac 24 mixer. */
6868 static struct snd_kcontrol_new alc885_imac24_mixer
[] = {
6869 HDA_CODEC_VOLUME("Master Playback Volume", 0x0c, 0x00, HDA_OUTPUT
),
6870 HDA_CODEC_MUTE("Master Playback Switch", 0x0c, 0x00, HDA_INPUT
),
6874 /* iMac 24 init verbs. */
6875 static struct hda_verb alc885_imac24_init_verbs
[] = {
6876 /* Internal speakers: output 0 (0x0c) */
6877 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
6878 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
6879 {0x18, AC_VERB_SET_CONNECT_SEL
, 0x00},
6880 /* Internal speakers: output 0 (0x0c) */
6881 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
6882 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
6883 {0x1a, AC_VERB_SET_CONNECT_SEL
, 0x00},
6884 /* Headphone: output 0 (0x0c) */
6885 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
6886 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
6887 {0x14, AC_VERB_SET_CONNECT_SEL
, 0x00},
6888 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
6889 /* Front Mic: input vref at 80% */
6890 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
6891 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
6895 /* Toggle speaker-output according to the hp-jack state */
6896 static void alc885_imac24_automute_init_hook(struct hda_codec
*codec
)
6898 struct alc_spec
*spec
= codec
->spec
;
6900 spec
->autocfg
.hp_pins
[0] = 0x14;
6901 spec
->autocfg
.speaker_pins
[0] = 0x18;
6902 spec
->autocfg
.speaker_pins
[1] = 0x1a;
6903 alc_automute_amp(codec
);
6906 static void alc885_mbp3_init_hook(struct hda_codec
*codec
)
6908 struct alc_spec
*spec
= codec
->spec
;
6910 spec
->autocfg
.hp_pins
[0] = 0x15;
6911 spec
->autocfg
.speaker_pins
[0] = 0x14;
6912 alc_automute_amp(codec
);
6916 static struct hda_verb alc882_targa_verbs
[] = {
6917 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
6918 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
6920 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
6921 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
6923 {0x18, AC_VERB_SET_CONNECT_SEL
, 0x02}, /* mic/clfe */
6924 {0x1a, AC_VERB_SET_CONNECT_SEL
, 0x01}, /* line/surround */
6925 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* HP */
6927 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
6931 /* toggle speaker-output according to the hp-jack state */
6932 static void alc882_targa_automute(struct hda_codec
*codec
)
6934 struct alc_spec
*spec
= codec
->spec
;
6935 alc_automute_amp(codec
);
6936 snd_hda_codec_write_cache(codec
, 1, 0, AC_VERB_SET_GPIO_DATA
,
6937 spec
->jack_present
? 1 : 3);
6940 static void alc882_targa_init_hook(struct hda_codec
*codec
)
6942 struct alc_spec
*spec
= codec
->spec
;
6944 spec
->autocfg
.hp_pins
[0] = 0x14;
6945 spec
->autocfg
.speaker_pins
[0] = 0x1b;
6946 alc882_targa_automute(codec
);
6949 static void alc882_targa_unsol_event(struct hda_codec
*codec
, unsigned int res
)
6951 if ((res
>> 26) == ALC880_HP_EVENT
)
6952 alc882_targa_automute(codec
);
6955 static struct hda_verb alc882_asus_a7j_verbs
[] = {
6956 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
6957 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
6959 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
6960 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
6961 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
6963 {0x14, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* Front */
6964 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* HP */
6965 {0x16, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* Front */
6967 {0x18, AC_VERB_SET_CONNECT_SEL
, 0x02}, /* mic/clfe */
6968 {0x1a, AC_VERB_SET_CONNECT_SEL
, 0x01}, /* line/surround */
6969 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* HP */
6973 static struct hda_verb alc882_asus_a7m_verbs
[] = {
6974 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
6975 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
6977 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
6978 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
6979 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
6981 {0x14, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* Front */
6982 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* HP */
6983 {0x16, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* Front */
6985 {0x18, AC_VERB_SET_CONNECT_SEL
, 0x02}, /* mic/clfe */
6986 {0x1a, AC_VERB_SET_CONNECT_SEL
, 0x01}, /* line/surround */
6987 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* HP */
6991 static void alc882_gpio_mute(struct hda_codec
*codec
, int pin
, int muted
)
6993 unsigned int gpiostate
, gpiomask
, gpiodir
;
6995 gpiostate
= snd_hda_codec_read(codec
, codec
->afg
, 0,
6996 AC_VERB_GET_GPIO_DATA
, 0);
6999 gpiostate
|= (1 << pin
);
7001 gpiostate
&= ~(1 << pin
);
7003 gpiomask
= snd_hda_codec_read(codec
, codec
->afg
, 0,
7004 AC_VERB_GET_GPIO_MASK
, 0);
7005 gpiomask
|= (1 << pin
);
7007 gpiodir
= snd_hda_codec_read(codec
, codec
->afg
, 0,
7008 AC_VERB_GET_GPIO_DIRECTION
, 0);
7009 gpiodir
|= (1 << pin
);
7012 snd_hda_codec_write(codec
, codec
->afg
, 0,
7013 AC_VERB_SET_GPIO_MASK
, gpiomask
);
7014 snd_hda_codec_write(codec
, codec
->afg
, 0,
7015 AC_VERB_SET_GPIO_DIRECTION
, gpiodir
);
7019 snd_hda_codec_write(codec
, codec
->afg
, 0,
7020 AC_VERB_SET_GPIO_DATA
, gpiostate
);
7023 /* set up GPIO at initialization */
7024 static void alc885_macpro_init_hook(struct hda_codec
*codec
)
7026 alc882_gpio_mute(codec
, 0, 0);
7027 alc882_gpio_mute(codec
, 1, 0);
7030 /* set up GPIO and update auto-muting at initialization */
7031 static void alc885_imac24_init_hook(struct hda_codec
*codec
)
7033 alc885_macpro_init_hook(codec
);
7034 alc885_imac24_automute_init_hook(codec
);
7038 * generic initialization of ADC, input mixers and output mixers
7040 static struct hda_verb alc882_auto_init_verbs
[] = {
7042 * Unmute ADC0-2 and set the default input to mic-in
7044 {0x07, AC_VERB_SET_CONNECT_SEL
, 0x00},
7045 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
7046 {0x08, AC_VERB_SET_CONNECT_SEL
, 0x00},
7047 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
7048 {0x09, AC_VERB_SET_CONNECT_SEL
, 0x00},
7049 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
7051 /* Mute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
7053 * Note: PASD motherboards uses the Line In 2 as the input for
7054 * front panel mic (mic 2)
7056 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
7057 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
7058 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
7059 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
7060 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
7061 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
7064 * Set up output mixers (0x0c - 0x0f)
7066 /* set vol=0 to output mixers */
7067 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
7068 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
7069 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
7070 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
7071 /* set up input amps for analog loopback */
7072 /* Amp Indices: DAC = 0, mixer = 1 */
7073 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
7074 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
7075 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
7076 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
7077 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
7078 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
7079 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
7080 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
7081 {0x26, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
7082 {0x26, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
7084 /* FIXME: use matrix-type input source selection */
7085 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
7086 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
7087 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
7088 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x03 << 8))},
7089 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x02 << 8))},
7090 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x04 << 8))},
7092 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
7093 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x03 << 8))},
7094 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x02 << 8))},
7095 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x04 << 8))},
7097 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
7098 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x03 << 8))},
7099 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x02 << 8))},
7100 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x04 << 8))},
7105 #ifdef CONFIG_SND_HDA_POWER_SAVE
7106 #define alc882_loopbacks alc880_loopbacks
7109 /* pcm configuration: identical with ALC880 */
7110 #define alc882_pcm_analog_playback alc880_pcm_analog_playback
7111 #define alc882_pcm_analog_capture alc880_pcm_analog_capture
7112 #define alc882_pcm_digital_playback alc880_pcm_digital_playback
7113 #define alc882_pcm_digital_capture alc880_pcm_digital_capture
7116 * configuration and preset
7118 static const char *alc882_models
[ALC882_MODEL_LAST
] = {
7119 [ALC882_3ST_DIG
] = "3stack-dig",
7120 [ALC882_6ST_DIG
] = "6stack-dig",
7121 [ALC882_ARIMA
] = "arima",
7122 [ALC882_W2JC
] = "w2jc",
7123 [ALC882_TARGA
] = "targa",
7124 [ALC882_ASUS_A7J
] = "asus-a7j",
7125 [ALC882_ASUS_A7M
] = "asus-a7m",
7126 [ALC885_MACPRO
] = "macpro",
7127 [ALC885_MB5
] = "mb5",
7128 [ALC885_MBP3
] = "mbp3",
7129 [ALC885_IMAC24
] = "imac24",
7130 [ALC882_AUTO
] = "auto",
7133 static struct snd_pci_quirk alc882_cfg_tbl
[] = {
7134 SND_PCI_QUIRK(0x1019, 0x6668, "ECS", ALC882_6ST_DIG
),
7135 SND_PCI_QUIRK(0x1043, 0x060d, "Asus A7J", ALC882_ASUS_A7J
),
7136 SND_PCI_QUIRK(0x1043, 0x1243, "Asus A7J", ALC882_ASUS_A7J
),
7137 SND_PCI_QUIRK(0x1043, 0x13c2, "Asus A7M", ALC882_ASUS_A7M
),
7138 SND_PCI_QUIRK(0x1043, 0x1971, "Asus W2JC", ALC882_W2JC
),
7139 SND_PCI_QUIRK(0x1043, 0x817f, "Asus P5LD2", ALC882_6ST_DIG
),
7140 SND_PCI_QUIRK(0x1043, 0x81d8, "Asus P5WD", ALC882_6ST_DIG
),
7141 SND_PCI_QUIRK(0x105b, 0x6668, "Foxconn", ALC882_6ST_DIG
),
7142 SND_PCI_QUIRK(0x1458, 0xa002, "Gigabyte P35 DS3R", ALC882_6ST_DIG
),
7143 SND_PCI_QUIRK(0x1462, 0x28fb, "Targa T8", ALC882_TARGA
), /* MSI-1049 T8 */
7144 SND_PCI_QUIRK(0x1462, 0x6668, "MSI", ALC882_6ST_DIG
),
7145 SND_PCI_QUIRK(0x161f, 0x2054, "Arima W820", ALC882_ARIMA
),
7149 static struct alc_config_preset alc882_presets
[] = {
7150 [ALC882_3ST_DIG
] = {
7151 .mixers
= { alc882_base_mixer
},
7152 .init_verbs
= { alc882_init_verbs
},
7153 .num_dacs
= ARRAY_SIZE(alc882_dac_nids
),
7154 .dac_nids
= alc882_dac_nids
,
7155 .dig_out_nid
= ALC882_DIGOUT_NID
,
7156 .dig_in_nid
= ALC882_DIGIN_NID
,
7157 .num_channel_mode
= ARRAY_SIZE(alc882_ch_modes
),
7158 .channel_mode
= alc882_ch_modes
,
7160 .input_mux
= &alc882_capture_source
,
7162 [ALC882_6ST_DIG
] = {
7163 .mixers
= { alc882_base_mixer
, alc882_chmode_mixer
},
7164 .init_verbs
= { alc882_init_verbs
},
7165 .num_dacs
= ARRAY_SIZE(alc882_dac_nids
),
7166 .dac_nids
= alc882_dac_nids
,
7167 .dig_out_nid
= ALC882_DIGOUT_NID
,
7168 .dig_in_nid
= ALC882_DIGIN_NID
,
7169 .num_channel_mode
= ARRAY_SIZE(alc882_sixstack_modes
),
7170 .channel_mode
= alc882_sixstack_modes
,
7171 .input_mux
= &alc882_capture_source
,
7174 .mixers
= { alc882_base_mixer
, alc882_chmode_mixer
},
7175 .init_verbs
= { alc882_init_verbs
, alc882_eapd_verbs
},
7176 .num_dacs
= ARRAY_SIZE(alc882_dac_nids
),
7177 .dac_nids
= alc882_dac_nids
,
7178 .num_channel_mode
= ARRAY_SIZE(alc882_sixstack_modes
),
7179 .channel_mode
= alc882_sixstack_modes
,
7180 .input_mux
= &alc882_capture_source
,
7183 .mixers
= { alc882_w2jc_mixer
, alc882_chmode_mixer
},
7184 .init_verbs
= { alc882_init_verbs
, alc882_eapd_verbs
,
7185 alc880_gpio1_init_verbs
},
7186 .num_dacs
= ARRAY_SIZE(alc882_dac_nids
),
7187 .dac_nids
= alc882_dac_nids
,
7188 .num_channel_mode
= ARRAY_SIZE(alc880_threestack_modes
),
7189 .channel_mode
= alc880_threestack_modes
,
7191 .input_mux
= &alc882_capture_source
,
7192 .dig_out_nid
= ALC882_DIGOUT_NID
,
7195 .mixers
= { alc885_mbp3_mixer
, alc882_chmode_mixer
},
7196 .init_verbs
= { alc885_mbp3_init_verbs
,
7197 alc880_gpio1_init_verbs
},
7198 .num_dacs
= ARRAY_SIZE(alc882_dac_nids
),
7199 .dac_nids
= alc882_dac_nids
,
7200 .channel_mode
= alc885_mbp_6ch_modes
,
7201 .num_channel_mode
= ARRAY_SIZE(alc885_mbp_6ch_modes
),
7202 .input_mux
= &alc882_capture_source
,
7203 .dig_out_nid
= ALC882_DIGOUT_NID
,
7204 .dig_in_nid
= ALC882_DIGIN_NID
,
7205 .unsol_event
= alc_automute_amp_unsol_event
,
7206 .init_hook
= alc885_mbp3_init_hook
,
7209 .mixers
= { alc885_mb5_mixer
, alc882_chmode_mixer
},
7210 .init_verbs
= { alc885_mb5_init_verbs
,
7211 alc880_gpio1_init_verbs
},
7212 .num_dacs
= ARRAY_SIZE(alc882_dac_nids
),
7213 .dac_nids
= alc882_dac_nids
,
7214 .channel_mode
= alc885_mb5_6ch_modes
,
7215 .num_channel_mode
= ARRAY_SIZE(alc885_mb5_6ch_modes
),
7216 .input_mux
= &mb5_capture_source
,
7217 .dig_out_nid
= ALC882_DIGOUT_NID
,
7218 .dig_in_nid
= ALC882_DIGIN_NID
,
7221 .mixers
= { alc882_macpro_mixer
},
7222 .init_verbs
= { alc882_macpro_init_verbs
},
7223 .num_dacs
= ARRAY_SIZE(alc882_dac_nids
),
7224 .dac_nids
= alc882_dac_nids
,
7225 .dig_out_nid
= ALC882_DIGOUT_NID
,
7226 .dig_in_nid
= ALC882_DIGIN_NID
,
7227 .num_channel_mode
= ARRAY_SIZE(alc882_ch_modes
),
7228 .channel_mode
= alc882_ch_modes
,
7229 .input_mux
= &alc882_capture_source
,
7230 .init_hook
= alc885_macpro_init_hook
,
7233 .mixers
= { alc885_imac24_mixer
},
7234 .init_verbs
= { alc885_imac24_init_verbs
},
7235 .num_dacs
= ARRAY_SIZE(alc882_dac_nids
),
7236 .dac_nids
= alc882_dac_nids
,
7237 .dig_out_nid
= ALC882_DIGOUT_NID
,
7238 .dig_in_nid
= ALC882_DIGIN_NID
,
7239 .num_channel_mode
= ARRAY_SIZE(alc882_ch_modes
),
7240 .channel_mode
= alc882_ch_modes
,
7241 .input_mux
= &alc882_capture_source
,
7242 .unsol_event
= alc_automute_amp_unsol_event
,
7243 .init_hook
= alc885_imac24_init_hook
,
7246 .mixers
= { alc882_targa_mixer
, alc882_chmode_mixer
},
7247 .init_verbs
= { alc882_init_verbs
, alc880_gpio3_init_verbs
,
7248 alc882_targa_verbs
},
7249 .num_dacs
= ARRAY_SIZE(alc882_dac_nids
),
7250 .dac_nids
= alc882_dac_nids
,
7251 .dig_out_nid
= ALC882_DIGOUT_NID
,
7252 .num_adc_nids
= ARRAY_SIZE(alc882_adc_nids
),
7253 .adc_nids
= alc882_adc_nids
,
7254 .capsrc_nids
= alc882_capsrc_nids
,
7255 .num_channel_mode
= ARRAY_SIZE(alc882_3ST_6ch_modes
),
7256 .channel_mode
= alc882_3ST_6ch_modes
,
7258 .input_mux
= &alc882_capture_source
,
7259 .unsol_event
= alc882_targa_unsol_event
,
7260 .init_hook
= alc882_targa_init_hook
,
7262 [ALC882_ASUS_A7J
] = {
7263 .mixers
= { alc882_asus_a7j_mixer
, alc882_chmode_mixer
},
7264 .init_verbs
= { alc882_init_verbs
, alc882_asus_a7j_verbs
},
7265 .num_dacs
= ARRAY_SIZE(alc882_dac_nids
),
7266 .dac_nids
= alc882_dac_nids
,
7267 .dig_out_nid
= ALC882_DIGOUT_NID
,
7268 .num_adc_nids
= ARRAY_SIZE(alc882_adc_nids
),
7269 .adc_nids
= alc882_adc_nids
,
7270 .capsrc_nids
= alc882_capsrc_nids
,
7271 .num_channel_mode
= ARRAY_SIZE(alc882_3ST_6ch_modes
),
7272 .channel_mode
= alc882_3ST_6ch_modes
,
7274 .input_mux
= &alc882_capture_source
,
7276 [ALC882_ASUS_A7M
] = {
7277 .mixers
= { alc882_asus_a7m_mixer
, alc882_chmode_mixer
},
7278 .init_verbs
= { alc882_init_verbs
, alc882_eapd_verbs
,
7279 alc880_gpio1_init_verbs
,
7280 alc882_asus_a7m_verbs
},
7281 .num_dacs
= ARRAY_SIZE(alc882_dac_nids
),
7282 .dac_nids
= alc882_dac_nids
,
7283 .dig_out_nid
= ALC882_DIGOUT_NID
,
7284 .num_channel_mode
= ARRAY_SIZE(alc880_threestack_modes
),
7285 .channel_mode
= alc880_threestack_modes
,
7287 .input_mux
= &alc882_capture_source
,
7296 PINFIX_ABIT_AW9D_MAX
7299 static struct alc_pincfg alc882_abit_aw9d_pinfix
[] = {
7300 { 0x15, 0x01080104 }, /* side */
7301 { 0x16, 0x01011012 }, /* rear */
7302 { 0x17, 0x01016011 }, /* clfe */
7306 static const struct alc_pincfg
*alc882_pin_fixes
[] = {
7307 [PINFIX_ABIT_AW9D_MAX
] = alc882_abit_aw9d_pinfix
,
7310 static struct snd_pci_quirk alc882_pinfix_tbl
[] = {
7311 SND_PCI_QUIRK(0x147b, 0x107a, "Abit AW9D-MAX", PINFIX_ABIT_AW9D_MAX
),
7316 * BIOS auto configuration
7318 static void alc882_auto_set_output_and_unmute(struct hda_codec
*codec
,
7319 hda_nid_t nid
, int pin_type
,
7323 struct alc_spec
*spec
= codec
->spec
;
7326 alc_set_pin_output(codec
, nid
, pin_type
);
7327 if (spec
->multiout
.dac_nids
[dac_idx
] == 0x25)
7330 idx
= spec
->multiout
.dac_nids
[dac_idx
] - 2;
7331 snd_hda_codec_write(codec
, nid
, 0, AC_VERB_SET_CONNECT_SEL
, idx
);
7335 static void alc882_auto_init_multi_out(struct hda_codec
*codec
)
7337 struct alc_spec
*spec
= codec
->spec
;
7340 for (i
= 0; i
<= HDA_SIDE
; i
++) {
7341 hda_nid_t nid
= spec
->autocfg
.line_out_pins
[i
];
7342 int pin_type
= get_pin_type(spec
->autocfg
.line_out_type
);
7344 alc882_auto_set_output_and_unmute(codec
, nid
, pin_type
,
7349 static void alc882_auto_init_hp_out(struct hda_codec
*codec
)
7351 struct alc_spec
*spec
= codec
->spec
;
7354 pin
= spec
->autocfg
.hp_pins
[0];
7355 if (pin
) /* connect to front */
7357 alc882_auto_set_output_and_unmute(codec
, pin
, PIN_HP
, 0);
7358 pin
= spec
->autocfg
.speaker_pins
[0];
7360 alc882_auto_set_output_and_unmute(codec
, pin
, PIN_OUT
, 0);
7363 #define alc882_is_input_pin(nid) alc880_is_input_pin(nid)
7364 #define ALC882_PIN_CD_NID ALC880_PIN_CD_NID
7366 static void alc882_auto_init_analog_input(struct hda_codec
*codec
)
7368 struct alc_spec
*spec
= codec
->spec
;
7371 for (i
= 0; i
< AUTO_PIN_LAST
; i
++) {
7372 hda_nid_t nid
= spec
->autocfg
.input_pins
[i
];
7375 alc_set_input_pin(codec
, nid
, AUTO_PIN_FRONT_MIC
/*i*/);
7376 if (get_wcaps(codec
, nid
) & AC_WCAP_OUT_AMP
)
7377 snd_hda_codec_write(codec
, nid
, 0,
7378 AC_VERB_SET_AMP_GAIN_MUTE
,
7383 static void alc882_auto_init_input_src(struct hda_codec
*codec
)
7385 struct alc_spec
*spec
= codec
->spec
;
7388 for (c
= 0; c
< spec
->num_adc_nids
; c
++) {
7389 hda_nid_t conn_list
[HDA_MAX_NUM_INPUTS
];
7390 hda_nid_t nid
= spec
->capsrc_nids
[c
];
7391 unsigned int mux_idx
;
7392 const struct hda_input_mux
*imux
;
7393 int conns
, mute
, idx
, item
;
7395 conns
= snd_hda_get_connections(codec
, nid
, conn_list
,
7396 ARRAY_SIZE(conn_list
));
7399 mux_idx
= c
>= spec
->num_mux_defs
? 0 : c
;
7400 imux
= &spec
->input_mux
[mux_idx
];
7401 for (idx
= 0; idx
< conns
; idx
++) {
7402 /* if the current connection is the selected one,
7403 * unmute it as default - otherwise mute it
7405 mute
= AMP_IN_MUTE(idx
);
7406 for (item
= 0; item
< imux
->num_items
; item
++) {
7407 if (imux
->items
[item
].index
== idx
) {
7408 if (spec
->cur_mux
[c
] == item
)
7409 mute
= AMP_IN_UNMUTE(idx
);
7413 /* check if we have a selector or mixer
7414 * we could check for the widget type instead, but
7415 * just check for Amp-In presence (in case of mixer
7416 * without amp-in there is something wrong, this
7417 * function shouldn't be used or capsrc nid is wrong)
7419 if (get_wcaps(codec
, nid
) & AC_WCAP_IN_AMP
)
7420 snd_hda_codec_write(codec
, nid
, 0,
7421 AC_VERB_SET_AMP_GAIN_MUTE
,
7423 else if (mute
!= AMP_IN_MUTE(idx
))
7424 snd_hda_codec_write(codec
, nid
, 0,
7425 AC_VERB_SET_CONNECT_SEL
,
7431 /* add mic boosts if needed */
7432 static int alc_auto_add_mic_boost(struct hda_codec
*codec
)
7434 struct alc_spec
*spec
= codec
->spec
;
7438 nid
= spec
->autocfg
.input_pins
[AUTO_PIN_MIC
];
7439 if (nid
&& (get_wcaps(codec
, nid
) & AC_WCAP_IN_AMP
)) {
7440 err
= add_control(spec
, ALC_CTL_WIDGET_VOL
,
7442 HDA_COMPOSE_AMP_VAL(nid
, 3, 0, HDA_INPUT
));
7446 nid
= spec
->autocfg
.input_pins
[AUTO_PIN_FRONT_MIC
];
7447 if (nid
&& (get_wcaps(codec
, nid
) & AC_WCAP_IN_AMP
)) {
7448 err
= add_control(spec
, ALC_CTL_WIDGET_VOL
,
7450 HDA_COMPOSE_AMP_VAL(nid
, 3, 0, HDA_INPUT
));
7457 /* almost identical with ALC880 parser... */
7458 static int alc882_parse_auto_config(struct hda_codec
*codec
)
7460 struct alc_spec
*spec
= codec
->spec
;
7461 int err
= alc880_parse_auto_config(codec
);
7466 return 0; /* no config found */
7468 err
= alc_auto_add_mic_boost(codec
);
7472 /* hack - override the init verbs */
7473 spec
->init_verbs
[0] = alc882_auto_init_verbs
;
7475 return 1; /* config found */
7478 /* additional initialization for auto-configuration model */
7479 static void alc882_auto_init(struct hda_codec
*codec
)
7481 struct alc_spec
*spec
= codec
->spec
;
7482 alc882_auto_init_multi_out(codec
);
7483 alc882_auto_init_hp_out(codec
);
7484 alc882_auto_init_analog_input(codec
);
7485 alc882_auto_init_input_src(codec
);
7486 if (spec
->unsol_event
)
7487 alc_inithook(codec
);
7490 static int patch_alc883(struct hda_codec
*codec
); /* called in patch_alc882() */
7492 static int patch_alc882(struct hda_codec
*codec
)
7494 struct alc_spec
*spec
;
7495 int err
, board_config
;
7497 spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
7503 board_config
= snd_hda_check_board_config(codec
, ALC882_MODEL_LAST
,
7507 if (board_config
< 0 || board_config
>= ALC882_MODEL_LAST
) {
7508 /* Pick up systems that don't supply PCI SSID */
7509 switch (codec
->subsystem_id
) {
7510 case 0x106b0c00: /* Mac Pro */
7511 board_config
= ALC885_MACPRO
;
7513 case 0x106b1000: /* iMac 24 */
7514 case 0x106b2800: /* AppleTV */
7515 case 0x106b3e00: /* iMac 24 Aluminium */
7516 board_config
= ALC885_IMAC24
;
7518 case 0x106b00a0: /* MacBookPro3,1 - Another revision */
7519 case 0x106b00a1: /* Macbook (might be wrong - PCI SSID?) */
7520 case 0x106b00a4: /* MacbookPro4,1 */
7521 case 0x106b2c00: /* Macbook Pro rev3 */
7522 /* Macbook 3.1 (0x106b3600) is handled by patch_alc883() */
7523 case 0x106b3800: /* MacbookPro4,1 - latter revision */
7524 board_config
= ALC885_MBP3
;
7526 case 0x106b3f00: /* Macbook 5,1 */
7527 case 0x106b4000: /* Macbook Pro 5,1 - FIXME: HP jack sense
7528 * seems not working, so apparently
7529 * no perfect solution yet
7531 board_config
= ALC885_MB5
;
7534 /* ALC889A is handled better as ALC888-compatible */
7535 if (codec
->revision_id
== 0x100101 ||
7536 codec
->revision_id
== 0x100103) {
7538 return patch_alc883(codec
);
7540 printk(KERN_INFO
"hda_codec: Unknown model for %s, "
7541 "trying auto-probe from BIOS...\n",
7543 board_config
= ALC882_AUTO
;
7547 alc_fix_pincfg(codec
, alc882_pinfix_tbl
, alc882_pin_fixes
);
7549 if (board_config
== ALC882_AUTO
) {
7550 /* automatic parse from the BIOS config */
7551 err
= alc882_parse_auto_config(codec
);
7557 "hda_codec: Cannot set up configuration "
7558 "from BIOS. Using base mode...\n");
7559 board_config
= ALC882_3ST_DIG
;
7563 err
= snd_hda_attach_beep_device(codec
, 0x1);
7569 if (board_config
!= ALC882_AUTO
)
7570 setup_preset(spec
, &alc882_presets
[board_config
]);
7572 spec
->stream_analog_playback
= &alc882_pcm_analog_playback
;
7573 spec
->stream_analog_capture
= &alc882_pcm_analog_capture
;
7574 /* FIXME: setup DAC5 */
7575 /*spec->stream_analog_alt_playback = &alc880_pcm_analog_alt_playback;*/
7576 spec
->stream_analog_alt_capture
= &alc880_pcm_analog_alt_capture
;
7578 spec
->stream_digital_playback
= &alc882_pcm_digital_playback
;
7579 spec
->stream_digital_capture
= &alc882_pcm_digital_capture
;
7581 if (!spec
->adc_nids
&& spec
->input_mux
) {
7582 /* check whether NID 0x07 is valid */
7583 unsigned int wcap
= get_wcaps(codec
, 0x07);
7585 wcap
= (wcap
& AC_WCAP_TYPE
) >> AC_WCAP_TYPE_SHIFT
;
7586 if (wcap
!= AC_WID_AUD_IN
) {
7587 spec
->adc_nids
= alc882_adc_nids_alt
;
7588 spec
->num_adc_nids
= ARRAY_SIZE(alc882_adc_nids_alt
);
7589 spec
->capsrc_nids
= alc882_capsrc_nids_alt
;
7591 spec
->adc_nids
= alc882_adc_nids
;
7592 spec
->num_adc_nids
= ARRAY_SIZE(alc882_adc_nids
);
7593 spec
->capsrc_nids
= alc882_capsrc_nids
;
7596 set_capture_mixer(spec
);
7597 set_beep_amp(spec
, 0x0b, 0x05, HDA_INPUT
);
7599 spec
->vmaster_nid
= 0x0c;
7601 codec
->patch_ops
= alc_patch_ops
;
7602 if (board_config
== ALC882_AUTO
)
7603 spec
->init_hook
= alc882_auto_init
;
7604 #ifdef CONFIG_SND_HDA_POWER_SAVE
7605 if (!spec
->loopback
.amplist
)
7606 spec
->loopback
.amplist
= alc882_loopbacks
;
7608 codec
->proc_widget_hook
= print_realtek_coef
;
7616 * ALC883 is almost identical with ALC880 but has cleaner and more flexible
7617 * configuration. Each pin widget can choose any input DACs and a mixer.
7618 * Each ADC is connected from a mixer of all inputs. This makes possible
7619 * 6-channel independent captures.
7621 * In addition, an independent DAC for the multi-playback (not used in this
7624 #define ALC883_DIGOUT_NID 0x06
7625 #define ALC883_DIGIN_NID 0x0a
7627 #define ALC1200_DIGOUT_NID 0x10
7629 static hda_nid_t alc883_dac_nids
[4] = {
7630 /* front, rear, clfe, rear_surr */
7631 0x02, 0x03, 0x04, 0x05
7634 static hda_nid_t alc883_adc_nids
[2] = {
7639 static hda_nid_t alc883_adc_nids_alt
[1] = {
7644 static hda_nid_t alc883_adc_nids_rev
[2] = {
7649 #define alc889_adc_nids alc880_adc_nids
7651 static hda_nid_t alc883_capsrc_nids
[2] = { 0x23, 0x22 };
7653 static hda_nid_t alc883_capsrc_nids_rev
[2] = { 0x22, 0x23 };
7655 #define alc889_capsrc_nids alc882_capsrc_nids
7658 /* FIXME: should be a matrix-type input source selection */
7660 static struct hda_input_mux alc883_capture_source
= {
7664 { "Front Mic", 0x1 },
7670 static struct hda_input_mux alc883_3stack_6ch_intel
= {
7674 { "Front Mic", 0x0 },
7680 static struct hda_input_mux alc883_lenovo_101e_capture_source
= {
7688 static struct hda_input_mux alc883_lenovo_nb0763_capture_source
= {
7698 static struct hda_input_mux alc883_fujitsu_pi2515_capture_source
= {
7706 static struct hda_input_mux alc883_lenovo_sky_capture_source
= {
7710 { "Front Mic", 0x1 },
7715 static struct hda_input_mux alc883_asus_eee1601_capture_source
= {
7723 static struct hda_input_mux alc889A_mb31_capture_source
= {
7727 /* Front Mic (0x01) unused */
7729 /* Line 2 (0x03) unused */
7730 /* CD (0x04) unsused? */
7737 static struct hda_channel_mode alc883_3ST_2ch_modes
[1] = {
7744 static struct hda_verb alc883_3ST_ch2_init
[] = {
7745 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
7746 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
7747 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
7748 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
7755 static struct hda_verb alc883_3ST_ch4_init
[] = {
7756 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
7757 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
7758 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7759 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7760 { 0x1a, AC_VERB_SET_CONNECT_SEL
, 0x01 },
7767 static struct hda_verb alc883_3ST_ch6_init
[] = {
7768 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7769 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7770 { 0x18, AC_VERB_SET_CONNECT_SEL
, 0x02 },
7771 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7772 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7773 { 0x1a, AC_VERB_SET_CONNECT_SEL
, 0x01 },
7777 static struct hda_channel_mode alc883_3ST_6ch_modes
[3] = {
7778 { 2, alc883_3ST_ch2_init
},
7779 { 4, alc883_3ST_ch4_init
},
7780 { 6, alc883_3ST_ch6_init
},
7787 static struct hda_verb alc883_4ST_ch2_init
[] = {
7788 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7789 { 0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7790 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
7791 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
7792 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
7793 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
7800 static struct hda_verb alc883_4ST_ch4_init
[] = {
7801 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7802 { 0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7803 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
7804 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
7805 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7806 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7807 { 0x1a, AC_VERB_SET_CONNECT_SEL
, 0x01 },
7814 static struct hda_verb alc883_4ST_ch6_init
[] = {
7815 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7816 { 0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7817 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7818 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7819 { 0x18, AC_VERB_SET_CONNECT_SEL
, 0x02 },
7820 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7821 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7822 { 0x1a, AC_VERB_SET_CONNECT_SEL
, 0x01 },
7829 static struct hda_verb alc883_4ST_ch8_init
[] = {
7830 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7831 { 0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7832 { 0x17, AC_VERB_SET_CONNECT_SEL
, 0x03 },
7833 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7834 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7835 { 0x18, AC_VERB_SET_CONNECT_SEL
, 0x02 },
7836 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7837 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7838 { 0x1a, AC_VERB_SET_CONNECT_SEL
, 0x01 },
7842 static struct hda_channel_mode alc883_4ST_8ch_modes
[4] = {
7843 { 2, alc883_4ST_ch2_init
},
7844 { 4, alc883_4ST_ch4_init
},
7845 { 6, alc883_4ST_ch6_init
},
7846 { 8, alc883_4ST_ch8_init
},
7853 static struct hda_verb alc883_3ST_ch2_intel_init
[] = {
7854 { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
7855 { 0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
7856 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
7857 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
7864 static struct hda_verb alc883_3ST_ch4_intel_init
[] = {
7865 { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
7866 { 0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
7867 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7868 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7869 { 0x1a, AC_VERB_SET_CONNECT_SEL
, 0x01 },
7876 static struct hda_verb alc883_3ST_ch6_intel_init
[] = {
7877 { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7878 { 0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7879 { 0x19, AC_VERB_SET_CONNECT_SEL
, 0x02 },
7880 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7881 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
7882 { 0x1a, AC_VERB_SET_CONNECT_SEL
, 0x01 },
7886 static struct hda_channel_mode alc883_3ST_6ch_intel_modes
[3] = {
7887 { 2, alc883_3ST_ch2_intel_init
},
7888 { 4, alc883_3ST_ch4_intel_init
},
7889 { 6, alc883_3ST_ch6_intel_init
},
7895 static struct hda_verb alc883_sixstack_ch6_init
[] = {
7896 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x00 },
7897 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7898 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7899 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7906 static struct hda_verb alc883_sixstack_ch8_init
[] = {
7907 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7908 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7909 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7910 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
7914 static struct hda_channel_mode alc883_sixstack_modes
[2] = {
7915 { 6, alc883_sixstack_ch6_init
},
7916 { 8, alc883_sixstack_ch8_init
},
7919 /* 2ch mode (Speaker:front, Subwoofer:CLFE, Line:input, Headphones:front) */
7920 static struct hda_verb alc889A_mb31_ch2_init
[] = {
7921 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* HP as front */
7922 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
}, /* Subwoofer on */
7923 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
}, /* Line as input */
7924 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
}, /* Line off */
7928 /* 4ch mode (Speaker:front, Subwoofer:CLFE, Line:CLFE, Headphones:front) */
7929 static struct hda_verb alc889A_mb31_ch4_init
[] = {
7930 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* HP as front */
7931 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
}, /* Subwoofer on */
7932 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
}, /* Line as output */
7933 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
}, /* Line on */
7937 /* 5ch mode (Speaker:front, Subwoofer:CLFE, Line:input, Headphones:rear) */
7938 static struct hda_verb alc889A_mb31_ch5_init
[] = {
7939 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x01}, /* HP as rear */
7940 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
}, /* Subwoofer on */
7941 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
}, /* Line as input */
7942 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
}, /* Line off */
7946 /* 6ch mode (Speaker:front, Subwoofer:off, Line:CLFE, Headphones:Rear) */
7947 static struct hda_verb alc889A_mb31_ch6_init
[] = {
7948 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x01}, /* HP as front */
7949 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
}, /* Subwoofer off */
7950 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
}, /* Line as output */
7951 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
}, /* Line on */
7955 static struct hda_channel_mode alc889A_mb31_6ch_modes
[4] = {
7956 { 2, alc889A_mb31_ch2_init
},
7957 { 4, alc889A_mb31_ch4_init
},
7958 { 5, alc889A_mb31_ch5_init
},
7959 { 6, alc889A_mb31_ch6_init
},
7962 static struct hda_verb alc883_medion_eapd_verbs
[] = {
7963 /* eanable EAPD on medion laptop */
7964 {0x20, AC_VERB_SET_COEF_INDEX
, 0x07},
7965 {0x20, AC_VERB_SET_PROC_COEF
, 0x3070},
7969 /* Pin assignment: Front=0x14, Rear=0x15, CLFE=0x16, Side=0x17
7970 * Mic=0x18, Front Mic=0x19, Line-In=0x1a, HP=0x1b
7973 static struct snd_kcontrol_new alc883_base_mixer
[] = {
7974 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
7975 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
7976 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
7977 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT
),
7978 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT
),
7979 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT
),
7980 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT
),
7981 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT
),
7982 HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT
),
7983 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT
),
7984 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
7985 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
7986 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
7987 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
7988 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
7989 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
7990 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
7991 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
7992 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
7993 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT
),
7994 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
7998 static struct snd_kcontrol_new alc883_mitac_mixer
[] = {
7999 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
8000 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
8001 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT
),
8002 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT
),
8003 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT
),
8004 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT
),
8005 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
8006 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
8007 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
8008 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
8009 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
8010 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT
),
8011 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
8015 static struct snd_kcontrol_new alc883_clevo_m720_mixer
[] = {
8016 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
8017 HDA_BIND_MUTE("Headphone Playback Switch", 0x0c, 2, HDA_INPUT
),
8018 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
8019 HDA_BIND_MUTE("Speaker Playback Switch", 0x0d, 2, HDA_INPUT
),
8020 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
8021 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
8022 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
8023 HDA_CODEC_VOLUME("Int Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
8024 HDA_CODEC_VOLUME("Int Mic Boost", 0x19, 0, HDA_INPUT
),
8025 HDA_CODEC_MUTE("Int Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
8029 static struct snd_kcontrol_new alc883_2ch_fujitsu_pi2515_mixer
[] = {
8030 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
8031 HDA_BIND_MUTE("Headphone Playback Switch", 0x0c, 2, HDA_INPUT
),
8032 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
8033 HDA_BIND_MUTE("Speaker Playback Switch", 0x0d, 2, HDA_INPUT
),
8034 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
8035 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
8036 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
8037 HDA_CODEC_VOLUME("Int Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
8038 HDA_CODEC_VOLUME("Int Mic Boost", 0x19, 0, HDA_INPUT
),
8039 HDA_CODEC_MUTE("Int Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
8043 static struct snd_kcontrol_new alc883_3ST_2ch_mixer
[] = {
8044 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
8045 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
8046 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
8047 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
8048 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
8049 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
8050 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
8051 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
8052 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
8053 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
8054 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
8055 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT
),
8056 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
8060 static struct snd_kcontrol_new alc883_3ST_6ch_mixer
[] = {
8061 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
8062 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
8063 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
8064 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT
),
8065 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT
),
8066 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT
),
8067 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT
),
8068 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT
),
8069 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
8070 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
8071 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
8072 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
8073 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
8074 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
8075 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
8076 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
8077 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
8078 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT
),
8079 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
8083 static struct snd_kcontrol_new alc883_3ST_6ch_intel_mixer
[] = {
8084 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
8085 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
8086 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
8087 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT
),
8088 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0,
8090 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT
),
8091 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT
),
8092 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT
),
8093 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
8094 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
8095 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
8096 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
8097 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
8098 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
8099 HDA_CODEC_VOLUME("Mic Boost", 0x19, 0, HDA_INPUT
),
8100 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
8101 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
8102 HDA_CODEC_VOLUME("Front Mic Boost", 0x18, 0, HDA_INPUT
),
8103 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
8107 static struct snd_kcontrol_new alc883_fivestack_mixer
[] = {
8108 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
8109 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
8110 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
8111 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT
),
8112 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT
),
8113 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT
),
8114 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT
),
8115 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT
),
8116 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
8117 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
8118 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
8119 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
8120 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
8121 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
8122 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
8123 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
8124 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
8125 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT
),
8126 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
8130 static struct snd_kcontrol_new alc883_targa_mixer
[] = {
8131 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
8132 HDA_CODEC_MUTE("Headphone Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
8133 HDA_CODEC_MUTE("Front Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
8134 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
8135 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT
),
8136 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT
),
8137 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT
),
8138 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT
),
8139 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT
),
8140 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
8141 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
8142 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
8143 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
8144 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
8145 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
8146 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
8150 static struct snd_kcontrol_new alc883_targa_2ch_mixer
[] = {
8151 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
8152 HDA_CODEC_MUTE("Headphone Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
8153 HDA_CODEC_MUTE("Front Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
8154 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
8155 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
8156 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
8157 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
8158 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
8159 HDA_CODEC_VOLUME("Int Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
8160 HDA_CODEC_VOLUME("Int Mic Boost", 0x19, 0, HDA_INPUT
),
8161 HDA_CODEC_MUTE("Int Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
8165 static struct snd_kcontrol_new alc883_lenovo_101e_2ch_mixer
[] = {
8166 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
8167 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
8168 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
8169 HDA_BIND_MUTE("Speaker Playback Switch", 0x0d, 2, HDA_INPUT
),
8170 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
8171 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
8172 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
8173 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
8177 static struct snd_kcontrol_new alc883_lenovo_nb0763_mixer
[] = {
8178 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
8179 HDA_BIND_MUTE("Speaker Playback Switch", 0x0c, 2, HDA_INPUT
),
8180 HDA_CODEC_MUTE("Headphone Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
8181 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
8182 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
8183 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
8184 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
8185 HDA_CODEC_VOLUME("iMic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
8186 HDA_CODEC_MUTE("iMic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
8190 static struct snd_kcontrol_new alc883_medion_md2_mixer
[] = {
8191 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
8192 HDA_CODEC_MUTE("Headphone Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
8193 HDA_CODEC_MUTE("Front Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
8194 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
8195 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
8196 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
8197 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
8198 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
8199 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
8203 static struct snd_kcontrol_new alc883_acer_aspire_mixer
[] = {
8204 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
8205 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
8206 HDA_CODEC_MUTE("Headphone Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
8207 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
8208 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
8209 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
8210 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
8211 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
8215 static struct snd_kcontrol_new alc888_acer_aspire_6530_mixer
[] = {
8216 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
8217 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
8218 HDA_CODEC_VOLUME("LFE Playback Volume", 0x0f, 0x0, HDA_OUTPUT
),
8219 HDA_BIND_MUTE("LFE Playback Switch", 0x0f, 2, HDA_INPUT
),
8220 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
8221 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
8222 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
8223 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
8224 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
8225 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
8226 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
8230 static struct snd_kcontrol_new alc888_lenovo_sky_mixer
[] = {
8231 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
8232 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
8233 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0e, 0x0, HDA_OUTPUT
),
8234 HDA_BIND_MUTE("Surround Playback Switch", 0x0e, 2, HDA_INPUT
),
8235 HDA_CODEC_VOLUME_MONO("Center Playback Volume",
8236 0x0d, 1, 0x0, HDA_OUTPUT
),
8237 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0d, 2, 0x0, HDA_OUTPUT
),
8238 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0d, 1, 2, HDA_INPUT
),
8239 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0d, 2, 2, HDA_INPUT
),
8240 HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT
),
8241 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT
),
8242 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
8243 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
8244 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
8245 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
8246 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
8247 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
8248 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
8249 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
8250 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT
),
8251 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
8255 static struct snd_kcontrol_new alc889A_mb31_mixer
[] = {
8257 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x00, HDA_OUTPUT
),
8258 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 0x02, HDA_INPUT
),
8259 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x00, HDA_OUTPUT
),
8260 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 0x02, HDA_INPUT
),
8261 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x00,
8263 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 0x02, HDA_INPUT
),
8264 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x00, HDA_OUTPUT
),
8265 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 0x02, HDA_INPUT
),
8266 /* Output switches */
8267 HDA_CODEC_MUTE("Enable Speaker", 0x14, 0x00, HDA_OUTPUT
),
8268 HDA_CODEC_MUTE("Enable Headphones", 0x15, 0x00, HDA_OUTPUT
),
8269 HDA_CODEC_MUTE_MONO("Enable LFE", 0x16, 2, 0x00, HDA_OUTPUT
),
8271 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0x00, HDA_INPUT
),
8272 HDA_CODEC_VOLUME("Line Boost", 0x1a, 0x00, HDA_INPUT
),
8274 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x00, HDA_INPUT
),
8275 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x00, HDA_INPUT
),
8276 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
8277 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
8281 static struct snd_kcontrol_new alc883_vaiott_mixer
[] = {
8282 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
8283 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
8284 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
8285 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
8286 HDA_CODEC_VOLUME("Mic Boost", 0x19, 0, HDA_INPUT
),
8287 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
8291 static struct hda_bind_ctls alc883_bind_cap_vol
= {
8292 .ops
= &snd_hda_bind_vol
,
8294 HDA_COMPOSE_AMP_VAL(0x08, 3, 0, HDA_INPUT
),
8295 HDA_COMPOSE_AMP_VAL(0x09, 3, 0, HDA_INPUT
),
8300 static struct hda_bind_ctls alc883_bind_cap_switch
= {
8301 .ops
= &snd_hda_bind_sw
,
8303 HDA_COMPOSE_AMP_VAL(0x08, 3, 0, HDA_INPUT
),
8304 HDA_COMPOSE_AMP_VAL(0x09, 3, 0, HDA_INPUT
),
8309 static struct snd_kcontrol_new alc883_asus_eee1601_mixer
[] = {
8310 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
8311 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
8312 HDA_CODEC_MUTE("Headphone Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
8313 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
8314 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
8315 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
8316 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
8317 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
8321 static struct snd_kcontrol_new alc883_asus_eee1601_cap_mixer
[] = {
8322 HDA_BIND_VOL("Capture Volume", &alc883_bind_cap_vol
),
8323 HDA_BIND_SW("Capture Switch", &alc883_bind_cap_switch
),
8325 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
8326 /* .name = "Capture Source", */
8327 .name
= "Input Source",
8329 .info
= alc_mux_enum_info
,
8330 .get
= alc_mux_enum_get
,
8331 .put
= alc_mux_enum_put
,
8336 static struct snd_kcontrol_new alc883_chmode_mixer
[] = {
8338 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
8339 .name
= "Channel Mode",
8340 .info
= alc_ch_mode_info
,
8341 .get
= alc_ch_mode_get
,
8342 .put
= alc_ch_mode_put
,
8347 static struct hda_verb alc883_init_verbs
[] = {
8348 /* ADC1: mute amp left and right */
8349 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8350 {0x08, AC_VERB_SET_CONNECT_SEL
, 0x00},
8351 /* ADC2: mute amp left and right */
8352 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
8353 {0x09, AC_VERB_SET_CONNECT_SEL
, 0x00},
8354 /* Front mixer: unmute input/output amp left and right (volume = 0) */
8355 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
8356 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
8357 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
8359 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
8360 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
8361 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
8363 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
8364 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
8365 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
8367 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
8368 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
8369 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
8371 /* mute analog input loopbacks */
8372 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
8373 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
8374 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
8375 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
8376 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
8378 /* Front Pin: output 0 (0x0c) */
8379 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
8380 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
8381 {0x14, AC_VERB_SET_CONNECT_SEL
, 0x00},
8382 /* Rear Pin: output 1 (0x0d) */
8383 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
8384 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
8385 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x01},
8386 /* CLFE Pin: output 2 (0x0e) */
8387 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
8388 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
8389 {0x16, AC_VERB_SET_CONNECT_SEL
, 0x02},
8390 /* Side Pin: output 3 (0x0f) */
8391 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
8392 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
8393 {0x17, AC_VERB_SET_CONNECT_SEL
, 0x03},
8394 /* Mic (rear) pin: input vref at 80% */
8395 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
8396 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
8397 /* Front Mic pin: input vref at 80% */
8398 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
8399 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
8400 /* Line In pin: input */
8401 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
8402 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
8403 /* Line-2 In: Headphone output (output 0 - 0x0c) */
8404 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
8405 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
8406 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0x00},
8407 /* CD pin widget for input */
8408 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
8410 /* FIXME: use matrix-type input source selection */
8411 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
8413 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8414 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
8415 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
8416 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
8418 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8419 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
8420 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
8421 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
8425 /* toggle speaker-output according to the hp-jack state */
8426 static void alc883_mitac_init_hook(struct hda_codec
*codec
)
8428 struct alc_spec
*spec
= codec
->spec
;
8430 spec
->autocfg
.hp_pins
[0] = 0x15;
8431 spec
->autocfg
.speaker_pins
[0] = 0x14;
8432 spec
->autocfg
.speaker_pins
[1] = 0x17;
8433 alc_automute_amp(codec
);
8436 /* auto-toggle front mic */
8438 static void alc883_mitac_mic_automute(struct hda_codec *codec)
8440 unsigned int present;
8443 present = snd_hda_codec_read(codec, 0x18, 0,
8444 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
8445 bits = present ? HDA_AMP_MUTE : 0;
8446 snd_hda_codec_amp_stereo(codec, 0x0b, HDA_INPUT, 1, HDA_AMP_MUTE, bits);
8450 static struct hda_verb alc883_mitac_verbs
[] = {
8452 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00},
8453 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
8455 {0x17, AC_VERB_SET_CONNECT_SEL
, 0x02},
8456 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
8458 /* enable unsolicited event */
8459 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
8460 /* {0x18, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_MIC_EVENT | AC_USRSP_EN}, */
8465 static struct hda_verb alc883_clevo_m720_verbs
[] = {
8467 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00},
8468 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
8470 {0x14, AC_VERB_SET_CONNECT_SEL
, 0x01},
8471 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
8473 /* enable unsolicited event */
8474 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
8475 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_MIC_EVENT
| AC_USRSP_EN
},
8480 static struct hda_verb alc883_2ch_fujitsu_pi2515_verbs
[] = {
8482 {0x14, AC_VERB_SET_CONNECT_SEL
, 0x00},
8483 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
8485 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x01},
8486 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
8488 /* enable unsolicited event */
8489 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
8494 static struct hda_verb alc883_targa_verbs
[] = {
8495 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8496 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
8498 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
8499 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
8501 /* Connect Line-Out side jack (SPDIF) to Side */
8502 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
8503 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
8504 {0x17, AC_VERB_SET_CONNECT_SEL
, 0x03},
8505 /* Connect Mic jack to CLFE */
8506 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
8507 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
8508 {0x18, AC_VERB_SET_CONNECT_SEL
, 0x02},
8509 /* Connect Line-in jack to Surround */
8510 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
8511 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
8512 {0x1a, AC_VERB_SET_CONNECT_SEL
, 0x01},
8513 /* Connect HP out jack to Front */
8514 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
8515 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
8516 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0x00},
8518 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
8523 static struct hda_verb alc883_lenovo_101e_verbs
[] = {
8524 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00},
8525 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_FRONT_EVENT
|AC_USRSP_EN
},
8526 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
|AC_USRSP_EN
},
8530 static struct hda_verb alc883_lenovo_nb0763_verbs
[] = {
8531 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00},
8532 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
8533 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
8534 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
8538 static struct hda_verb alc888_lenovo_ms7195_verbs
[] = {
8539 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8540 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
8541 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00},
8542 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_FRONT_EVENT
| AC_USRSP_EN
},
8543 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
8547 static struct hda_verb alc883_haier_w66_verbs
[] = {
8548 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8549 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
8551 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
8553 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0x00},
8554 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
8555 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
8556 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
8560 static struct hda_verb alc888_lenovo_sky_verbs
[] = {
8561 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8562 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
8563 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8564 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8565 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8566 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
8567 {0x1a, AC_VERB_SET_CONNECT_SEL
, 0x00},
8568 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
8572 static struct hda_verb alc888_6st_dell_verbs
[] = {
8573 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
8577 static struct hda_verb alc883_vaiott_verbs
[] = {
8579 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00},
8580 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
8582 /* enable unsolicited event */
8583 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
8588 static void alc888_3st_hp_init_hook(struct hda_codec
*codec
)
8590 struct alc_spec
*spec
= codec
->spec
;
8592 spec
->autocfg
.hp_pins
[0] = 0x1b;
8593 spec
->autocfg
.speaker_pins
[0] = 0x14;
8594 spec
->autocfg
.speaker_pins
[1] = 0x16;
8595 spec
->autocfg
.speaker_pins
[2] = 0x18;
8596 alc_automute_amp(codec
);
8599 static struct hda_verb alc888_3st_hp_verbs
[] = {
8600 {0x14, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* Front: output 0 (0x0c) */
8601 {0x16, AC_VERB_SET_CONNECT_SEL
, 0x01}, /* Rear : output 1 (0x0d) */
8602 {0x18, AC_VERB_SET_CONNECT_SEL
, 0x02}, /* CLFE : output 2 (0x0e) */
8603 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
8610 static struct hda_verb alc888_3st_hp_2ch_init
[] = {
8611 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
8612 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
8613 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
8614 { 0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
8621 static struct hda_verb alc888_3st_hp_4ch_init
[] = {
8622 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
8623 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
8624 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
8625 { 0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
8626 { 0x16, AC_VERB_SET_CONNECT_SEL
, 0x01 },
8633 static struct hda_verb alc888_3st_hp_6ch_init
[] = {
8634 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
8635 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
8636 { 0x18, AC_VERB_SET_CONNECT_SEL
, 0x02 },
8637 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
8638 { 0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
8639 { 0x16, AC_VERB_SET_CONNECT_SEL
, 0x01 },
8643 static struct hda_channel_mode alc888_3st_hp_modes
[3] = {
8644 { 2, alc888_3st_hp_2ch_init
},
8645 { 4, alc888_3st_hp_4ch_init
},
8646 { 6, alc888_3st_hp_6ch_init
},
8649 /* toggle front-jack and RCA according to the hp-jack state */
8650 static void alc888_lenovo_ms7195_front_automute(struct hda_codec
*codec
)
8652 unsigned int present
;
8654 present
= snd_hda_codec_read(codec
, 0x1b, 0,
8655 AC_VERB_GET_PIN_SENSE
, 0) & 0x80000000;
8656 snd_hda_codec_amp_stereo(codec
, 0x14, HDA_OUTPUT
, 0,
8657 HDA_AMP_MUTE
, present
? HDA_AMP_MUTE
: 0);
8658 snd_hda_codec_amp_stereo(codec
, 0x15, HDA_OUTPUT
, 0,
8659 HDA_AMP_MUTE
, present
? HDA_AMP_MUTE
: 0);
8662 /* toggle RCA according to the front-jack state */
8663 static void alc888_lenovo_ms7195_rca_automute(struct hda_codec
*codec
)
8665 unsigned int present
;
8667 present
= snd_hda_codec_read(codec
, 0x14, 0,
8668 AC_VERB_GET_PIN_SENSE
, 0) & 0x80000000;
8669 snd_hda_codec_amp_stereo(codec
, 0x15, HDA_OUTPUT
, 0,
8670 HDA_AMP_MUTE
, present
? HDA_AMP_MUTE
: 0);
8673 static void alc883_lenovo_ms7195_unsol_event(struct hda_codec
*codec
,
8676 if ((res
>> 26) == ALC880_HP_EVENT
)
8677 alc888_lenovo_ms7195_front_automute(codec
);
8678 if ((res
>> 26) == ALC880_FRONT_EVENT
)
8679 alc888_lenovo_ms7195_rca_automute(codec
);
8682 static struct hda_verb alc883_medion_md2_verbs
[] = {
8683 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8684 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
8686 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
8688 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
8692 /* toggle speaker-output according to the hp-jack state */
8693 static void alc883_medion_md2_init_hook(struct hda_codec
*codec
)
8695 struct alc_spec
*spec
= codec
->spec
;
8697 spec
->autocfg
.hp_pins
[0] = 0x14;
8698 spec
->autocfg
.speaker_pins
[0] = 0x15;
8699 alc_automute_amp(codec
);
8702 /* toggle speaker-output according to the hp-jack state */
8703 #define alc883_targa_init_hook alc882_targa_init_hook
8704 #define alc883_targa_unsol_event alc882_targa_unsol_event
8706 static void alc883_clevo_m720_mic_automute(struct hda_codec
*codec
)
8708 unsigned int present
;
8710 present
= snd_hda_codec_read(codec
, 0x18, 0,
8711 AC_VERB_GET_PIN_SENSE
, 0) & 0x80000000;
8712 snd_hda_codec_amp_stereo(codec
, 0x0b, HDA_INPUT
, 1,
8713 HDA_AMP_MUTE
, present
? HDA_AMP_MUTE
: 0);
8716 static void alc883_clevo_m720_init_hook(struct hda_codec
*codec
)
8718 struct alc_spec
*spec
= codec
->spec
;
8720 spec
->autocfg
.hp_pins
[0] = 0x15;
8721 spec
->autocfg
.speaker_pins
[0] = 0x14;
8722 alc_automute_amp(codec
);
8723 alc883_clevo_m720_mic_automute(codec
);
8726 static void alc883_clevo_m720_unsol_event(struct hda_codec
*codec
,
8729 switch (res
>> 26) {
8730 case ALC880_MIC_EVENT
:
8731 alc883_clevo_m720_mic_automute(codec
);
8734 alc_automute_amp_unsol_event(codec
, res
);
8739 /* toggle speaker-output according to the hp-jack state */
8740 static void alc883_2ch_fujitsu_pi2515_init_hook(struct hda_codec
*codec
)
8742 struct alc_spec
*spec
= codec
->spec
;
8744 spec
->autocfg
.hp_pins
[0] = 0x14;
8745 spec
->autocfg
.speaker_pins
[0] = 0x15;
8746 alc_automute_amp(codec
);
8749 static void alc883_haier_w66_init_hook(struct hda_codec
*codec
)
8751 struct alc_spec
*spec
= codec
->spec
;
8753 spec
->autocfg
.hp_pins
[0] = 0x1b;
8754 spec
->autocfg
.speaker_pins
[0] = 0x14;
8755 alc_automute_amp(codec
);
8758 static void alc883_lenovo_101e_ispeaker_automute(struct hda_codec
*codec
)
8760 unsigned int present
;
8763 present
= snd_hda_codec_read(codec
, 0x14, 0, AC_VERB_GET_PIN_SENSE
, 0)
8764 & AC_PINSENSE_PRESENCE
;
8765 bits
= present
? HDA_AMP_MUTE
: 0;
8766 snd_hda_codec_amp_stereo(codec
, 0x15, HDA_OUTPUT
, 0,
8767 HDA_AMP_MUTE
, bits
);
8770 static void alc883_lenovo_101e_all_automute(struct hda_codec
*codec
)
8772 unsigned int present
;
8775 present
= snd_hda_codec_read(codec
, 0x1b, 0,
8776 AC_VERB_GET_PIN_SENSE
, 0) & 0x80000000;
8777 bits
= present
? HDA_AMP_MUTE
: 0;
8778 snd_hda_codec_amp_stereo(codec
, 0x15, HDA_OUTPUT
, 0,
8779 HDA_AMP_MUTE
, bits
);
8780 snd_hda_codec_amp_stereo(codec
, 0x14, HDA_OUTPUT
, 0,
8781 HDA_AMP_MUTE
, bits
);
8784 static void alc883_lenovo_101e_unsol_event(struct hda_codec
*codec
,
8787 if ((res
>> 26) == ALC880_HP_EVENT
)
8788 alc883_lenovo_101e_all_automute(codec
);
8789 if ((res
>> 26) == ALC880_FRONT_EVENT
)
8790 alc883_lenovo_101e_ispeaker_automute(codec
);
8793 /* toggle speaker-output according to the hp-jack state */
8794 static void alc883_acer_aspire_init_hook(struct hda_codec
*codec
)
8796 struct alc_spec
*spec
= codec
->spec
;
8798 spec
->autocfg
.hp_pins
[0] = 0x14;
8799 spec
->autocfg
.speaker_pins
[0] = 0x15;
8800 spec
->autocfg
.speaker_pins
[1] = 0x16;
8801 alc_automute_amp(codec
);
8804 static struct hda_verb alc883_acer_eapd_verbs
[] = {
8805 /* HP Pin: output 0 (0x0c) */
8806 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
8807 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
8808 {0x14, AC_VERB_SET_CONNECT_SEL
, 0x00},
8809 /* Front Pin: output 0 (0x0c) */
8810 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
8811 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00},
8812 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
8813 {0x16, AC_VERB_SET_CONNECT_SEL
, 0x00},
8814 /* eanable EAPD on medion laptop */
8815 {0x20, AC_VERB_SET_COEF_INDEX
, 0x07},
8816 {0x20, AC_VERB_SET_PROC_COEF
, 0x3050},
8817 /* enable unsolicited event */
8818 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
8822 static void alc888_6st_dell_init_hook(struct hda_codec
*codec
)
8824 struct alc_spec
*spec
= codec
->spec
;
8826 spec
->autocfg
.hp_pins
[0] = 0x1b;
8827 spec
->autocfg
.speaker_pins
[0] = 0x14;
8828 spec
->autocfg
.speaker_pins
[1] = 0x15;
8829 spec
->autocfg
.speaker_pins
[2] = 0x16;
8830 spec
->autocfg
.speaker_pins
[3] = 0x17;
8831 alc_automute_amp(codec
);
8834 static void alc888_lenovo_sky_init_hook(struct hda_codec
*codec
)
8836 struct alc_spec
*spec
= codec
->spec
;
8838 spec
->autocfg
.hp_pins
[0] = 0x1b;
8839 spec
->autocfg
.speaker_pins
[0] = 0x14;
8840 spec
->autocfg
.speaker_pins
[1] = 0x15;
8841 spec
->autocfg
.speaker_pins
[2] = 0x16;
8842 spec
->autocfg
.speaker_pins
[3] = 0x17;
8843 spec
->autocfg
.speaker_pins
[4] = 0x1a;
8844 alc_automute_amp(codec
);
8847 static void alc883_vaiott_init_hook(struct hda_codec
*codec
)
8849 struct alc_spec
*spec
= codec
->spec
;
8851 spec
->autocfg
.hp_pins
[0] = 0x15;
8852 spec
->autocfg
.speaker_pins
[0] = 0x14;
8853 spec
->autocfg
.speaker_pins
[1] = 0x17;
8854 alc_automute_amp(codec
);
8858 * generic initialization of ADC, input mixers and output mixers
8860 static struct hda_verb alc883_auto_init_verbs
[] = {
8862 * Unmute ADC0-2 and set the default input to mic-in
8864 {0x08, AC_VERB_SET_CONNECT_SEL
, 0x00},
8865 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8866 {0x09, AC_VERB_SET_CONNECT_SEL
, 0x00},
8867 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8869 /* Mute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
8871 * Note: PASD motherboards uses the Line In 2 as the input for
8872 * front panel mic (mic 2)
8874 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
8875 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
8876 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
8877 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
8878 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
8879 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
8882 * Set up output mixers (0x0c - 0x0f)
8884 /* set vol=0 to output mixers */
8885 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
8886 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
8887 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
8888 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
8889 /* set up input amps for analog loopback */
8890 /* Amp Indices: DAC = 0, mixer = 1 */
8891 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8892 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
8893 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8894 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
8895 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8896 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
8897 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8898 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
8899 {0x26, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8900 {0x26, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
8902 /* FIXME: use matrix-type input source selection */
8903 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
8905 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8906 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
8907 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(2)},
8908 /* {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)}, */
8909 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(4)},
8911 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8912 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
8913 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(2)},
8914 /* {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)}, */
8915 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(4)},
8920 static struct hda_verb alc888_asus_m90v_verbs
[] = {
8921 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
8922 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
8923 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
8924 /* enable unsolicited event */
8925 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
8926 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_MIC_EVENT
| AC_USRSP_EN
},
8930 static void alc883_nb_mic_automute(struct hda_codec
*codec
)
8932 unsigned int present
;
8934 present
= snd_hda_codec_read(codec
, 0x18, 0,
8935 AC_VERB_GET_PIN_SENSE
, 0) & 0x80000000;
8936 snd_hda_codec_write(codec
, 0x23, 0, AC_VERB_SET_AMP_GAIN_MUTE
,
8937 0x7000 | (0x00 << 8) | (present
? 0 : 0x80));
8938 snd_hda_codec_write(codec
, 0x23, 0, AC_VERB_SET_AMP_GAIN_MUTE
,
8939 0x7000 | (0x01 << 8) | (present
? 0x80 : 0));
8942 static void alc883_M90V_init_hook(struct hda_codec
*codec
)
8944 struct alc_spec
*spec
= codec
->spec
;
8946 spec
->autocfg
.hp_pins
[0] = 0x1b;
8947 spec
->autocfg
.speaker_pins
[0] = 0x14;
8948 spec
->autocfg
.speaker_pins
[1] = 0x15;
8949 spec
->autocfg
.speaker_pins
[2] = 0x16;
8950 alc_automute_pin(codec
);
8953 static void alc883_mode2_unsol_event(struct hda_codec
*codec
,
8956 switch (res
>> 26) {
8957 case ALC880_MIC_EVENT
:
8958 alc883_nb_mic_automute(codec
);
8961 alc_sku_unsol_event(codec
, res
);
8966 static void alc883_mode2_inithook(struct hda_codec
*codec
)
8968 alc883_M90V_init_hook(codec
);
8969 alc883_nb_mic_automute(codec
);
8972 static struct hda_verb alc888_asus_eee1601_verbs
[] = {
8973 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
8974 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
8975 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
8976 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
8977 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
8978 {0x20, AC_VERB_SET_COEF_INDEX
, 0x0b},
8979 {0x20, AC_VERB_SET_PROC_COEF
, 0x0838},
8980 /* enable unsolicited event */
8981 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
8985 static void alc883_eee1601_inithook(struct hda_codec
*codec
)
8987 struct alc_spec
*spec
= codec
->spec
;
8989 spec
->autocfg
.hp_pins
[0] = 0x14;
8990 spec
->autocfg
.speaker_pins
[0] = 0x1b;
8991 alc_automute_pin(codec
);
8994 static struct hda_verb alc889A_mb31_verbs
[] = {
8995 /* Init rear pin (used as headphone output) */
8996 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0xc4}, /* Apple Headphones */
8997 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* Connect to front */
8998 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
8999 /* Init line pin (used as output in 4ch and 6ch mode) */
9000 {0x1a, AC_VERB_SET_CONNECT_SEL
, 0x02}, /* Connect to CLFE */
9001 /* Init line 2 pin (used as headphone out by default) */
9002 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
}, /* Use as input */
9003 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
}, /* Mute output */
9007 /* Mute speakers according to the headphone jack state */
9008 static void alc889A_mb31_automute(struct hda_codec
*codec
)
9010 unsigned int present
;
9012 /* Mute only in 2ch or 4ch mode */
9013 if (snd_hda_codec_read(codec
, 0x15, 0, AC_VERB_GET_CONNECT_SEL
, 0)
9015 present
= snd_hda_codec_read(codec
, 0x15, 0,
9016 AC_VERB_GET_PIN_SENSE
, 0) & AC_PINSENSE_PRESENCE
;
9017 snd_hda_codec_amp_stereo(codec
, 0x14, HDA_OUTPUT
, 0,
9018 HDA_AMP_MUTE
, present
? HDA_AMP_MUTE
: 0);
9019 snd_hda_codec_amp_stereo(codec
, 0x16, HDA_OUTPUT
, 0,
9020 HDA_AMP_MUTE
, present
? HDA_AMP_MUTE
: 0);
9024 static void alc889A_mb31_unsol_event(struct hda_codec
*codec
, unsigned int res
)
9026 if ((res
>> 26) == ALC880_HP_EVENT
)
9027 alc889A_mb31_automute(codec
);
9030 #ifdef CONFIG_SND_HDA_POWER_SAVE
9031 #define alc883_loopbacks alc880_loopbacks
9034 /* pcm configuration: identical with ALC880 */
9035 #define alc883_pcm_analog_playback alc880_pcm_analog_playback
9036 #define alc883_pcm_analog_capture alc880_pcm_analog_capture
9037 #define alc883_pcm_analog_alt_capture alc880_pcm_analog_alt_capture
9038 #define alc883_pcm_digital_playback alc880_pcm_digital_playback
9039 #define alc883_pcm_digital_capture alc880_pcm_digital_capture
9042 * configuration and preset
9044 static const char *alc883_models
[ALC883_MODEL_LAST
] = {
9045 [ALC883_3ST_2ch_DIG
] = "3stack-dig",
9046 [ALC883_3ST_6ch_DIG
] = "3stack-6ch-dig",
9047 [ALC883_3ST_6ch
] = "3stack-6ch",
9048 [ALC883_6ST_DIG
] = "6stack-dig",
9049 [ALC883_TARGA_DIG
] = "targa-dig",
9050 [ALC883_TARGA_2ch_DIG
] = "targa-2ch-dig",
9051 [ALC883_TARGA_8ch_DIG
] = "targa-8ch-dig",
9052 [ALC883_ACER
] = "acer",
9053 [ALC883_ACER_ASPIRE
] = "acer-aspire",
9054 [ALC888_ACER_ASPIRE_4930G
] = "acer-aspire-4930g",
9055 [ALC888_ACER_ASPIRE_6530G
] = "acer-aspire-6530g",
9056 [ALC888_ACER_ASPIRE_8930G
] = "acer-aspire-8930g",
9057 [ALC883_MEDION
] = "medion",
9058 [ALC883_MEDION_MD2
] = "medion-md2",
9059 [ALC883_LAPTOP_EAPD
] = "laptop-eapd",
9060 [ALC883_LENOVO_101E_2ch
] = "lenovo-101e",
9061 [ALC883_LENOVO_NB0763
] = "lenovo-nb0763",
9062 [ALC888_LENOVO_MS7195_DIG
] = "lenovo-ms7195-dig",
9063 [ALC888_LENOVO_SKY
] = "lenovo-sky",
9064 [ALC883_HAIER_W66
] = "haier-w66",
9065 [ALC888_3ST_HP
] = "3stack-hp",
9066 [ALC888_6ST_DELL
] = "6stack-dell",
9067 [ALC883_MITAC
] = "mitac",
9068 [ALC883_CLEVO_M720
] = "clevo-m720",
9069 [ALC883_FUJITSU_PI2515
] = "fujitsu-pi2515",
9070 [ALC888_FUJITSU_XA3530
] = "fujitsu-xa3530",
9071 [ALC883_3ST_6ch_INTEL
] = "3stack-6ch-intel",
9072 [ALC1200_ASUS_P5Q
] = "asus-p5q",
9073 [ALC889A_MB31
] = "mb31",
9074 [ALC883_SONY_VAIO_TT
] = "sony-vaio-tt",
9075 [ALC883_AUTO
] = "auto",
9078 static struct snd_pci_quirk alc883_cfg_tbl
[] = {
9079 SND_PCI_QUIRK(0x1019, 0x6668, "ECS", ALC883_3ST_6ch_DIG
),
9080 SND_PCI_QUIRK(0x1025, 0x006c, "Acer Aspire 9810", ALC883_ACER_ASPIRE
),
9081 SND_PCI_QUIRK(0x1025, 0x0090, "Acer Aspire", ALC883_ACER_ASPIRE
),
9082 SND_PCI_QUIRK(0x1025, 0x010a, "Acer Ferrari 5000", ALC883_ACER_ASPIRE
),
9083 SND_PCI_QUIRK(0x1025, 0x0110, "Acer Aspire", ALC883_ACER_ASPIRE
),
9084 SND_PCI_QUIRK(0x1025, 0x0112, "Acer Aspire 9303", ALC883_ACER_ASPIRE
),
9085 SND_PCI_QUIRK(0x1025, 0x0121, "Acer Aspire 5920G", ALC883_ACER_ASPIRE
),
9086 SND_PCI_QUIRK(0x1025, 0x013e, "Acer Aspire 4930G",
9087 ALC888_ACER_ASPIRE_4930G
),
9088 SND_PCI_QUIRK(0x1025, 0x013f, "Acer Aspire 5930G",
9089 ALC888_ACER_ASPIRE_4930G
),
9090 SND_PCI_QUIRK(0x1025, 0x0145, "Acer Aspire 8930G",
9091 ALC888_ACER_ASPIRE_8930G
),
9092 SND_PCI_QUIRK(0x1025, 0x0146, "Acer Aspire 6935G",
9093 ALC888_ACER_ASPIRE_8930G
),
9094 SND_PCI_QUIRK(0x1025, 0x0157, "Acer X3200", ALC883_AUTO
),
9095 SND_PCI_QUIRK(0x1025, 0x0158, "Acer AX1700-U3700A", ALC883_AUTO
),
9096 SND_PCI_QUIRK(0x1025, 0x015e, "Acer Aspire 6930G",
9097 ALC888_ACER_ASPIRE_6530G
),
9098 SND_PCI_QUIRK(0x1025, 0x0166, "Acer Aspire 6530G",
9099 ALC888_ACER_ASPIRE_6530G
),
9100 /* default Acer -- disabled as it causes more problems.
9101 * model=auto should work fine now
9103 /* SND_PCI_QUIRK_VENDOR(0x1025, "Acer laptop", ALC883_ACER), */
9104 SND_PCI_QUIRK(0x1028, 0x020d, "Dell Inspiron 530", ALC888_6ST_DELL
),
9105 SND_PCI_QUIRK(0x103c, 0x2a3d, "HP Pavillion", ALC883_6ST_DIG
),
9106 SND_PCI_QUIRK(0x103c, 0x2a4f, "HP Samba", ALC888_3ST_HP
),
9107 SND_PCI_QUIRK(0x103c, 0x2a60, "HP Lucknow", ALC888_3ST_HP
),
9108 SND_PCI_QUIRK(0x103c, 0x2a61, "HP Nettle", ALC883_6ST_DIG
),
9109 SND_PCI_QUIRK(0x103c, 0x2a66, "HP Acacia", ALC888_3ST_HP
),
9110 SND_PCI_QUIRK(0x103c, 0x2a72, "HP Educ.ar", ALC888_3ST_HP
),
9111 SND_PCI_QUIRK(0x1043, 0x1873, "Asus M90V", ALC888_ASUS_M90V
),
9112 SND_PCI_QUIRK(0x1043, 0x8249, "Asus M2A-VM HDMI", ALC883_3ST_6ch_DIG
),
9113 SND_PCI_QUIRK(0x1043, 0x8284, "Asus Z37E", ALC883_6ST_DIG
),
9114 SND_PCI_QUIRK(0x1043, 0x82fe, "Asus P5Q-EM HDMI", ALC1200_ASUS_P5Q
),
9115 SND_PCI_QUIRK(0x1043, 0x835f, "Asus Eee 1601", ALC888_ASUS_EEE1601
),
9116 SND_PCI_QUIRK(0x105b, 0x0ce8, "Foxconn P35AX-S", ALC883_6ST_DIG
),
9117 SND_PCI_QUIRK(0x105b, 0x6668, "Foxconn", ALC883_6ST_DIG
),
9118 SND_PCI_QUIRK(0x1071, 0x8227, "Mitac 82801H", ALC883_MITAC
),
9119 SND_PCI_QUIRK(0x1071, 0x8253, "Mitac 8252d", ALC883_MITAC
),
9120 SND_PCI_QUIRK(0x1071, 0x8258, "Evesham Voyaeger", ALC883_LAPTOP_EAPD
),
9121 SND_PCI_QUIRK(0x10f1, 0x2350, "TYAN-S2350", ALC888_6ST_DELL
),
9122 SND_PCI_QUIRK(0x108e, 0x534d, NULL
, ALC883_3ST_6ch
),
9123 SND_PCI_QUIRK(0x1458, 0xa002, "MSI", ALC883_6ST_DIG
),
9124 SND_PCI_QUIRK(0x1462, 0x0349, "MSI", ALC883_TARGA_2ch_DIG
),
9125 SND_PCI_QUIRK(0x1462, 0x040d, "MSI", ALC883_TARGA_2ch_DIG
),
9126 SND_PCI_QUIRK(0x1462, 0x0579, "MSI", ALC883_TARGA_2ch_DIG
),
9127 SND_PCI_QUIRK(0x1462, 0x2fb3, "MSI", ALC883_TARGA_2ch_DIG
),
9128 SND_PCI_QUIRK(0x1462, 0x3729, "MSI S420", ALC883_TARGA_DIG
),
9129 SND_PCI_QUIRK(0x1462, 0x3783, "NEC S970", ALC883_TARGA_DIG
),
9130 SND_PCI_QUIRK(0x1462, 0x3b7f, "MSI", ALC883_TARGA_2ch_DIG
),
9131 SND_PCI_QUIRK(0x1462, 0x3ef9, "MSI", ALC883_TARGA_DIG
),
9132 SND_PCI_QUIRK(0x1462, 0x3fc1, "MSI", ALC883_TARGA_DIG
),
9133 SND_PCI_QUIRK(0x1462, 0x3fc3, "MSI", ALC883_TARGA_DIG
),
9134 SND_PCI_QUIRK(0x1462, 0x3fcc, "MSI", ALC883_TARGA_DIG
),
9135 SND_PCI_QUIRK(0x1462, 0x3fdf, "MSI", ALC883_TARGA_DIG
),
9136 SND_PCI_QUIRK(0x1462, 0x4314, "MSI", ALC883_TARGA_DIG
),
9137 SND_PCI_QUIRK(0x1462, 0x4319, "MSI", ALC883_TARGA_DIG
),
9138 SND_PCI_QUIRK(0x1462, 0x4324, "MSI", ALC883_TARGA_DIG
),
9139 SND_PCI_QUIRK(0x1462, 0x6510, "MSI GX620", ALC883_TARGA_8ch_DIG
),
9140 SND_PCI_QUIRK(0x1462, 0x6668, "MSI", ALC883_6ST_DIG
),
9141 SND_PCI_QUIRK(0x1462, 0x7187, "MSI", ALC883_6ST_DIG
),
9142 SND_PCI_QUIRK(0x1462, 0x7250, "MSI", ALC883_6ST_DIG
),
9143 SND_PCI_QUIRK(0x1462, 0x7260, "MSI 7260", ALC883_TARGA_DIG
),
9144 SND_PCI_QUIRK(0x1462, 0x7267, "MSI", ALC883_3ST_6ch_DIG
),
9145 SND_PCI_QUIRK(0x1462, 0x7280, "MSI", ALC883_6ST_DIG
),
9146 SND_PCI_QUIRK(0x1462, 0x7327, "MSI", ALC883_6ST_DIG
),
9147 SND_PCI_QUIRK(0x1462, 0x7350, "MSI", ALC883_6ST_DIG
),
9148 SND_PCI_QUIRK(0x1462, 0xa422, "MSI", ALC883_TARGA_2ch_DIG
),
9149 SND_PCI_QUIRK(0x147b, 0x1083, "Abit IP35-PRO", ALC883_6ST_DIG
),
9150 SND_PCI_QUIRK(0x1558, 0x0721, "Clevo laptop M720R", ALC883_CLEVO_M720
),
9151 SND_PCI_QUIRK(0x1558, 0x0722, "Clevo laptop M720SR", ALC883_CLEVO_M720
),
9152 SND_PCI_QUIRK_VENDOR(0x1558, "Clevo laptop", ALC883_LAPTOP_EAPD
),
9153 SND_PCI_QUIRK(0x15d9, 0x8780, "Supermicro PDSBA", ALC883_3ST_6ch
),
9154 SND_PCI_QUIRK(0x161f, 0x2054, "Medion laptop", ALC883_MEDION
),
9155 SND_PCI_QUIRK_MASK(0x1734, 0xfff0, 0x1100, "FSC AMILO Xi/Pi25xx",
9156 ALC883_FUJITSU_PI2515
),
9157 SND_PCI_QUIRK_MASK(0x1734, 0xfff0, 0x1130, "Fujitsu AMILO Xa35xx",
9158 ALC888_FUJITSU_XA3530
),
9159 SND_PCI_QUIRK(0x17aa, 0x101e, "Lenovo 101e", ALC883_LENOVO_101E_2ch
),
9160 SND_PCI_QUIRK(0x17aa, 0x2085, "Lenovo NB0763", ALC883_LENOVO_NB0763
),
9161 SND_PCI_QUIRK(0x17aa, 0x3bfc, "Lenovo NB0763", ALC883_LENOVO_NB0763
),
9162 SND_PCI_QUIRK(0x17aa, 0x3bfd, "Lenovo NB0763", ALC883_LENOVO_NB0763
),
9163 SND_PCI_QUIRK(0x17aa, 0x101d, "Lenovo Sky", ALC888_LENOVO_SKY
),
9164 SND_PCI_QUIRK(0x17c0, 0x4071, "MEDION MD2", ALC883_MEDION_MD2
),
9165 SND_PCI_QUIRK(0x17c0, 0x4085, "MEDION MD96630", ALC888_LENOVO_MS7195_DIG
),
9166 SND_PCI_QUIRK(0x17f2, 0x5000, "Albatron KI690-AM2", ALC883_6ST_DIG
),
9167 SND_PCI_QUIRK(0x1991, 0x5625, "Haier W66", ALC883_HAIER_W66
),
9168 SND_PCI_QUIRK(0x8086, 0x0001, "DG33BUC", ALC883_3ST_6ch_INTEL
),
9169 SND_PCI_QUIRK(0x8086, 0x0002, "DG33FBC", ALC883_3ST_6ch_INTEL
),
9170 SND_PCI_QUIRK(0x8086, 0x2503, "82801H", ALC883_MITAC
),
9171 SND_PCI_QUIRK(0x8086, 0x0022, "DX58SO", ALC883_3ST_6ch_INTEL
),
9172 SND_PCI_QUIRK(0x8086, 0xd601, "D102GGC", ALC883_3ST_6ch
),
9173 SND_PCI_QUIRK(0x104d, 0x9047, "Sony Vaio TT", ALC883_SONY_VAIO_TT
),
9177 static hda_nid_t alc883_slave_dig_outs
[] = {
9178 ALC1200_DIGOUT_NID
, 0,
9181 static hda_nid_t alc1200_slave_dig_outs
[] = {
9182 ALC883_DIGOUT_NID
, 0,
9185 static struct alc_config_preset alc883_presets
[] = {
9186 [ALC883_3ST_2ch_DIG
] = {
9187 .mixers
= { alc883_3ST_2ch_mixer
},
9188 .init_verbs
= { alc883_init_verbs
},
9189 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
9190 .dac_nids
= alc883_dac_nids
,
9191 .dig_out_nid
= ALC883_DIGOUT_NID
,
9192 .dig_in_nid
= ALC883_DIGIN_NID
,
9193 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_2ch_modes
),
9194 .channel_mode
= alc883_3ST_2ch_modes
,
9195 .input_mux
= &alc883_capture_source
,
9197 [ALC883_3ST_6ch_DIG
] = {
9198 .mixers
= { alc883_3ST_6ch_mixer
, alc883_chmode_mixer
},
9199 .init_verbs
= { alc883_init_verbs
},
9200 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
9201 .dac_nids
= alc883_dac_nids
,
9202 .dig_out_nid
= ALC883_DIGOUT_NID
,
9203 .dig_in_nid
= ALC883_DIGIN_NID
,
9204 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_6ch_modes
),
9205 .channel_mode
= alc883_3ST_6ch_modes
,
9207 .input_mux
= &alc883_capture_source
,
9209 [ALC883_3ST_6ch
] = {
9210 .mixers
= { alc883_3ST_6ch_mixer
, alc883_chmode_mixer
},
9211 .init_verbs
= { alc883_init_verbs
},
9212 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
9213 .dac_nids
= alc883_dac_nids
,
9214 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_6ch_modes
),
9215 .channel_mode
= alc883_3ST_6ch_modes
,
9217 .input_mux
= &alc883_capture_source
,
9219 [ALC883_3ST_6ch_INTEL
] = {
9220 .mixers
= { alc883_3ST_6ch_intel_mixer
, alc883_chmode_mixer
},
9221 .init_verbs
= { alc883_init_verbs
},
9222 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
9223 .dac_nids
= alc883_dac_nids
,
9224 .dig_out_nid
= ALC883_DIGOUT_NID
,
9225 .dig_in_nid
= ALC883_DIGIN_NID
,
9226 .slave_dig_outs
= alc883_slave_dig_outs
,
9227 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_6ch_intel_modes
),
9228 .channel_mode
= alc883_3ST_6ch_intel_modes
,
9230 .input_mux
= &alc883_3stack_6ch_intel
,
9232 [ALC883_6ST_DIG
] = {
9233 .mixers
= { alc883_base_mixer
, alc883_chmode_mixer
},
9234 .init_verbs
= { alc883_init_verbs
},
9235 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
9236 .dac_nids
= alc883_dac_nids
,
9237 .dig_out_nid
= ALC883_DIGOUT_NID
,
9238 .dig_in_nid
= ALC883_DIGIN_NID
,
9239 .num_channel_mode
= ARRAY_SIZE(alc883_sixstack_modes
),
9240 .channel_mode
= alc883_sixstack_modes
,
9241 .input_mux
= &alc883_capture_source
,
9243 [ALC883_TARGA_DIG
] = {
9244 .mixers
= { alc883_targa_mixer
, alc883_chmode_mixer
},
9245 .init_verbs
= { alc883_init_verbs
, alc880_gpio3_init_verbs
,
9246 alc883_targa_verbs
},
9247 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
9248 .dac_nids
= alc883_dac_nids
,
9249 .dig_out_nid
= ALC883_DIGOUT_NID
,
9250 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_6ch_modes
),
9251 .channel_mode
= alc883_3ST_6ch_modes
,
9253 .input_mux
= &alc883_capture_source
,
9254 .unsol_event
= alc883_targa_unsol_event
,
9255 .init_hook
= alc883_targa_init_hook
,
9257 [ALC883_TARGA_2ch_DIG
] = {
9258 .mixers
= { alc883_targa_2ch_mixer
},
9259 .init_verbs
= { alc883_init_verbs
, alc880_gpio3_init_verbs
,
9260 alc883_targa_verbs
},
9261 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
9262 .dac_nids
= alc883_dac_nids
,
9263 .adc_nids
= alc883_adc_nids_alt
,
9264 .num_adc_nids
= ARRAY_SIZE(alc883_adc_nids_alt
),
9265 .dig_out_nid
= ALC883_DIGOUT_NID
,
9266 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_2ch_modes
),
9267 .channel_mode
= alc883_3ST_2ch_modes
,
9268 .input_mux
= &alc883_capture_source
,
9269 .unsol_event
= alc883_targa_unsol_event
,
9270 .init_hook
= alc883_targa_init_hook
,
9272 [ALC883_TARGA_8ch_DIG
] = {
9273 .mixers
= { alc883_base_mixer
, alc883_chmode_mixer
},
9274 .init_verbs
= { alc883_init_verbs
, alc880_gpio3_init_verbs
,
9275 alc883_targa_verbs
},
9276 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
9277 .dac_nids
= alc883_dac_nids
,
9278 .num_adc_nids
= ARRAY_SIZE(alc883_adc_nids_rev
),
9279 .adc_nids
= alc883_adc_nids_rev
,
9280 .capsrc_nids
= alc883_capsrc_nids_rev
,
9281 .dig_out_nid
= ALC883_DIGOUT_NID
,
9282 .dig_in_nid
= ALC883_DIGIN_NID
,
9283 .num_channel_mode
= ARRAY_SIZE(alc883_4ST_8ch_modes
),
9284 .channel_mode
= alc883_4ST_8ch_modes
,
9286 .input_mux
= &alc883_capture_source
,
9287 .unsol_event
= alc883_targa_unsol_event
,
9288 .init_hook
= alc883_targa_init_hook
,
9291 .mixers
= { alc883_base_mixer
},
9292 /* On TravelMate laptops, GPIO 0 enables the internal speaker
9293 * and the headphone jack. Turn this on and rely on the
9294 * standard mute methods whenever the user wants to turn
9295 * these outputs off.
9297 .init_verbs
= { alc883_init_verbs
, alc880_gpio1_init_verbs
},
9298 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
9299 .dac_nids
= alc883_dac_nids
,
9300 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_2ch_modes
),
9301 .channel_mode
= alc883_3ST_2ch_modes
,
9302 .input_mux
= &alc883_capture_source
,
9304 [ALC883_ACER_ASPIRE
] = {
9305 .mixers
= { alc883_acer_aspire_mixer
},
9306 .init_verbs
= { alc883_init_verbs
, alc883_acer_eapd_verbs
},
9307 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
9308 .dac_nids
= alc883_dac_nids
,
9309 .dig_out_nid
= ALC883_DIGOUT_NID
,
9310 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_2ch_modes
),
9311 .channel_mode
= alc883_3ST_2ch_modes
,
9312 .input_mux
= &alc883_capture_source
,
9313 .unsol_event
= alc_automute_amp_unsol_event
,
9314 .init_hook
= alc883_acer_aspire_init_hook
,
9316 [ALC888_ACER_ASPIRE_4930G
] = {
9317 .mixers
= { alc888_base_mixer
,
9318 alc883_chmode_mixer
},
9319 .init_verbs
= { alc883_init_verbs
, alc880_gpio1_init_verbs
,
9320 alc888_acer_aspire_4930g_verbs
},
9321 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
9322 .dac_nids
= alc883_dac_nids
,
9323 .num_adc_nids
= ARRAY_SIZE(alc883_adc_nids_rev
),
9324 .adc_nids
= alc883_adc_nids_rev
,
9325 .capsrc_nids
= alc883_capsrc_nids_rev
,
9326 .dig_out_nid
= ALC883_DIGOUT_NID
,
9327 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_6ch_modes
),
9328 .channel_mode
= alc883_3ST_6ch_modes
,
9331 ARRAY_SIZE(alc888_2_capture_sources
),
9332 .input_mux
= alc888_2_capture_sources
,
9333 .unsol_event
= alc_automute_amp_unsol_event
,
9334 .init_hook
= alc888_acer_aspire_4930g_init_hook
,
9336 [ALC888_ACER_ASPIRE_6530G
] = {
9337 .mixers
= { alc888_acer_aspire_6530_mixer
},
9338 .init_verbs
= { alc883_init_verbs
, alc880_gpio1_init_verbs
,
9339 alc888_acer_aspire_6530g_verbs
},
9340 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
9341 .dac_nids
= alc883_dac_nids
,
9342 .num_adc_nids
= ARRAY_SIZE(alc883_adc_nids_rev
),
9343 .adc_nids
= alc883_adc_nids_rev
,
9344 .capsrc_nids
= alc883_capsrc_nids_rev
,
9345 .dig_out_nid
= ALC883_DIGOUT_NID
,
9346 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_2ch_modes
),
9347 .channel_mode
= alc883_3ST_2ch_modes
,
9349 ARRAY_SIZE(alc888_2_capture_sources
),
9350 .input_mux
= alc888_acer_aspire_6530_sources
,
9351 .unsol_event
= alc_automute_amp_unsol_event
,
9352 .init_hook
= alc888_acer_aspire_6530g_init_hook
,
9354 [ALC888_ACER_ASPIRE_8930G
] = {
9355 .mixers
= { alc888_base_mixer
,
9356 alc883_chmode_mixer
},
9357 .init_verbs
= { alc883_init_verbs
, alc880_gpio1_init_verbs
,
9358 alc889_acer_aspire_8930g_verbs
},
9359 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
9360 .dac_nids
= alc883_dac_nids
,
9361 .num_adc_nids
= ARRAY_SIZE(alc889_adc_nids
),
9362 .adc_nids
= alc889_adc_nids
,
9363 .capsrc_nids
= alc889_capsrc_nids
,
9364 .dig_out_nid
= ALC883_DIGOUT_NID
,
9365 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_6ch_modes
),
9366 .channel_mode
= alc883_3ST_6ch_modes
,
9368 .const_channel_count
= 6,
9370 ARRAY_SIZE(alc889_capture_sources
),
9371 .input_mux
= alc889_capture_sources
,
9372 .unsol_event
= alc_automute_amp_unsol_event
,
9373 .init_hook
= alc889_acer_aspire_8930g_init_hook
,
9376 .mixers
= { alc883_fivestack_mixer
,
9377 alc883_chmode_mixer
},
9378 .init_verbs
= { alc883_init_verbs
,
9379 alc883_medion_eapd_verbs
},
9380 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
9381 .dac_nids
= alc883_dac_nids
,
9382 .adc_nids
= alc883_adc_nids_alt
,
9383 .num_adc_nids
= ARRAY_SIZE(alc883_adc_nids_alt
),
9384 .num_channel_mode
= ARRAY_SIZE(alc883_sixstack_modes
),
9385 .channel_mode
= alc883_sixstack_modes
,
9386 .input_mux
= &alc883_capture_source
,
9388 [ALC883_MEDION_MD2
] = {
9389 .mixers
= { alc883_medion_md2_mixer
},
9390 .init_verbs
= { alc883_init_verbs
, alc883_medion_md2_verbs
},
9391 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
9392 .dac_nids
= alc883_dac_nids
,
9393 .dig_out_nid
= ALC883_DIGOUT_NID
,
9394 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_2ch_modes
),
9395 .channel_mode
= alc883_3ST_2ch_modes
,
9396 .input_mux
= &alc883_capture_source
,
9397 .unsol_event
= alc_automute_amp_unsol_event
,
9398 .init_hook
= alc883_medion_md2_init_hook
,
9400 [ALC883_LAPTOP_EAPD
] = {
9401 .mixers
= { alc883_base_mixer
},
9402 .init_verbs
= { alc883_init_verbs
, alc882_eapd_verbs
},
9403 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
9404 .dac_nids
= alc883_dac_nids
,
9405 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_2ch_modes
),
9406 .channel_mode
= alc883_3ST_2ch_modes
,
9407 .input_mux
= &alc883_capture_source
,
9409 [ALC883_CLEVO_M720
] = {
9410 .mixers
= { alc883_clevo_m720_mixer
},
9411 .init_verbs
= { alc883_init_verbs
, alc883_clevo_m720_verbs
},
9412 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
9413 .dac_nids
= alc883_dac_nids
,
9414 .dig_out_nid
= ALC883_DIGOUT_NID
,
9415 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_2ch_modes
),
9416 .channel_mode
= alc883_3ST_2ch_modes
,
9417 .input_mux
= &alc883_capture_source
,
9418 .unsol_event
= alc883_clevo_m720_unsol_event
,
9419 .init_hook
= alc883_clevo_m720_init_hook
,
9421 [ALC883_LENOVO_101E_2ch
] = {
9422 .mixers
= { alc883_lenovo_101e_2ch_mixer
},
9423 .init_verbs
= { alc883_init_verbs
, alc883_lenovo_101e_verbs
},
9424 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
9425 .dac_nids
= alc883_dac_nids
,
9426 .adc_nids
= alc883_adc_nids_alt
,
9427 .num_adc_nids
= ARRAY_SIZE(alc883_adc_nids_alt
),
9428 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_2ch_modes
),
9429 .channel_mode
= alc883_3ST_2ch_modes
,
9430 .input_mux
= &alc883_lenovo_101e_capture_source
,
9431 .unsol_event
= alc883_lenovo_101e_unsol_event
,
9432 .init_hook
= alc883_lenovo_101e_all_automute
,
9434 [ALC883_LENOVO_NB0763
] = {
9435 .mixers
= { alc883_lenovo_nb0763_mixer
},
9436 .init_verbs
= { alc883_init_verbs
, alc883_lenovo_nb0763_verbs
},
9437 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
9438 .dac_nids
= alc883_dac_nids
,
9439 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_2ch_modes
),
9440 .channel_mode
= alc883_3ST_2ch_modes
,
9442 .input_mux
= &alc883_lenovo_nb0763_capture_source
,
9443 .unsol_event
= alc_automute_amp_unsol_event
,
9444 .init_hook
= alc883_medion_md2_init_hook
,
9446 [ALC888_LENOVO_MS7195_DIG
] = {
9447 .mixers
= { alc883_3ST_6ch_mixer
, alc883_chmode_mixer
},
9448 .init_verbs
= { alc883_init_verbs
, alc888_lenovo_ms7195_verbs
},
9449 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
9450 .dac_nids
= alc883_dac_nids
,
9451 .dig_out_nid
= ALC883_DIGOUT_NID
,
9452 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_6ch_modes
),
9453 .channel_mode
= alc883_3ST_6ch_modes
,
9455 .input_mux
= &alc883_capture_source
,
9456 .unsol_event
= alc883_lenovo_ms7195_unsol_event
,
9457 .init_hook
= alc888_lenovo_ms7195_front_automute
,
9459 [ALC883_HAIER_W66
] = {
9460 .mixers
= { alc883_targa_2ch_mixer
},
9461 .init_verbs
= { alc883_init_verbs
, alc883_haier_w66_verbs
},
9462 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
9463 .dac_nids
= alc883_dac_nids
,
9464 .dig_out_nid
= ALC883_DIGOUT_NID
,
9465 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_2ch_modes
),
9466 .channel_mode
= alc883_3ST_2ch_modes
,
9467 .input_mux
= &alc883_capture_source
,
9468 .unsol_event
= alc_automute_amp_unsol_event
,
9469 .init_hook
= alc883_haier_w66_init_hook
,
9472 .mixers
= { alc883_3ST_6ch_mixer
, alc883_chmode_mixer
},
9473 .init_verbs
= { alc883_init_verbs
, alc888_3st_hp_verbs
},
9474 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
9475 .dac_nids
= alc883_dac_nids
,
9476 .num_channel_mode
= ARRAY_SIZE(alc888_3st_hp_modes
),
9477 .channel_mode
= alc888_3st_hp_modes
,
9479 .input_mux
= &alc883_capture_source
,
9480 .unsol_event
= alc_automute_amp_unsol_event
,
9481 .init_hook
= alc888_3st_hp_init_hook
,
9483 [ALC888_6ST_DELL
] = {
9484 .mixers
= { alc883_base_mixer
, alc883_chmode_mixer
},
9485 .init_verbs
= { alc883_init_verbs
, alc888_6st_dell_verbs
},
9486 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
9487 .dac_nids
= alc883_dac_nids
,
9488 .dig_out_nid
= ALC883_DIGOUT_NID
,
9489 .dig_in_nid
= ALC883_DIGIN_NID
,
9490 .num_channel_mode
= ARRAY_SIZE(alc883_sixstack_modes
),
9491 .channel_mode
= alc883_sixstack_modes
,
9492 .input_mux
= &alc883_capture_source
,
9493 .unsol_event
= alc_automute_amp_unsol_event
,
9494 .init_hook
= alc888_6st_dell_init_hook
,
9497 .mixers
= { alc883_mitac_mixer
},
9498 .init_verbs
= { alc883_init_verbs
, alc883_mitac_verbs
},
9499 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
9500 .dac_nids
= alc883_dac_nids
,
9501 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_2ch_modes
),
9502 .channel_mode
= alc883_3ST_2ch_modes
,
9503 .input_mux
= &alc883_capture_source
,
9504 .unsol_event
= alc_automute_amp_unsol_event
,
9505 .init_hook
= alc883_mitac_init_hook
,
9507 [ALC883_FUJITSU_PI2515
] = {
9508 .mixers
= { alc883_2ch_fujitsu_pi2515_mixer
},
9509 .init_verbs
= { alc883_init_verbs
,
9510 alc883_2ch_fujitsu_pi2515_verbs
},
9511 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
9512 .dac_nids
= alc883_dac_nids
,
9513 .dig_out_nid
= ALC883_DIGOUT_NID
,
9514 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_2ch_modes
),
9515 .channel_mode
= alc883_3ST_2ch_modes
,
9516 .input_mux
= &alc883_fujitsu_pi2515_capture_source
,
9517 .unsol_event
= alc_automute_amp_unsol_event
,
9518 .init_hook
= alc883_2ch_fujitsu_pi2515_init_hook
,
9520 [ALC888_FUJITSU_XA3530
] = {
9521 .mixers
= { alc888_base_mixer
, alc883_chmode_mixer
},
9522 .init_verbs
= { alc883_init_verbs
,
9523 alc888_fujitsu_xa3530_verbs
},
9524 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
9525 .dac_nids
= alc883_dac_nids
,
9526 .num_adc_nids
= ARRAY_SIZE(alc883_adc_nids_rev
),
9527 .adc_nids
= alc883_adc_nids_rev
,
9528 .capsrc_nids
= alc883_capsrc_nids_rev
,
9529 .dig_out_nid
= ALC883_DIGOUT_NID
,
9530 .num_channel_mode
= ARRAY_SIZE(alc888_4ST_8ch_intel_modes
),
9531 .channel_mode
= alc888_4ST_8ch_intel_modes
,
9533 ARRAY_SIZE(alc888_2_capture_sources
),
9534 .input_mux
= alc888_2_capture_sources
,
9535 .unsol_event
= alc_automute_amp_unsol_event
,
9536 .init_hook
= alc888_fujitsu_xa3530_init_hook
,
9538 [ALC888_LENOVO_SKY
] = {
9539 .mixers
= { alc888_lenovo_sky_mixer
, alc883_chmode_mixer
},
9540 .init_verbs
= { alc883_init_verbs
, alc888_lenovo_sky_verbs
},
9541 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
9542 .dac_nids
= alc883_dac_nids
,
9543 .dig_out_nid
= ALC883_DIGOUT_NID
,
9544 .num_channel_mode
= ARRAY_SIZE(alc883_sixstack_modes
),
9545 .channel_mode
= alc883_sixstack_modes
,
9547 .input_mux
= &alc883_lenovo_sky_capture_source
,
9548 .unsol_event
= alc_automute_amp_unsol_event
,
9549 .init_hook
= alc888_lenovo_sky_init_hook
,
9551 [ALC888_ASUS_M90V
] = {
9552 .mixers
= { alc883_3ST_6ch_mixer
, alc883_chmode_mixer
},
9553 .init_verbs
= { alc883_init_verbs
, alc888_asus_m90v_verbs
},
9554 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
9555 .dac_nids
= alc883_dac_nids
,
9556 .dig_out_nid
= ALC883_DIGOUT_NID
,
9557 .dig_in_nid
= ALC883_DIGIN_NID
,
9558 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_6ch_modes
),
9559 .channel_mode
= alc883_3ST_6ch_modes
,
9561 .input_mux
= &alc883_fujitsu_pi2515_capture_source
,
9562 .unsol_event
= alc883_mode2_unsol_event
,
9563 .init_hook
= alc883_mode2_inithook
,
9565 [ALC888_ASUS_EEE1601
] = {
9566 .mixers
= { alc883_asus_eee1601_mixer
},
9567 .cap_mixer
= alc883_asus_eee1601_cap_mixer
,
9568 .init_verbs
= { alc883_init_verbs
, alc888_asus_eee1601_verbs
},
9569 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
9570 .dac_nids
= alc883_dac_nids
,
9571 .dig_out_nid
= ALC883_DIGOUT_NID
,
9572 .dig_in_nid
= ALC883_DIGIN_NID
,
9573 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_2ch_modes
),
9574 .channel_mode
= alc883_3ST_2ch_modes
,
9576 .input_mux
= &alc883_asus_eee1601_capture_source
,
9577 .unsol_event
= alc_sku_unsol_event
,
9578 .init_hook
= alc883_eee1601_inithook
,
9580 [ALC1200_ASUS_P5Q
] = {
9581 .mixers
= { alc883_base_mixer
, alc883_chmode_mixer
},
9582 .init_verbs
= { alc883_init_verbs
},
9583 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
9584 .dac_nids
= alc883_dac_nids
,
9585 .dig_out_nid
= ALC1200_DIGOUT_NID
,
9586 .dig_in_nid
= ALC883_DIGIN_NID
,
9587 .slave_dig_outs
= alc1200_slave_dig_outs
,
9588 .num_channel_mode
= ARRAY_SIZE(alc883_sixstack_modes
),
9589 .channel_mode
= alc883_sixstack_modes
,
9590 .input_mux
= &alc883_capture_source
,
9593 .mixers
= { alc889A_mb31_mixer
, alc883_chmode_mixer
},
9594 .init_verbs
= { alc883_init_verbs
, alc889A_mb31_verbs
,
9595 alc880_gpio1_init_verbs
},
9596 .adc_nids
= alc883_adc_nids
,
9597 .num_adc_nids
= ARRAY_SIZE(alc883_adc_nids
),
9598 .dac_nids
= alc883_dac_nids
,
9599 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
9600 .channel_mode
= alc889A_mb31_6ch_modes
,
9601 .num_channel_mode
= ARRAY_SIZE(alc889A_mb31_6ch_modes
),
9602 .input_mux
= &alc889A_mb31_capture_source
,
9603 .dig_out_nid
= ALC883_DIGOUT_NID
,
9604 .unsol_event
= alc889A_mb31_unsol_event
,
9605 .init_hook
= alc889A_mb31_automute
,
9607 [ALC883_SONY_VAIO_TT
] = {
9608 .mixers
= { alc883_vaiott_mixer
},
9609 .init_verbs
= { alc883_init_verbs
, alc883_vaiott_verbs
},
9610 .num_dacs
= ARRAY_SIZE(alc883_dac_nids
),
9611 .dac_nids
= alc883_dac_nids
,
9612 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_2ch_modes
),
9613 .channel_mode
= alc883_3ST_2ch_modes
,
9614 .input_mux
= &alc883_capture_source
,
9615 .unsol_event
= alc_automute_amp_unsol_event
,
9616 .init_hook
= alc883_vaiott_init_hook
,
9622 * BIOS auto configuration
9624 static void alc883_auto_set_output_and_unmute(struct hda_codec
*codec
,
9625 hda_nid_t nid
, int pin_type
,
9629 struct alc_spec
*spec
= codec
->spec
;
9632 alc_set_pin_output(codec
, nid
, pin_type
);
9633 if (spec
->multiout
.dac_nids
[dac_idx
] == 0x25)
9636 idx
= spec
->multiout
.dac_nids
[dac_idx
] - 2;
9637 snd_hda_codec_write(codec
, nid
, 0, AC_VERB_SET_CONNECT_SEL
, idx
);
9641 static void alc883_auto_init_multi_out(struct hda_codec
*codec
)
9643 struct alc_spec
*spec
= codec
->spec
;
9646 for (i
= 0; i
<= HDA_SIDE
; i
++) {
9647 hda_nid_t nid
= spec
->autocfg
.line_out_pins
[i
];
9648 int pin_type
= get_pin_type(spec
->autocfg
.line_out_type
);
9650 alc883_auto_set_output_and_unmute(codec
, nid
, pin_type
,
9655 static void alc883_auto_init_hp_out(struct hda_codec
*codec
)
9657 struct alc_spec
*spec
= codec
->spec
;
9660 pin
= spec
->autocfg
.hp_pins
[0];
9661 if (pin
) /* connect to front */
9663 alc883_auto_set_output_and_unmute(codec
, pin
, PIN_HP
, 0);
9664 pin
= spec
->autocfg
.speaker_pins
[0];
9666 alc883_auto_set_output_and_unmute(codec
, pin
, PIN_OUT
, 0);
9669 #define alc883_is_input_pin(nid) alc880_is_input_pin(nid)
9670 #define ALC883_PIN_CD_NID ALC880_PIN_CD_NID
9672 static void alc883_auto_init_analog_input(struct hda_codec
*codec
)
9674 struct alc_spec
*spec
= codec
->spec
;
9677 for (i
= 0; i
< AUTO_PIN_LAST
; i
++) {
9678 hda_nid_t nid
= spec
->autocfg
.input_pins
[i
];
9679 if (alc883_is_input_pin(nid
)) {
9680 alc_set_input_pin(codec
, nid
, i
);
9681 if (nid
!= ALC883_PIN_CD_NID
&&
9682 (get_wcaps(codec
, nid
) & AC_WCAP_OUT_AMP
))
9683 snd_hda_codec_write(codec
, nid
, 0,
9684 AC_VERB_SET_AMP_GAIN_MUTE
,
9690 #define alc883_auto_init_input_src alc882_auto_init_input_src
9692 /* almost identical with ALC880 parser... */
9693 static int alc883_parse_auto_config(struct hda_codec
*codec
)
9695 struct alc_spec
*spec
= codec
->spec
;
9696 int err
= alc880_parse_auto_config(codec
);
9697 struct auto_pin_cfg
*cfg
= &spec
->autocfg
;
9703 return 0; /* no config found */
9705 err
= alc_auto_add_mic_boost(codec
);
9709 /* hack - override the init verbs */
9710 spec
->init_verbs
[0] = alc883_auto_init_verbs
;
9712 /* setup input_mux for ALC889 */
9713 if (codec
->vendor_id
== 0x10ec0889) {
9714 /* digital-mic input pin is excluded in alc880_auto_create..()
9715 * because it's under 0x18
9717 if (cfg
->input_pins
[AUTO_PIN_MIC
] == 0x12 ||
9718 cfg
->input_pins
[AUTO_PIN_FRONT_MIC
] == 0x12) {
9719 struct hda_input_mux
*imux
= &spec
->private_imux
[0];
9720 for (i
= 1; i
< 3; i
++)
9721 memcpy(&spec
->private_imux
[i
],
9722 &spec
->private_imux
[0],
9723 sizeof(spec
->private_imux
[0]));
9724 imux
->items
[imux
->num_items
].label
= "Int DMic";
9725 imux
->items
[imux
->num_items
].index
= 0x0b;
9727 spec
->num_mux_defs
= 3;
9728 spec
->input_mux
= spec
->private_imux
;
9732 return 1; /* config found */
9735 /* additional initialization for auto-configuration model */
9736 static void alc883_auto_init(struct hda_codec
*codec
)
9738 struct alc_spec
*spec
= codec
->spec
;
9739 alc883_auto_init_multi_out(codec
);
9740 alc883_auto_init_hp_out(codec
);
9741 alc883_auto_init_analog_input(codec
);
9742 alc883_auto_init_input_src(codec
);
9743 if (spec
->unsol_event
)
9744 alc_inithook(codec
);
9747 static int patch_alc883(struct hda_codec
*codec
)
9749 struct alc_spec
*spec
;
9750 int err
, board_config
;
9752 spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
9758 alc_fix_pll_init(codec
, 0x20, 0x0a, 10);
9760 board_config
= snd_hda_check_board_config(codec
, ALC883_MODEL_LAST
,
9763 if (board_config
< 0 || board_config
>= ALC883_MODEL_LAST
) {
9764 /* Pick up systems that don't supply PCI SSID */
9765 switch (codec
->subsystem_id
) {
9766 case 0x106b3600: /* Macbook 3.1 */
9767 board_config
= ALC889A_MB31
;
9771 "hda_codec: Unknown model for %s, trying "
9772 "auto-probe from BIOS...\n", codec
->chip_name
);
9773 board_config
= ALC883_AUTO
;
9777 if (board_config
== ALC883_AUTO
) {
9778 /* automatic parse from the BIOS config */
9779 err
= alc883_parse_auto_config(codec
);
9785 "hda_codec: Cannot set up configuration "
9786 "from BIOS. Using base mode...\n");
9787 board_config
= ALC883_3ST_2ch_DIG
;
9791 err
= snd_hda_attach_beep_device(codec
, 0x1);
9797 if (board_config
!= ALC883_AUTO
)
9798 setup_preset(spec
, &alc883_presets
[board_config
]);
9800 switch (codec
->vendor_id
) {
9802 if (!spec
->num_adc_nids
) {
9803 spec
->num_adc_nids
= ARRAY_SIZE(alc883_adc_nids
);
9804 spec
->adc_nids
= alc883_adc_nids
;
9806 if (!spec
->capsrc_nids
)
9807 spec
->capsrc_nids
= alc883_capsrc_nids
;
9808 spec
->init_amp
= ALC_INIT_DEFAULT
; /* always initialize */
9811 if (!spec
->num_adc_nids
) {
9812 spec
->num_adc_nids
= ARRAY_SIZE(alc889_adc_nids
);
9813 spec
->adc_nids
= alc889_adc_nids
;
9815 if (!spec
->capsrc_nids
)
9816 spec
->capsrc_nids
= alc889_capsrc_nids
;
9819 if (!spec
->num_adc_nids
) {
9820 spec
->num_adc_nids
= ARRAY_SIZE(alc883_adc_nids
);
9821 spec
->adc_nids
= alc883_adc_nids
;
9823 if (!spec
->capsrc_nids
)
9824 spec
->capsrc_nids
= alc883_capsrc_nids
;
9828 spec
->stream_analog_playback
= &alc883_pcm_analog_playback
;
9829 spec
->stream_analog_capture
= &alc883_pcm_analog_capture
;
9830 spec
->stream_analog_alt_capture
= &alc883_pcm_analog_alt_capture
;
9832 spec
->stream_digital_playback
= &alc883_pcm_digital_playback
;
9833 spec
->stream_digital_capture
= &alc883_pcm_digital_capture
;
9835 if (!spec
->cap_mixer
)
9836 set_capture_mixer(spec
);
9837 set_beep_amp(spec
, 0x0b, 0x05, HDA_INPUT
);
9839 spec
->vmaster_nid
= 0x0c;
9841 codec
->patch_ops
= alc_patch_ops
;
9842 if (board_config
== ALC883_AUTO
)
9843 spec
->init_hook
= alc883_auto_init
;
9845 #ifdef CONFIG_SND_HDA_POWER_SAVE
9846 if (!spec
->loopback
.amplist
)
9847 spec
->loopback
.amplist
= alc883_loopbacks
;
9849 codec
->proc_widget_hook
= print_realtek_coef
;
9858 #define ALC262_DIGOUT_NID ALC880_DIGOUT_NID
9859 #define ALC262_DIGIN_NID ALC880_DIGIN_NID
9861 #define alc262_dac_nids alc260_dac_nids
9862 #define alc262_adc_nids alc882_adc_nids
9863 #define alc262_adc_nids_alt alc882_adc_nids_alt
9864 #define alc262_capsrc_nids alc882_capsrc_nids
9865 #define alc262_capsrc_nids_alt alc882_capsrc_nids_alt
9867 #define alc262_modes alc260_modes
9868 #define alc262_capture_source alc882_capture_source
9870 static hda_nid_t alc262_dmic_adc_nids
[1] = {
9875 static hda_nid_t alc262_dmic_capsrc_nids
[1] = { 0x22 };
9877 static struct snd_kcontrol_new alc262_base_mixer
[] = {
9878 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
9879 HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
9880 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
9881 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
9882 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
9883 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
9884 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
9885 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
9886 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
9887 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x01, HDA_INPUT
),
9888 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x01, HDA_INPUT
),
9889 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT
),
9890 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0D, 0x0, HDA_OUTPUT
),
9891 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
9892 HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT
),
9893 HDA_CODEC_MUTE_MONO("Mono Playback Switch", 0x16, 2, 0x0, HDA_OUTPUT
),
9897 /* update HP, line and mono-out pins according to the master switch */
9898 static void alc262_hp_master_update(struct hda_codec
*codec
)
9900 struct alc_spec
*spec
= codec
->spec
;
9901 int val
= spec
->master_sw
;
9904 snd_hda_codec_write_cache(codec
, 0x1b, 0,
9905 AC_VERB_SET_PIN_WIDGET_CONTROL
,
9907 snd_hda_codec_write_cache(codec
, 0x15, 0,
9908 AC_VERB_SET_PIN_WIDGET_CONTROL
,
9910 /* mono (speaker) depending on the HP jack sense */
9911 val
= val
&& !spec
->jack_present
;
9912 snd_hda_codec_write_cache(codec
, 0x16, 0,
9913 AC_VERB_SET_PIN_WIDGET_CONTROL
,
9917 static void alc262_hp_bpc_automute(struct hda_codec
*codec
)
9919 struct alc_spec
*spec
= codec
->spec
;
9920 unsigned int presence
;
9921 presence
= snd_hda_codec_read(codec
, 0x1b, 0,
9922 AC_VERB_GET_PIN_SENSE
, 0);
9923 spec
->jack_present
= !!(presence
& AC_PINSENSE_PRESENCE
);
9924 alc262_hp_master_update(codec
);
9927 static void alc262_hp_bpc_unsol_event(struct hda_codec
*codec
, unsigned int res
)
9929 if ((res
>> 26) != ALC880_HP_EVENT
)
9931 alc262_hp_bpc_automute(codec
);
9934 static void alc262_hp_wildwest_automute(struct hda_codec
*codec
)
9936 struct alc_spec
*spec
= codec
->spec
;
9937 unsigned int presence
;
9938 presence
= snd_hda_codec_read(codec
, 0x15, 0,
9939 AC_VERB_GET_PIN_SENSE
, 0);
9940 spec
->jack_present
= !!(presence
& AC_PINSENSE_PRESENCE
);
9941 alc262_hp_master_update(codec
);
9944 static void alc262_hp_wildwest_unsol_event(struct hda_codec
*codec
,
9947 if ((res
>> 26) != ALC880_HP_EVENT
)
9949 alc262_hp_wildwest_automute(codec
);
9952 #define alc262_hp_master_sw_get alc260_hp_master_sw_get
9954 static int alc262_hp_master_sw_put(struct snd_kcontrol
*kcontrol
,
9955 struct snd_ctl_elem_value
*ucontrol
)
9957 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
9958 struct alc_spec
*spec
= codec
->spec
;
9959 int val
= !!*ucontrol
->value
.integer
.value
;
9961 if (val
== spec
->master_sw
)
9963 spec
->master_sw
= val
;
9964 alc262_hp_master_update(codec
);
9968 #define ALC262_HP_MASTER_SWITCH \
9970 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
9971 .name = "Master Playback Switch", \
9972 .info = snd_ctl_boolean_mono_info, \
9973 .get = alc262_hp_master_sw_get, \
9974 .put = alc262_hp_master_sw_put, \
9977 static struct snd_kcontrol_new alc262_HP_BPC_mixer
[] = {
9978 ALC262_HP_MASTER_SWITCH
,
9979 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
9980 HDA_CODEC_MUTE("Front Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
9981 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
9982 HDA_CODEC_VOLUME_MONO("Speaker Playback Volume", 0x0e, 2, 0x0,
9984 HDA_CODEC_MUTE_MONO("Speaker Playback Switch", 0x16, 2, 0x0,
9986 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
9987 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
9988 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
9989 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x01, HDA_INPUT
),
9990 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x01, HDA_INPUT
),
9991 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT
),
9992 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
9993 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
9994 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
9995 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
9996 HDA_CODEC_VOLUME("AUX IN Playback Volume", 0x0b, 0x06, HDA_INPUT
),
9997 HDA_CODEC_MUTE("AUX IN Playback Switch", 0x0b, 0x06, HDA_INPUT
),
10001 static struct snd_kcontrol_new alc262_HP_BPC_WildWest_mixer
[] = {
10002 ALC262_HP_MASTER_SWITCH
,
10003 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
10004 HDA_CODEC_MUTE("Front Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
10005 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
10006 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
10007 HDA_CODEC_VOLUME_MONO("Speaker Playback Volume", 0x0e, 2, 0x0,
10009 HDA_CODEC_MUTE_MONO("Speaker Playback Switch", 0x16, 2, 0x0,
10011 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x02, HDA_INPUT
),
10012 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x02, HDA_INPUT
),
10013 HDA_CODEC_VOLUME("Front Mic Boost", 0x1a, 0, HDA_INPUT
),
10014 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x01, HDA_INPUT
),
10015 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x01, HDA_INPUT
),
10016 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
10017 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
10021 static struct snd_kcontrol_new alc262_HP_BPC_WildWest_option_mixer
[] = {
10022 HDA_CODEC_VOLUME("Rear Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
10023 HDA_CODEC_MUTE("Rear Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
10024 HDA_CODEC_VOLUME("Rear Mic Boost", 0x18, 0, HDA_INPUT
),
10028 /* mute/unmute internal speaker according to the hp jack and mute state */
10029 static void alc262_hp_t5735_init_hook(struct hda_codec
*codec
)
10031 struct alc_spec
*spec
= codec
->spec
;
10033 spec
->autocfg
.hp_pins
[0] = 0x15;
10034 spec
->autocfg
.speaker_pins
[0] = 0x0c; /* HACK: not actually a pin */
10035 alc_automute_amp(codec
);
10038 static struct snd_kcontrol_new alc262_hp_t5735_mixer
[] = {
10039 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
10040 HDA_CODEC_MUTE("Speaker Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
10041 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
10042 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
10043 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
10044 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
10045 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
10049 static struct hda_verb alc262_hp_t5735_verbs
[] = {
10050 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
10051 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
10053 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
10057 static struct snd_kcontrol_new alc262_hp_rp5700_mixer
[] = {
10058 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
10059 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
10060 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0e, 0x0, HDA_OUTPUT
),
10061 HDA_CODEC_MUTE("Speaker Playback Switch", 0x16, 0x0, HDA_OUTPUT
),
10062 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x01, HDA_INPUT
),
10063 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x01, HDA_INPUT
),
10067 static struct hda_verb alc262_hp_rp5700_verbs
[] = {
10068 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
10069 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
10070 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
10071 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
10072 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
10073 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0x00},
10074 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x01 << 8))},
10075 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x01 << 8))},
10076 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x00 << 8))},
10077 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x00 << 8))},
10081 static struct hda_input_mux alc262_hp_rp5700_capture_source
= {
10088 /* bind hp and internal speaker mute (with plug check) as master switch */
10089 static void alc262_hippo_master_update(struct hda_codec
*codec
)
10091 struct alc_spec
*spec
= codec
->spec
;
10092 hda_nid_t hp_nid
= spec
->autocfg
.hp_pins
[0];
10093 hda_nid_t line_nid
= spec
->autocfg
.line_out_pins
[0];
10094 hda_nid_t speaker_nid
= spec
->autocfg
.speaker_pins
[0];
10098 mute
= spec
->master_sw
? 0 : HDA_AMP_MUTE
;
10099 snd_hda_codec_amp_stereo(codec
, hp_nid
, HDA_OUTPUT
, 0,
10100 HDA_AMP_MUTE
, mute
);
10101 /* mute internal speaker per jack sense */
10102 if (spec
->jack_present
)
10103 mute
= HDA_AMP_MUTE
;
10105 snd_hda_codec_amp_stereo(codec
, line_nid
, HDA_OUTPUT
, 0,
10106 HDA_AMP_MUTE
, mute
);
10107 if (speaker_nid
&& speaker_nid
!= line_nid
)
10108 snd_hda_codec_amp_stereo(codec
, speaker_nid
, HDA_OUTPUT
, 0,
10109 HDA_AMP_MUTE
, mute
);
10112 #define alc262_hippo_master_sw_get alc262_hp_master_sw_get
10114 static int alc262_hippo_master_sw_put(struct snd_kcontrol
*kcontrol
,
10115 struct snd_ctl_elem_value
*ucontrol
)
10117 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
10118 struct alc_spec
*spec
= codec
->spec
;
10119 int val
= !!*ucontrol
->value
.integer
.value
;
10121 if (val
== spec
->master_sw
)
10123 spec
->master_sw
= val
;
10124 alc262_hippo_master_update(codec
);
10128 #define ALC262_HIPPO_MASTER_SWITCH \
10130 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
10131 .name = "Master Playback Switch", \
10132 .info = snd_ctl_boolean_mono_info, \
10133 .get = alc262_hippo_master_sw_get, \
10134 .put = alc262_hippo_master_sw_put, \
10137 static struct snd_kcontrol_new alc262_hippo_mixer
[] = {
10138 ALC262_HIPPO_MASTER_SWITCH
,
10139 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
10140 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
10141 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
10142 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
10143 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
10144 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
10145 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
10146 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
10147 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x01, HDA_INPUT
),
10148 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x01, HDA_INPUT
),
10149 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT
),
10150 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
10154 static struct snd_kcontrol_new alc262_hippo1_mixer
[] = {
10155 HDA_CODEC_VOLUME("Master Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
10156 ALC262_HIPPO_MASTER_SWITCH
,
10157 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
10158 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
10159 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
10160 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
10161 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
10162 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
10163 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
10164 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x01, HDA_INPUT
),
10165 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x01, HDA_INPUT
),
10166 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT
),
10170 /* mute/unmute internal speaker according to the hp jack and mute state */
10171 static void alc262_hippo_automute(struct hda_codec
*codec
)
10173 struct alc_spec
*spec
= codec
->spec
;
10174 hda_nid_t hp_nid
= spec
->autocfg
.hp_pins
[0];
10175 unsigned int present
;
10177 /* need to execute and sync at first */
10178 snd_hda_codec_read(codec
, hp_nid
, 0, AC_VERB_SET_PIN_SENSE
, 0);
10179 present
= snd_hda_codec_read(codec
, hp_nid
, 0,
10180 AC_VERB_GET_PIN_SENSE
, 0);
10181 spec
->jack_present
= (present
& 0x80000000) != 0;
10182 alc262_hippo_master_update(codec
);
10185 static void alc262_hippo_unsol_event(struct hda_codec
*codec
, unsigned int res
)
10187 if ((res
>> 26) != ALC880_HP_EVENT
)
10189 alc262_hippo_automute(codec
);
10192 static void alc262_hippo_init_hook(struct hda_codec
*codec
)
10194 struct alc_spec
*spec
= codec
->spec
;
10196 spec
->autocfg
.hp_pins
[0] = 0x15;
10197 spec
->autocfg
.speaker_pins
[0] = 0x14;
10198 alc262_hippo_automute(codec
);
10201 static void alc262_hippo1_init_hook(struct hda_codec
*codec
)
10203 struct alc_spec
*spec
= codec
->spec
;
10205 spec
->autocfg
.hp_pins
[0] = 0x1b;
10206 spec
->autocfg
.speaker_pins
[0] = 0x14;
10207 alc262_hippo_automute(codec
);
10211 static struct snd_kcontrol_new alc262_sony_mixer
[] = {
10212 HDA_CODEC_VOLUME("Master Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
10213 ALC262_HIPPO_MASTER_SWITCH
,
10214 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
10215 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
10216 HDA_CODEC_VOLUME("ATAPI Mic Playback Volume", 0x0b, 0x01, HDA_INPUT
),
10217 HDA_CODEC_MUTE("ATAPI Mic Playback Switch", 0x0b, 0x01, HDA_INPUT
),
10221 static struct snd_kcontrol_new alc262_benq_t31_mixer
[] = {
10222 HDA_CODEC_VOLUME("Master Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
10223 ALC262_HIPPO_MASTER_SWITCH
,
10224 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
10225 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
10226 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
10227 HDA_CODEC_VOLUME("ATAPI Mic Playback Volume", 0x0b, 0x01, HDA_INPUT
),
10228 HDA_CODEC_MUTE("ATAPI Mic Playback Switch", 0x0b, 0x01, HDA_INPUT
),
10232 static struct snd_kcontrol_new alc262_tyan_mixer
[] = {
10233 HDA_CODEC_VOLUME("Master Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
10234 HDA_BIND_MUTE("Master Playback Switch", 0x0c, 2, HDA_INPUT
),
10235 HDA_CODEC_VOLUME("Aux Playback Volume", 0x0b, 0x06, HDA_INPUT
),
10236 HDA_CODEC_MUTE("Aux Playback Switch", 0x0b, 0x06, HDA_INPUT
),
10237 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
10238 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
10239 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
10240 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
10241 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
10242 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x01, HDA_INPUT
),
10243 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x01, HDA_INPUT
),
10244 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT
),
10248 static struct hda_verb alc262_tyan_verbs
[] = {
10249 /* Headphone automute */
10250 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
10251 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
10252 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00},
10254 /* P11 AUX_IN, white 4-pin connector */
10255 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
10256 {0x14, AC_VERB_SET_CONFIG_DEFAULT_BYTES_1
, 0xe1},
10257 {0x14, AC_VERB_SET_CONFIG_DEFAULT_BYTES_2
, 0x93},
10258 {0x14, AC_VERB_SET_CONFIG_DEFAULT_BYTES_3
, 0x19},
10263 /* unsolicited event for HP jack sensing */
10264 static void alc262_tyan_init_hook(struct hda_codec
*codec
)
10266 struct alc_spec
*spec
= codec
->spec
;
10268 spec
->autocfg
.hp_pins
[0] = 0x1b;
10269 spec
->autocfg
.speaker_pins
[0] = 0x15;
10270 alc_automute_amp(codec
);
10274 #define alc262_capture_mixer alc882_capture_mixer
10275 #define alc262_capture_alt_mixer alc882_capture_alt_mixer
10278 * generic initialization of ADC, input mixers and output mixers
10280 static struct hda_verb alc262_init_verbs
[] = {
10282 * Unmute ADC0-2 and set the default input to mic-in
10284 {0x07, AC_VERB_SET_CONNECT_SEL
, 0x00},
10285 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
10286 {0x08, AC_VERB_SET_CONNECT_SEL
, 0x00},
10287 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
10288 {0x09, AC_VERB_SET_CONNECT_SEL
, 0x00},
10289 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
10291 /* Mute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
10293 * Note: PASD motherboards uses the Line In 2 as the input for
10294 * front panel mic (mic 2)
10296 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
10297 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
10298 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
10299 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
10300 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
10301 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
10304 * Set up output mixers (0x0c - 0x0e)
10306 /* set vol=0 to output mixers */
10307 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
10308 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
10309 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
10310 /* set up input amps for analog loopback */
10311 /* Amp Indices: DAC = 0, mixer = 1 */
10312 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
10313 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
10314 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
10315 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
10316 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
10317 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
10319 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40},
10320 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0xc0},
10321 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40},
10322 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24},
10323 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20},
10324 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20},
10326 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, 0x0000},
10327 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, 0x0000},
10328 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, 0x0000},
10329 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, 0x0000},
10330 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, 0x0000},
10332 {0x14, AC_VERB_SET_CONNECT_SEL
, 0x00},
10333 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x01},
10335 /* FIXME: use matrix-type input source selection */
10336 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
10337 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
10338 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
10339 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x03 << 8))},
10340 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x02 << 8))},
10341 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x04 << 8))},
10343 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
10344 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x03 << 8))},
10345 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x02 << 8))},
10346 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x04 << 8))},
10348 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
10349 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x03 << 8))},
10350 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x02 << 8))},
10351 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x04 << 8))},
10356 static struct hda_verb alc262_eapd_verbs
[] = {
10357 {0x14, AC_VERB_SET_EAPD_BTLENABLE
, 2},
10358 {0x15, AC_VERB_SET_EAPD_BTLENABLE
, 2},
10362 static struct hda_verb alc262_hippo_unsol_verbs
[] = {
10363 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
10364 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
10368 static struct hda_verb alc262_hippo1_unsol_verbs
[] = {
10369 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0xc0},
10370 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0x00},
10371 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, 0x0000},
10373 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
10374 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
10378 static struct hda_verb alc262_sony_unsol_verbs
[] = {
10379 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0xc0},
10380 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00},
10381 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24}, // Front Mic
10383 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
10384 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
10388 static struct hda_input_mux alc262_dmic_capture_source
= {
10391 { "Int DMic", 0x9 },
10396 static struct snd_kcontrol_new alc262_toshiba_s06_mixer
[] = {
10397 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
10398 HDA_CODEC_MUTE("Speaker Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
10399 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
10400 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
10401 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
10405 static struct hda_verb alc262_toshiba_s06_verbs
[] = {
10406 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
10407 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
10408 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
10409 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00},
10410 {0x22, AC_VERB_SET_CONNECT_SEL
, 0x09},
10411 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24},
10412 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
10413 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
10417 static void alc262_dmic_automute(struct hda_codec
*codec
)
10419 unsigned int present
;
10421 present
= snd_hda_codec_read(codec
, 0x18, 0,
10422 AC_VERB_GET_PIN_SENSE
, 0) & 0x80000000;
10423 snd_hda_codec_write(codec
, 0x22, 0,
10424 AC_VERB_SET_CONNECT_SEL
, present
? 0x0 : 0x09);
10428 /* unsolicited event for HP jack sensing */
10429 static void alc262_toshiba_s06_unsol_event(struct hda_codec
*codec
,
10432 if ((res
>> 26) == ALC880_MIC_EVENT
)
10433 alc262_dmic_automute(codec
);
10435 alc_sku_unsol_event(codec
, res
);
10438 static void alc262_toshiba_s06_init_hook(struct hda_codec
*codec
)
10440 struct alc_spec
*spec
= codec
->spec
;
10442 spec
->autocfg
.hp_pins
[0] = 0x15;
10443 spec
->autocfg
.speaker_pins
[0] = 0x14;
10444 alc_automute_pin(codec
);
10445 alc262_dmic_automute(codec
);
10451 * 0x16 = internal speaker
10452 * 0x18 = external mic
10455 static struct snd_kcontrol_new alc262_nec_mixer
[] = {
10456 HDA_CODEC_VOLUME_MONO("Speaker Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT
),
10457 HDA_CODEC_MUTE_MONO("Speaker Playback Switch", 0x16, 0, 0x0, HDA_OUTPUT
),
10459 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
10460 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
10461 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
10463 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0d, 0x0, HDA_OUTPUT
),
10464 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
10468 static struct hda_verb alc262_nec_verbs
[] = {
10469 /* Unmute Speaker */
10470 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
10473 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
10474 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
10476 /* External mic to headphone */
10477 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
10478 /* External mic to speaker */
10479 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
10485 * 0x14 = headphone/spdif-out, 0x15 = internal speaker,
10486 * 0x1b = port replicator headphone out
10489 #define ALC_HP_EVENT 0x37
10491 static struct hda_verb alc262_fujitsu_unsol_verbs
[] = {
10492 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC_HP_EVENT
},
10493 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
10494 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC_HP_EVENT
},
10495 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
10499 static struct hda_verb alc262_lenovo_3000_unsol_verbs
[] = {
10500 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC_HP_EVENT
},
10501 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
10505 static struct hda_input_mux alc262_fujitsu_capture_source
= {
10509 { "Int Mic", 0x1 },
10514 static struct hda_input_mux alc262_HP_capture_source
= {
10518 { "Front Mic", 0x1 },
10525 static struct hda_input_mux alc262_HP_D7000_capture_source
= {
10529 { "Front Mic", 0x2 },
10535 /* mute/unmute internal speaker according to the hp jacks and mute state */
10536 static void alc262_fujitsu_automute(struct hda_codec
*codec
, int force
)
10538 struct alc_spec
*spec
= codec
->spec
;
10541 if (force
|| !spec
->sense_updated
) {
10542 unsigned int present
;
10543 /* need to execute and sync at first */
10544 snd_hda_codec_read(codec
, 0x14, 0, AC_VERB_SET_PIN_SENSE
, 0);
10545 /* check laptop HP jack */
10546 present
= snd_hda_codec_read(codec
, 0x14, 0,
10547 AC_VERB_GET_PIN_SENSE
, 0);
10548 /* need to execute and sync at first */
10549 snd_hda_codec_read(codec
, 0x1b, 0, AC_VERB_SET_PIN_SENSE
, 0);
10550 /* check docking HP jack */
10551 present
|= snd_hda_codec_read(codec
, 0x1b, 0,
10552 AC_VERB_GET_PIN_SENSE
, 0);
10553 if (present
& AC_PINSENSE_PRESENCE
)
10554 spec
->jack_present
= 1;
10556 spec
->jack_present
= 0;
10557 spec
->sense_updated
= 1;
10559 /* unmute internal speaker only if both HPs are unplugged and
10560 * master switch is on
10562 if (spec
->jack_present
)
10563 mute
= HDA_AMP_MUTE
;
10565 mute
= snd_hda_codec_amp_read(codec
, 0x14, 0, HDA_OUTPUT
, 0);
10566 snd_hda_codec_amp_stereo(codec
, 0x15, HDA_OUTPUT
, 0,
10567 HDA_AMP_MUTE
, mute
);
10570 /* unsolicited event for HP jack sensing */
10571 static void alc262_fujitsu_unsol_event(struct hda_codec
*codec
,
10574 if ((res
>> 26) != ALC_HP_EVENT
)
10576 alc262_fujitsu_automute(codec
, 1);
10579 static void alc262_fujitsu_init_hook(struct hda_codec
*codec
)
10581 alc262_fujitsu_automute(codec
, 1);
10584 /* bind volumes of both NID 0x0c and 0x0d */
10585 static struct hda_bind_ctls alc262_fujitsu_bind_master_vol
= {
10586 .ops
= &snd_hda_bind_vol
,
10588 HDA_COMPOSE_AMP_VAL(0x0c, 3, 0, HDA_OUTPUT
),
10589 HDA_COMPOSE_AMP_VAL(0x0d, 3, 0, HDA_OUTPUT
),
10594 /* mute/unmute internal speaker according to the hp jack and mute state */
10595 static void alc262_lenovo_3000_automute(struct hda_codec
*codec
, int force
)
10597 struct alc_spec
*spec
= codec
->spec
;
10600 if (force
|| !spec
->sense_updated
) {
10601 unsigned int present_int_hp
;
10602 /* need to execute and sync at first */
10603 snd_hda_codec_read(codec
, 0x1b, 0, AC_VERB_SET_PIN_SENSE
, 0);
10604 present_int_hp
= snd_hda_codec_read(codec
, 0x1b, 0,
10605 AC_VERB_GET_PIN_SENSE
, 0);
10606 spec
->jack_present
= (present_int_hp
& 0x80000000) != 0;
10607 spec
->sense_updated
= 1;
10609 if (spec
->jack_present
) {
10610 /* mute internal speaker */
10611 snd_hda_codec_amp_stereo(codec
, 0x14, HDA_OUTPUT
, 0,
10612 HDA_AMP_MUTE
, HDA_AMP_MUTE
);
10613 snd_hda_codec_amp_stereo(codec
, 0x16, HDA_OUTPUT
, 0,
10614 HDA_AMP_MUTE
, HDA_AMP_MUTE
);
10616 /* unmute internal speaker if necessary */
10617 mute
= snd_hda_codec_amp_read(codec
, 0x1b, 0, HDA_OUTPUT
, 0);
10618 snd_hda_codec_amp_stereo(codec
, 0x14, HDA_OUTPUT
, 0,
10619 HDA_AMP_MUTE
, mute
);
10620 snd_hda_codec_amp_stereo(codec
, 0x16, HDA_OUTPUT
, 0,
10621 HDA_AMP_MUTE
, mute
);
10625 /* unsolicited event for HP jack sensing */
10626 static void alc262_lenovo_3000_unsol_event(struct hda_codec
*codec
,
10629 if ((res
>> 26) != ALC_HP_EVENT
)
10631 alc262_lenovo_3000_automute(codec
, 1);
10634 static int amp_stereo_mute_update(struct hda_codec
*codec
, hda_nid_t nid
,
10635 int dir
, int idx
, long *valp
)
10639 for (i
= 0; i
< 2; i
++, valp
++)
10640 change
|= snd_hda_codec_amp_update(codec
, nid
, i
, dir
, idx
,
10642 *valp
? 0 : HDA_AMP_MUTE
);
10646 /* bind hp and internal speaker mute (with plug check) */
10647 static int alc262_fujitsu_master_sw_put(struct snd_kcontrol
*kcontrol
,
10648 struct snd_ctl_elem_value
*ucontrol
)
10650 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
10651 long *valp
= ucontrol
->value
.integer
.value
;
10654 change
= amp_stereo_mute_update(codec
, 0x14, HDA_OUTPUT
, 0, valp
);
10655 change
|= amp_stereo_mute_update(codec
, 0x1b, HDA_OUTPUT
, 0, valp
);
10657 alc262_fujitsu_automute(codec
, 0);
10661 static struct snd_kcontrol_new alc262_fujitsu_mixer
[] = {
10662 HDA_BIND_VOL("Master Playback Volume", &alc262_fujitsu_bind_master_vol
),
10664 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
10665 .name
= "Master Playback Switch",
10666 .info
= snd_hda_mixer_amp_switch_info
,
10667 .get
= snd_hda_mixer_amp_switch_get
,
10668 .put
= alc262_fujitsu_master_sw_put
,
10669 .private_value
= HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT
),
10671 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
10672 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
10673 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
10674 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
10675 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
10676 HDA_CODEC_VOLUME("Int Mic Boost", 0x19, 0, HDA_INPUT
),
10677 HDA_CODEC_VOLUME("Int Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
10678 HDA_CODEC_MUTE("Int Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
10682 /* bind hp and internal speaker mute (with plug check) */
10683 static int alc262_lenovo_3000_master_sw_put(struct snd_kcontrol
*kcontrol
,
10684 struct snd_ctl_elem_value
*ucontrol
)
10686 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
10687 long *valp
= ucontrol
->value
.integer
.value
;
10690 change
= amp_stereo_mute_update(codec
, 0x1b, HDA_OUTPUT
, 0, valp
);
10692 alc262_lenovo_3000_automute(codec
, 0);
10696 static struct snd_kcontrol_new alc262_lenovo_3000_mixer
[] = {
10697 HDA_BIND_VOL("Master Playback Volume", &alc262_fujitsu_bind_master_vol
),
10699 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
10700 .name
= "Master Playback Switch",
10701 .info
= snd_hda_mixer_amp_switch_info
,
10702 .get
= snd_hda_mixer_amp_switch_get
,
10703 .put
= alc262_lenovo_3000_master_sw_put
,
10704 .private_value
= HDA_COMPOSE_AMP_VAL(0x1b, 3, 0, HDA_OUTPUT
),
10706 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
10707 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
10708 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
10709 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
10710 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
10711 HDA_CODEC_VOLUME("Int Mic Boost", 0x19, 0, HDA_INPUT
),
10712 HDA_CODEC_VOLUME("Int Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
10713 HDA_CODEC_MUTE("Int Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
10717 static struct snd_kcontrol_new alc262_toshiba_rx1_mixer
[] = {
10718 HDA_BIND_VOL("Master Playback Volume", &alc262_fujitsu_bind_master_vol
),
10719 ALC262_HIPPO_MASTER_SWITCH
,
10720 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
10721 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
10722 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
10723 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x01, HDA_INPUT
),
10724 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x01, HDA_INPUT
),
10725 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT
),
10729 /* additional init verbs for Benq laptops */
10730 static struct hda_verb alc262_EAPD_verbs
[] = {
10731 {0x20, AC_VERB_SET_COEF_INDEX
, 0x07},
10732 {0x20, AC_VERB_SET_PROC_COEF
, 0x3070},
10736 static struct hda_verb alc262_benq_t31_EAPD_verbs
[] = {
10737 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00},
10738 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24},
10740 {0x20, AC_VERB_SET_COEF_INDEX
, 0x07},
10741 {0x20, AC_VERB_SET_PROC_COEF
, 0x3050},
10745 /* Samsung Q1 Ultra Vista model setup */
10746 static struct snd_kcontrol_new alc262_ultra_mixer
[] = {
10747 HDA_CODEC_VOLUME("Master Playback Volume", 0x0c, 0x0, HDA_OUTPUT
),
10748 HDA_BIND_MUTE("Master Playback Switch", 0x0c, 2, HDA_INPUT
),
10749 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x01, HDA_INPUT
),
10750 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x01, HDA_INPUT
),
10751 HDA_CODEC_VOLUME("Mic Boost", 0x19, 0, HDA_INPUT
),
10752 HDA_CODEC_VOLUME("Headphone Mic Boost", 0x15, 0, HDA_INPUT
),
10756 static struct hda_verb alc262_ultra_verbs
[] = {
10758 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
10759 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
10760 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
10762 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
10763 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
10764 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
10765 {0x14, AC_VERB_SET_CONNECT_SEL
, 0x00},
10767 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
10768 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
10769 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
10770 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00},
10771 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
10773 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
10774 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
10775 /* ADC, choose mic */
10776 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
10777 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
10778 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
10779 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
10780 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
10781 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
10782 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(5)},
10783 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(6)},
10784 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(7)},
10785 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(8)},
10789 /* mute/unmute internal speaker according to the hp jack and mute state */
10790 static void alc262_ultra_automute(struct hda_codec
*codec
)
10792 struct alc_spec
*spec
= codec
->spec
;
10796 /* auto-mute only when HP is used as HP */
10797 if (!spec
->cur_mux
[0]) {
10798 unsigned int present
;
10799 /* need to execute and sync at first */
10800 snd_hda_codec_read(codec
, 0x15, 0, AC_VERB_SET_PIN_SENSE
, 0);
10801 present
= snd_hda_codec_read(codec
, 0x15, 0,
10802 AC_VERB_GET_PIN_SENSE
, 0);
10803 spec
->jack_present
= (present
& AC_PINSENSE_PRESENCE
) != 0;
10804 if (spec
->jack_present
)
10805 mute
= HDA_AMP_MUTE
;
10807 /* mute/unmute internal speaker */
10808 snd_hda_codec_amp_stereo(codec
, 0x14, HDA_OUTPUT
, 0,
10809 HDA_AMP_MUTE
, mute
);
10810 /* mute/unmute HP */
10811 snd_hda_codec_amp_stereo(codec
, 0x15, HDA_OUTPUT
, 0,
10812 HDA_AMP_MUTE
, mute
? 0 : HDA_AMP_MUTE
);
10815 /* unsolicited event for HP jack sensing */
10816 static void alc262_ultra_unsol_event(struct hda_codec
*codec
,
10819 if ((res
>> 26) != ALC880_HP_EVENT
)
10821 alc262_ultra_automute(codec
);
10824 static struct hda_input_mux alc262_ultra_capture_source
= {
10828 { "Headphone", 0x7 },
10832 static int alc262_ultra_mux_enum_put(struct snd_kcontrol
*kcontrol
,
10833 struct snd_ctl_elem_value
*ucontrol
)
10835 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
10836 struct alc_spec
*spec
= codec
->spec
;
10839 ret
= alc_mux_enum_put(kcontrol
, ucontrol
);
10842 /* reprogram the HP pin as mic or HP according to the input source */
10843 snd_hda_codec_write_cache(codec
, 0x15, 0,
10844 AC_VERB_SET_PIN_WIDGET_CONTROL
,
10845 spec
->cur_mux
[0] ? PIN_VREF80
: PIN_HP
);
10846 alc262_ultra_automute(codec
); /* mute/unmute HP */
10850 static struct snd_kcontrol_new alc262_ultra_capture_mixer
[] = {
10851 HDA_CODEC_VOLUME("Capture Volume", 0x07, 0x0, HDA_INPUT
),
10852 HDA_CODEC_MUTE("Capture Switch", 0x07, 0x0, HDA_INPUT
),
10854 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
10855 .name
= "Capture Source",
10856 .info
= alc_mux_enum_info
,
10857 .get
= alc_mux_enum_get
,
10858 .put
= alc262_ultra_mux_enum_put
,
10863 /* add playback controls from the parsed DAC table */
10864 static int alc262_auto_create_multi_out_ctls(struct alc_spec
*spec
,
10865 const struct auto_pin_cfg
*cfg
)
10870 spec
->multiout
.num_dacs
= 1; /* only use one dac */
10871 spec
->multiout
.dac_nids
= spec
->private_dac_nids
;
10872 spec
->multiout
.dac_nids
[0] = 2;
10874 nid
= cfg
->line_out_pins
[0];
10876 err
= add_control(spec
, ALC_CTL_WIDGET_VOL
,
10877 "Front Playback Volume",
10878 HDA_COMPOSE_AMP_VAL(0x0c, 3, 0, HDA_OUTPUT
));
10881 err
= add_control(spec
, ALC_CTL_WIDGET_MUTE
,
10882 "Front Playback Switch",
10883 HDA_COMPOSE_AMP_VAL(nid
, 3, 0, HDA_OUTPUT
));
10888 nid
= cfg
->speaker_pins
[0];
10891 err
= add_control(spec
, ALC_CTL_WIDGET_VOL
,
10892 "Speaker Playback Volume",
10893 HDA_COMPOSE_AMP_VAL(0x0e, 2, 0,
10897 err
= add_control(spec
, ALC_CTL_WIDGET_MUTE
,
10898 "Speaker Playback Switch",
10899 HDA_COMPOSE_AMP_VAL(nid
, 2, 0,
10904 err
= add_control(spec
, ALC_CTL_WIDGET_MUTE
,
10905 "Speaker Playback Switch",
10906 HDA_COMPOSE_AMP_VAL(nid
, 3, 0,
10912 nid
= cfg
->hp_pins
[0];
10914 /* spec->multiout.hp_nid = 2; */
10916 err
= add_control(spec
, ALC_CTL_WIDGET_VOL
,
10917 "Headphone Playback Volume",
10918 HDA_COMPOSE_AMP_VAL(0x0e, 2, 0,
10922 err
= add_control(spec
, ALC_CTL_WIDGET_MUTE
,
10923 "Headphone Playback Switch",
10924 HDA_COMPOSE_AMP_VAL(nid
, 2, 0,
10929 err
= add_control(spec
, ALC_CTL_WIDGET_MUTE
,
10930 "Headphone Playback Switch",
10931 HDA_COMPOSE_AMP_VAL(nid
, 3, 0,
10940 static int alc262_auto_create_analog_input_ctls(struct alc_spec
*spec
,
10941 const struct auto_pin_cfg
*cfg
)
10945 err
= alc880_auto_create_analog_input_ctls(spec
, cfg
);
10948 /* digital-mic input pin is excluded in alc880_auto_create..()
10949 * because it's under 0x18
10951 if (cfg
->input_pins
[AUTO_PIN_MIC
] == 0x12 ||
10952 cfg
->input_pins
[AUTO_PIN_FRONT_MIC
] == 0x12) {
10953 struct hda_input_mux
*imux
= &spec
->private_imux
[0];
10954 imux
->items
[imux
->num_items
].label
= "Int Mic";
10955 imux
->items
[imux
->num_items
].index
= 0x09;
10963 * generic initialization of ADC, input mixers and output mixers
10965 static struct hda_verb alc262_volume_init_verbs
[] = {
10967 * Unmute ADC0-2 and set the default input to mic-in
10969 {0x07, AC_VERB_SET_CONNECT_SEL
, 0x00},
10970 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
10971 {0x08, AC_VERB_SET_CONNECT_SEL
, 0x00},
10972 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
10973 {0x09, AC_VERB_SET_CONNECT_SEL
, 0x00},
10974 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
10976 /* Mute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
10978 * Note: PASD motherboards uses the Line In 2 as the input for
10979 * front panel mic (mic 2)
10981 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
10982 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
10983 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
10984 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
10985 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
10986 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
10989 * Set up output mixers (0x0c - 0x0f)
10991 /* set vol=0 to output mixers */
10992 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
10993 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
10994 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
10996 /* set up input amps for analog loopback */
10997 /* Amp Indices: DAC = 0, mixer = 1 */
10998 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
10999 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
11000 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
11001 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
11002 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
11003 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
11005 /* FIXME: use matrix-type input source selection */
11006 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
11007 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
11008 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
11009 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x03 << 8))},
11010 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x02 << 8))},
11011 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x04 << 8))},
11013 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
11014 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x03 << 8))},
11015 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x02 << 8))},
11016 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x04 << 8))},
11018 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
11019 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x03 << 8))},
11020 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x02 << 8))},
11021 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x04 << 8))},
11026 static struct hda_verb alc262_HP_BPC_init_verbs
[] = {
11028 * Unmute ADC0-2 and set the default input to mic-in
11030 {0x07, AC_VERB_SET_CONNECT_SEL
, 0x00},
11031 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
11032 {0x08, AC_VERB_SET_CONNECT_SEL
, 0x00},
11033 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
11034 {0x09, AC_VERB_SET_CONNECT_SEL
, 0x00},
11035 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
11037 /* Mute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
11039 * Note: PASD motherboards uses the Line In 2 as the input for
11040 * front panel mic (mic 2)
11042 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
11043 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
11044 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
11045 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
11046 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
11047 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
11048 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(5)},
11049 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(6)},
11052 * Set up output mixers (0x0c - 0x0e)
11054 /* set vol=0 to output mixers */
11055 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
11056 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
11057 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
11059 /* set up input amps for analog loopback */
11060 /* Amp Indices: DAC = 0, mixer = 1 */
11061 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
11062 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
11063 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
11064 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
11065 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
11066 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
11068 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
11069 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
11070 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
11072 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
11073 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
11075 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0x00},
11076 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00},
11078 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20},
11079 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24},
11080 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24},
11081 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20},
11082 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20},
11084 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, 0x7000 },
11085 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, 0x7000 },
11086 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, 0x7000 },
11087 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, 0x7000 },
11088 {0x1c, AC_VERB_SET_AMP_GAIN_MUTE
, 0x7000 },
11089 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE
, 0x7000 },
11092 /* FIXME: use matrix-type input source selection */
11093 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 0b, 12 */
11094 /* Input mixer1: only unmute Mic */
11095 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
11096 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x01 << 8))},
11097 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x02 << 8))},
11098 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x03 << 8))},
11099 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x04 << 8))},
11100 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x05 << 8))},
11101 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x06 << 8))},
11102 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x07 << 8))},
11103 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x08 << 8))},
11105 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
11106 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x01 << 8))},
11107 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x02 << 8))},
11108 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x03 << 8))},
11109 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x04 << 8))},
11110 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x05 << 8))},
11111 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x06 << 8))},
11112 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x07 << 8))},
11113 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x08 << 8))},
11115 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
11116 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x01 << 8))},
11117 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x02 << 8))},
11118 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x03 << 8))},
11119 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x04 << 8))},
11120 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x05 << 8))},
11121 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x06 << 8))},
11122 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x07 << 8))},
11123 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x08 << 8))},
11125 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
11130 static struct hda_verb alc262_HP_BPC_WildWest_init_verbs
[] = {
11132 * Unmute ADC0-2 and set the default input to mic-in
11134 {0x07, AC_VERB_SET_CONNECT_SEL
, 0x00},
11135 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
11136 {0x08, AC_VERB_SET_CONNECT_SEL
, 0x00},
11137 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
11138 {0x09, AC_VERB_SET_CONNECT_SEL
, 0x00},
11139 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
11141 /* Mute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
11143 * Note: PASD motherboards uses the Line In 2 as the input for front
11144 * panel mic (mic 2)
11146 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
11147 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
11148 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
11149 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
11150 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
11151 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
11152 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(5)},
11153 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(6)},
11154 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(7)},
11156 * Set up output mixers (0x0c - 0x0e)
11158 /* set vol=0 to output mixers */
11159 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
11160 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
11161 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
11163 /* set up input amps for analog loopback */
11164 /* Amp Indices: DAC = 0, mixer = 1 */
11165 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
11166 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
11167 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
11168 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
11169 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
11170 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
11173 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
}, /* HP */
11174 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
}, /* Mono */
11175 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
}, /* rear MIC */
11176 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
}, /* Line in */
11177 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
}, /* Front MIC */
11178 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
}, /* Line out */
11179 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
}, /* CD in */
11181 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
11182 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
11184 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0x00},
11185 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x01},
11187 /* {0x14, AC_VERB_SET_AMP_GAIN_MUTE, 0x7023 }, */
11188 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, 0x7000 },
11189 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, 0x7000 },
11190 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, 0x7023 },
11191 {0x1c, AC_VERB_SET_AMP_GAIN_MUTE
, 0x7000 },
11192 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE
, 0x7000 },
11194 /* FIXME: use matrix-type input source selection */
11195 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
11196 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
11197 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))}, /*rear MIC*/
11198 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x01 << 8))}, /*Line in*/
11199 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x02 << 8))}, /*F MIC*/
11200 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x03 << 8))}, /*Front*/
11201 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x04 << 8))}, /*CD*/
11202 /* {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x06 << 8))}, */
11203 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x07 << 8))}, /*HP*/
11205 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
11206 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x01 << 8))},
11207 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x02 << 8))},
11208 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x03 << 8))},
11209 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x04 << 8))},
11210 /* {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x06 << 8))}, */
11211 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x07 << 8))},
11213 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x00 << 8))},
11214 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x01 << 8))},
11215 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x02 << 8))},
11216 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x03 << 8))},
11217 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x04 << 8))},
11218 /* {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x06 << 8))}, */
11219 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x07 << 8))},
11221 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
11226 static struct hda_verb alc262_toshiba_rx1_unsol_verbs
[] = {
11228 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
}, /* Front Speaker */
11229 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
11230 {0x14, AC_VERB_SET_CONNECT_SEL
, 0x01},
11232 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
}, /* MIC jack */
11233 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
}, /* Front MIC */
11234 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0) },
11235 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0) },
11237 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
}, /* HP jack */
11238 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00},
11239 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
11244 #ifdef CONFIG_SND_HDA_POWER_SAVE
11245 #define alc262_loopbacks alc880_loopbacks
11248 /* pcm configuration: identical with ALC880 */
11249 #define alc262_pcm_analog_playback alc880_pcm_analog_playback
11250 #define alc262_pcm_analog_capture alc880_pcm_analog_capture
11251 #define alc262_pcm_digital_playback alc880_pcm_digital_playback
11252 #define alc262_pcm_digital_capture alc880_pcm_digital_capture
11255 * BIOS auto configuration
11257 static int alc262_parse_auto_config(struct hda_codec
*codec
)
11259 struct alc_spec
*spec
= codec
->spec
;
11261 static hda_nid_t alc262_ignore
[] = { 0x1d, 0 };
11263 err
= snd_hda_parse_pin_def_config(codec
, &spec
->autocfg
,
11267 if (!spec
->autocfg
.line_outs
) {
11268 if (spec
->autocfg
.dig_outs
|| spec
->autocfg
.dig_in_pin
) {
11269 spec
->multiout
.max_channels
= 2;
11270 spec
->no_analog
= 1;
11273 return 0; /* can't find valid BIOS pin config */
11275 err
= alc262_auto_create_multi_out_ctls(spec
, &spec
->autocfg
);
11278 err
= alc262_auto_create_analog_input_ctls(spec
, &spec
->autocfg
);
11282 spec
->multiout
.max_channels
= spec
->multiout
.num_dacs
* 2;
11285 if (spec
->autocfg
.dig_outs
) {
11286 spec
->multiout
.dig_out_nid
= ALC262_DIGOUT_NID
;
11287 spec
->dig_out_type
= spec
->autocfg
.dig_out_type
[0];
11289 if (spec
->autocfg
.dig_in_pin
)
11290 spec
->dig_in_nid
= ALC262_DIGIN_NID
;
11292 if (spec
->kctls
.list
)
11293 add_mixer(spec
, spec
->kctls
.list
);
11295 add_verb(spec
, alc262_volume_init_verbs
);
11296 spec
->num_mux_defs
= 1;
11297 spec
->input_mux
= &spec
->private_imux
[0];
11299 err
= alc_auto_add_mic_boost(codec
);
11303 alc_ssid_check(codec
, 0x15, 0x14, 0x1b);
11308 #define alc262_auto_init_multi_out alc882_auto_init_multi_out
11309 #define alc262_auto_init_hp_out alc882_auto_init_hp_out
11310 #define alc262_auto_init_analog_input alc882_auto_init_analog_input
11311 #define alc262_auto_init_input_src alc882_auto_init_input_src
11314 /* init callback for auto-configuration model -- overriding the default init */
11315 static void alc262_auto_init(struct hda_codec
*codec
)
11317 struct alc_spec
*spec
= codec
->spec
;
11318 alc262_auto_init_multi_out(codec
);
11319 alc262_auto_init_hp_out(codec
);
11320 alc262_auto_init_analog_input(codec
);
11321 alc262_auto_init_input_src(codec
);
11322 if (spec
->unsol_event
)
11323 alc_inithook(codec
);
11327 * configuration and preset
11329 static const char *alc262_models
[ALC262_MODEL_LAST
] = {
11330 [ALC262_BASIC
] = "basic",
11331 [ALC262_HIPPO
] = "hippo",
11332 [ALC262_HIPPO_1
] = "hippo_1",
11333 [ALC262_FUJITSU
] = "fujitsu",
11334 [ALC262_HP_BPC
] = "hp-bpc",
11335 [ALC262_HP_BPC_D7000_WL
]= "hp-bpc-d7000",
11336 [ALC262_HP_TC_T5735
] = "hp-tc-t5735",
11337 [ALC262_HP_RP5700
] = "hp-rp5700",
11338 [ALC262_BENQ_ED8
] = "benq",
11339 [ALC262_BENQ_T31
] = "benq-t31",
11340 [ALC262_SONY_ASSAMD
] = "sony-assamd",
11341 [ALC262_TOSHIBA_S06
] = "toshiba-s06",
11342 [ALC262_TOSHIBA_RX1
] = "toshiba-rx1",
11343 [ALC262_ULTRA
] = "ultra",
11344 [ALC262_LENOVO_3000
] = "lenovo-3000",
11345 [ALC262_NEC
] = "nec",
11346 [ALC262_TYAN
] = "tyan",
11347 [ALC262_AUTO
] = "auto",
11350 static struct snd_pci_quirk alc262_cfg_tbl
[] = {
11351 SND_PCI_QUIRK(0x1002, 0x437b, "Hippo", ALC262_HIPPO
),
11352 SND_PCI_QUIRK(0x1033, 0x8895, "NEC Versa S9100", ALC262_NEC
),
11353 SND_PCI_QUIRK_MASK(0x103c, 0xff00, 0x1200, "HP xw series",
11355 SND_PCI_QUIRK_MASK(0x103c, 0xff00, 0x1300, "HP xw series",
11357 SND_PCI_QUIRK_MASK(0x103c, 0xff00, 0x1700, "HP xw series",
11359 SND_PCI_QUIRK(0x103c, 0x2800, "HP D7000", ALC262_HP_BPC_D7000_WL
),
11360 SND_PCI_QUIRK(0x103c, 0x2801, "HP D7000", ALC262_HP_BPC_D7000_WF
),
11361 SND_PCI_QUIRK(0x103c, 0x2802, "HP D7000", ALC262_HP_BPC_D7000_WL
),
11362 SND_PCI_QUIRK(0x103c, 0x2803, "HP D7000", ALC262_HP_BPC_D7000_WF
),
11363 SND_PCI_QUIRK(0x103c, 0x2804, "HP D7000", ALC262_HP_BPC_D7000_WL
),
11364 SND_PCI_QUIRK(0x103c, 0x2805, "HP D7000", ALC262_HP_BPC_D7000_WF
),
11365 SND_PCI_QUIRK(0x103c, 0x2806, "HP D7000", ALC262_HP_BPC_D7000_WL
),
11366 SND_PCI_QUIRK(0x103c, 0x2807, "HP D7000", ALC262_HP_BPC_D7000_WF
),
11367 SND_PCI_QUIRK(0x103c, 0x280c, "HP xw4400", ALC262_HP_BPC
),
11368 SND_PCI_QUIRK(0x103c, 0x3014, "HP xw6400", ALC262_HP_BPC
),
11369 SND_PCI_QUIRK(0x103c, 0x3015, "HP xw8400", ALC262_HP_BPC
),
11370 SND_PCI_QUIRK(0x103c, 0x302f, "HP Thin Client T5735",
11371 ALC262_HP_TC_T5735
),
11372 SND_PCI_QUIRK(0x103c, 0x2817, "HP RP5700", ALC262_HP_RP5700
),
11373 SND_PCI_QUIRK(0x104d, 0x1f00, "Sony ASSAMD", ALC262_SONY_ASSAMD
),
11374 SND_PCI_QUIRK(0x104d, 0x8203, "Sony UX-90", ALC262_HIPPO
),
11375 SND_PCI_QUIRK(0x104d, 0x820f, "Sony ASSAMD", ALC262_SONY_ASSAMD
),
11376 SND_PCI_QUIRK(0x104d, 0x9016, "Sony VAIO", ALC262_AUTO
), /* dig-only */
11377 SND_PCI_QUIRK(0x104d, 0x9025, "Sony VAIO Z21MN", ALC262_TOSHIBA_S06
),
11378 SND_PCI_QUIRK_MASK(0x104d, 0xff00, 0x9000, "Sony VAIO",
11379 ALC262_SONY_ASSAMD
),
11380 SND_PCI_QUIRK(0x1179, 0x0001, "Toshiba dynabook SS RX1",
11381 ALC262_TOSHIBA_RX1
),
11382 SND_PCI_QUIRK(0x1179, 0xff7b, "Toshiba S06", ALC262_TOSHIBA_S06
),
11383 SND_PCI_QUIRK(0x10cf, 0x1397, "Fujitsu", ALC262_FUJITSU
),
11384 SND_PCI_QUIRK(0x10cf, 0x142d, "Fujitsu Lifebook E8410", ALC262_FUJITSU
),
11385 SND_PCI_QUIRK(0x10f1, 0x2915, "Tyan Thunder n6650W", ALC262_TYAN
),
11386 SND_PCI_QUIRK_MASK(0x144d, 0xff00, 0xc032, "Samsung Q1",
11388 SND_PCI_QUIRK(0x144d, 0xc510, "Samsung Q45", ALC262_HIPPO
),
11389 SND_PCI_QUIRK(0x17aa, 0x384e, "Lenovo 3000 y410", ALC262_LENOVO_3000
),
11390 SND_PCI_QUIRK(0x17ff, 0x0560, "Benq ED8", ALC262_BENQ_ED8
),
11391 SND_PCI_QUIRK(0x17ff, 0x058d, "Benq T31-16", ALC262_BENQ_T31
),
11392 SND_PCI_QUIRK(0x17ff, 0x058f, "Benq Hippo", ALC262_HIPPO_1
),
11396 static struct alc_config_preset alc262_presets
[] = {
11398 .mixers
= { alc262_base_mixer
},
11399 .init_verbs
= { alc262_init_verbs
},
11400 .num_dacs
= ARRAY_SIZE(alc262_dac_nids
),
11401 .dac_nids
= alc262_dac_nids
,
11403 .num_channel_mode
= ARRAY_SIZE(alc262_modes
),
11404 .channel_mode
= alc262_modes
,
11405 .input_mux
= &alc262_capture_source
,
11408 .mixers
= { alc262_hippo_mixer
},
11409 .init_verbs
= { alc262_init_verbs
, alc262_hippo_unsol_verbs
},
11410 .num_dacs
= ARRAY_SIZE(alc262_dac_nids
),
11411 .dac_nids
= alc262_dac_nids
,
11413 .dig_out_nid
= ALC262_DIGOUT_NID
,
11414 .num_channel_mode
= ARRAY_SIZE(alc262_modes
),
11415 .channel_mode
= alc262_modes
,
11416 .input_mux
= &alc262_capture_source
,
11417 .unsol_event
= alc262_hippo_unsol_event
,
11418 .init_hook
= alc262_hippo_init_hook
,
11420 [ALC262_HIPPO_1
] = {
11421 .mixers
= { alc262_hippo1_mixer
},
11422 .init_verbs
= { alc262_init_verbs
, alc262_hippo1_unsol_verbs
},
11423 .num_dacs
= ARRAY_SIZE(alc262_dac_nids
),
11424 .dac_nids
= alc262_dac_nids
,
11426 .dig_out_nid
= ALC262_DIGOUT_NID
,
11427 .num_channel_mode
= ARRAY_SIZE(alc262_modes
),
11428 .channel_mode
= alc262_modes
,
11429 .input_mux
= &alc262_capture_source
,
11430 .unsol_event
= alc262_hippo_unsol_event
,
11431 .init_hook
= alc262_hippo1_init_hook
,
11433 [ALC262_FUJITSU
] = {
11434 .mixers
= { alc262_fujitsu_mixer
},
11435 .init_verbs
= { alc262_init_verbs
, alc262_EAPD_verbs
,
11436 alc262_fujitsu_unsol_verbs
},
11437 .num_dacs
= ARRAY_SIZE(alc262_dac_nids
),
11438 .dac_nids
= alc262_dac_nids
,
11440 .dig_out_nid
= ALC262_DIGOUT_NID
,
11441 .num_channel_mode
= ARRAY_SIZE(alc262_modes
),
11442 .channel_mode
= alc262_modes
,
11443 .input_mux
= &alc262_fujitsu_capture_source
,
11444 .unsol_event
= alc262_fujitsu_unsol_event
,
11445 .init_hook
= alc262_fujitsu_init_hook
,
11447 [ALC262_HP_BPC
] = {
11448 .mixers
= { alc262_HP_BPC_mixer
},
11449 .init_verbs
= { alc262_HP_BPC_init_verbs
},
11450 .num_dacs
= ARRAY_SIZE(alc262_dac_nids
),
11451 .dac_nids
= alc262_dac_nids
,
11453 .num_channel_mode
= ARRAY_SIZE(alc262_modes
),
11454 .channel_mode
= alc262_modes
,
11455 .input_mux
= &alc262_HP_capture_source
,
11456 .unsol_event
= alc262_hp_bpc_unsol_event
,
11457 .init_hook
= alc262_hp_bpc_automute
,
11459 [ALC262_HP_BPC_D7000_WF
] = {
11460 .mixers
= { alc262_HP_BPC_WildWest_mixer
},
11461 .init_verbs
= { alc262_HP_BPC_WildWest_init_verbs
},
11462 .num_dacs
= ARRAY_SIZE(alc262_dac_nids
),
11463 .dac_nids
= alc262_dac_nids
,
11465 .num_channel_mode
= ARRAY_SIZE(alc262_modes
),
11466 .channel_mode
= alc262_modes
,
11467 .input_mux
= &alc262_HP_D7000_capture_source
,
11468 .unsol_event
= alc262_hp_wildwest_unsol_event
,
11469 .init_hook
= alc262_hp_wildwest_automute
,
11471 [ALC262_HP_BPC_D7000_WL
] = {
11472 .mixers
= { alc262_HP_BPC_WildWest_mixer
,
11473 alc262_HP_BPC_WildWest_option_mixer
},
11474 .init_verbs
= { alc262_HP_BPC_WildWest_init_verbs
},
11475 .num_dacs
= ARRAY_SIZE(alc262_dac_nids
),
11476 .dac_nids
= alc262_dac_nids
,
11478 .num_channel_mode
= ARRAY_SIZE(alc262_modes
),
11479 .channel_mode
= alc262_modes
,
11480 .input_mux
= &alc262_HP_D7000_capture_source
,
11481 .unsol_event
= alc262_hp_wildwest_unsol_event
,
11482 .init_hook
= alc262_hp_wildwest_automute
,
11484 [ALC262_HP_TC_T5735
] = {
11485 .mixers
= { alc262_hp_t5735_mixer
},
11486 .init_verbs
= { alc262_init_verbs
, alc262_hp_t5735_verbs
},
11487 .num_dacs
= ARRAY_SIZE(alc262_dac_nids
),
11488 .dac_nids
= alc262_dac_nids
,
11490 .num_channel_mode
= ARRAY_SIZE(alc262_modes
),
11491 .channel_mode
= alc262_modes
,
11492 .input_mux
= &alc262_capture_source
,
11493 .unsol_event
= alc_automute_amp_unsol_event
,
11494 .init_hook
= alc262_hp_t5735_init_hook
,
11496 [ALC262_HP_RP5700
] = {
11497 .mixers
= { alc262_hp_rp5700_mixer
},
11498 .init_verbs
= { alc262_init_verbs
, alc262_hp_rp5700_verbs
},
11499 .num_dacs
= ARRAY_SIZE(alc262_dac_nids
),
11500 .dac_nids
= alc262_dac_nids
,
11501 .num_channel_mode
= ARRAY_SIZE(alc262_modes
),
11502 .channel_mode
= alc262_modes
,
11503 .input_mux
= &alc262_hp_rp5700_capture_source
,
11505 [ALC262_BENQ_ED8
] = {
11506 .mixers
= { alc262_base_mixer
},
11507 .init_verbs
= { alc262_init_verbs
, alc262_EAPD_verbs
},
11508 .num_dacs
= ARRAY_SIZE(alc262_dac_nids
),
11509 .dac_nids
= alc262_dac_nids
,
11511 .num_channel_mode
= ARRAY_SIZE(alc262_modes
),
11512 .channel_mode
= alc262_modes
,
11513 .input_mux
= &alc262_capture_source
,
11515 [ALC262_SONY_ASSAMD
] = {
11516 .mixers
= { alc262_sony_mixer
},
11517 .init_verbs
= { alc262_init_verbs
, alc262_sony_unsol_verbs
},
11518 .num_dacs
= ARRAY_SIZE(alc262_dac_nids
),
11519 .dac_nids
= alc262_dac_nids
,
11521 .num_channel_mode
= ARRAY_SIZE(alc262_modes
),
11522 .channel_mode
= alc262_modes
,
11523 .input_mux
= &alc262_capture_source
,
11524 .unsol_event
= alc262_hippo_unsol_event
,
11525 .init_hook
= alc262_hippo_init_hook
,
11527 [ALC262_BENQ_T31
] = {
11528 .mixers
= { alc262_benq_t31_mixer
},
11529 .init_verbs
= { alc262_init_verbs
, alc262_benq_t31_EAPD_verbs
, alc262_hippo_unsol_verbs
},
11530 .num_dacs
= ARRAY_SIZE(alc262_dac_nids
),
11531 .dac_nids
= alc262_dac_nids
,
11533 .num_channel_mode
= ARRAY_SIZE(alc262_modes
),
11534 .channel_mode
= alc262_modes
,
11535 .input_mux
= &alc262_capture_source
,
11536 .unsol_event
= alc262_hippo_unsol_event
,
11537 .init_hook
= alc262_hippo_init_hook
,
11540 .mixers
= { alc262_ultra_mixer
},
11541 .cap_mixer
= alc262_ultra_capture_mixer
,
11542 .init_verbs
= { alc262_ultra_verbs
},
11543 .num_dacs
= ARRAY_SIZE(alc262_dac_nids
),
11544 .dac_nids
= alc262_dac_nids
,
11545 .num_channel_mode
= ARRAY_SIZE(alc262_modes
),
11546 .channel_mode
= alc262_modes
,
11547 .input_mux
= &alc262_ultra_capture_source
,
11548 .adc_nids
= alc262_adc_nids
, /* ADC0 */
11549 .capsrc_nids
= alc262_capsrc_nids
,
11550 .num_adc_nids
= 1, /* single ADC */
11551 .unsol_event
= alc262_ultra_unsol_event
,
11552 .init_hook
= alc262_ultra_automute
,
11554 [ALC262_LENOVO_3000
] = {
11555 .mixers
= { alc262_lenovo_3000_mixer
},
11556 .init_verbs
= { alc262_init_verbs
, alc262_EAPD_verbs
,
11557 alc262_lenovo_3000_unsol_verbs
},
11558 .num_dacs
= ARRAY_SIZE(alc262_dac_nids
),
11559 .dac_nids
= alc262_dac_nids
,
11561 .dig_out_nid
= ALC262_DIGOUT_NID
,
11562 .num_channel_mode
= ARRAY_SIZE(alc262_modes
),
11563 .channel_mode
= alc262_modes
,
11564 .input_mux
= &alc262_fujitsu_capture_source
,
11565 .unsol_event
= alc262_lenovo_3000_unsol_event
,
11568 .mixers
= { alc262_nec_mixer
},
11569 .init_verbs
= { alc262_nec_verbs
},
11570 .num_dacs
= ARRAY_SIZE(alc262_dac_nids
),
11571 .dac_nids
= alc262_dac_nids
,
11573 .num_channel_mode
= ARRAY_SIZE(alc262_modes
),
11574 .channel_mode
= alc262_modes
,
11575 .input_mux
= &alc262_capture_source
,
11577 [ALC262_TOSHIBA_S06
] = {
11578 .mixers
= { alc262_toshiba_s06_mixer
},
11579 .init_verbs
= { alc262_init_verbs
, alc262_toshiba_s06_verbs
,
11580 alc262_eapd_verbs
},
11581 .num_dacs
= ARRAY_SIZE(alc262_dac_nids
),
11582 .capsrc_nids
= alc262_dmic_capsrc_nids
,
11583 .dac_nids
= alc262_dac_nids
,
11584 .adc_nids
= alc262_dmic_adc_nids
, /* ADC0 */
11585 .num_adc_nids
= 1, /* single ADC */
11586 .dig_out_nid
= ALC262_DIGOUT_NID
,
11587 .num_channel_mode
= ARRAY_SIZE(alc262_modes
),
11588 .channel_mode
= alc262_modes
,
11589 .input_mux
= &alc262_dmic_capture_source
,
11590 .unsol_event
= alc262_toshiba_s06_unsol_event
,
11591 .init_hook
= alc262_toshiba_s06_init_hook
,
11593 [ALC262_TOSHIBA_RX1
] = {
11594 .mixers
= { alc262_toshiba_rx1_mixer
},
11595 .init_verbs
= { alc262_init_verbs
, alc262_toshiba_rx1_unsol_verbs
},
11596 .num_dacs
= ARRAY_SIZE(alc262_dac_nids
),
11597 .dac_nids
= alc262_dac_nids
,
11599 .num_channel_mode
= ARRAY_SIZE(alc262_modes
),
11600 .channel_mode
= alc262_modes
,
11601 .input_mux
= &alc262_capture_source
,
11602 .unsol_event
= alc262_hippo_unsol_event
,
11603 .init_hook
= alc262_hippo_init_hook
,
11606 .mixers
= { alc262_tyan_mixer
},
11607 .init_verbs
= { alc262_init_verbs
, alc262_tyan_verbs
},
11608 .num_dacs
= ARRAY_SIZE(alc262_dac_nids
),
11609 .dac_nids
= alc262_dac_nids
,
11611 .dig_out_nid
= ALC262_DIGOUT_NID
,
11612 .num_channel_mode
= ARRAY_SIZE(alc262_modes
),
11613 .channel_mode
= alc262_modes
,
11614 .input_mux
= &alc262_capture_source
,
11615 .unsol_event
= alc_automute_amp_unsol_event
,
11616 .init_hook
= alc262_tyan_init_hook
,
11620 static int patch_alc262(struct hda_codec
*codec
)
11622 struct alc_spec
*spec
;
11626 spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
11630 codec
->spec
= spec
;
11632 /* pshou 07/11/05 set a zero PCM sample to DAC when FIFO is
11637 snd_hda_codec_write(codec
, 0x1a, 0, AC_VERB_SET_COEF_INDEX
, 7);
11638 tmp
= snd_hda_codec_read(codec
, 0x20, 0, AC_VERB_GET_PROC_COEF
, 0);
11639 snd_hda_codec_write(codec
, 0x1a, 0, AC_VERB_SET_COEF_INDEX
, 7);
11640 snd_hda_codec_write(codec
, 0x1a, 0, AC_VERB_SET_PROC_COEF
, tmp
| 0x80);
11644 alc_fix_pll_init(codec
, 0x20, 0x0a, 10);
11646 board_config
= snd_hda_check_board_config(codec
, ALC262_MODEL_LAST
,
11650 if (board_config
< 0) {
11651 printk(KERN_INFO
"hda_codec: Unknown model for %s, "
11652 "trying auto-probe from BIOS...\n", codec
->chip_name
);
11653 board_config
= ALC262_AUTO
;
11656 if (board_config
== ALC262_AUTO
) {
11657 /* automatic parse from the BIOS config */
11658 err
= alc262_parse_auto_config(codec
);
11664 "hda_codec: Cannot set up configuration "
11665 "from BIOS. Using base mode...\n");
11666 board_config
= ALC262_BASIC
;
11670 if (!spec
->no_analog
) {
11671 err
= snd_hda_attach_beep_device(codec
, 0x1);
11678 if (board_config
!= ALC262_AUTO
)
11679 setup_preset(spec
, &alc262_presets
[board_config
]);
11681 spec
->stream_analog_playback
= &alc262_pcm_analog_playback
;
11682 spec
->stream_analog_capture
= &alc262_pcm_analog_capture
;
11684 spec
->stream_digital_playback
= &alc262_pcm_digital_playback
;
11685 spec
->stream_digital_capture
= &alc262_pcm_digital_capture
;
11687 if (!spec
->adc_nids
&& spec
->input_mux
) {
11689 /* check whether the digital-mic has to be supported */
11690 for (i
= 0; i
< spec
->input_mux
->num_items
; i
++) {
11691 if (spec
->input_mux
->items
[i
].index
>= 9)
11694 if (i
< spec
->input_mux
->num_items
) {
11695 /* use only ADC0 */
11696 spec
->adc_nids
= alc262_dmic_adc_nids
;
11697 spec
->num_adc_nids
= 1;
11698 spec
->capsrc_nids
= alc262_dmic_capsrc_nids
;
11700 /* all analog inputs */
11701 /* check whether NID 0x07 is valid */
11702 unsigned int wcap
= get_wcaps(codec
, 0x07);
11705 wcap
= (wcap
& AC_WCAP_TYPE
) >> AC_WCAP_TYPE_SHIFT
;
11706 if (wcap
!= AC_WID_AUD_IN
) {
11707 spec
->adc_nids
= alc262_adc_nids_alt
;
11708 spec
->num_adc_nids
=
11709 ARRAY_SIZE(alc262_adc_nids_alt
);
11710 spec
->capsrc_nids
= alc262_capsrc_nids_alt
;
11712 spec
->adc_nids
= alc262_adc_nids
;
11713 spec
->num_adc_nids
=
11714 ARRAY_SIZE(alc262_adc_nids
);
11715 spec
->capsrc_nids
= alc262_capsrc_nids
;
11719 if (!spec
->cap_mixer
&& !spec
->no_analog
)
11720 set_capture_mixer(spec
);
11721 if (!spec
->no_analog
)
11722 set_beep_amp(spec
, 0x0b, 0x05, HDA_INPUT
);
11724 spec
->vmaster_nid
= 0x0c;
11726 codec
->patch_ops
= alc_patch_ops
;
11727 if (board_config
== ALC262_AUTO
)
11728 spec
->init_hook
= alc262_auto_init
;
11729 #ifdef CONFIG_SND_HDA_POWER_SAVE
11730 if (!spec
->loopback
.amplist
)
11731 spec
->loopback
.amplist
= alc262_loopbacks
;
11733 codec
->proc_widget_hook
= print_realtek_coef
;
11739 * ALC268 channel source setting (2 channel)
11741 #define ALC268_DIGOUT_NID ALC880_DIGOUT_NID
11742 #define alc268_modes alc260_modes
11744 static hda_nid_t alc268_dac_nids
[2] = {
11749 static hda_nid_t alc268_adc_nids
[2] = {
11754 static hda_nid_t alc268_adc_nids_alt
[1] = {
11759 static hda_nid_t alc268_capsrc_nids
[2] = { 0x23, 0x24 };
11761 static struct snd_kcontrol_new alc268_base_mixer
[] = {
11762 /* output mixer control */
11763 HDA_CODEC_VOLUME("Front Playback Volume", 0x2, 0x0, HDA_OUTPUT
),
11764 HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
11765 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x3, 0x0, HDA_OUTPUT
),
11766 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
11767 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
11768 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT
),
11769 HDA_CODEC_VOLUME("Line In Boost", 0x1a, 0, HDA_INPUT
),
11773 static struct snd_kcontrol_new alc268_toshiba_mixer
[] = {
11774 /* output mixer control */
11775 HDA_CODEC_VOLUME("Front Playback Volume", 0x2, 0x0, HDA_OUTPUT
),
11776 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x3, 0x0, HDA_OUTPUT
),
11777 ALC262_HIPPO_MASTER_SWITCH
,
11778 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
11779 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT
),
11780 HDA_CODEC_VOLUME("Line In Boost", 0x1a, 0, HDA_INPUT
),
11784 /* bind Beep switches of both NID 0x0f and 0x10 */
11785 static struct hda_bind_ctls alc268_bind_beep_sw
= {
11786 .ops
= &snd_hda_bind_sw
,
11788 HDA_COMPOSE_AMP_VAL(0x0f, 3, 1, HDA_INPUT
),
11789 HDA_COMPOSE_AMP_VAL(0x10, 3, 1, HDA_INPUT
),
11794 static struct snd_kcontrol_new alc268_beep_mixer
[] = {
11795 HDA_CODEC_VOLUME("Beep Playback Volume", 0x1d, 0x0, HDA_INPUT
),
11796 HDA_BIND_SW("Beep Playback Switch", &alc268_bind_beep_sw
),
11800 static struct hda_verb alc268_eapd_verbs
[] = {
11801 {0x14, AC_VERB_SET_EAPD_BTLENABLE
, 2},
11802 {0x15, AC_VERB_SET_EAPD_BTLENABLE
, 2},
11806 /* Toshiba specific */
11807 static struct hda_verb alc268_toshiba_verbs
[] = {
11808 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
11812 static struct hda_input_mux alc268_acer_lc_capture_source
= {
11820 /* Acer specific */
11821 /* bind volumes of both NID 0x02 and 0x03 */
11822 static struct hda_bind_ctls alc268_acer_bind_master_vol
= {
11823 .ops
= &snd_hda_bind_vol
,
11825 HDA_COMPOSE_AMP_VAL(0x02, 3, 0, HDA_OUTPUT
),
11826 HDA_COMPOSE_AMP_VAL(0x03, 3, 0, HDA_OUTPUT
),
11831 /* mute/unmute internal speaker according to the hp jack and mute state */
11832 static void alc268_acer_automute(struct hda_codec
*codec
, int force
)
11834 struct alc_spec
*spec
= codec
->spec
;
11837 if (force
|| !spec
->sense_updated
) {
11838 unsigned int present
;
11839 present
= snd_hda_codec_read(codec
, 0x14, 0,
11840 AC_VERB_GET_PIN_SENSE
, 0);
11841 spec
->jack_present
= (present
& 0x80000000) != 0;
11842 spec
->sense_updated
= 1;
11844 if (spec
->jack_present
)
11845 mute
= HDA_AMP_MUTE
; /* mute internal speaker */
11846 else /* unmute internal speaker if necessary */
11847 mute
= snd_hda_codec_amp_read(codec
, 0x14, 0, HDA_OUTPUT
, 0);
11848 snd_hda_codec_amp_stereo(codec
, 0x15, HDA_OUTPUT
, 0,
11849 HDA_AMP_MUTE
, mute
);
11853 /* bind hp and internal speaker mute (with plug check) */
11854 static int alc268_acer_master_sw_put(struct snd_kcontrol
*kcontrol
,
11855 struct snd_ctl_elem_value
*ucontrol
)
11857 struct hda_codec
*codec
= snd_kcontrol_chip(kcontrol
);
11858 long *valp
= ucontrol
->value
.integer
.value
;
11861 change
= amp_stereo_mute_update(codec
, 0x14, HDA_OUTPUT
, 0, valp
);
11863 alc268_acer_automute(codec
, 0);
11867 static struct snd_kcontrol_new alc268_acer_aspire_one_mixer
[] = {
11868 /* output mixer control */
11869 HDA_BIND_VOL("Master Playback Volume", &alc268_acer_bind_master_vol
),
11871 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
11872 .name
= "Master Playback Switch",
11873 .info
= snd_hda_mixer_amp_switch_info
,
11874 .get
= snd_hda_mixer_amp_switch_get
,
11875 .put
= alc268_acer_master_sw_put
,
11876 .private_value
= HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT
),
11878 HDA_CODEC_VOLUME("Mic Boost Capture Volume", 0x18, 0, HDA_INPUT
),
11882 static struct snd_kcontrol_new alc268_acer_mixer
[] = {
11883 /* output mixer control */
11884 HDA_BIND_VOL("Master Playback Volume", &alc268_acer_bind_master_vol
),
11886 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
11887 .name
= "Master Playback Switch",
11888 .info
= snd_hda_mixer_amp_switch_info
,
11889 .get
= snd_hda_mixer_amp_switch_get
,
11890 .put
= alc268_acer_master_sw_put
,
11891 .private_value
= HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT
),
11893 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
11894 HDA_CODEC_VOLUME("Internal Mic Boost", 0x19, 0, HDA_INPUT
),
11895 HDA_CODEC_VOLUME("Line In Boost", 0x1a, 0, HDA_INPUT
),
11899 static struct snd_kcontrol_new alc268_acer_dmic_mixer
[] = {
11900 /* output mixer control */
11901 HDA_BIND_VOL("Master Playback Volume", &alc268_acer_bind_master_vol
),
11903 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
11904 .name
= "Master Playback Switch",
11905 .info
= snd_hda_mixer_amp_switch_info
,
11906 .get
= snd_hda_mixer_amp_switch_get
,
11907 .put
= alc268_acer_master_sw_put
,
11908 .private_value
= HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT
),
11910 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
11911 HDA_CODEC_VOLUME("Line In Boost", 0x1a, 0, HDA_INPUT
),
11915 static struct hda_verb alc268_acer_aspire_one_verbs
[] = {
11916 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
11917 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
11918 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
11919 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
11920 {0x23, AC_VERB_SET_CONNECT_SEL
, 0x06},
11921 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, 0xa017},
11925 static struct hda_verb alc268_acer_verbs
[] = {
11926 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
}, /* internal dmic? */
11927 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
11928 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
11929 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
11930 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
11931 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
11932 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
11936 /* unsolicited event for HP jack sensing */
11937 #define alc268_toshiba_unsol_event alc262_hippo_unsol_event
11938 #define alc268_toshiba_init_hook alc262_hippo_init_hook
11940 static void alc268_acer_unsol_event(struct hda_codec
*codec
,
11943 if ((res
>> 26) != ALC880_HP_EVENT
)
11945 alc268_acer_automute(codec
, 1);
11948 static void alc268_acer_init_hook(struct hda_codec
*codec
)
11950 alc268_acer_automute(codec
, 1);
11953 /* toggle speaker-output according to the hp-jack state */
11954 static void alc268_aspire_one_speaker_automute(struct hda_codec
*codec
)
11956 unsigned int present
;
11957 unsigned char bits
;
11959 present
= snd_hda_codec_read(codec
, 0x15, 0,
11960 AC_VERB_GET_PIN_SENSE
, 0) & 0x80000000;
11961 bits
= present
? AMP_IN_MUTE(0) : 0;
11962 snd_hda_codec_amp_stereo(codec
, 0x0f, HDA_INPUT
, 0,
11963 AMP_IN_MUTE(0), bits
);
11964 snd_hda_codec_amp_stereo(codec
, 0x0f, HDA_INPUT
, 1,
11965 AMP_IN_MUTE(0), bits
);
11969 static void alc268_acer_mic_automute(struct hda_codec
*codec
)
11971 unsigned int present
;
11973 present
= snd_hda_codec_read(codec
, 0x18, 0,
11974 AC_VERB_GET_PIN_SENSE
, 0) & 0x80000000;
11975 snd_hda_codec_write(codec
, 0x23, 0, AC_VERB_SET_CONNECT_SEL
,
11976 present
? 0x0 : 0x6);
11979 static void alc268_acer_lc_unsol_event(struct hda_codec
*codec
,
11982 if ((res
>> 26) == ALC880_HP_EVENT
)
11983 alc268_aspire_one_speaker_automute(codec
);
11984 if ((res
>> 26) == ALC880_MIC_EVENT
)
11985 alc268_acer_mic_automute(codec
);
11988 static void alc268_acer_lc_init_hook(struct hda_codec
*codec
)
11990 alc268_aspire_one_speaker_automute(codec
);
11991 alc268_acer_mic_automute(codec
);
11994 static struct snd_kcontrol_new alc268_dell_mixer
[] = {
11995 /* output mixer control */
11996 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
11997 HDA_CODEC_MUTE("Speaker Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
11998 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x03, 0x0, HDA_OUTPUT
),
11999 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
12000 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
12001 HDA_CODEC_VOLUME("Internal Mic Boost", 0x19, 0, HDA_INPUT
),
12005 static struct hda_verb alc268_dell_verbs
[] = {
12006 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
12007 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
12008 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
12012 /* mute/unmute internal speaker according to the hp jack and mute state */
12013 static void alc268_dell_init_hook(struct hda_codec
*codec
)
12015 struct alc_spec
*spec
= codec
->spec
;
12017 spec
->autocfg
.hp_pins
[0] = 0x15;
12018 spec
->autocfg
.speaker_pins
[0] = 0x14;
12019 alc_automute_pin(codec
);
12022 static struct snd_kcontrol_new alc267_quanta_il1_mixer
[] = {
12023 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x2, 0x0, HDA_OUTPUT
),
12024 HDA_CODEC_MUTE("Speaker Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
12025 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x3, 0x0, HDA_OUTPUT
),
12026 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
12027 HDA_CODEC_VOLUME("Mic Capture Volume", 0x23, 0x0, HDA_OUTPUT
),
12028 HDA_BIND_MUTE("Mic Capture Switch", 0x23, 2, HDA_OUTPUT
),
12029 HDA_CODEC_VOLUME("Ext Mic Boost", 0x18, 0, HDA_INPUT
),
12030 HDA_CODEC_VOLUME("Int Mic Boost", 0x19, 0, HDA_INPUT
),
12034 static struct hda_verb alc267_quanta_il1_verbs
[] = {
12035 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
12036 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_MIC_EVENT
| AC_USRSP_EN
},
12040 static void alc267_quanta_il1_mic_automute(struct hda_codec
*codec
)
12042 unsigned int present
;
12044 present
= snd_hda_codec_read(codec
, 0x18, 0,
12045 AC_VERB_GET_PIN_SENSE
, 0) & 0x80000000;
12046 snd_hda_codec_write(codec
, 0x23, 0,
12047 AC_VERB_SET_CONNECT_SEL
,
12048 present
? 0x00 : 0x01);
12051 static void alc267_quanta_il1_init_hook(struct hda_codec
*codec
)
12053 struct alc_spec
*spec
= codec
->spec
;
12055 spec
->autocfg
.hp_pins
[0] = 0x15;
12056 spec
->autocfg
.speaker_pins
[0] = 0x14;
12057 alc_automute_pin(codec
);
12058 alc267_quanta_il1_mic_automute(codec
);
12061 static void alc267_quanta_il1_unsol_event(struct hda_codec
*codec
,
12064 switch (res
>> 26) {
12065 case ALC880_MIC_EVENT
:
12066 alc267_quanta_il1_mic_automute(codec
);
12069 alc_sku_unsol_event(codec
, res
);
12075 * generic initialization of ADC, input mixers and output mixers
12077 static struct hda_verb alc268_base_init_verbs
[] = {
12078 /* Unmute DAC0-1 and set vol = 0 */
12079 {0x02, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
12080 {0x03, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
12083 * Set up output mixers (0x0c - 0x0e)
12085 /* set vol=0 to output mixers */
12086 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
12087 {0x0e, AC_VERB_SET_CONNECT_SEL
, 0x00},
12089 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
12090 {0x10, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
12092 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40},
12093 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0xc0},
12094 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40},
12095 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24},
12096 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24},
12097 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20},
12098 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20},
12099 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20},
12101 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
12102 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
12103 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
12104 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
12105 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
12107 /* set PCBEEP vol = 0, mute connections */
12108 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
12109 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
12110 {0x10, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
12112 /* Unmute Selector 23h,24h and set the default input to mic-in */
12114 {0x23, AC_VERB_SET_CONNECT_SEL
, 0x00},
12115 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
12116 {0x24, AC_VERB_SET_CONNECT_SEL
, 0x00},
12117 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
12123 * generic initialization of ADC, input mixers and output mixers
12125 static struct hda_verb alc268_volume_init_verbs
[] = {
12126 /* set output DAC */
12127 {0x02, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
12128 {0x03, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
12130 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24},
12131 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24},
12132 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20},
12133 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20},
12134 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20},
12136 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
12137 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
12138 {0x10, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
12140 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
12141 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
12143 /* set PCBEEP vol = 0, mute connections */
12144 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
12145 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
12146 {0x10, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
12151 static struct snd_kcontrol_new alc268_capture_alt_mixer
[] = {
12152 HDA_CODEC_VOLUME("Capture Volume", 0x23, 0x0, HDA_OUTPUT
),
12153 HDA_CODEC_MUTE("Capture Switch", 0x23, 0x0, HDA_OUTPUT
),
12155 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
12156 /* The multiple "Capture Source" controls confuse alsamixer
12157 * So call somewhat different..
12159 /* .name = "Capture Source", */
12160 .name
= "Input Source",
12162 .info
= alc_mux_enum_info
,
12163 .get
= alc_mux_enum_get
,
12164 .put
= alc_mux_enum_put
,
12169 static struct snd_kcontrol_new alc268_capture_mixer
[] = {
12170 HDA_CODEC_VOLUME("Capture Volume", 0x23, 0x0, HDA_OUTPUT
),
12171 HDA_CODEC_MUTE("Capture Switch", 0x23, 0x0, HDA_OUTPUT
),
12172 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x24, 0x0, HDA_OUTPUT
),
12173 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x24, 0x0, HDA_OUTPUT
),
12175 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
12176 /* The multiple "Capture Source" controls confuse alsamixer
12177 * So call somewhat different..
12179 /* .name = "Capture Source", */
12180 .name
= "Input Source",
12182 .info
= alc_mux_enum_info
,
12183 .get
= alc_mux_enum_get
,
12184 .put
= alc_mux_enum_put
,
12189 static struct hda_input_mux alc268_capture_source
= {
12193 { "Front Mic", 0x1 },
12199 static struct hda_input_mux alc268_acer_capture_source
= {
12203 { "Internal Mic", 0x1 },
12208 static struct hda_input_mux alc268_acer_dmic_capture_source
= {
12212 { "Internal Mic", 0x6 },
12217 #ifdef CONFIG_SND_DEBUG
12218 static struct snd_kcontrol_new alc268_test_mixer
[] = {
12219 /* Volume widgets */
12220 HDA_CODEC_VOLUME("LOUT1 Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
12221 HDA_CODEC_VOLUME("LOUT2 Playback Volume", 0x03, 0x0, HDA_OUTPUT
),
12222 HDA_BIND_MUTE_MONO("Mono sum Playback Switch", 0x0e, 1, 2, HDA_INPUT
),
12223 HDA_BIND_MUTE("LINE-OUT sum Playback Switch", 0x0f, 2, HDA_INPUT
),
12224 HDA_BIND_MUTE("HP-OUT sum Playback Switch", 0x10, 2, HDA_INPUT
),
12225 HDA_BIND_MUTE("LINE-OUT Playback Switch", 0x14, 2, HDA_OUTPUT
),
12226 HDA_BIND_MUTE("HP-OUT Playback Switch", 0x15, 2, HDA_OUTPUT
),
12227 HDA_BIND_MUTE("Mono Playback Switch", 0x16, 2, HDA_OUTPUT
),
12228 HDA_CODEC_VOLUME("MIC1 Capture Volume", 0x18, 0x0, HDA_INPUT
),
12229 HDA_BIND_MUTE("MIC1 Capture Switch", 0x18, 2, HDA_OUTPUT
),
12230 HDA_CODEC_VOLUME("MIC2 Capture Volume", 0x19, 0x0, HDA_INPUT
),
12231 HDA_CODEC_VOLUME("LINE1 Capture Volume", 0x1a, 0x0, HDA_INPUT
),
12232 HDA_BIND_MUTE("LINE1 Capture Switch", 0x1a, 2, HDA_OUTPUT
),
12233 /* The below appears problematic on some hardwares */
12234 /*HDA_CODEC_VOLUME("PCBEEP Playback Volume", 0x1d, 0x0, HDA_INPUT),*/
12235 HDA_CODEC_VOLUME("PCM-IN1 Capture Volume", 0x23, 0x0, HDA_OUTPUT
),
12236 HDA_BIND_MUTE("PCM-IN1 Capture Switch", 0x23, 2, HDA_OUTPUT
),
12237 HDA_CODEC_VOLUME("PCM-IN2 Capture Volume", 0x24, 0x0, HDA_OUTPUT
),
12238 HDA_BIND_MUTE("PCM-IN2 Capture Switch", 0x24, 2, HDA_OUTPUT
),
12240 /* Modes for retasking pin widgets */
12241 ALC_PIN_MODE("LINE-OUT pin mode", 0x14, ALC_PIN_DIR_INOUT
),
12242 ALC_PIN_MODE("HP-OUT pin mode", 0x15, ALC_PIN_DIR_INOUT
),
12243 ALC_PIN_MODE("MIC1 pin mode", 0x18, ALC_PIN_DIR_INOUT
),
12244 ALC_PIN_MODE("LINE1 pin mode", 0x1a, ALC_PIN_DIR_INOUT
),
12246 /* Controls for GPIO pins, assuming they are configured as outputs */
12247 ALC_GPIO_DATA_SWITCH("GPIO pin 0", 0x01, 0x01),
12248 ALC_GPIO_DATA_SWITCH("GPIO pin 1", 0x01, 0x02),
12249 ALC_GPIO_DATA_SWITCH("GPIO pin 2", 0x01, 0x04),
12250 ALC_GPIO_DATA_SWITCH("GPIO pin 3", 0x01, 0x08),
12252 /* Switches to allow the digital SPDIF output pin to be enabled.
12253 * The ALC268 does not have an SPDIF input.
12255 ALC_SPDIF_CTRL_SWITCH("SPDIF Playback Switch", 0x06, 0x01),
12257 /* A switch allowing EAPD to be enabled. Some laptops seem to use
12258 * this output to turn on an external amplifier.
12260 ALC_EAPD_CTRL_SWITCH("LINE-OUT EAPD Enable Switch", 0x0f, 0x02),
12261 ALC_EAPD_CTRL_SWITCH("HP-OUT EAPD Enable Switch", 0x10, 0x02),
12267 /* create input playback/capture controls for the given pin */
12268 static int alc268_new_analog_output(struct alc_spec
*spec
, hda_nid_t nid
,
12269 const char *ctlname
, int idx
)
12274 sprintf(name
, "%s Playback Volume", ctlname
);
12276 err
= add_control(spec
, ALC_CTL_WIDGET_VOL
, name
,
12277 HDA_COMPOSE_AMP_VAL(0x02, 3, idx
,
12281 } else if (nid
== 0x15) {
12282 err
= add_control(spec
, ALC_CTL_WIDGET_VOL
, name
,
12283 HDA_COMPOSE_AMP_VAL(0x03, 3, idx
,
12289 sprintf(name
, "%s Playback Switch", ctlname
);
12290 err
= add_control(spec
, ALC_CTL_WIDGET_MUTE
, name
,
12291 HDA_COMPOSE_AMP_VAL(nid
, 3, idx
, HDA_OUTPUT
));
12297 /* add playback controls from the parsed DAC table */
12298 static int alc268_auto_create_multi_out_ctls(struct alc_spec
*spec
,
12299 const struct auto_pin_cfg
*cfg
)
12304 spec
->multiout
.num_dacs
= 2; /* only use one dac */
12305 spec
->multiout
.dac_nids
= spec
->private_dac_nids
;
12306 spec
->multiout
.dac_nids
[0] = 2;
12307 spec
->multiout
.dac_nids
[1] = 3;
12309 nid
= cfg
->line_out_pins
[0];
12311 alc268_new_analog_output(spec
, nid
, "Front", 0);
12313 nid
= cfg
->speaker_pins
[0];
12315 err
= add_control(spec
, ALC_CTL_WIDGET_VOL
,
12316 "Speaker Playback Volume",
12317 HDA_COMPOSE_AMP_VAL(nid
, 3, 0, HDA_INPUT
));
12321 nid
= cfg
->hp_pins
[0];
12323 alc268_new_analog_output(spec
, nid
, "Headphone", 0);
12325 nid
= cfg
->line_out_pins
[1] | cfg
->line_out_pins
[2];
12327 err
= add_control(spec
, ALC_CTL_WIDGET_MUTE
,
12328 "Mono Playback Switch",
12329 HDA_COMPOSE_AMP_VAL(nid
, 2, 0, HDA_INPUT
));
12336 /* create playback/capture controls for input pins */
12337 static int alc268_auto_create_analog_input_ctls(struct alc_spec
*spec
,
12338 const struct auto_pin_cfg
*cfg
)
12340 struct hda_input_mux
*imux
= &spec
->private_imux
[0];
12343 for (i
= 0; i
< AUTO_PIN_LAST
; i
++) {
12344 switch(cfg
->input_pins
[i
]) {
12346 idx1
= 0; /* Mic 1 */
12349 idx1
= 1; /* Mic 2 */
12352 idx1
= 2; /* Line In */
12359 idx1
= 6; /* digital mics */
12364 imux
->items
[imux
->num_items
].label
= auto_pin_cfg_labels
[i
];
12365 imux
->items
[imux
->num_items
].index
= idx1
;
12371 static void alc268_auto_init_mono_speaker_out(struct hda_codec
*codec
)
12373 struct alc_spec
*spec
= codec
->spec
;
12374 hda_nid_t speaker_nid
= spec
->autocfg
.speaker_pins
[0];
12375 hda_nid_t hp_nid
= spec
->autocfg
.hp_pins
[0];
12376 hda_nid_t line_nid
= spec
->autocfg
.line_out_pins
[0];
12377 unsigned int dac_vol1
, dac_vol2
;
12380 snd_hda_codec_write(codec
, speaker_nid
, 0,
12381 AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
);
12382 snd_hda_codec_write(codec
, 0x0f, 0,
12383 AC_VERB_SET_AMP_GAIN_MUTE
,
12385 snd_hda_codec_write(codec
, 0x10, 0,
12386 AC_VERB_SET_AMP_GAIN_MUTE
,
12389 snd_hda_codec_write(codec
, 0x0f, 0,
12390 AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1));
12391 snd_hda_codec_write(codec
, 0x10, 0,
12392 AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1));
12395 dac_vol1
= dac_vol2
= 0xb000 | 0x40; /* set max volume */
12396 if (line_nid
== 0x14)
12397 dac_vol2
= AMP_OUT_ZERO
;
12398 else if (line_nid
== 0x15)
12399 dac_vol1
= AMP_OUT_ZERO
;
12400 if (hp_nid
== 0x14)
12401 dac_vol2
= AMP_OUT_ZERO
;
12402 else if (hp_nid
== 0x15)
12403 dac_vol1
= AMP_OUT_ZERO
;
12404 if (line_nid
!= 0x16 || hp_nid
!= 0x16 ||
12405 spec
->autocfg
.line_out_pins
[1] != 0x16 ||
12406 spec
->autocfg
.line_out_pins
[2] != 0x16)
12407 dac_vol1
= dac_vol2
= AMP_OUT_ZERO
;
12409 snd_hda_codec_write(codec
, 0x02, 0,
12410 AC_VERB_SET_AMP_GAIN_MUTE
, dac_vol1
);
12411 snd_hda_codec_write(codec
, 0x03, 0,
12412 AC_VERB_SET_AMP_GAIN_MUTE
, dac_vol2
);
12415 /* pcm configuration: identical with ALC880 */
12416 #define alc268_pcm_analog_playback alc880_pcm_analog_playback
12417 #define alc268_pcm_analog_capture alc880_pcm_analog_capture
12418 #define alc268_pcm_analog_alt_capture alc880_pcm_analog_alt_capture
12419 #define alc268_pcm_digital_playback alc880_pcm_digital_playback
12422 * BIOS auto configuration
12424 static int alc268_parse_auto_config(struct hda_codec
*codec
)
12426 struct alc_spec
*spec
= codec
->spec
;
12428 static hda_nid_t alc268_ignore
[] = { 0 };
12430 err
= snd_hda_parse_pin_def_config(codec
, &spec
->autocfg
,
12434 if (!spec
->autocfg
.line_outs
) {
12435 if (spec
->autocfg
.dig_outs
|| spec
->autocfg
.dig_in_pin
) {
12436 spec
->multiout
.max_channels
= 2;
12437 spec
->no_analog
= 1;
12440 return 0; /* can't find valid BIOS pin config */
12442 err
= alc268_auto_create_multi_out_ctls(spec
, &spec
->autocfg
);
12445 err
= alc268_auto_create_analog_input_ctls(spec
, &spec
->autocfg
);
12449 spec
->multiout
.max_channels
= 2;
12452 /* digital only support output */
12453 if (spec
->autocfg
.dig_outs
) {
12454 spec
->multiout
.dig_out_nid
= ALC268_DIGOUT_NID
;
12455 spec
->dig_out_type
= spec
->autocfg
.dig_out_type
[0];
12457 if (spec
->kctls
.list
)
12458 add_mixer(spec
, spec
->kctls
.list
);
12460 if (!spec
->no_analog
&& spec
->autocfg
.speaker_pins
[0] != 0x1d)
12461 add_mixer(spec
, alc268_beep_mixer
);
12463 add_verb(spec
, alc268_volume_init_verbs
);
12464 spec
->num_mux_defs
= 1;
12465 spec
->input_mux
= &spec
->private_imux
[0];
12467 err
= alc_auto_add_mic_boost(codec
);
12471 alc_ssid_check(codec
, 0x15, 0x1b, 0x14);
12476 #define alc268_auto_init_multi_out alc882_auto_init_multi_out
12477 #define alc268_auto_init_hp_out alc882_auto_init_hp_out
12478 #define alc268_auto_init_analog_input alc882_auto_init_analog_input
12480 /* init callback for auto-configuration model -- overriding the default init */
12481 static void alc268_auto_init(struct hda_codec
*codec
)
12483 struct alc_spec
*spec
= codec
->spec
;
12484 alc268_auto_init_multi_out(codec
);
12485 alc268_auto_init_hp_out(codec
);
12486 alc268_auto_init_mono_speaker_out(codec
);
12487 alc268_auto_init_analog_input(codec
);
12488 if (spec
->unsol_event
)
12489 alc_inithook(codec
);
12493 * configuration and preset
12495 static const char *alc268_models
[ALC268_MODEL_LAST
] = {
12496 [ALC267_QUANTA_IL1
] = "quanta-il1",
12497 [ALC268_3ST
] = "3stack",
12498 [ALC268_TOSHIBA
] = "toshiba",
12499 [ALC268_ACER
] = "acer",
12500 [ALC268_ACER_DMIC
] = "acer-dmic",
12501 [ALC268_ACER_ASPIRE_ONE
] = "acer-aspire",
12502 [ALC268_DELL
] = "dell",
12503 [ALC268_ZEPTO
] = "zepto",
12504 #ifdef CONFIG_SND_DEBUG
12505 [ALC268_TEST
] = "test",
12507 [ALC268_AUTO
] = "auto",
12510 static struct snd_pci_quirk alc268_cfg_tbl
[] = {
12511 SND_PCI_QUIRK(0x1025, 0x011e, "Acer Aspire 5720z", ALC268_ACER
),
12512 SND_PCI_QUIRK(0x1025, 0x0126, "Acer", ALC268_ACER
),
12513 SND_PCI_QUIRK(0x1025, 0x012e, "Acer Aspire 5310", ALC268_ACER
),
12514 SND_PCI_QUIRK(0x1025, 0x0130, "Acer Extensa 5210", ALC268_ACER
),
12515 SND_PCI_QUIRK(0x1025, 0x0136, "Acer Aspire 5315", ALC268_ACER
),
12516 SND_PCI_QUIRK(0x1025, 0x015b, "Acer Aspire One",
12517 ALC268_ACER_ASPIRE_ONE
),
12518 SND_PCI_QUIRK(0x1028, 0x0253, "Dell OEM", ALC268_DELL
),
12519 SND_PCI_QUIRK(0x1028, 0x02b0, "Dell Inspiron Mini9", ALC268_DELL
),
12520 SND_PCI_QUIRK_MASK(0x103c, 0xff00, 0x3000, "HP TX25xx series",
12522 SND_PCI_QUIRK(0x1043, 0x1205, "ASUS W7J", ALC268_3ST
),
12523 SND_PCI_QUIRK(0x1170, 0x0040, "ZEPTO", ALC268_ZEPTO
),
12524 SND_PCI_QUIRK_MASK(0x1179, 0xff00, 0xff00, "TOSHIBA A/Lx05",
12526 SND_PCI_QUIRK(0x14c0, 0x0025, "COMPAL IFL90/JFL-92", ALC268_TOSHIBA
),
12527 SND_PCI_QUIRK(0x152d, 0x0763, "Diverse (CPR2000)", ALC268_ACER
),
12528 SND_PCI_QUIRK(0x152d, 0x0771, "Quanta IL1", ALC267_QUANTA_IL1
),
12529 SND_PCI_QUIRK(0x1854, 0x1775, "LG R510", ALC268_DELL
),
12533 static struct alc_config_preset alc268_presets
[] = {
12534 [ALC267_QUANTA_IL1
] = {
12535 .mixers
= { alc267_quanta_il1_mixer
, alc268_beep_mixer
},
12536 .init_verbs
= { alc268_base_init_verbs
, alc268_eapd_verbs
,
12537 alc267_quanta_il1_verbs
},
12538 .num_dacs
= ARRAY_SIZE(alc268_dac_nids
),
12539 .dac_nids
= alc268_dac_nids
,
12540 .num_adc_nids
= ARRAY_SIZE(alc268_adc_nids_alt
),
12541 .adc_nids
= alc268_adc_nids_alt
,
12543 .num_channel_mode
= ARRAY_SIZE(alc268_modes
),
12544 .channel_mode
= alc268_modes
,
12545 .input_mux
= &alc268_capture_source
,
12546 .unsol_event
= alc267_quanta_il1_unsol_event
,
12547 .init_hook
= alc267_quanta_il1_init_hook
,
12550 .mixers
= { alc268_base_mixer
, alc268_capture_alt_mixer
,
12551 alc268_beep_mixer
},
12552 .init_verbs
= { alc268_base_init_verbs
},
12553 .num_dacs
= ARRAY_SIZE(alc268_dac_nids
),
12554 .dac_nids
= alc268_dac_nids
,
12555 .num_adc_nids
= ARRAY_SIZE(alc268_adc_nids_alt
),
12556 .adc_nids
= alc268_adc_nids_alt
,
12557 .capsrc_nids
= alc268_capsrc_nids
,
12559 .dig_out_nid
= ALC268_DIGOUT_NID
,
12560 .num_channel_mode
= ARRAY_SIZE(alc268_modes
),
12561 .channel_mode
= alc268_modes
,
12562 .input_mux
= &alc268_capture_source
,
12564 [ALC268_TOSHIBA
] = {
12565 .mixers
= { alc268_toshiba_mixer
, alc268_capture_alt_mixer
,
12566 alc268_beep_mixer
},
12567 .init_verbs
= { alc268_base_init_verbs
, alc268_eapd_verbs
,
12568 alc268_toshiba_verbs
},
12569 .num_dacs
= ARRAY_SIZE(alc268_dac_nids
),
12570 .dac_nids
= alc268_dac_nids
,
12571 .num_adc_nids
= ARRAY_SIZE(alc268_adc_nids_alt
),
12572 .adc_nids
= alc268_adc_nids_alt
,
12573 .capsrc_nids
= alc268_capsrc_nids
,
12575 .num_channel_mode
= ARRAY_SIZE(alc268_modes
),
12576 .channel_mode
= alc268_modes
,
12577 .input_mux
= &alc268_capture_source
,
12578 .unsol_event
= alc268_toshiba_unsol_event
,
12579 .init_hook
= alc268_toshiba_init_hook
,
12582 .mixers
= { alc268_acer_mixer
, alc268_capture_alt_mixer
,
12583 alc268_beep_mixer
},
12584 .init_verbs
= { alc268_base_init_verbs
, alc268_eapd_verbs
,
12585 alc268_acer_verbs
},
12586 .num_dacs
= ARRAY_SIZE(alc268_dac_nids
),
12587 .dac_nids
= alc268_dac_nids
,
12588 .num_adc_nids
= ARRAY_SIZE(alc268_adc_nids_alt
),
12589 .adc_nids
= alc268_adc_nids_alt
,
12590 .capsrc_nids
= alc268_capsrc_nids
,
12592 .num_channel_mode
= ARRAY_SIZE(alc268_modes
),
12593 .channel_mode
= alc268_modes
,
12594 .input_mux
= &alc268_acer_capture_source
,
12595 .unsol_event
= alc268_acer_unsol_event
,
12596 .init_hook
= alc268_acer_init_hook
,
12598 [ALC268_ACER_DMIC
] = {
12599 .mixers
= { alc268_acer_dmic_mixer
, alc268_capture_alt_mixer
,
12600 alc268_beep_mixer
},
12601 .init_verbs
= { alc268_base_init_verbs
, alc268_eapd_verbs
,
12602 alc268_acer_verbs
},
12603 .num_dacs
= ARRAY_SIZE(alc268_dac_nids
),
12604 .dac_nids
= alc268_dac_nids
,
12605 .num_adc_nids
= ARRAY_SIZE(alc268_adc_nids_alt
),
12606 .adc_nids
= alc268_adc_nids_alt
,
12607 .capsrc_nids
= alc268_capsrc_nids
,
12609 .num_channel_mode
= ARRAY_SIZE(alc268_modes
),
12610 .channel_mode
= alc268_modes
,
12611 .input_mux
= &alc268_acer_dmic_capture_source
,
12612 .unsol_event
= alc268_acer_unsol_event
,
12613 .init_hook
= alc268_acer_init_hook
,
12615 [ALC268_ACER_ASPIRE_ONE
] = {
12616 .mixers
= { alc268_acer_aspire_one_mixer
,
12618 alc268_capture_alt_mixer
},
12619 .init_verbs
= { alc268_base_init_verbs
, alc268_eapd_verbs
,
12620 alc268_acer_aspire_one_verbs
},
12621 .num_dacs
= ARRAY_SIZE(alc268_dac_nids
),
12622 .dac_nids
= alc268_dac_nids
,
12623 .num_adc_nids
= ARRAY_SIZE(alc268_adc_nids_alt
),
12624 .adc_nids
= alc268_adc_nids_alt
,
12625 .capsrc_nids
= alc268_capsrc_nids
,
12627 .num_channel_mode
= ARRAY_SIZE(alc268_modes
),
12628 .channel_mode
= alc268_modes
,
12629 .input_mux
= &alc268_acer_lc_capture_source
,
12630 .unsol_event
= alc268_acer_lc_unsol_event
,
12631 .init_hook
= alc268_acer_lc_init_hook
,
12634 .mixers
= { alc268_dell_mixer
, alc268_beep_mixer
},
12635 .init_verbs
= { alc268_base_init_verbs
, alc268_eapd_verbs
,
12636 alc268_dell_verbs
},
12637 .num_dacs
= ARRAY_SIZE(alc268_dac_nids
),
12638 .dac_nids
= alc268_dac_nids
,
12640 .num_channel_mode
= ARRAY_SIZE(alc268_modes
),
12641 .channel_mode
= alc268_modes
,
12642 .unsol_event
= alc_sku_unsol_event
,
12643 .init_hook
= alc268_dell_init_hook
,
12644 .input_mux
= &alc268_capture_source
,
12647 .mixers
= { alc268_base_mixer
, alc268_capture_alt_mixer
,
12648 alc268_beep_mixer
},
12649 .init_verbs
= { alc268_base_init_verbs
, alc268_eapd_verbs
,
12650 alc268_toshiba_verbs
},
12651 .num_dacs
= ARRAY_SIZE(alc268_dac_nids
),
12652 .dac_nids
= alc268_dac_nids
,
12653 .num_adc_nids
= ARRAY_SIZE(alc268_adc_nids_alt
),
12654 .adc_nids
= alc268_adc_nids_alt
,
12655 .capsrc_nids
= alc268_capsrc_nids
,
12657 .dig_out_nid
= ALC268_DIGOUT_NID
,
12658 .num_channel_mode
= ARRAY_SIZE(alc268_modes
),
12659 .channel_mode
= alc268_modes
,
12660 .input_mux
= &alc268_capture_source
,
12661 .unsol_event
= alc268_toshiba_unsol_event
,
12662 .init_hook
= alc268_toshiba_init_hook
12664 #ifdef CONFIG_SND_DEBUG
12666 .mixers
= { alc268_test_mixer
, alc268_capture_mixer
},
12667 .init_verbs
= { alc268_base_init_verbs
, alc268_eapd_verbs
,
12668 alc268_volume_init_verbs
},
12669 .num_dacs
= ARRAY_SIZE(alc268_dac_nids
),
12670 .dac_nids
= alc268_dac_nids
,
12671 .num_adc_nids
= ARRAY_SIZE(alc268_adc_nids_alt
),
12672 .adc_nids
= alc268_adc_nids_alt
,
12673 .capsrc_nids
= alc268_capsrc_nids
,
12675 .dig_out_nid
= ALC268_DIGOUT_NID
,
12676 .num_channel_mode
= ARRAY_SIZE(alc268_modes
),
12677 .channel_mode
= alc268_modes
,
12678 .input_mux
= &alc268_capture_source
,
12683 static int patch_alc268(struct hda_codec
*codec
)
12685 struct alc_spec
*spec
;
12687 int i
, has_beep
, err
;
12689 spec
= kcalloc(1, sizeof(*spec
), GFP_KERNEL
);
12693 codec
->spec
= spec
;
12695 board_config
= snd_hda_check_board_config(codec
, ALC268_MODEL_LAST
,
12699 if (board_config
< 0 || board_config
>= ALC268_MODEL_LAST
) {
12700 printk(KERN_INFO
"hda_codec: Unknown model for %s, "
12701 "trying auto-probe from BIOS...\n", codec
->chip_name
);
12702 board_config
= ALC268_AUTO
;
12705 if (board_config
== ALC268_AUTO
) {
12706 /* automatic parse from the BIOS config */
12707 err
= alc268_parse_auto_config(codec
);
12713 "hda_codec: Cannot set up configuration "
12714 "from BIOS. Using base mode...\n");
12715 board_config
= ALC268_3ST
;
12719 if (board_config
!= ALC268_AUTO
)
12720 setup_preset(spec
, &alc268_presets
[board_config
]);
12722 spec
->stream_analog_playback
= &alc268_pcm_analog_playback
;
12723 spec
->stream_analog_capture
= &alc268_pcm_analog_capture
;
12724 spec
->stream_analog_alt_capture
= &alc268_pcm_analog_alt_capture
;
12726 spec
->stream_digital_playback
= &alc268_pcm_digital_playback
;
12729 for (i
= 0; i
< spec
->num_mixers
; i
++) {
12730 if (spec
->mixers
[i
] == alc268_beep_mixer
) {
12737 err
= snd_hda_attach_beep_device(codec
, 0x1);
12742 if (!query_amp_caps(codec
, 0x1d, HDA_INPUT
))
12743 /* override the amp caps for beep generator */
12744 snd_hda_override_amp_caps(codec
, 0x1d, HDA_INPUT
,
12745 (0x0c << AC_AMPCAP_OFFSET_SHIFT
) |
12746 (0x0c << AC_AMPCAP_NUM_STEPS_SHIFT
) |
12747 (0x07 << AC_AMPCAP_STEP_SIZE_SHIFT
) |
12748 (0 << AC_AMPCAP_MUTE_SHIFT
));
12751 if (!spec
->no_analog
&& !spec
->adc_nids
&& spec
->input_mux
) {
12752 /* check whether NID 0x07 is valid */
12753 unsigned int wcap
= get_wcaps(codec
, 0x07);
12757 wcap
= (wcap
& AC_WCAP_TYPE
) >> AC_WCAP_TYPE_SHIFT
;
12758 if (wcap
!= AC_WID_AUD_IN
|| spec
->input_mux
->num_items
== 1) {
12759 spec
->adc_nids
= alc268_adc_nids_alt
;
12760 spec
->num_adc_nids
= ARRAY_SIZE(alc268_adc_nids_alt
);
12761 add_mixer(spec
, alc268_capture_alt_mixer
);
12763 spec
->adc_nids
= alc268_adc_nids
;
12764 spec
->num_adc_nids
= ARRAY_SIZE(alc268_adc_nids
);
12765 add_mixer(spec
, alc268_capture_mixer
);
12767 spec
->capsrc_nids
= alc268_capsrc_nids
;
12768 /* set default input source */
12769 for (i
= 0; i
< spec
->num_adc_nids
; i
++)
12770 snd_hda_codec_write_cache(codec
, alc268_capsrc_nids
[i
],
12771 0, AC_VERB_SET_CONNECT_SEL
,
12772 spec
->input_mux
->items
[0].index
);
12775 spec
->vmaster_nid
= 0x02;
12777 codec
->patch_ops
= alc_patch_ops
;
12778 if (board_config
== ALC268_AUTO
)
12779 spec
->init_hook
= alc268_auto_init
;
12781 codec
->proc_widget_hook
= print_realtek_coef
;
12787 * ALC269 channel source setting (2 channel)
12789 #define ALC269_DIGOUT_NID ALC880_DIGOUT_NID
12791 #define alc269_dac_nids alc260_dac_nids
12793 static hda_nid_t alc269_adc_nids
[1] = {
12798 static hda_nid_t alc269_capsrc_nids
[1] = {
12802 /* NOTE: ADC2 (0x07) is connected from a recording *MIXER* (0x24),
12806 static struct hda_input_mux alc269_eeepc_dmic_capture_source
= {
12814 static struct hda_input_mux alc269_eeepc_amic_capture_source
= {
12822 #define alc269_modes alc260_modes
12823 #define alc269_capture_source alc880_lg_lw_capture_source
12825 static struct snd_kcontrol_new alc269_base_mixer
[] = {
12826 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
12827 HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
12828 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
12829 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
12830 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
12831 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
12832 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
12833 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x01, HDA_INPUT
),
12834 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x01, HDA_INPUT
),
12835 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT
),
12836 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
12837 HDA_CODEC_MUTE_MONO("Mono Playback Switch", 0x16, 2, 0x0, HDA_OUTPUT
),
12841 static struct snd_kcontrol_new alc269_quanta_fl1_mixer
[] = {
12842 /* output mixer control */
12843 HDA_BIND_VOL("Master Playback Volume", &alc268_acer_bind_master_vol
),
12845 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
12846 .name
= "Master Playback Switch",
12847 .info
= snd_hda_mixer_amp_switch_info
,
12848 .get
= snd_hda_mixer_amp_switch_get
,
12849 .put
= alc268_acer_master_sw_put
,
12850 .private_value
= HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT
),
12852 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
12853 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
12854 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
12855 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x0b, 0x01, HDA_INPUT
),
12856 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x0b, 0x01, HDA_INPUT
),
12857 HDA_CODEC_VOLUME("Internal Mic Boost", 0x19, 0, HDA_INPUT
),
12861 static struct snd_kcontrol_new alc269_lifebook_mixer
[] = {
12862 /* output mixer control */
12863 HDA_BIND_VOL("Master Playback Volume", &alc268_acer_bind_master_vol
),
12865 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
12866 .name
= "Master Playback Switch",
12867 .info
= snd_hda_mixer_amp_switch_info
,
12868 .get
= snd_hda_mixer_amp_switch_get
,
12869 .put
= alc268_acer_master_sw_put
,
12870 .private_value
= HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT
),
12872 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
12873 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
12874 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
12875 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x0b, 0x01, HDA_INPUT
),
12876 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x0b, 0x01, HDA_INPUT
),
12877 HDA_CODEC_VOLUME("Internal Mic Boost", 0x19, 0, HDA_INPUT
),
12878 HDA_CODEC_VOLUME("Dock Mic Playback Volume", 0x0b, 0x03, HDA_INPUT
),
12879 HDA_CODEC_MUTE("Dock Mic Playback Switch", 0x0b, 0x03, HDA_INPUT
),
12880 HDA_CODEC_VOLUME("Dock Mic Boost", 0x1b, 0, HDA_INPUT
),
12884 static struct snd_kcontrol_new alc269_eeepc_mixer
[] = {
12885 HDA_CODEC_MUTE("Speaker Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
12886 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
12887 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
12888 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x03, 0x0, HDA_OUTPUT
),
12892 /* capture mixer elements */
12893 static struct snd_kcontrol_new alc269_epc_capture_mixer
[] = {
12894 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT
),
12895 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT
),
12896 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
12901 #define alc269_fujitsu_mixer alc269_eeepc_mixer
12903 static struct hda_verb alc269_quanta_fl1_verbs
[] = {
12904 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x01},
12905 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
12906 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
12907 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
12908 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
12909 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
12913 static struct hda_verb alc269_lifebook_verbs
[] = {
12914 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x01},
12915 {0x1a, AC_VERB_SET_CONNECT_SEL
, 0x01},
12916 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
12917 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
12918 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
12919 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
12920 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
12921 {0x1a, AC_VERB_SET_UNSOLICITED_ENABLE
, ALC880_HP_EVENT
| AC_USRSP_EN
},
12922 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
12923 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
12927 /* toggle speaker-output according to the hp-jack state */
12928 static void alc269_quanta_fl1_speaker_automute(struct hda_codec
*codec
)
12930 unsigned int present
;
12931 unsigned char bits
;
12933 present
= snd_hda_codec_read(codec
, 0x15, 0,
12934 AC_VERB_GET_PIN_SENSE
, 0) & 0x80000000;
12935 bits
= present
? AMP_IN_MUTE(0) : 0;
12936 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 0,
12937 AMP_IN_MUTE(0), bits
);
12938 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 1,
12939 AMP_IN_MUTE(0), bits
);
12941 snd_hda_codec_write(codec
, 0x20, 0,
12942 AC_VERB_SET_COEF_INDEX
, 0x0c);
12943 snd_hda_codec_write(codec
, 0x20, 0,
12944 AC_VERB_SET_PROC_COEF
, 0x680);
12946 snd_hda_codec_write(codec
, 0x20, 0,
12947 AC_VERB_SET_COEF_INDEX
, 0x0c);
12948 snd_hda_codec_write(codec
, 0x20, 0,
12949 AC_VERB_SET_PROC_COEF
, 0x480);
12952 /* toggle speaker-output according to the hp-jacks state */
12953 static void alc269_lifebook_speaker_automute(struct hda_codec
*codec
)
12955 unsigned int present
;
12956 unsigned char bits
;
12958 /* Check laptop headphone socket */
12959 present
= snd_hda_codec_read(codec
, 0x15, 0,
12960 AC_VERB_GET_PIN_SENSE
, 0) & 0x80000000;
12962 /* Check port replicator headphone socket */
12963 present
|= snd_hda_codec_read(codec
, 0x1a, 0,
12964 AC_VERB_GET_PIN_SENSE
, 0) & 0x80000000;
12966 bits
= present
? AMP_IN_MUTE(0) : 0;
12967 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 0,
12968 AMP_IN_MUTE(0), bits
);
12969 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 1,
12970 AMP_IN_MUTE(0), bits
);
12972 snd_hda_codec_write(codec
, 0x20, 0,
12973 AC_VERB_SET_COEF_INDEX
, 0x0c);
12974 snd_hda_codec_write(codec
, 0x20, 0,
12975 AC_VERB_SET_PROC_COEF
, 0x680);
12977 snd_hda_codec_write(codec
, 0x20, 0,
12978 AC_VERB_SET_COEF_INDEX
, 0x0c);
12979 snd_hda_codec_write(codec
, 0x20, 0,
12980 AC_VERB_SET_PROC_COEF
, 0x480);
12983 static void alc269_quanta_fl1_mic_automute(struct hda_codec
*codec
)
12985 unsigned int present
;
12987 present
= snd_hda_codec_read(codec
, 0x18, 0,
12988 AC_VERB_GET_PIN_SENSE
, 0) & 0x80000000;
12989 snd_hda_codec_write(codec
, 0x23, 0,
12990 AC_VERB_SET_CONNECT_SEL
, present
? 0x0 : 0x1);
12993 static void alc269_lifebook_mic_autoswitch(struct hda_codec
*codec
)
12995 unsigned int present_laptop
;
12996 unsigned int present_dock
;
12998 present_laptop
= snd_hda_codec_read(codec
, 0x18, 0,
12999 AC_VERB_GET_PIN_SENSE
, 0) & 0x80000000;
13001 present_dock
= snd_hda_codec_read(codec
, 0x1b, 0,
13002 AC_VERB_GET_PIN_SENSE
, 0) & 0x80000000;
13004 /* Laptop mic port overrides dock mic port, design decision */
13006 snd_hda_codec_write(codec
, 0x23, 0,
13007 AC_VERB_SET_CONNECT_SEL
, 0x3);
13008 if (present_laptop
)
13009 snd_hda_codec_write(codec
, 0x23, 0,
13010 AC_VERB_SET_CONNECT_SEL
, 0x0);
13011 if (!present_dock
&& !present_laptop
)
13012 snd_hda_codec_write(codec
, 0x23, 0,
13013 AC_VERB_SET_CONNECT_SEL
, 0x1);
13016 static void alc269_quanta_fl1_unsol_event(struct hda_codec
*codec
,
13019 if ((res
>> 26) == ALC880_HP_EVENT
)
13020 alc269_quanta_fl1_speaker_automute(codec
);
13021 if ((res
>> 26) == ALC880_MIC_EVENT
)
13022 alc269_quanta_fl1_mic_automute(codec
);
13025 static void alc269_lifebook_unsol_event(struct hda_codec
*codec
,
13028 if ((res
>> 26) == ALC880_HP_EVENT
)
13029 alc269_lifebook_speaker_automute(codec
);
13030 if ((res
>> 26) == ALC880_MIC_EVENT
)
13031 alc269_lifebook_mic_autoswitch(codec
);
13034 static void alc269_quanta_fl1_init_hook(struct hda_codec
*codec
)
13036 alc269_quanta_fl1_speaker_automute(codec
);
13037 alc269_quanta_fl1_mic_automute(codec
);
13040 static void alc269_lifebook_init_hook(struct hda_codec
*codec
)
13042 alc269_lifebook_speaker_automute(codec
);
13043 alc269_lifebook_mic_autoswitch(codec
);
13046 static struct hda_verb alc269_eeepc_dmic_init_verbs
[] = {
13047 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x01},
13048 {0x23, AC_VERB_SET_CONNECT_SEL
, 0x05},
13049 {0x02, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb026 },
13050 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7019 | (0x00 << 8))},
13051 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
13052 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
13053 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
13057 static struct hda_verb alc269_eeepc_amic_init_verbs
[] = {
13058 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x01},
13059 {0x23, AC_VERB_SET_CONNECT_SEL
, 0x01},
13060 {0x02, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb026 },
13061 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, (0x701b | (0x00 << 8))},
13062 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
13063 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
13067 /* toggle speaker-output according to the hp-jack state */
13068 static void alc269_speaker_automute(struct hda_codec
*codec
)
13070 unsigned int present
;
13071 unsigned char bits
;
13073 present
= snd_hda_codec_read(codec
, 0x15, 0,
13074 AC_VERB_GET_PIN_SENSE
, 0) & 0x80000000;
13075 bits
= present
? AMP_IN_MUTE(0) : 0;
13076 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 0,
13077 AMP_IN_MUTE(0), bits
);
13078 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 1,
13079 AMP_IN_MUTE(0), bits
);
13082 static void alc269_eeepc_dmic_automute(struct hda_codec
*codec
)
13084 unsigned int present
;
13086 present
= snd_hda_codec_read(codec
, 0x18, 0,
13087 AC_VERB_GET_PIN_SENSE
, 0) & 0x80000000;
13088 snd_hda_codec_write(codec
, 0x23, 0,
13089 AC_VERB_SET_CONNECT_SEL
, (present
? 0 : 5));
13092 static void alc269_eeepc_amic_automute(struct hda_codec
*codec
)
13094 unsigned int present
;
13096 present
= snd_hda_codec_read(codec
, 0x18, 0,
13097 AC_VERB_GET_PIN_SENSE
, 0) & 0x80000000;
13098 snd_hda_codec_write(codec
, 0x24, 0, AC_VERB_SET_AMP_GAIN_MUTE
,
13099 0x7000 | (0x00 << 8) | (present
? 0 : 0x80));
13100 snd_hda_codec_write(codec
, 0x24, 0, AC_VERB_SET_AMP_GAIN_MUTE
,
13101 0x7000 | (0x01 << 8) | (present
? 0x80 : 0));
13104 /* unsolicited event for HP jack sensing */
13105 static void alc269_eeepc_dmic_unsol_event(struct hda_codec
*codec
,
13108 if ((res
>> 26) == ALC880_HP_EVENT
)
13109 alc269_speaker_automute(codec
);
13111 if ((res
>> 26) == ALC880_MIC_EVENT
)
13112 alc269_eeepc_dmic_automute(codec
);
13115 static void alc269_eeepc_dmic_inithook(struct hda_codec
*codec
)
13117 alc269_speaker_automute(codec
);
13118 alc269_eeepc_dmic_automute(codec
);
13121 /* unsolicited event for HP jack sensing */
13122 static void alc269_eeepc_amic_unsol_event(struct hda_codec
*codec
,
13125 if ((res
>> 26) == ALC880_HP_EVENT
)
13126 alc269_speaker_automute(codec
);
13128 if ((res
>> 26) == ALC880_MIC_EVENT
)
13129 alc269_eeepc_amic_automute(codec
);
13132 static void alc269_eeepc_amic_inithook(struct hda_codec
*codec
)
13134 alc269_speaker_automute(codec
);
13135 alc269_eeepc_amic_automute(codec
);
13139 * generic initialization of ADC, input mixers and output mixers
13141 static struct hda_verb alc269_init_verbs
[] = {
13143 * Unmute ADC0 and set the default input to mic-in
13145 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
13147 /* Mute input amps (PCBeep, Line In, Mic 1 & Mic 2) of the
13148 * analog-loopback mixer widget
13149 * Note: PASD motherboards uses the Line In 2 as the input for
13150 * front panel mic (mic 2)
13152 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
13153 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
13154 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
13155 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
13156 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
13157 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
13160 * Set up output mixers (0x0c - 0x0e)
13162 /* set vol=0 to output mixers */
13163 {0x02, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
13164 {0x03, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
13166 /* set up input amps for analog loopback */
13167 /* Amp Indices: DAC = 0, mixer = 1 */
13168 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
13169 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
13170 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
13171 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
13172 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
13173 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
13175 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
13176 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
13177 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
13178 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
13179 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
13180 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
13181 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
13183 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
13184 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
13185 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
13186 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
13187 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
13188 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
13189 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
13191 {0x14, AC_VERB_SET_CONNECT_SEL
, 0x00},
13192 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x00},
13194 /* FIXME: use matrix-type input source selection */
13195 /* Mixer elements: 0x18, 19, 1a, 1b, 1d, 0b */
13196 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
13197 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
13198 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
13199 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
13200 {0x24, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
13203 {0x14, AC_VERB_SET_EAPD_BTLENABLE
, 2},
13204 {0x15, AC_VERB_SET_EAPD_BTLENABLE
, 2},
13208 /* add playback controls from the parsed DAC table */
13209 static int alc269_auto_create_multi_out_ctls(struct alc_spec
*spec
,
13210 const struct auto_pin_cfg
*cfg
)
13215 spec
->multiout
.num_dacs
= 1; /* only use one dac */
13216 spec
->multiout
.dac_nids
= spec
->private_dac_nids
;
13217 spec
->multiout
.dac_nids
[0] = 2;
13219 nid
= cfg
->line_out_pins
[0];
13221 err
= add_control(spec
, ALC_CTL_WIDGET_VOL
,
13222 "Front Playback Volume",
13223 HDA_COMPOSE_AMP_VAL(0x02, 3, 0, HDA_OUTPUT
));
13226 err
= add_control(spec
, ALC_CTL_WIDGET_MUTE
,
13227 "Front Playback Switch",
13228 HDA_COMPOSE_AMP_VAL(nid
, 3, 0, HDA_OUTPUT
));
13233 nid
= cfg
->speaker_pins
[0];
13235 if (!cfg
->line_out_pins
[0]) {
13236 err
= add_control(spec
, ALC_CTL_WIDGET_VOL
,
13237 "Speaker Playback Volume",
13238 HDA_COMPOSE_AMP_VAL(0x02, 3, 0,
13244 err
= add_control(spec
, ALC_CTL_WIDGET_MUTE
,
13245 "Speaker Playback Switch",
13246 HDA_COMPOSE_AMP_VAL(nid
, 2, 0,
13251 err
= add_control(spec
, ALC_CTL_WIDGET_MUTE
,
13252 "Speaker Playback Switch",
13253 HDA_COMPOSE_AMP_VAL(nid
, 3, 0,
13259 nid
= cfg
->hp_pins
[0];
13261 /* spec->multiout.hp_nid = 2; */
13262 if (!cfg
->line_out_pins
[0] && !cfg
->speaker_pins
[0]) {
13263 err
= add_control(spec
, ALC_CTL_WIDGET_VOL
,
13264 "Headphone Playback Volume",
13265 HDA_COMPOSE_AMP_VAL(0x02, 3, 0,
13271 err
= add_control(spec
, ALC_CTL_WIDGET_MUTE
,
13272 "Headphone Playback Switch",
13273 HDA_COMPOSE_AMP_VAL(nid
, 2, 0,
13278 err
= add_control(spec
, ALC_CTL_WIDGET_MUTE
,
13279 "Headphone Playback Switch",
13280 HDA_COMPOSE_AMP_VAL(nid
, 3, 0,
13289 #define alc269_auto_create_analog_input_ctls \
13290 alc262_auto_create_analog_input_ctls
13292 #ifdef CONFIG_SND_HDA_POWER_SAVE
13293 #define alc269_loopbacks alc880_loopbacks
13296 /* pcm configuration: identical with ALC880 */
13297 #define alc269_pcm_analog_playback alc880_pcm_analog_playback
13298 #define alc269_pcm_analog_capture alc880_pcm_analog_capture
13299 #define alc269_pcm_digital_playback alc880_pcm_digital_playback
13300 #define alc269_pcm_digital_capture alc880_pcm_digital_capture
13302 static struct hda_pcm_stream alc269_44k_pcm_analog_playback
= {
13306 .rates
= SNDRV_PCM_RATE_44100
, /* fixed rate */
13307 /* NID is set in alc_build_pcms */
13309 .open
= alc880_playback_pcm_open
,
13310 .prepare
= alc880_playback_pcm_prepare
,
13311 .cleanup
= alc880_playback_pcm_cleanup
13315 static struct hda_pcm_stream alc269_44k_pcm_analog_capture
= {
13319 .rates
= SNDRV_PCM_RATE_44100
, /* fixed rate */
13320 /* NID is set in alc_build_pcms */
13324 * BIOS auto configuration
13326 static int alc269_parse_auto_config(struct hda_codec
*codec
)
13328 struct alc_spec
*spec
= codec
->spec
;
13330 static hda_nid_t alc269_ignore
[] = { 0x1d, 0 };
13332 err
= snd_hda_parse_pin_def_config(codec
, &spec
->autocfg
,
13337 err
= alc269_auto_create_multi_out_ctls(spec
, &spec
->autocfg
);
13340 err
= alc269_auto_create_analog_input_ctls(spec
, &spec
->autocfg
);
13344 spec
->multiout
.max_channels
= spec
->multiout
.num_dacs
* 2;
13346 if (spec
->autocfg
.dig_outs
)
13347 spec
->multiout
.dig_out_nid
= ALC269_DIGOUT_NID
;
13349 if (spec
->kctls
.list
)
13350 add_mixer(spec
, spec
->kctls
.list
);
13352 add_verb(spec
, alc269_init_verbs
);
13353 spec
->num_mux_defs
= 1;
13354 spec
->input_mux
= &spec
->private_imux
[0];
13355 /* set default input source */
13356 snd_hda_codec_write_cache(codec
, alc269_capsrc_nids
[0],
13357 0, AC_VERB_SET_CONNECT_SEL
,
13358 spec
->input_mux
->items
[0].index
);
13360 err
= alc_auto_add_mic_boost(codec
);
13364 if (!spec
->cap_mixer
&& !spec
->no_analog
)
13365 set_capture_mixer(spec
);
13367 alc_ssid_check(codec
, 0x15, 0x1b, 0x14);
13372 #define alc269_auto_init_multi_out alc882_auto_init_multi_out
13373 #define alc269_auto_init_hp_out alc882_auto_init_hp_out
13374 #define alc269_auto_init_analog_input alc882_auto_init_analog_input
13377 /* init callback for auto-configuration model -- overriding the default init */
13378 static void alc269_auto_init(struct hda_codec
*codec
)
13380 struct alc_spec
*spec
= codec
->spec
;
13381 alc269_auto_init_multi_out(codec
);
13382 alc269_auto_init_hp_out(codec
);
13383 alc269_auto_init_analog_input(codec
);
13384 if (spec
->unsol_event
)
13385 alc_inithook(codec
);
13389 * configuration and preset
13391 static const char *alc269_models
[ALC269_MODEL_LAST
] = {
13392 [ALC269_BASIC
] = "basic",
13393 [ALC269_QUANTA_FL1
] = "quanta",
13394 [ALC269_ASUS_EEEPC_P703
] = "eeepc-p703",
13395 [ALC269_ASUS_EEEPC_P901
] = "eeepc-p901",
13396 [ALC269_FUJITSU
] = "fujitsu",
13397 [ALC269_LIFEBOOK
] = "lifebook"
13400 static struct snd_pci_quirk alc269_cfg_tbl
[] = {
13401 SND_PCI_QUIRK(0x17aa, 0x3bf8, "Quanta FL1", ALC269_QUANTA_FL1
),
13402 SND_PCI_QUIRK(0x1043, 0x8330, "ASUS Eeepc P703 P900A",
13403 ALC269_ASUS_EEEPC_P703
),
13404 SND_PCI_QUIRK(0x1043, 0x1883, "ASUS F81Se", ALC269_ASUS_EEEPC_P703
),
13405 SND_PCI_QUIRK(0x1043, 0x16a3, "ASUS F5Q", ALC269_ASUS_EEEPC_P703
),
13406 SND_PCI_QUIRK(0x1043, 0x1723, "ASUS P80", ALC269_ASUS_EEEPC_P703
),
13407 SND_PCI_QUIRK(0x1043, 0x1773, "ASUS U20A", ALC269_ASUS_EEEPC_P703
),
13408 SND_PCI_QUIRK(0x1043, 0x1743, "ASUS U80", ALC269_ASUS_EEEPC_P703
),
13409 SND_PCI_QUIRK(0x1043, 0x1653, "ASUS U50", ALC269_ASUS_EEEPC_P703
),
13410 SND_PCI_QUIRK(0x1043, 0x831a, "ASUS Eeepc P901",
13411 ALC269_ASUS_EEEPC_P901
),
13412 SND_PCI_QUIRK(0x1043, 0x834a, "ASUS Eeepc S101",
13413 ALC269_ASUS_EEEPC_P901
),
13414 SND_PCI_QUIRK(0x1043, 0x16e3, "ASUS UX50", ALC269_ASUS_EEEPC_P901
),
13415 SND_PCI_QUIRK(0x1734, 0x115d, "FSC Amilo", ALC269_FUJITSU
),
13416 SND_PCI_QUIRK(0x10cf, 0x1475, "Lifebook ICH9M-based", ALC269_LIFEBOOK
),
13420 static struct alc_config_preset alc269_presets
[] = {
13422 .mixers
= { alc269_base_mixer
},
13423 .init_verbs
= { alc269_init_verbs
},
13424 .num_dacs
= ARRAY_SIZE(alc269_dac_nids
),
13425 .dac_nids
= alc269_dac_nids
,
13427 .num_channel_mode
= ARRAY_SIZE(alc269_modes
),
13428 .channel_mode
= alc269_modes
,
13429 .input_mux
= &alc269_capture_source
,
13431 [ALC269_QUANTA_FL1
] = {
13432 .mixers
= { alc269_quanta_fl1_mixer
},
13433 .init_verbs
= { alc269_init_verbs
, alc269_quanta_fl1_verbs
},
13434 .num_dacs
= ARRAY_SIZE(alc269_dac_nids
),
13435 .dac_nids
= alc269_dac_nids
,
13437 .num_channel_mode
= ARRAY_SIZE(alc269_modes
),
13438 .channel_mode
= alc269_modes
,
13439 .input_mux
= &alc269_capture_source
,
13440 .unsol_event
= alc269_quanta_fl1_unsol_event
,
13441 .init_hook
= alc269_quanta_fl1_init_hook
,
13443 [ALC269_ASUS_EEEPC_P703
] = {
13444 .mixers
= { alc269_eeepc_mixer
},
13445 .cap_mixer
= alc269_epc_capture_mixer
,
13446 .init_verbs
= { alc269_init_verbs
,
13447 alc269_eeepc_amic_init_verbs
},
13448 .num_dacs
= ARRAY_SIZE(alc269_dac_nids
),
13449 .dac_nids
= alc269_dac_nids
,
13451 .num_channel_mode
= ARRAY_SIZE(alc269_modes
),
13452 .channel_mode
= alc269_modes
,
13453 .input_mux
= &alc269_eeepc_amic_capture_source
,
13454 .unsol_event
= alc269_eeepc_amic_unsol_event
,
13455 .init_hook
= alc269_eeepc_amic_inithook
,
13457 [ALC269_ASUS_EEEPC_P901
] = {
13458 .mixers
= { alc269_eeepc_mixer
},
13459 .cap_mixer
= alc269_epc_capture_mixer
,
13460 .init_verbs
= { alc269_init_verbs
,
13461 alc269_eeepc_dmic_init_verbs
},
13462 .num_dacs
= ARRAY_SIZE(alc269_dac_nids
),
13463 .dac_nids
= alc269_dac_nids
,
13465 .num_channel_mode
= ARRAY_SIZE(alc269_modes
),
13466 .channel_mode
= alc269_modes
,
13467 .input_mux
= &alc269_eeepc_dmic_capture_source
,
13468 .unsol_event
= alc269_eeepc_dmic_unsol_event
,
13469 .init_hook
= alc269_eeepc_dmic_inithook
,
13471 [ALC269_FUJITSU
] = {
13472 .mixers
= { alc269_fujitsu_mixer
},
13473 .cap_mixer
= alc269_epc_capture_mixer
,
13474 .init_verbs
= { alc269_init_verbs
,
13475 alc269_eeepc_dmic_init_verbs
},
13476 .num_dacs
= ARRAY_SIZE(alc269_dac_nids
),
13477 .dac_nids
= alc269_dac_nids
,
13479 .num_channel_mode
= ARRAY_SIZE(alc269_modes
),
13480 .channel_mode
= alc269_modes
,
13481 .input_mux
= &alc269_eeepc_dmic_capture_source
,
13482 .unsol_event
= alc269_eeepc_dmic_unsol_event
,
13483 .init_hook
= alc269_eeepc_dmic_inithook
,
13485 [ALC269_LIFEBOOK
] = {
13486 .mixers
= { alc269_lifebook_mixer
},
13487 .init_verbs
= { alc269_init_verbs
, alc269_lifebook_verbs
},
13488 .num_dacs
= ARRAY_SIZE(alc269_dac_nids
),
13489 .dac_nids
= alc269_dac_nids
,
13491 .num_channel_mode
= ARRAY_SIZE(alc269_modes
),
13492 .channel_mode
= alc269_modes
,
13493 .input_mux
= &alc269_capture_source
,
13494 .unsol_event
= alc269_lifebook_unsol_event
,
13495 .init_hook
= alc269_lifebook_init_hook
,
13499 static int patch_alc269(struct hda_codec
*codec
)
13501 struct alc_spec
*spec
;
13505 spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
13509 codec
->spec
= spec
;
13511 alc_fix_pll_init(codec
, 0x20, 0x04, 15);
13513 board_config
= snd_hda_check_board_config(codec
, ALC269_MODEL_LAST
,
13517 if (board_config
< 0) {
13518 printk(KERN_INFO
"hda_codec: Unknown model for %s, "
13519 "trying auto-probe from BIOS...\n", codec
->chip_name
);
13520 board_config
= ALC269_AUTO
;
13523 if (board_config
== ALC269_AUTO
) {
13524 /* automatic parse from the BIOS config */
13525 err
= alc269_parse_auto_config(codec
);
13531 "hda_codec: Cannot set up configuration "
13532 "from BIOS. Using base mode...\n");
13533 board_config
= ALC269_BASIC
;
13537 err
= snd_hda_attach_beep_device(codec
, 0x1);
13543 if (board_config
!= ALC269_AUTO
)
13544 setup_preset(spec
, &alc269_presets
[board_config
]);
13546 if (codec
->subsystem_id
== 0x17aa3bf8) {
13547 /* Due to a hardware problem on Lenovo Ideadpad, we need to
13548 * fix the sample rate of analog I/O to 44.1kHz
13550 spec
->stream_analog_playback
= &alc269_44k_pcm_analog_playback
;
13551 spec
->stream_analog_capture
= &alc269_44k_pcm_analog_capture
;
13553 spec
->stream_analog_playback
= &alc269_pcm_analog_playback
;
13554 spec
->stream_analog_capture
= &alc269_pcm_analog_capture
;
13556 spec
->stream_digital_playback
= &alc269_pcm_digital_playback
;
13557 spec
->stream_digital_capture
= &alc269_pcm_digital_capture
;
13559 spec
->adc_nids
= alc269_adc_nids
;
13560 spec
->num_adc_nids
= ARRAY_SIZE(alc269_adc_nids
);
13561 spec
->capsrc_nids
= alc269_capsrc_nids
;
13562 if (!spec
->cap_mixer
)
13563 set_capture_mixer(spec
);
13564 set_beep_amp(spec
, 0x0b, 0x04, HDA_INPUT
);
13566 codec
->patch_ops
= alc_patch_ops
;
13567 if (board_config
== ALC269_AUTO
)
13568 spec
->init_hook
= alc269_auto_init
;
13569 #ifdef CONFIG_SND_HDA_POWER_SAVE
13570 if (!spec
->loopback
.amplist
)
13571 spec
->loopback
.amplist
= alc269_loopbacks
;
13573 codec
->proc_widget_hook
= print_realtek_coef
;
13579 * ALC861 channel source setting (2/6 channel selection for 3-stack)
13583 * set the path ways for 2 channel output
13584 * need to set the codec line out and mic 1 pin widgets to inputs
13586 static struct hda_verb alc861_threestack_ch2_init
[] = {
13587 /* set pin widget 1Ah (line in) for input */
13588 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20 },
13589 /* set pin widget 18h (mic1/2) for input, for mic also enable
13592 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24 },
13594 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb00c },
13596 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x01 << 8)) }, /*mic*/
13597 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x02 << 8)) }, /*line-in*/
13603 * need to set the codec line out and mic 1 pin widgets to outputs
13605 static struct hda_verb alc861_threestack_ch6_init
[] = {
13606 /* set pin widget 1Ah (line in) for output (Back Surround)*/
13607 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40 },
13608 /* set pin widget 18h (mic1) for output (CLFE)*/
13609 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40 },
13611 { 0x0c, AC_VERB_SET_CONNECT_SEL
, 0x00 },
13612 { 0x0d, AC_VERB_SET_CONNECT_SEL
, 0x00 },
13614 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb080 },
13616 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x01 << 8)) }, /*mic*/
13617 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x02 << 8)) }, /*line in*/
13622 static struct hda_channel_mode alc861_threestack_modes
[2] = {
13623 { 2, alc861_threestack_ch2_init
},
13624 { 6, alc861_threestack_ch6_init
},
13626 /* Set mic1 as input and unmute the mixer */
13627 static struct hda_verb alc861_uniwill_m31_ch2_init
[] = {
13628 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24 },
13629 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x01 << 8)) }, /*mic*/
13632 /* Set mic1 as output and mute mixer */
13633 static struct hda_verb alc861_uniwill_m31_ch4_init
[] = {
13634 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40 },
13635 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x01 << 8)) }, /*mic*/
13639 static struct hda_channel_mode alc861_uniwill_m31_modes
[2] = {
13640 { 2, alc861_uniwill_m31_ch2_init
},
13641 { 4, alc861_uniwill_m31_ch4_init
},
13644 /* Set mic1 and line-in as input and unmute the mixer */
13645 static struct hda_verb alc861_asus_ch2_init
[] = {
13646 /* set pin widget 1Ah (line in) for input */
13647 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20 },
13648 /* set pin widget 18h (mic1/2) for input, for mic also enable
13651 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24 },
13653 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb00c },
13655 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x01 << 8)) }, /*mic*/
13656 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7000 | (0x02 << 8)) }, /*line-in*/
13660 /* Set mic1 nad line-in as output and mute mixer */
13661 static struct hda_verb alc861_asus_ch6_init
[] = {
13662 /* set pin widget 1Ah (line in) for output (Back Surround)*/
13663 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40 },
13664 /* { 0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE }, */
13665 /* set pin widget 18h (mic1) for output (CLFE)*/
13666 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40 },
13667 /* { 0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE }, */
13668 { 0x0c, AC_VERB_SET_CONNECT_SEL
, 0x00 },
13669 { 0x0d, AC_VERB_SET_CONNECT_SEL
, 0x00 },
13671 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb080 },
13673 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x01 << 8)) }, /*mic*/
13674 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, (0x7080 | (0x02 << 8)) }, /*line in*/
13679 static struct hda_channel_mode alc861_asus_modes
[2] = {
13680 { 2, alc861_asus_ch2_init
},
13681 { 6, alc861_asus_ch6_init
},
13686 static struct snd_kcontrol_new alc861_base_mixer
[] = {
13687 /* output mixer control */
13688 HDA_CODEC_MUTE("Front Playback Switch", 0x03, 0x0, HDA_OUTPUT
),
13689 HDA_CODEC_MUTE("Surround Playback Switch", 0x06, 0x0, HDA_OUTPUT
),
13690 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x05, 1, 0x0, HDA_OUTPUT
),
13691 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x05, 2, 0x0, HDA_OUTPUT
),
13692 HDA_CODEC_MUTE("Side Playback Switch", 0x04, 0x0, HDA_OUTPUT
),
13694 /*Input mixer control */
13695 /* HDA_CODEC_VOLUME("Input Playback Volume", 0x15, 0x0, HDA_OUTPUT),
13696 HDA_CODEC_MUTE("Input Playback Switch", 0x15, 0x0, HDA_OUTPUT), */
13697 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT
),
13698 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT
),
13699 HDA_CODEC_VOLUME("Line Playback Volume", 0x15, 0x02, HDA_INPUT
),
13700 HDA_CODEC_MUTE("Line Playback Switch", 0x15, 0x02, HDA_INPUT
),
13701 HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT
),
13702 HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT
),
13703 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x10, 0x01, HDA_OUTPUT
),
13704 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x03, HDA_INPUT
),
13709 static struct snd_kcontrol_new alc861_3ST_mixer
[] = {
13710 /* output mixer control */
13711 HDA_CODEC_MUTE("Front Playback Switch", 0x03, 0x0, HDA_OUTPUT
),
13712 HDA_CODEC_MUTE("Surround Playback Switch", 0x06, 0x0, HDA_OUTPUT
),
13713 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x05, 1, 0x0, HDA_OUTPUT
),
13714 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x05, 2, 0x0, HDA_OUTPUT
),
13715 /*HDA_CODEC_MUTE("Side Playback Switch", 0x04, 0x0, HDA_OUTPUT), */
13717 /* Input mixer control */
13718 /* HDA_CODEC_VOLUME("Input Playback Volume", 0x15, 0x0, HDA_OUTPUT),
13719 HDA_CODEC_MUTE("Input Playback Switch", 0x15, 0x0, HDA_OUTPUT), */
13720 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT
),
13721 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT
),
13722 HDA_CODEC_VOLUME("Line Playback Volume", 0x15, 0x02, HDA_INPUT
),
13723 HDA_CODEC_MUTE("Line Playback Switch", 0x15, 0x02, HDA_INPUT
),
13724 HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT
),
13725 HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT
),
13726 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x10, 0x01, HDA_OUTPUT
),
13727 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x03, HDA_INPUT
),
13730 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
13731 .name
= "Channel Mode",
13732 .info
= alc_ch_mode_info
,
13733 .get
= alc_ch_mode_get
,
13734 .put
= alc_ch_mode_put
,
13735 .private_value
= ARRAY_SIZE(alc861_threestack_modes
),
13740 static struct snd_kcontrol_new alc861_toshiba_mixer
[] = {
13741 /* output mixer control */
13742 HDA_CODEC_MUTE("Master Playback Switch", 0x03, 0x0, HDA_OUTPUT
),
13743 HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT
),
13744 HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT
),
13749 static struct snd_kcontrol_new alc861_uniwill_m31_mixer
[] = {
13750 /* output mixer control */
13751 HDA_CODEC_MUTE("Front Playback Switch", 0x03, 0x0, HDA_OUTPUT
),
13752 HDA_CODEC_MUTE("Surround Playback Switch", 0x06, 0x0, HDA_OUTPUT
),
13753 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x05, 1, 0x0, HDA_OUTPUT
),
13754 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x05, 2, 0x0, HDA_OUTPUT
),
13755 /*HDA_CODEC_MUTE("Side Playback Switch", 0x04, 0x0, HDA_OUTPUT), */
13757 /* Input mixer control */
13758 /* HDA_CODEC_VOLUME("Input Playback Volume", 0x15, 0x0, HDA_OUTPUT),
13759 HDA_CODEC_MUTE("Input Playback Switch", 0x15, 0x0, HDA_OUTPUT), */
13760 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT
),
13761 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT
),
13762 HDA_CODEC_VOLUME("Line Playback Volume", 0x15, 0x02, HDA_INPUT
),
13763 HDA_CODEC_MUTE("Line Playback Switch", 0x15, 0x02, HDA_INPUT
),
13764 HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT
),
13765 HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT
),
13766 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x10, 0x01, HDA_OUTPUT
),
13767 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x03, HDA_INPUT
),
13770 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
13771 .name
= "Channel Mode",
13772 .info
= alc_ch_mode_info
,
13773 .get
= alc_ch_mode_get
,
13774 .put
= alc_ch_mode_put
,
13775 .private_value
= ARRAY_SIZE(alc861_uniwill_m31_modes
),
13780 static struct snd_kcontrol_new alc861_asus_mixer
[] = {
13781 /* output mixer control */
13782 HDA_CODEC_MUTE("Front Playback Switch", 0x03, 0x0, HDA_OUTPUT
),
13783 HDA_CODEC_MUTE("Surround Playback Switch", 0x06, 0x0, HDA_OUTPUT
),
13784 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x05, 1, 0x0, HDA_OUTPUT
),
13785 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x05, 2, 0x0, HDA_OUTPUT
),
13786 HDA_CODEC_MUTE("Side Playback Switch", 0x04, 0x0, HDA_OUTPUT
),
13788 /* Input mixer control */
13789 HDA_CODEC_VOLUME("Input Playback Volume", 0x15, 0x0, HDA_OUTPUT
),
13790 HDA_CODEC_MUTE("Input Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
13791 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT
),
13792 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT
),
13793 HDA_CODEC_VOLUME("Line Playback Volume", 0x15, 0x02, HDA_INPUT
),
13794 HDA_CODEC_MUTE("Line Playback Switch", 0x15, 0x02, HDA_INPUT
),
13795 HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT
),
13796 HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT
),
13797 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x10, 0x01, HDA_OUTPUT
),
13798 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x03, HDA_OUTPUT
),
13801 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
13802 .name
= "Channel Mode",
13803 .info
= alc_ch_mode_info
,
13804 .get
= alc_ch_mode_get
,
13805 .put
= alc_ch_mode_put
,
13806 .private_value
= ARRAY_SIZE(alc861_asus_modes
),
13811 /* additional mixer */
13812 static struct snd_kcontrol_new alc861_asus_laptop_mixer
[] = {
13813 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT
),
13814 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT
),
13819 * generic initialization of ADC, input mixers and output mixers
13821 static struct hda_verb alc861_base_init_verbs
[] = {
13823 * Unmute ADC0 and set the default input to mic-in
13825 /* port-A for surround (rear panel) */
13826 { 0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40 },
13827 { 0x0e, AC_VERB_SET_CONNECT_SEL
, 0x00 },
13828 /* port-B for mic-in (rear panel) with vref */
13829 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24 },
13830 /* port-C for line-in (rear panel) */
13831 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20 },
13832 /* port-D for Front */
13833 { 0x0b, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40 },
13834 { 0x0b, AC_VERB_SET_CONNECT_SEL
, 0x00 },
13835 /* port-E for HP out (front panel) */
13836 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0xc0 },
13837 /* route front PCM to HP */
13838 { 0x0f, AC_VERB_SET_CONNECT_SEL
, 0x00 },
13839 /* port-F for mic-in (front panel) with vref */
13840 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24 },
13841 /* port-G for CLFE (rear panel) */
13842 { 0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40 },
13843 { 0x1f, AC_VERB_SET_CONNECT_SEL
, 0x00 },
13844 /* port-H for side (rear panel) */
13845 { 0x20, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40 },
13846 { 0x20, AC_VERB_SET_CONNECT_SEL
, 0x00 },
13848 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20 },
13849 /* route front mic to ADC1*/
13850 {0x08, AC_VERB_SET_CONNECT_SEL
, 0x00},
13851 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
13853 /* Unmute DAC0~3 & spdif out*/
13854 {0x03, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
13855 {0x04, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
13856 {0x05, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
13857 {0x06, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
13858 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
13860 /* Unmute Mixer 14 (mic) 1c (Line in)*/
13861 {0x014, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
13862 {0x014, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
13863 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
13864 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
13866 /* Unmute Stereo Mixer 15 */
13867 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
13868 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
13869 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(2)},
13870 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb00c}, /* Output 0~12 step */
13872 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
13873 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
13874 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
13875 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
13876 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
13877 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
13878 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
13879 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
13880 /* hp used DAC 3 (Front) */
13881 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(3)},
13882 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(2)},
13887 static struct hda_verb alc861_threestack_init_verbs
[] = {
13889 * Unmute ADC0 and set the default input to mic-in
13891 /* port-A for surround (rear panel) */
13892 { 0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x00 },
13893 /* port-B for mic-in (rear panel) with vref */
13894 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24 },
13895 /* port-C for line-in (rear panel) */
13896 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20 },
13897 /* port-D for Front */
13898 { 0x0b, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40 },
13899 { 0x0b, AC_VERB_SET_CONNECT_SEL
, 0x00 },
13900 /* port-E for HP out (front panel) */
13901 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0xc0 },
13902 /* route front PCM to HP */
13903 { 0x0f, AC_VERB_SET_CONNECT_SEL
, 0x00 },
13904 /* port-F for mic-in (front panel) with vref */
13905 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24 },
13906 /* port-G for CLFE (rear panel) */
13907 { 0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x00 },
13908 /* port-H for side (rear panel) */
13909 { 0x20, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x00 },
13911 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20 },
13912 /* route front mic to ADC1*/
13913 {0x08, AC_VERB_SET_CONNECT_SEL
, 0x00},
13914 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
13915 /* Unmute DAC0~3 & spdif out*/
13916 {0x03, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
13917 {0x04, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
13918 {0x05, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
13919 {0x06, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
13920 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
13922 /* Unmute Mixer 14 (mic) 1c (Line in)*/
13923 {0x014, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
13924 {0x014, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
13925 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
13926 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
13928 /* Unmute Stereo Mixer 15 */
13929 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
13930 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
13931 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(2)},
13932 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb00c}, /* Output 0~12 step */
13934 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
13935 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
13936 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
13937 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
13938 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
13939 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
13940 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
13941 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
13942 /* hp used DAC 3 (Front) */
13943 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(3)},
13944 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(2)},
13948 static struct hda_verb alc861_uniwill_m31_init_verbs
[] = {
13950 * Unmute ADC0 and set the default input to mic-in
13952 /* port-A for surround (rear panel) */
13953 { 0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x00 },
13954 /* port-B for mic-in (rear panel) with vref */
13955 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24 },
13956 /* port-C for line-in (rear panel) */
13957 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20 },
13958 /* port-D for Front */
13959 { 0x0b, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40 },
13960 { 0x0b, AC_VERB_SET_CONNECT_SEL
, 0x00 },
13961 /* port-E for HP out (front panel) */
13962 /* this has to be set to VREF80 */
13963 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24 },
13964 /* route front PCM to HP */
13965 { 0x0f, AC_VERB_SET_CONNECT_SEL
, 0x00 },
13966 /* port-F for mic-in (front panel) with vref */
13967 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24 },
13968 /* port-G for CLFE (rear panel) */
13969 { 0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x00 },
13970 /* port-H for side (rear panel) */
13971 { 0x20, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x00 },
13973 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20 },
13974 /* route front mic to ADC1*/
13975 {0x08, AC_VERB_SET_CONNECT_SEL
, 0x00},
13976 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
13977 /* Unmute DAC0~3 & spdif out*/
13978 {0x03, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
13979 {0x04, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
13980 {0x05, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
13981 {0x06, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
13982 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
13984 /* Unmute Mixer 14 (mic) 1c (Line in)*/
13985 {0x014, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
13986 {0x014, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
13987 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
13988 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
13990 /* Unmute Stereo Mixer 15 */
13991 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
13992 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
13993 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(2)},
13994 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb00c}, /* Output 0~12 step */
13996 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
13997 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
13998 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
13999 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14000 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14001 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14002 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14003 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14004 /* hp used DAC 3 (Front) */
14005 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(3)},
14006 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(2)},
14010 static struct hda_verb alc861_asus_init_verbs
[] = {
14012 * Unmute ADC0 and set the default input to mic-in
14014 /* port-A for surround (rear panel)
14015 * according to codec#0 this is the HP jack
14017 { 0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0xc0 }, /* was 0x00 */
14018 /* route front PCM to HP */
14019 { 0x0e, AC_VERB_SET_CONNECT_SEL
, 0x01 },
14020 /* port-B for mic-in (rear panel) with vref */
14021 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24 },
14022 /* port-C for line-in (rear panel) */
14023 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20 },
14024 /* port-D for Front */
14025 { 0x0b, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40 },
14026 { 0x0b, AC_VERB_SET_CONNECT_SEL
, 0x00 },
14027 /* port-E for HP out (front panel) */
14028 /* this has to be set to VREF80 */
14029 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24 },
14030 /* route front PCM to HP */
14031 { 0x0f, AC_VERB_SET_CONNECT_SEL
, 0x00 },
14032 /* port-F for mic-in (front panel) with vref */
14033 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x24 },
14034 /* port-G for CLFE (rear panel) */
14035 { 0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40 },
14036 /* port-H for side (rear panel) */
14037 { 0x20, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x40 },
14039 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x20 },
14040 /* route front mic to ADC1*/
14041 {0x08, AC_VERB_SET_CONNECT_SEL
, 0x00},
14042 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14043 /* Unmute DAC0~3 & spdif out*/
14044 {0x03, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
14045 {0x04, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
14046 {0x05, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
14047 {0x06, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
14048 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
14049 /* Unmute Mixer 14 (mic) 1c (Line in)*/
14050 {0x014, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14051 {0x014, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14052 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14053 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14055 /* Unmute Stereo Mixer 15 */
14056 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14057 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14058 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(2)},
14059 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb00c}, /* Output 0~12 step */
14061 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14062 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14063 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14064 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14065 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14066 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14067 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14068 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14069 /* hp used DAC 3 (Front) */
14070 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(3)},
14071 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(2)},
14075 /* additional init verbs for ASUS laptops */
14076 static struct hda_verb alc861_asus_laptop_init_verbs
[] = {
14077 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x45 }, /* HP-out */
14078 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2) }, /* mute line-in */
14083 * generic initialization of ADC, input mixers and output mixers
14085 static struct hda_verb alc861_auto_init_verbs
[] = {
14087 * Unmute ADC0 and set the default input to mic-in
14089 /* {0x08, AC_VERB_SET_CONNECT_SEL, 0x00}, */
14090 {0x08, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14092 /* Unmute DAC0~3 & spdif out*/
14093 {0x03, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
14094 {0x04, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
14095 {0x05, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
14096 {0x06, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
14097 {0x07, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
14099 /* Unmute Mixer 14 (mic) 1c (Line in)*/
14100 {0x014, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14101 {0x014, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14102 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14103 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14105 /* Unmute Stereo Mixer 15 */
14106 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14107 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14108 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(2)},
14109 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, 0xb00c},
14111 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14112 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14113 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14114 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14115 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14116 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14117 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14118 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14120 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
14121 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
14122 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(2)},
14123 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(3)},
14124 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
14125 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
14126 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(2)},
14127 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(3)},
14129 {0x08, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* set Mic 1 */
14134 static struct hda_verb alc861_toshiba_init_verbs
[] = {
14135 {0x0f, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
14140 /* toggle speaker-output according to the hp-jack state */
14141 static void alc861_toshiba_automute(struct hda_codec
*codec
)
14143 unsigned int present
;
14145 present
= snd_hda_codec_read(codec
, 0x0f, 0,
14146 AC_VERB_GET_PIN_SENSE
, 0) & 0x80000000;
14147 snd_hda_codec_amp_stereo(codec
, 0x16, HDA_INPUT
, 0,
14148 HDA_AMP_MUTE
, present
? HDA_AMP_MUTE
: 0);
14149 snd_hda_codec_amp_stereo(codec
, 0x1a, HDA_INPUT
, 3,
14150 HDA_AMP_MUTE
, present
? 0 : HDA_AMP_MUTE
);
14153 static void alc861_toshiba_unsol_event(struct hda_codec
*codec
,
14156 if ((res
>> 26) == ALC880_HP_EVENT
)
14157 alc861_toshiba_automute(codec
);
14160 /* pcm configuration: identical with ALC880 */
14161 #define alc861_pcm_analog_playback alc880_pcm_analog_playback
14162 #define alc861_pcm_analog_capture alc880_pcm_analog_capture
14163 #define alc861_pcm_digital_playback alc880_pcm_digital_playback
14164 #define alc861_pcm_digital_capture alc880_pcm_digital_capture
14167 #define ALC861_DIGOUT_NID 0x07
14169 static struct hda_channel_mode alc861_8ch_modes
[1] = {
14173 static hda_nid_t alc861_dac_nids
[4] = {
14174 /* front, surround, clfe, side */
14175 0x03, 0x06, 0x05, 0x04
14178 static hda_nid_t alc660_dac_nids
[3] = {
14179 /* front, clfe, surround */
14183 static hda_nid_t alc861_adc_nids
[1] = {
14188 static struct hda_input_mux alc861_capture_source
= {
14192 { "Front Mic", 0x3 },
14199 /* fill in the dac_nids table from the parsed pin configuration */
14200 static int alc861_auto_fill_dac_nids(struct alc_spec
*spec
,
14201 const struct auto_pin_cfg
*cfg
)
14206 spec
->multiout
.dac_nids
= spec
->private_dac_nids
;
14207 for (i
= 0; i
< cfg
->line_outs
; i
++) {
14208 nid
= cfg
->line_out_pins
[i
];
14210 if (i
>= ARRAY_SIZE(alc861_dac_nids
))
14212 spec
->multiout
.dac_nids
[i
] = alc861_dac_nids
[i
];
14215 spec
->multiout
.num_dacs
= cfg
->line_outs
;
14219 /* add playback controls from the parsed DAC table */
14220 static int alc861_auto_create_multi_out_ctls(struct alc_spec
*spec
,
14221 const struct auto_pin_cfg
*cfg
)
14224 static const char *chname
[4] = {
14225 "Front", "Surround", NULL
/*CLFE*/, "Side"
14230 for (i
= 0; i
< cfg
->line_outs
; i
++) {
14231 nid
= spec
->multiout
.dac_nids
[i
];
14236 err
= add_control(spec
, ALC_CTL_BIND_MUTE
,
14237 "Center Playback Switch",
14238 HDA_COMPOSE_AMP_VAL(nid
, 1, 0,
14242 err
= add_control(spec
, ALC_CTL_BIND_MUTE
,
14243 "LFE Playback Switch",
14244 HDA_COMPOSE_AMP_VAL(nid
, 2, 0,
14249 for (idx
= 0; idx
< ARRAY_SIZE(alc861_dac_nids
) - 1;
14251 if (nid
== alc861_dac_nids
[idx
])
14253 sprintf(name
, "%s Playback Switch", chname
[idx
]);
14254 err
= add_control(spec
, ALC_CTL_BIND_MUTE
, name
,
14255 HDA_COMPOSE_AMP_VAL(nid
, 3, 0,
14264 static int alc861_auto_create_hp_ctls(struct alc_spec
*spec
, hda_nid_t pin
)
14272 if ((pin
>= 0x0b && pin
<= 0x10) || pin
== 0x1f || pin
== 0x20) {
14274 err
= add_control(spec
, ALC_CTL_WIDGET_MUTE
,
14275 "Headphone Playback Switch",
14276 HDA_COMPOSE_AMP_VAL(nid
, 3, 0, HDA_OUTPUT
));
14279 spec
->multiout
.hp_nid
= nid
;
14284 /* create playback/capture controls for input pins */
14285 static int alc861_auto_create_analog_input_ctls(struct alc_spec
*spec
,
14286 const struct auto_pin_cfg
*cfg
)
14288 struct hda_input_mux
*imux
= &spec
->private_imux
[0];
14289 int i
, err
, idx
, idx1
;
14291 for (i
= 0; i
< AUTO_PIN_LAST
; i
++) {
14292 switch (cfg
->input_pins
[i
]) {
14295 idx
= 2; /* Line In */
14299 idx
= 2; /* Line In */
14303 idx
= 1; /* Mic In */
14307 idx
= 1; /* Mic In */
14317 err
= new_analog_input(spec
, cfg
->input_pins
[i
],
14318 auto_pin_cfg_labels
[i
], idx
, 0x15);
14322 imux
->items
[imux
->num_items
].label
= auto_pin_cfg_labels
[i
];
14323 imux
->items
[imux
->num_items
].index
= idx1
;
14329 static void alc861_auto_set_output_and_unmute(struct hda_codec
*codec
,
14331 int pin_type
, int dac_idx
)
14333 snd_hda_codec_write(codec
, nid
, 0, AC_VERB_SET_PIN_WIDGET_CONTROL
,
14335 snd_hda_codec_write(codec
, dac_idx
, 0, AC_VERB_SET_AMP_GAIN_MUTE
,
14339 static void alc861_auto_init_multi_out(struct hda_codec
*codec
)
14341 struct alc_spec
*spec
= codec
->spec
;
14344 for (i
= 0; i
< spec
->autocfg
.line_outs
; i
++) {
14345 hda_nid_t nid
= spec
->autocfg
.line_out_pins
[i
];
14346 int pin_type
= get_pin_type(spec
->autocfg
.line_out_type
);
14348 alc861_auto_set_output_and_unmute(codec
, nid
, pin_type
,
14349 spec
->multiout
.dac_nids
[i
]);
14353 static void alc861_auto_init_hp_out(struct hda_codec
*codec
)
14355 struct alc_spec
*spec
= codec
->spec
;
14358 pin
= spec
->autocfg
.hp_pins
[0];
14359 if (pin
) /* connect to front */
14360 alc861_auto_set_output_and_unmute(codec
, pin
, PIN_HP
,
14361 spec
->multiout
.dac_nids
[0]);
14362 pin
= spec
->autocfg
.speaker_pins
[0];
14364 alc861_auto_set_output_and_unmute(codec
, pin
, PIN_OUT
, 0);
14367 static void alc861_auto_init_analog_input(struct hda_codec
*codec
)
14369 struct alc_spec
*spec
= codec
->spec
;
14372 for (i
= 0; i
< AUTO_PIN_LAST
; i
++) {
14373 hda_nid_t nid
= spec
->autocfg
.input_pins
[i
];
14374 if (nid
>= 0x0c && nid
<= 0x11)
14375 alc_set_input_pin(codec
, nid
, i
);
14379 /* parse the BIOS configuration and set up the alc_spec */
14380 /* return 1 if successful, 0 if the proper config is not found,
14381 * or a negative error code
14383 static int alc861_parse_auto_config(struct hda_codec
*codec
)
14385 struct alc_spec
*spec
= codec
->spec
;
14387 static hda_nid_t alc861_ignore
[] = { 0x1d, 0 };
14389 err
= snd_hda_parse_pin_def_config(codec
, &spec
->autocfg
,
14393 if (!spec
->autocfg
.line_outs
)
14394 return 0; /* can't find valid BIOS pin config */
14396 err
= alc861_auto_fill_dac_nids(spec
, &spec
->autocfg
);
14399 err
= alc861_auto_create_multi_out_ctls(spec
, &spec
->autocfg
);
14402 err
= alc861_auto_create_hp_ctls(spec
, spec
->autocfg
.hp_pins
[0]);
14405 err
= alc861_auto_create_analog_input_ctls(spec
, &spec
->autocfg
);
14409 spec
->multiout
.max_channels
= spec
->multiout
.num_dacs
* 2;
14411 if (spec
->autocfg
.dig_outs
)
14412 spec
->multiout
.dig_out_nid
= ALC861_DIGOUT_NID
;
14414 if (spec
->kctls
.list
)
14415 add_mixer(spec
, spec
->kctls
.list
);
14417 add_verb(spec
, alc861_auto_init_verbs
);
14419 spec
->num_mux_defs
= 1;
14420 spec
->input_mux
= &spec
->private_imux
[0];
14422 spec
->adc_nids
= alc861_adc_nids
;
14423 spec
->num_adc_nids
= ARRAY_SIZE(alc861_adc_nids
);
14424 set_capture_mixer(spec
);
14426 alc_ssid_check(codec
, 0x0e, 0x0f, 0x0b);
14431 /* additional initialization for auto-configuration model */
14432 static void alc861_auto_init(struct hda_codec
*codec
)
14434 struct alc_spec
*spec
= codec
->spec
;
14435 alc861_auto_init_multi_out(codec
);
14436 alc861_auto_init_hp_out(codec
);
14437 alc861_auto_init_analog_input(codec
);
14438 if (spec
->unsol_event
)
14439 alc_inithook(codec
);
14442 #ifdef CONFIG_SND_HDA_POWER_SAVE
14443 static struct hda_amp_list alc861_loopbacks
[] = {
14444 { 0x15, HDA_INPUT
, 0 },
14445 { 0x15, HDA_INPUT
, 1 },
14446 { 0x15, HDA_INPUT
, 2 },
14447 { 0x15, HDA_INPUT
, 3 },
14454 * configuration and preset
14456 static const char *alc861_models
[ALC861_MODEL_LAST
] = {
14457 [ALC861_3ST
] = "3stack",
14458 [ALC660_3ST
] = "3stack-660",
14459 [ALC861_3ST_DIG
] = "3stack-dig",
14460 [ALC861_6ST_DIG
] = "6stack-dig",
14461 [ALC861_UNIWILL_M31
] = "uniwill-m31",
14462 [ALC861_TOSHIBA
] = "toshiba",
14463 [ALC861_ASUS
] = "asus",
14464 [ALC861_ASUS_LAPTOP
] = "asus-laptop",
14465 [ALC861_AUTO
] = "auto",
14468 static struct snd_pci_quirk alc861_cfg_tbl
[] = {
14469 SND_PCI_QUIRK(0x1043, 0x1205, "ASUS W7J", ALC861_3ST
),
14470 SND_PCI_QUIRK(0x1043, 0x1335, "ASUS F2/3", ALC861_ASUS_LAPTOP
),
14471 SND_PCI_QUIRK(0x1043, 0x1338, "ASUS F2/3", ALC861_ASUS_LAPTOP
),
14472 SND_PCI_QUIRK(0x1043, 0x1393, "ASUS", ALC861_ASUS
),
14473 SND_PCI_QUIRK(0x1043, 0x13d7, "ASUS A9rp", ALC861_ASUS_LAPTOP
),
14474 SND_PCI_QUIRK(0x1043, 0x81cb, "ASUS P1-AH2", ALC861_3ST_DIG
),
14475 SND_PCI_QUIRK(0x1179, 0xff00, "Toshiba", ALC861_TOSHIBA
),
14476 /* FIXME: the entry below breaks Toshiba A100 (model=auto works!)
14477 * Any other models that need this preset?
14479 /* SND_PCI_QUIRK(0x1179, 0xff10, "Toshiba", ALC861_TOSHIBA), */
14480 SND_PCI_QUIRK(0x1462, 0x7254, "HP dx2200 (MSI MS-7254)", ALC861_3ST
),
14481 SND_PCI_QUIRK(0x1462, 0x7297, "HP dx2250 (MSI MS-7297)", ALC861_3ST
),
14482 SND_PCI_QUIRK(0x1584, 0x2b01, "Uniwill X40AIx", ALC861_UNIWILL_M31
),
14483 SND_PCI_QUIRK(0x1584, 0x9072, "Uniwill m31", ALC861_UNIWILL_M31
),
14484 SND_PCI_QUIRK(0x1584, 0x9075, "Airis Praxis N1212", ALC861_ASUS_LAPTOP
),
14485 /* FIXME: the below seems conflict */
14486 /* SND_PCI_QUIRK(0x1584, 0x9075, "Uniwill", ALC861_UNIWILL_M31), */
14487 SND_PCI_QUIRK(0x1849, 0x0660, "Asrock 939SLI32", ALC660_3ST
),
14488 SND_PCI_QUIRK(0x8086, 0xd600, "Intel", ALC861_3ST
),
14492 static struct alc_config_preset alc861_presets
[] = {
14494 .mixers
= { alc861_3ST_mixer
},
14495 .init_verbs
= { alc861_threestack_init_verbs
},
14496 .num_dacs
= ARRAY_SIZE(alc861_dac_nids
),
14497 .dac_nids
= alc861_dac_nids
,
14498 .num_channel_mode
= ARRAY_SIZE(alc861_threestack_modes
),
14499 .channel_mode
= alc861_threestack_modes
,
14501 .num_adc_nids
= ARRAY_SIZE(alc861_adc_nids
),
14502 .adc_nids
= alc861_adc_nids
,
14503 .input_mux
= &alc861_capture_source
,
14505 [ALC861_3ST_DIG
] = {
14506 .mixers
= { alc861_base_mixer
},
14507 .init_verbs
= { alc861_threestack_init_verbs
},
14508 .num_dacs
= ARRAY_SIZE(alc861_dac_nids
),
14509 .dac_nids
= alc861_dac_nids
,
14510 .dig_out_nid
= ALC861_DIGOUT_NID
,
14511 .num_channel_mode
= ARRAY_SIZE(alc861_threestack_modes
),
14512 .channel_mode
= alc861_threestack_modes
,
14514 .num_adc_nids
= ARRAY_SIZE(alc861_adc_nids
),
14515 .adc_nids
= alc861_adc_nids
,
14516 .input_mux
= &alc861_capture_source
,
14518 [ALC861_6ST_DIG
] = {
14519 .mixers
= { alc861_base_mixer
},
14520 .init_verbs
= { alc861_base_init_verbs
},
14521 .num_dacs
= ARRAY_SIZE(alc861_dac_nids
),
14522 .dac_nids
= alc861_dac_nids
,
14523 .dig_out_nid
= ALC861_DIGOUT_NID
,
14524 .num_channel_mode
= ARRAY_SIZE(alc861_8ch_modes
),
14525 .channel_mode
= alc861_8ch_modes
,
14526 .num_adc_nids
= ARRAY_SIZE(alc861_adc_nids
),
14527 .adc_nids
= alc861_adc_nids
,
14528 .input_mux
= &alc861_capture_source
,
14531 .mixers
= { alc861_3ST_mixer
},
14532 .init_verbs
= { alc861_threestack_init_verbs
},
14533 .num_dacs
= ARRAY_SIZE(alc660_dac_nids
),
14534 .dac_nids
= alc660_dac_nids
,
14535 .num_channel_mode
= ARRAY_SIZE(alc861_threestack_modes
),
14536 .channel_mode
= alc861_threestack_modes
,
14538 .num_adc_nids
= ARRAY_SIZE(alc861_adc_nids
),
14539 .adc_nids
= alc861_adc_nids
,
14540 .input_mux
= &alc861_capture_source
,
14542 [ALC861_UNIWILL_M31
] = {
14543 .mixers
= { alc861_uniwill_m31_mixer
},
14544 .init_verbs
= { alc861_uniwill_m31_init_verbs
},
14545 .num_dacs
= ARRAY_SIZE(alc861_dac_nids
),
14546 .dac_nids
= alc861_dac_nids
,
14547 .dig_out_nid
= ALC861_DIGOUT_NID
,
14548 .num_channel_mode
= ARRAY_SIZE(alc861_uniwill_m31_modes
),
14549 .channel_mode
= alc861_uniwill_m31_modes
,
14551 .num_adc_nids
= ARRAY_SIZE(alc861_adc_nids
),
14552 .adc_nids
= alc861_adc_nids
,
14553 .input_mux
= &alc861_capture_source
,
14555 [ALC861_TOSHIBA
] = {
14556 .mixers
= { alc861_toshiba_mixer
},
14557 .init_verbs
= { alc861_base_init_verbs
,
14558 alc861_toshiba_init_verbs
},
14559 .num_dacs
= ARRAY_SIZE(alc861_dac_nids
),
14560 .dac_nids
= alc861_dac_nids
,
14561 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_2ch_modes
),
14562 .channel_mode
= alc883_3ST_2ch_modes
,
14563 .num_adc_nids
= ARRAY_SIZE(alc861_adc_nids
),
14564 .adc_nids
= alc861_adc_nids
,
14565 .input_mux
= &alc861_capture_source
,
14566 .unsol_event
= alc861_toshiba_unsol_event
,
14567 .init_hook
= alc861_toshiba_automute
,
14570 .mixers
= { alc861_asus_mixer
},
14571 .init_verbs
= { alc861_asus_init_verbs
},
14572 .num_dacs
= ARRAY_SIZE(alc861_dac_nids
),
14573 .dac_nids
= alc861_dac_nids
,
14574 .dig_out_nid
= ALC861_DIGOUT_NID
,
14575 .num_channel_mode
= ARRAY_SIZE(alc861_asus_modes
),
14576 .channel_mode
= alc861_asus_modes
,
14579 .num_adc_nids
= ARRAY_SIZE(alc861_adc_nids
),
14580 .adc_nids
= alc861_adc_nids
,
14581 .input_mux
= &alc861_capture_source
,
14583 [ALC861_ASUS_LAPTOP
] = {
14584 .mixers
= { alc861_toshiba_mixer
, alc861_asus_laptop_mixer
},
14585 .init_verbs
= { alc861_asus_init_verbs
,
14586 alc861_asus_laptop_init_verbs
},
14587 .num_dacs
= ARRAY_SIZE(alc861_dac_nids
),
14588 .dac_nids
= alc861_dac_nids
,
14589 .dig_out_nid
= ALC861_DIGOUT_NID
,
14590 .num_channel_mode
= ARRAY_SIZE(alc883_3ST_2ch_modes
),
14591 .channel_mode
= alc883_3ST_2ch_modes
,
14593 .num_adc_nids
= ARRAY_SIZE(alc861_adc_nids
),
14594 .adc_nids
= alc861_adc_nids
,
14595 .input_mux
= &alc861_capture_source
,
14600 static int patch_alc861(struct hda_codec
*codec
)
14602 struct alc_spec
*spec
;
14606 spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
14610 codec
->spec
= spec
;
14612 board_config
= snd_hda_check_board_config(codec
, ALC861_MODEL_LAST
,
14616 if (board_config
< 0) {
14617 printk(KERN_INFO
"hda_codec: Unknown model for %s, "
14618 "trying auto-probe from BIOS...\n", codec
->chip_name
);
14619 board_config
= ALC861_AUTO
;
14622 if (board_config
== ALC861_AUTO
) {
14623 /* automatic parse from the BIOS config */
14624 err
= alc861_parse_auto_config(codec
);
14630 "hda_codec: Cannot set up configuration "
14631 "from BIOS. Using base mode...\n");
14632 board_config
= ALC861_3ST_DIG
;
14636 err
= snd_hda_attach_beep_device(codec
, 0x23);
14642 if (board_config
!= ALC861_AUTO
)
14643 setup_preset(spec
, &alc861_presets
[board_config
]);
14645 spec
->stream_analog_playback
= &alc861_pcm_analog_playback
;
14646 spec
->stream_analog_capture
= &alc861_pcm_analog_capture
;
14648 spec
->stream_digital_playback
= &alc861_pcm_digital_playback
;
14649 spec
->stream_digital_capture
= &alc861_pcm_digital_capture
;
14651 set_beep_amp(spec
, 0x23, 0, HDA_OUTPUT
);
14653 spec
->vmaster_nid
= 0x03;
14655 codec
->patch_ops
= alc_patch_ops
;
14656 if (board_config
== ALC861_AUTO
)
14657 spec
->init_hook
= alc861_auto_init
;
14658 #ifdef CONFIG_SND_HDA_POWER_SAVE
14659 if (!spec
->loopback
.amplist
)
14660 spec
->loopback
.amplist
= alc861_loopbacks
;
14662 codec
->proc_widget_hook
= print_realtek_coef
;
14668 * ALC861-VD support
14672 * In addition, an independent DAC
14674 #define ALC861VD_DIGOUT_NID 0x06
14676 static hda_nid_t alc861vd_dac_nids
[4] = {
14677 /* front, surr, clfe, side surr */
14678 0x02, 0x03, 0x04, 0x05
14681 /* dac_nids for ALC660vd are in a different order - according to
14682 * Realtek's driver.
14683 * This should probably result in a different mixer for 6stack models
14684 * of ALC660vd codecs, but for now there is only 3stack mixer
14685 * - and it is the same as in 861vd.
14686 * adc_nids in ALC660vd are (is) the same as in 861vd
14688 static hda_nid_t alc660vd_dac_nids
[3] = {
14689 /* front, rear, clfe, rear_surr */
14693 static hda_nid_t alc861vd_adc_nids
[1] = {
14698 static hda_nid_t alc861vd_capsrc_nids
[1] = { 0x22 };
14701 /* FIXME: should be a matrix-type input source selection */
14702 static struct hda_input_mux alc861vd_capture_source
= {
14706 { "Front Mic", 0x1 },
14712 static struct hda_input_mux alc861vd_dallas_capture_source
= {
14715 { "Ext Mic", 0x0 },
14716 { "Int Mic", 0x1 },
14720 static struct hda_input_mux alc861vd_hp_capture_source
= {
14723 { "Front Mic", 0x0 },
14724 { "ATAPI Mic", 0x1 },
14731 static struct hda_channel_mode alc861vd_3stack_2ch_modes
[1] = {
14738 static struct hda_verb alc861vd_6stack_ch6_init
[] = {
14739 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x00 },
14740 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
14741 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
14742 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
14749 static struct hda_verb alc861vd_6stack_ch8_init
[] = {
14750 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
14751 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
14752 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
14753 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
14757 static struct hda_channel_mode alc861vd_6stack_modes
[2] = {
14758 { 6, alc861vd_6stack_ch6_init
},
14759 { 8, alc861vd_6stack_ch8_init
},
14762 static struct snd_kcontrol_new alc861vd_chmode_mixer
[] = {
14764 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
14765 .name
= "Channel Mode",
14766 .info
= alc_ch_mode_info
,
14767 .get
= alc_ch_mode_get
,
14768 .put
= alc_ch_mode_put
,
14773 /* Pin assignment: Front=0x14, Rear=0x15, CLFE=0x16, Side=0x17
14774 * Mic=0x18, Front Mic=0x19, Line-In=0x1a, HP=0x1b
14776 static struct snd_kcontrol_new alc861vd_6st_mixer
[] = {
14777 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
14778 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
14780 HDA_CODEC_VOLUME("Surround Playback Volume", 0x03, 0x0, HDA_OUTPUT
),
14781 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT
),
14783 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x04, 1, 0x0,
14785 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x04, 2, 0x0,
14787 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT
),
14788 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT
),
14790 HDA_CODEC_VOLUME("Side Playback Volume", 0x05, 0x0, HDA_OUTPUT
),
14791 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT
),
14793 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
14795 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
14796 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
14797 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
14799 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT
),
14800 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
14801 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
14803 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
14804 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
14806 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
14807 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
14812 static struct snd_kcontrol_new alc861vd_3st_mixer
[] = {
14813 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
14814 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
14816 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
14818 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
14819 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
14820 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
14822 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT
),
14823 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
14824 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
14826 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
14827 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
14829 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
14830 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
14835 static struct snd_kcontrol_new alc861vd_lenovo_mixer
[] = {
14836 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
14837 /*HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),*/
14838 HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
14840 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
14842 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT
),
14843 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
14844 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
14846 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT
),
14847 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
14848 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
14850 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
14851 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
14856 /* Pin assignment: Speaker=0x14, HP = 0x15,
14857 * Ext Mic=0x18, Int Mic = 0x19, CD = 0x1c, PC Beep = 0x1d
14859 static struct snd_kcontrol_new alc861vd_dallas_mixer
[] = {
14860 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
14861 HDA_BIND_MUTE("Speaker Playback Switch", 0x0c, 2, HDA_INPUT
),
14862 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x03, 0x0, HDA_OUTPUT
),
14863 HDA_BIND_MUTE("Headphone Playback Switch", 0x0d, 2, HDA_INPUT
),
14864 HDA_CODEC_VOLUME("Ext Mic Boost", 0x18, 0, HDA_INPUT
),
14865 HDA_CODEC_VOLUME("Ext Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
14866 HDA_CODEC_MUTE("Ext Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
14867 HDA_CODEC_VOLUME("Int Mic Boost", 0x19, 0, HDA_INPUT
),
14868 HDA_CODEC_VOLUME("Int Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
14869 HDA_CODEC_MUTE("Int Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
14873 /* Pin assignment: Speaker=0x14, Line-out = 0x15,
14874 * Front Mic=0x18, ATAPI Mic = 0x19,
14876 static struct snd_kcontrol_new alc861vd_hp_mixer
[] = {
14877 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
14878 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT
),
14879 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x03, 0x0, HDA_OUTPUT
),
14880 HDA_BIND_MUTE("Headphone Playback Switch", 0x0d, 2, HDA_INPUT
),
14881 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
14882 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
14883 HDA_CODEC_VOLUME("ATAPI Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
14884 HDA_CODEC_MUTE("ATAPI Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
14890 * generic initialization of ADC, input mixers and output mixers
14892 static struct hda_verb alc861vd_volume_init_verbs
[] = {
14894 * Unmute ADC0 and set the default input to mic-in
14896 {0x09, AC_VERB_SET_CONNECT_SEL
, 0x00},
14897 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14899 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of
14900 * the analog-loopback mixer widget
14902 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
14903 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
14904 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
14905 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
14906 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
14907 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
14909 /* Capture mixer: unmute Mic, F-Mic, Line, CD inputs */
14910 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
14911 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
14912 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(2)},
14913 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(4)},
14916 * Set up output mixers (0x02 - 0x05)
14918 /* set vol=0 to output mixers */
14919 {0x02, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
14920 {0x03, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
14921 {0x04, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
14922 {0x05, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
14924 /* set up input amps for analog loopback */
14925 /* Amp Indices: DAC = 0, mixer = 1 */
14926 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
14927 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
14928 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
14929 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
14930 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
14931 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
14932 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
14933 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
14939 * 3-stack pin configuration:
14940 * front = 0x14, mic/clfe = 0x18, HP = 0x19, line/surr = 0x1a, f-mic = 0x1b
14942 static struct hda_verb alc861vd_3stack_init_verbs
[] = {
14944 * Set pin mode and muting
14946 /* set front pin widgets 0x14 for output */
14947 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
14948 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
14949 {0x14, AC_VERB_SET_CONNECT_SEL
, 0x00},
14951 /* Mic (rear) pin: input vref at 80% */
14952 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
14953 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
14954 /* Front Mic pin: input vref at 80% */
14955 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
14956 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
14957 /* Line In pin: input */
14958 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
14959 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
14960 /* Line-2 In: Headphone output (output 0 - 0x0c) */
14961 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
14962 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
14963 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0x00},
14964 /* CD pin widget for input */
14965 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
14971 * 6-stack pin configuration:
14973 static struct hda_verb alc861vd_6stack_init_verbs
[] = {
14975 * Set pin mode and muting
14977 /* set front pin widgets 0x14 for output */
14978 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
14979 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
14980 {0x14, AC_VERB_SET_CONNECT_SEL
, 0x00},
14982 /* Rear Pin: output 1 (0x0d) */
14983 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
14984 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
14985 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x01},
14986 /* CLFE Pin: output 2 (0x0e) */
14987 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
14988 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
14989 {0x16, AC_VERB_SET_CONNECT_SEL
, 0x02},
14990 /* Side Pin: output 3 (0x0f) */
14991 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
14992 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
14993 {0x17, AC_VERB_SET_CONNECT_SEL
, 0x03},
14995 /* Mic (rear) pin: input vref at 80% */
14996 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
14997 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
14998 /* Front Mic pin: input vref at 80% */
14999 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
15000 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
15001 /* Line In pin: input */
15002 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
15003 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
15004 /* Line-2 In: Headphone output (output 0 - 0x0c) */
15005 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
15006 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
15007 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0x00},
15008 /* CD pin widget for input */
15009 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
15014 static struct hda_verb alc861vd_eapd_verbs
[] = {
15015 {0x14, AC_VERB_SET_EAPD_BTLENABLE
, 2},
15019 static struct hda_verb alc660vd_eapd_verbs
[] = {
15020 {0x14, AC_VERB_SET_EAPD_BTLENABLE
, 2},
15021 {0x15, AC_VERB_SET_EAPD_BTLENABLE
, 2},
15025 static struct hda_verb alc861vd_lenovo_unsol_verbs
[] = {
15026 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15027 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15028 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(5)},
15029 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
15030 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
15034 static void alc861vd_lenovo_mic_automute(struct hda_codec
*codec
)
15036 unsigned int present
;
15037 unsigned char bits
;
15039 present
= snd_hda_codec_read(codec
, 0x18, 0,
15040 AC_VERB_GET_PIN_SENSE
, 0) & 0x80000000;
15041 bits
= present
? HDA_AMP_MUTE
: 0;
15042 snd_hda_codec_amp_stereo(codec
, 0x0b, HDA_INPUT
, 1,
15043 HDA_AMP_MUTE
, bits
);
15046 static void alc861vd_lenovo_init_hook(struct hda_codec
*codec
)
15048 struct alc_spec
*spec
= codec
->spec
;
15050 spec
->autocfg
.hp_pins
[0] = 0x1b;
15051 spec
->autocfg
.speaker_pins
[0] = 0x14;
15052 alc_automute_amp(codec
);
15053 alc861vd_lenovo_mic_automute(codec
);
15056 static void alc861vd_lenovo_unsol_event(struct hda_codec
*codec
,
15059 switch (res
>> 26) {
15060 case ALC880_MIC_EVENT
:
15061 alc861vd_lenovo_mic_automute(codec
);
15064 alc_automute_amp_unsol_event(codec
, res
);
15069 static struct hda_verb alc861vd_dallas_verbs
[] = {
15070 {0x02, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
15071 {0x03, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
15072 {0x04, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
15073 {0x05, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
15075 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15076 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
15077 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
15078 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
15079 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
15080 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
15081 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
15082 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
15084 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
15085 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
15086 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
15087 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
15088 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
15089 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
15090 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
15091 {0x17, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
15093 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF50
},
15094 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
15095 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF50
},
15096 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
15097 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
15098 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
15099 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
15100 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
15102 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
15103 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
15104 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
15105 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
15107 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
15108 {0x09, AC_VERB_SET_CONNECT_SEL
, 0x00},
15109 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
15114 /* toggle speaker-output according to the hp-jack state */
15115 static void alc861vd_dallas_init_hook(struct hda_codec
*codec
)
15117 struct alc_spec
*spec
= codec
->spec
;
15119 spec
->autocfg
.hp_pins
[0] = 0x15;
15120 spec
->autocfg
.speaker_pins
[0] = 0x14;
15121 alc_automute_amp(codec
);
15124 #ifdef CONFIG_SND_HDA_POWER_SAVE
15125 #define alc861vd_loopbacks alc880_loopbacks
15128 /* pcm configuration: identical with ALC880 */
15129 #define alc861vd_pcm_analog_playback alc880_pcm_analog_playback
15130 #define alc861vd_pcm_analog_capture alc880_pcm_analog_capture
15131 #define alc861vd_pcm_digital_playback alc880_pcm_digital_playback
15132 #define alc861vd_pcm_digital_capture alc880_pcm_digital_capture
15135 * configuration and preset
15137 static const char *alc861vd_models
[ALC861VD_MODEL_LAST
] = {
15138 [ALC660VD_3ST
] = "3stack-660",
15139 [ALC660VD_3ST_DIG
] = "3stack-660-digout",
15140 [ALC660VD_ASUS_V1S
] = "asus-v1s",
15141 [ALC861VD_3ST
] = "3stack",
15142 [ALC861VD_3ST_DIG
] = "3stack-digout",
15143 [ALC861VD_6ST_DIG
] = "6stack-digout",
15144 [ALC861VD_LENOVO
] = "lenovo",
15145 [ALC861VD_DALLAS
] = "dallas",
15146 [ALC861VD_HP
] = "hp",
15147 [ALC861VD_AUTO
] = "auto",
15150 static struct snd_pci_quirk alc861vd_cfg_tbl
[] = {
15151 SND_PCI_QUIRK(0x1019, 0xa88d, "Realtek ALC660 demo", ALC660VD_3ST
),
15152 SND_PCI_QUIRK(0x103c, 0x30bf, "HP TX1000", ALC861VD_HP
),
15153 SND_PCI_QUIRK(0x1043, 0x12e2, "Asus z35m", ALC660VD_3ST
),
15154 SND_PCI_QUIRK(0x1043, 0x1339, "Asus G1", ALC660VD_3ST
),
15155 SND_PCI_QUIRK(0x1043, 0x1633, "Asus V1Sn", ALC660VD_ASUS_V1S
),
15156 SND_PCI_QUIRK(0x1043, 0x81e7, "ASUS", ALC660VD_3ST_DIG
),
15157 SND_PCI_QUIRK(0x10de, 0x03f0, "Realtek ALC660 demo", ALC660VD_3ST
),
15158 SND_PCI_QUIRK(0x1179, 0xff00, "Toshiba A135", ALC861VD_LENOVO
),
15159 /*SND_PCI_QUIRK(0x1179, 0xff00, "DALLAS", ALC861VD_DALLAS),*/ /*lenovo*/
15160 SND_PCI_QUIRK(0x1179, 0xff01, "DALLAS", ALC861VD_DALLAS
),
15161 SND_PCI_QUIRK(0x1179, 0xff03, "Toshiba P205", ALC861VD_LENOVO
),
15162 SND_PCI_QUIRK(0x1179, 0xff31, "Toshiba L30-149", ALC861VD_DALLAS
),
15163 SND_PCI_QUIRK(0x1565, 0x820d, "Biostar NF61S SE", ALC861VD_6ST_DIG
),
15164 SND_PCI_QUIRK_VENDOR(0x17aa, "Lenovo", ALC861VD_LENOVO
),
15165 SND_PCI_QUIRK(0x1849, 0x0862, "ASRock K8NF6G-VSTA", ALC861VD_6ST_DIG
),
15169 static struct alc_config_preset alc861vd_presets
[] = {
15171 .mixers
= { alc861vd_3st_mixer
},
15172 .init_verbs
= { alc861vd_volume_init_verbs
,
15173 alc861vd_3stack_init_verbs
},
15174 .num_dacs
= ARRAY_SIZE(alc660vd_dac_nids
),
15175 .dac_nids
= alc660vd_dac_nids
,
15176 .num_channel_mode
= ARRAY_SIZE(alc861vd_3stack_2ch_modes
),
15177 .channel_mode
= alc861vd_3stack_2ch_modes
,
15178 .input_mux
= &alc861vd_capture_source
,
15180 [ALC660VD_3ST_DIG
] = {
15181 .mixers
= { alc861vd_3st_mixer
},
15182 .init_verbs
= { alc861vd_volume_init_verbs
,
15183 alc861vd_3stack_init_verbs
},
15184 .num_dacs
= ARRAY_SIZE(alc660vd_dac_nids
),
15185 .dac_nids
= alc660vd_dac_nids
,
15186 .dig_out_nid
= ALC861VD_DIGOUT_NID
,
15187 .num_channel_mode
= ARRAY_SIZE(alc861vd_3stack_2ch_modes
),
15188 .channel_mode
= alc861vd_3stack_2ch_modes
,
15189 .input_mux
= &alc861vd_capture_source
,
15192 .mixers
= { alc861vd_3st_mixer
},
15193 .init_verbs
= { alc861vd_volume_init_verbs
,
15194 alc861vd_3stack_init_verbs
},
15195 .num_dacs
= ARRAY_SIZE(alc861vd_dac_nids
),
15196 .dac_nids
= alc861vd_dac_nids
,
15197 .num_channel_mode
= ARRAY_SIZE(alc861vd_3stack_2ch_modes
),
15198 .channel_mode
= alc861vd_3stack_2ch_modes
,
15199 .input_mux
= &alc861vd_capture_source
,
15201 [ALC861VD_3ST_DIG
] = {
15202 .mixers
= { alc861vd_3st_mixer
},
15203 .init_verbs
= { alc861vd_volume_init_verbs
,
15204 alc861vd_3stack_init_verbs
},
15205 .num_dacs
= ARRAY_SIZE(alc861vd_dac_nids
),
15206 .dac_nids
= alc861vd_dac_nids
,
15207 .dig_out_nid
= ALC861VD_DIGOUT_NID
,
15208 .num_channel_mode
= ARRAY_SIZE(alc861vd_3stack_2ch_modes
),
15209 .channel_mode
= alc861vd_3stack_2ch_modes
,
15210 .input_mux
= &alc861vd_capture_source
,
15212 [ALC861VD_6ST_DIG
] = {
15213 .mixers
= { alc861vd_6st_mixer
, alc861vd_chmode_mixer
},
15214 .init_verbs
= { alc861vd_volume_init_verbs
,
15215 alc861vd_6stack_init_verbs
},
15216 .num_dacs
= ARRAY_SIZE(alc861vd_dac_nids
),
15217 .dac_nids
= alc861vd_dac_nids
,
15218 .dig_out_nid
= ALC861VD_DIGOUT_NID
,
15219 .num_channel_mode
= ARRAY_SIZE(alc861vd_6stack_modes
),
15220 .channel_mode
= alc861vd_6stack_modes
,
15221 .input_mux
= &alc861vd_capture_source
,
15223 [ALC861VD_LENOVO
] = {
15224 .mixers
= { alc861vd_lenovo_mixer
},
15225 .init_verbs
= { alc861vd_volume_init_verbs
,
15226 alc861vd_3stack_init_verbs
,
15227 alc861vd_eapd_verbs
,
15228 alc861vd_lenovo_unsol_verbs
},
15229 .num_dacs
= ARRAY_SIZE(alc660vd_dac_nids
),
15230 .dac_nids
= alc660vd_dac_nids
,
15231 .num_channel_mode
= ARRAY_SIZE(alc861vd_3stack_2ch_modes
),
15232 .channel_mode
= alc861vd_3stack_2ch_modes
,
15233 .input_mux
= &alc861vd_capture_source
,
15234 .unsol_event
= alc861vd_lenovo_unsol_event
,
15235 .init_hook
= alc861vd_lenovo_init_hook
,
15237 [ALC861VD_DALLAS
] = {
15238 .mixers
= { alc861vd_dallas_mixer
},
15239 .init_verbs
= { alc861vd_dallas_verbs
},
15240 .num_dacs
= ARRAY_SIZE(alc861vd_dac_nids
),
15241 .dac_nids
= alc861vd_dac_nids
,
15242 .num_channel_mode
= ARRAY_SIZE(alc861vd_3stack_2ch_modes
),
15243 .channel_mode
= alc861vd_3stack_2ch_modes
,
15244 .input_mux
= &alc861vd_dallas_capture_source
,
15245 .unsol_event
= alc_automute_amp_unsol_event
,
15246 .init_hook
= alc861vd_dallas_init_hook
,
15249 .mixers
= { alc861vd_hp_mixer
},
15250 .init_verbs
= { alc861vd_dallas_verbs
, alc861vd_eapd_verbs
},
15251 .num_dacs
= ARRAY_SIZE(alc861vd_dac_nids
),
15252 .dac_nids
= alc861vd_dac_nids
,
15253 .dig_out_nid
= ALC861VD_DIGOUT_NID
,
15254 .num_channel_mode
= ARRAY_SIZE(alc861vd_3stack_2ch_modes
),
15255 .channel_mode
= alc861vd_3stack_2ch_modes
,
15256 .input_mux
= &alc861vd_hp_capture_source
,
15257 .unsol_event
= alc_automute_amp_unsol_event
,
15258 .init_hook
= alc861vd_dallas_init_hook
,
15260 [ALC660VD_ASUS_V1S
] = {
15261 .mixers
= { alc861vd_lenovo_mixer
},
15262 .init_verbs
= { alc861vd_volume_init_verbs
,
15263 alc861vd_3stack_init_verbs
,
15264 alc861vd_eapd_verbs
,
15265 alc861vd_lenovo_unsol_verbs
},
15266 .num_dacs
= ARRAY_SIZE(alc660vd_dac_nids
),
15267 .dac_nids
= alc660vd_dac_nids
,
15268 .dig_out_nid
= ALC861VD_DIGOUT_NID
,
15269 .num_channel_mode
= ARRAY_SIZE(alc861vd_3stack_2ch_modes
),
15270 .channel_mode
= alc861vd_3stack_2ch_modes
,
15271 .input_mux
= &alc861vd_capture_source
,
15272 .unsol_event
= alc861vd_lenovo_unsol_event
,
15273 .init_hook
= alc861vd_lenovo_init_hook
,
15278 * BIOS auto configuration
15280 static void alc861vd_auto_set_output_and_unmute(struct hda_codec
*codec
,
15281 hda_nid_t nid
, int pin_type
, int dac_idx
)
15283 alc_set_pin_output(codec
, nid
, pin_type
);
15286 static void alc861vd_auto_init_multi_out(struct hda_codec
*codec
)
15288 struct alc_spec
*spec
= codec
->spec
;
15291 for (i
= 0; i
<= HDA_SIDE
; i
++) {
15292 hda_nid_t nid
= spec
->autocfg
.line_out_pins
[i
];
15293 int pin_type
= get_pin_type(spec
->autocfg
.line_out_type
);
15295 alc861vd_auto_set_output_and_unmute(codec
, nid
,
15301 static void alc861vd_auto_init_hp_out(struct hda_codec
*codec
)
15303 struct alc_spec
*spec
= codec
->spec
;
15306 pin
= spec
->autocfg
.hp_pins
[0];
15307 if (pin
) /* connect to front and use dac 0 */
15308 alc861vd_auto_set_output_and_unmute(codec
, pin
, PIN_HP
, 0);
15309 pin
= spec
->autocfg
.speaker_pins
[0];
15311 alc861vd_auto_set_output_and_unmute(codec
, pin
, PIN_OUT
, 0);
15314 #define alc861vd_is_input_pin(nid) alc880_is_input_pin(nid)
15315 #define ALC861VD_PIN_CD_NID ALC880_PIN_CD_NID
15317 static void alc861vd_auto_init_analog_input(struct hda_codec
*codec
)
15319 struct alc_spec
*spec
= codec
->spec
;
15322 for (i
= 0; i
< AUTO_PIN_LAST
; i
++) {
15323 hda_nid_t nid
= spec
->autocfg
.input_pins
[i
];
15324 if (alc861vd_is_input_pin(nid
)) {
15325 alc_set_input_pin(codec
, nid
, i
);
15326 if (nid
!= ALC861VD_PIN_CD_NID
&&
15327 (get_wcaps(codec
, nid
) & AC_WCAP_OUT_AMP
))
15328 snd_hda_codec_write(codec
, nid
, 0,
15329 AC_VERB_SET_AMP_GAIN_MUTE
,
15335 #define alc861vd_auto_init_input_src alc882_auto_init_input_src
15337 #define alc861vd_idx_to_mixer_vol(nid) ((nid) + 0x02)
15338 #define alc861vd_idx_to_mixer_switch(nid) ((nid) + 0x0c)
15340 /* add playback controls from the parsed DAC table */
15341 /* Based on ALC880 version. But ALC861VD has separate,
15342 * different NIDs for mute/unmute switch and volume control */
15343 static int alc861vd_auto_create_multi_out_ctls(struct alc_spec
*spec
,
15344 const struct auto_pin_cfg
*cfg
)
15347 static const char *chname
[4] = {"Front", "Surround", "CLFE", "Side"};
15348 hda_nid_t nid_v
, nid_s
;
15351 for (i
= 0; i
< cfg
->line_outs
; i
++) {
15352 if (!spec
->multiout
.dac_nids
[i
])
15354 nid_v
= alc861vd_idx_to_mixer_vol(
15356 spec
->multiout
.dac_nids
[i
]));
15357 nid_s
= alc861vd_idx_to_mixer_switch(
15359 spec
->multiout
.dac_nids
[i
]));
15363 err
= add_control(spec
, ALC_CTL_WIDGET_VOL
,
15364 "Center Playback Volume",
15365 HDA_COMPOSE_AMP_VAL(nid_v
, 1, 0,
15369 err
= add_control(spec
, ALC_CTL_WIDGET_VOL
,
15370 "LFE Playback Volume",
15371 HDA_COMPOSE_AMP_VAL(nid_v
, 2, 0,
15375 err
= add_control(spec
, ALC_CTL_BIND_MUTE
,
15376 "Center Playback Switch",
15377 HDA_COMPOSE_AMP_VAL(nid_s
, 1, 2,
15381 err
= add_control(spec
, ALC_CTL_BIND_MUTE
,
15382 "LFE Playback Switch",
15383 HDA_COMPOSE_AMP_VAL(nid_s
, 2, 2,
15388 sprintf(name
, "%s Playback Volume", chname
[i
]);
15389 err
= add_control(spec
, ALC_CTL_WIDGET_VOL
, name
,
15390 HDA_COMPOSE_AMP_VAL(nid_v
, 3, 0,
15394 sprintf(name
, "%s Playback Switch", chname
[i
]);
15395 err
= add_control(spec
, ALC_CTL_BIND_MUTE
, name
,
15396 HDA_COMPOSE_AMP_VAL(nid_s
, 3, 2,
15405 /* add playback controls for speaker and HP outputs */
15406 /* Based on ALC880 version. But ALC861VD has separate,
15407 * different NIDs for mute/unmute switch and volume control */
15408 static int alc861vd_auto_create_extra_out(struct alc_spec
*spec
,
15409 hda_nid_t pin
, const char *pfx
)
15411 hda_nid_t nid_v
, nid_s
;
15418 if (alc880_is_fixed_pin(pin
)) {
15419 nid_v
= alc880_idx_to_dac(alc880_fixed_pin_idx(pin
));
15420 /* specify the DAC as the extra output */
15421 if (!spec
->multiout
.hp_nid
)
15422 spec
->multiout
.hp_nid
= nid_v
;
15424 spec
->multiout
.extra_out_nid
[0] = nid_v
;
15425 /* control HP volume/switch on the output mixer amp */
15426 nid_v
= alc861vd_idx_to_mixer_vol(
15427 alc880_fixed_pin_idx(pin
));
15428 nid_s
= alc861vd_idx_to_mixer_switch(
15429 alc880_fixed_pin_idx(pin
));
15431 sprintf(name
, "%s Playback Volume", pfx
);
15432 err
= add_control(spec
, ALC_CTL_WIDGET_VOL
, name
,
15433 HDA_COMPOSE_AMP_VAL(nid_v
, 3, 0, HDA_OUTPUT
));
15436 sprintf(name
, "%s Playback Switch", pfx
);
15437 err
= add_control(spec
, ALC_CTL_BIND_MUTE
, name
,
15438 HDA_COMPOSE_AMP_VAL(nid_s
, 3, 2, HDA_INPUT
));
15441 } else if (alc880_is_multi_pin(pin
)) {
15442 /* set manual connection */
15443 /* we have only a switch on HP-out PIN */
15444 sprintf(name
, "%s Playback Switch", pfx
);
15445 err
= add_control(spec
, ALC_CTL_WIDGET_MUTE
, name
,
15446 HDA_COMPOSE_AMP_VAL(pin
, 3, 0, HDA_OUTPUT
));
15453 /* parse the BIOS configuration and set up the alc_spec
15454 * return 1 if successful, 0 if the proper config is not found,
15455 * or a negative error code
15456 * Based on ALC880 version - had to change it to override
15457 * alc880_auto_create_extra_out and alc880_auto_create_multi_out_ctls */
15458 static int alc861vd_parse_auto_config(struct hda_codec
*codec
)
15460 struct alc_spec
*spec
= codec
->spec
;
15462 static hda_nid_t alc861vd_ignore
[] = { 0x1d, 0 };
15464 err
= snd_hda_parse_pin_def_config(codec
, &spec
->autocfg
,
15468 if (!spec
->autocfg
.line_outs
)
15469 return 0; /* can't find valid BIOS pin config */
15471 err
= alc880_auto_fill_dac_nids(spec
, &spec
->autocfg
);
15474 err
= alc861vd_auto_create_multi_out_ctls(spec
, &spec
->autocfg
);
15477 err
= alc861vd_auto_create_extra_out(spec
,
15478 spec
->autocfg
.speaker_pins
[0],
15482 err
= alc861vd_auto_create_extra_out(spec
,
15483 spec
->autocfg
.hp_pins
[0],
15487 err
= alc880_auto_create_analog_input_ctls(spec
, &spec
->autocfg
);
15491 spec
->multiout
.max_channels
= spec
->multiout
.num_dacs
* 2;
15493 if (spec
->autocfg
.dig_outs
)
15494 spec
->multiout
.dig_out_nid
= ALC861VD_DIGOUT_NID
;
15496 if (spec
->kctls
.list
)
15497 add_mixer(spec
, spec
->kctls
.list
);
15499 add_verb(spec
, alc861vd_volume_init_verbs
);
15501 spec
->num_mux_defs
= 1;
15502 spec
->input_mux
= &spec
->private_imux
[0];
15504 err
= alc_auto_add_mic_boost(codec
);
15508 alc_ssid_check(codec
, 0x15, 0x1b, 0x14);
15513 /* additional initialization for auto-configuration model */
15514 static void alc861vd_auto_init(struct hda_codec
*codec
)
15516 struct alc_spec
*spec
= codec
->spec
;
15517 alc861vd_auto_init_multi_out(codec
);
15518 alc861vd_auto_init_hp_out(codec
);
15519 alc861vd_auto_init_analog_input(codec
);
15520 alc861vd_auto_init_input_src(codec
);
15521 if (spec
->unsol_event
)
15522 alc_inithook(codec
);
15525 static int patch_alc861vd(struct hda_codec
*codec
)
15527 struct alc_spec
*spec
;
15528 int err
, board_config
;
15530 spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
15534 codec
->spec
= spec
;
15536 board_config
= snd_hda_check_board_config(codec
, ALC861VD_MODEL_LAST
,
15540 if (board_config
< 0 || board_config
>= ALC861VD_MODEL_LAST
) {
15541 printk(KERN_INFO
"hda_codec: Unknown model for %s, "
15542 "trying auto-probe from BIOS...\n", codec
->chip_name
);
15543 board_config
= ALC861VD_AUTO
;
15546 if (board_config
== ALC861VD_AUTO
) {
15547 /* automatic parse from the BIOS config */
15548 err
= alc861vd_parse_auto_config(codec
);
15554 "hda_codec: Cannot set up configuration "
15555 "from BIOS. Using base mode...\n");
15556 board_config
= ALC861VD_3ST
;
15560 err
= snd_hda_attach_beep_device(codec
, 0x23);
15566 if (board_config
!= ALC861VD_AUTO
)
15567 setup_preset(spec
, &alc861vd_presets
[board_config
]);
15569 if (codec
->vendor_id
== 0x10ec0660) {
15570 /* always turn on EAPD */
15571 add_verb(spec
, alc660vd_eapd_verbs
);
15574 spec
->stream_analog_playback
= &alc861vd_pcm_analog_playback
;
15575 spec
->stream_analog_capture
= &alc861vd_pcm_analog_capture
;
15577 spec
->stream_digital_playback
= &alc861vd_pcm_digital_playback
;
15578 spec
->stream_digital_capture
= &alc861vd_pcm_digital_capture
;
15580 spec
->adc_nids
= alc861vd_adc_nids
;
15581 spec
->num_adc_nids
= ARRAY_SIZE(alc861vd_adc_nids
);
15582 spec
->capsrc_nids
= alc861vd_capsrc_nids
;
15584 set_capture_mixer(spec
);
15585 set_beep_amp(spec
, 0x0b, 0x05, HDA_INPUT
);
15587 spec
->vmaster_nid
= 0x02;
15589 codec
->patch_ops
= alc_patch_ops
;
15591 if (board_config
== ALC861VD_AUTO
)
15592 spec
->init_hook
= alc861vd_auto_init
;
15593 #ifdef CONFIG_SND_HDA_POWER_SAVE
15594 if (!spec
->loopback
.amplist
)
15595 spec
->loopback
.amplist
= alc861vd_loopbacks
;
15597 codec
->proc_widget_hook
= print_realtek_coef
;
15605 * ALC662 is almost identical with ALC880 but has cleaner and more flexible
15606 * configuration. Each pin widget can choose any input DACs and a mixer.
15607 * Each ADC is connected from a mixer of all inputs. This makes possible
15608 * 6-channel independent captures.
15610 * In addition, an independent DAC for the multi-playback (not used in this
15613 #define ALC662_DIGOUT_NID 0x06
15614 #define ALC662_DIGIN_NID 0x0a
15616 static hda_nid_t alc662_dac_nids
[4] = {
15617 /* front, rear, clfe, rear_surr */
15621 static hda_nid_t alc272_dac_nids
[2] = {
15625 static hda_nid_t alc662_adc_nids
[1] = {
15630 static hda_nid_t alc272_adc_nids
[1] = {
15635 static hda_nid_t alc662_capsrc_nids
[1] = { 0x22 };
15636 static hda_nid_t alc272_capsrc_nids
[1] = { 0x23 };
15640 /* FIXME: should be a matrix-type input source selection */
15641 static struct hda_input_mux alc662_capture_source
= {
15645 { "Front Mic", 0x1 },
15651 static struct hda_input_mux alc662_lenovo_101e_capture_source
= {
15659 static struct hda_input_mux alc662_eeepc_capture_source
= {
15667 static struct hda_input_mux alc663_capture_source
= {
15671 { "Front Mic", 0x1 },
15676 static struct hda_input_mux alc663_m51va_capture_source
= {
15679 { "Ext-Mic", 0x0 },
15684 #if 1 /* set to 0 for testing other input sources below */
15685 static struct hda_input_mux alc272_nc10_capture_source
= {
15688 { "Autoselect Mic", 0x0 },
15689 { "Internal Mic", 0x1 },
15693 static struct hda_input_mux alc272_nc10_capture_source
= {
15696 { "Autoselect Mic", 0x0 },
15697 { "Internal Mic", 0x1 },
15698 { "In-0x02", 0x2 },
15699 { "In-0x03", 0x3 },
15700 { "In-0x04", 0x4 },
15701 { "In-0x05", 0x5 },
15702 { "In-0x06", 0x6 },
15703 { "In-0x07", 0x7 },
15704 { "In-0x08", 0x8 },
15705 { "In-0x09", 0x9 },
15706 { "In-0x0a", 0x0a },
15707 { "In-0x0b", 0x0b },
15708 { "In-0x0c", 0x0c },
15709 { "In-0x0d", 0x0d },
15710 { "In-0x0e", 0x0e },
15711 { "In-0x0f", 0x0f },
15719 static struct hda_channel_mode alc662_3ST_2ch_modes
[1] = {
15726 static struct hda_verb alc662_3ST_ch2_init
[] = {
15727 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
15728 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
15729 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
15730 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
15737 static struct hda_verb alc662_3ST_ch6_init
[] = {
15738 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
15739 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
15740 { 0x18, AC_VERB_SET_CONNECT_SEL
, 0x02 },
15741 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
15742 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
15743 { 0x1a, AC_VERB_SET_CONNECT_SEL
, 0x01 },
15747 static struct hda_channel_mode alc662_3ST_6ch_modes
[2] = {
15748 { 2, alc662_3ST_ch2_init
},
15749 { 6, alc662_3ST_ch6_init
},
15755 static struct hda_verb alc662_sixstack_ch6_init
[] = {
15756 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x00 },
15757 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, 0x00 },
15758 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
15765 static struct hda_verb alc662_sixstack_ch8_init
[] = {
15766 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
15767 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
15768 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
15772 static struct hda_channel_mode alc662_5stack_modes
[2] = {
15773 { 2, alc662_sixstack_ch6_init
},
15774 { 6, alc662_sixstack_ch8_init
},
15777 /* Pin assignment: Front=0x14, Rear=0x15, CLFE=0x16, Side=0x17
15778 * Mic=0x18, Front Mic=0x19, Line-In=0x1a, HP=0x1b
15781 static struct snd_kcontrol_new alc662_base_mixer
[] = {
15782 /* output mixer control */
15783 HDA_CODEC_VOLUME("Front Playback Volume", 0x2, 0x0, HDA_OUTPUT
),
15784 HDA_CODEC_MUTE("Front Playback Switch", 0x0c, 0x0, HDA_INPUT
),
15785 HDA_CODEC_VOLUME("Surround Playback Volume", 0x3, 0x0, HDA_OUTPUT
),
15786 HDA_CODEC_MUTE("Surround Playback Switch", 0x0d, 0x0, HDA_INPUT
),
15787 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x04, 1, 0x0, HDA_OUTPUT
),
15788 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x04, 2, 0x0, HDA_OUTPUT
),
15789 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x0e, 1, 0x0, HDA_INPUT
),
15790 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 0x0, HDA_INPUT
),
15791 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
15793 /*Input mixer control */
15794 HDA_CODEC_VOLUME("CD Playback Volume", 0xb, 0x4, HDA_INPUT
),
15795 HDA_CODEC_MUTE("CD Playback Switch", 0xb, 0x4, HDA_INPUT
),
15796 HDA_CODEC_VOLUME("Line Playback Volume", 0xb, 0x02, HDA_INPUT
),
15797 HDA_CODEC_MUTE("Line Playback Switch", 0xb, 0x02, HDA_INPUT
),
15798 HDA_CODEC_VOLUME("Mic Playback Volume", 0xb, 0x0, HDA_INPUT
),
15799 HDA_CODEC_MUTE("Mic Playback Switch", 0xb, 0x0, HDA_INPUT
),
15800 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0xb, 0x01, HDA_INPUT
),
15801 HDA_CODEC_MUTE("Front Mic Playback Switch", 0xb, 0x01, HDA_INPUT
),
15805 static struct snd_kcontrol_new alc662_3ST_2ch_mixer
[] = {
15806 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
15807 HDA_CODEC_MUTE("Front Playback Switch", 0x0c, 0x0, HDA_INPUT
),
15808 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
15809 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
15810 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
15811 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
15812 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
15813 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
15814 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
15815 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
15816 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
15820 static struct snd_kcontrol_new alc662_3ST_6ch_mixer
[] = {
15821 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
15822 HDA_CODEC_MUTE("Front Playback Switch", 0x0c, 0x0, HDA_INPUT
),
15823 HDA_CODEC_VOLUME("Surround Playback Volume", 0x03, 0x0, HDA_OUTPUT
),
15824 HDA_CODEC_MUTE("Surround Playback Switch", 0x0d, 0x0, HDA_INPUT
),
15825 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x04, 1, 0x0, HDA_OUTPUT
),
15826 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x04, 2, 0x0, HDA_OUTPUT
),
15827 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x0e, 1, 0x0, HDA_INPUT
),
15828 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 0x0, HDA_INPUT
),
15829 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
15830 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT
),
15831 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT
),
15832 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
15833 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
15834 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
15835 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
15836 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
15837 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
15841 static struct snd_kcontrol_new alc662_lenovo_101e_mixer
[] = {
15842 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
15843 HDA_BIND_MUTE("Front Playback Switch", 0x02, 2, HDA_INPUT
),
15844 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x03, 0x0, HDA_OUTPUT
),
15845 HDA_BIND_MUTE("Speaker Playback Switch", 0x03, 2, HDA_INPUT
),
15846 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
15847 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
15848 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
15849 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
15850 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
15854 static struct snd_kcontrol_new alc662_eeepc_p701_mixer
[] = {
15855 HDA_CODEC_VOLUME("Master Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
15856 ALC262_HIPPO_MASTER_SWITCH
,
15858 HDA_CODEC_VOLUME("e-Mic Boost", 0x18, 0, HDA_INPUT
),
15859 HDA_CODEC_VOLUME("e-Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
15860 HDA_CODEC_MUTE("e-Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
15862 HDA_CODEC_VOLUME("i-Mic Boost", 0x19, 0, HDA_INPUT
),
15863 HDA_CODEC_VOLUME("i-Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
15864 HDA_CODEC_MUTE("i-Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
15868 static struct snd_kcontrol_new alc662_eeepc_ep20_mixer
[] = {
15869 ALC262_HIPPO_MASTER_SWITCH
,
15870 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
15871 HDA_CODEC_VOLUME("Surround Playback Volume", 0x03, 0x0, HDA_OUTPUT
),
15872 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x04, 1, 0x0, HDA_OUTPUT
),
15873 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x04, 2, 0x0, HDA_OUTPUT
),
15874 HDA_BIND_MUTE("MuteCtrl Playback Switch", 0x0c, 2, HDA_INPUT
),
15875 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
15876 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
15877 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
15878 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
15882 static struct hda_bind_ctls alc663_asus_bind_master_vol
= {
15883 .ops
= &snd_hda_bind_vol
,
15885 HDA_COMPOSE_AMP_VAL(0x02, 3, 0, HDA_OUTPUT
),
15886 HDA_COMPOSE_AMP_VAL(0x03, 3, 0, HDA_OUTPUT
),
15891 static struct hda_bind_ctls alc663_asus_one_bind_switch
= {
15892 .ops
= &snd_hda_bind_sw
,
15894 HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT
),
15895 HDA_COMPOSE_AMP_VAL(0x21, 3, 0, HDA_OUTPUT
),
15900 static struct snd_kcontrol_new alc663_m51va_mixer
[] = {
15901 HDA_BIND_VOL("Master Playback Volume", &alc663_asus_bind_master_vol
),
15902 HDA_BIND_SW("Master Playback Switch", &alc663_asus_one_bind_switch
),
15903 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
15904 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
15908 static struct hda_bind_ctls alc663_asus_tree_bind_switch
= {
15909 .ops
= &snd_hda_bind_sw
,
15911 HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT
),
15912 HDA_COMPOSE_AMP_VAL(0x15, 3, 0, HDA_OUTPUT
),
15913 HDA_COMPOSE_AMP_VAL(0x21, 3, 0, HDA_OUTPUT
),
15918 static struct snd_kcontrol_new alc663_two_hp_m1_mixer
[] = {
15919 HDA_BIND_VOL("Master Playback Volume", &alc663_asus_bind_master_vol
),
15920 HDA_BIND_SW("Master Playback Switch", &alc663_asus_tree_bind_switch
),
15921 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
15922 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
15923 HDA_CODEC_VOLUME("F-Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
15924 HDA_CODEC_MUTE("F-Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
15929 static struct hda_bind_ctls alc663_asus_four_bind_switch
= {
15930 .ops
= &snd_hda_bind_sw
,
15932 HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT
),
15933 HDA_COMPOSE_AMP_VAL(0x15, 3, 0, HDA_OUTPUT
),
15934 HDA_COMPOSE_AMP_VAL(0x1b, 3, 0, HDA_OUTPUT
),
15939 static struct snd_kcontrol_new alc663_two_hp_m2_mixer
[] = {
15940 HDA_BIND_VOL("Master Playback Volume", &alc663_asus_bind_master_vol
),
15941 HDA_BIND_SW("Master Playback Switch", &alc663_asus_four_bind_switch
),
15942 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
15943 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
15944 HDA_CODEC_VOLUME("F-Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
15945 HDA_CODEC_MUTE("F-Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
15949 static struct snd_kcontrol_new alc662_1bjd_mixer
[] = {
15950 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
15951 HDA_CODEC_MUTE("Speaker Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
15952 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT
),
15953 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
15954 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
15955 HDA_CODEC_VOLUME("F-Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
15956 HDA_CODEC_MUTE("F-Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
15960 static struct hda_bind_ctls alc663_asus_two_bind_master_vol
= {
15961 .ops
= &snd_hda_bind_vol
,
15963 HDA_COMPOSE_AMP_VAL(0x02, 3, 0, HDA_OUTPUT
),
15964 HDA_COMPOSE_AMP_VAL(0x04, 3, 0, HDA_OUTPUT
),
15969 static struct hda_bind_ctls alc663_asus_two_bind_switch
= {
15970 .ops
= &snd_hda_bind_sw
,
15972 HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT
),
15973 HDA_COMPOSE_AMP_VAL(0x16, 3, 0, HDA_OUTPUT
),
15978 static struct snd_kcontrol_new alc663_asus_21jd_clfe_mixer
[] = {
15979 HDA_BIND_VOL("Master Playback Volume",
15980 &alc663_asus_two_bind_master_vol
),
15981 HDA_BIND_SW("Master Playback Switch", &alc663_asus_two_bind_switch
),
15982 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x03, 0x0, HDA_OUTPUT
),
15983 HDA_CODEC_MUTE("Headphone Playback Switch", 0x21, 0x0, HDA_OUTPUT
),
15984 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
15985 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
15989 static struct snd_kcontrol_new alc663_asus_15jd_clfe_mixer
[] = {
15990 HDA_BIND_VOL("Master Playback Volume", &alc663_asus_bind_master_vol
),
15991 HDA_BIND_SW("Master Playback Switch", &alc663_asus_two_bind_switch
),
15992 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x03, 0x0, HDA_OUTPUT
),
15993 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
15994 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
15995 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
15999 static struct snd_kcontrol_new alc663_g71v_mixer
[] = {
16000 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
16001 HDA_CODEC_MUTE("Speaker Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
16002 HDA_CODEC_VOLUME("Front Playback Volume", 0x03, 0x0, HDA_OUTPUT
),
16003 HDA_CODEC_MUTE("Front Playback Switch", 0x15, 0x0, HDA_OUTPUT
),
16004 HDA_CODEC_MUTE("Headphone Playback Switch", 0x21, 0x0, HDA_OUTPUT
),
16006 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
16007 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
16008 HDA_CODEC_VOLUME("i-Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
16009 HDA_CODEC_MUTE("i-Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
16013 static struct snd_kcontrol_new alc663_g50v_mixer
[] = {
16014 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
16015 HDA_CODEC_MUTE("Speaker Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
16016 HDA_CODEC_MUTE("Headphone Playback Switch", 0x21, 0x0, HDA_OUTPUT
),
16018 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
16019 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
16020 HDA_CODEC_VOLUME("i-Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
16021 HDA_CODEC_MUTE("i-Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
16022 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT
),
16023 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT
),
16027 static struct snd_kcontrol_new alc662_chmode_mixer
[] = {
16029 .iface
= SNDRV_CTL_ELEM_IFACE_MIXER
,
16030 .name
= "Channel Mode",
16031 .info
= alc_ch_mode_info
,
16032 .get
= alc_ch_mode_get
,
16033 .put
= alc_ch_mode_put
,
16038 static struct hda_verb alc662_init_verbs
[] = {
16039 /* ADC: mute amp left and right */
16040 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
16041 {0x09, AC_VERB_SET_CONNECT_SEL
, 0x00},
16042 /* Front mixer: unmute input/output amp left and right (volume = 0) */
16044 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
16045 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
16046 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
16047 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
16048 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
16050 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
16051 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
16052 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
16053 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
16054 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
16055 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
16057 /* Front Pin: output 0 (0x0c) */
16058 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
16059 {0x14, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
16061 /* Rear Pin: output 1 (0x0d) */
16062 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
16063 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
16065 /* CLFE Pin: output 2 (0x0e) */
16066 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
16067 {0x16, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
16069 /* Mic (rear) pin: input vref at 80% */
16070 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
16071 {0x18, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
16072 /* Front Mic pin: input vref at 80% */
16073 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_VREF80
},
16074 {0x19, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
16075 /* Line In pin: input */
16076 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
16077 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_MUTE
},
16078 /* Line-2 In: Headphone output (output 0 - 0x0c) */
16079 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
16080 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
16081 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0x00},
16082 /* CD pin widget for input */
16083 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
16085 /* FIXME: use matrix-type input source selection */
16086 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
16088 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
16089 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
16091 /* always trun on EAPD */
16092 {0x14, AC_VERB_SET_EAPD_BTLENABLE
, 2},
16093 {0x15, AC_VERB_SET_EAPD_BTLENABLE
, 2},
16098 static struct hda_verb alc662_sue_init_verbs
[] = {
16099 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
|ALC880_FRONT_EVENT
},
16100 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
|ALC880_HP_EVENT
},
16104 static struct hda_verb alc662_eeepc_sue_init_verbs
[] = {
16105 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
16106 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
16110 /* Set Unsolicited Event*/
16111 static struct hda_verb alc662_eeepc_ep20_sue_init_verbs
[] = {
16112 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
},
16113 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
16118 * generic initialization of ADC, input mixers and output mixers
16120 static struct hda_verb alc662_auto_init_verbs
[] = {
16122 * Unmute ADC and set the default input to mic-in
16124 {0x09, AC_VERB_SET_CONNECT_SEL
, 0x00},
16125 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
16127 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
16129 * Note: PASD motherboards uses the Line In 2 as the input for front
16130 * panel mic (mic 2)
16132 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
16133 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
16134 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(1)},
16135 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(2)},
16136 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(3)},
16137 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(4)},
16140 * Set up output mixers (0x0c - 0x0f)
16142 /* set vol=0 to output mixers */
16143 {0x02, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
16144 {0x03, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
16145 {0x04, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_ZERO
},
16147 /* set up input amps for analog loopback */
16148 /* Amp Indices: DAC = 0, mixer = 1 */
16149 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
16150 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
16151 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
16152 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
16153 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
16154 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
16157 /* FIXME: use matrix-type input source selection */
16158 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
16160 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
16161 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
16165 /* additional verbs for ALC663 */
16166 static struct hda_verb alc663_auto_init_verbs
[] = {
16167 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(0)},
16168 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
16172 static struct hda_verb alc663_m51va_init_verbs
[] = {
16173 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
16174 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
16175 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
16176 {0x21, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
16177 {0x21, AC_VERB_SET_CONNECT_SEL
, 0x01}, /* Headphone */
16178 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
16179 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(9)},
16180 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
16181 {0x21, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
16185 static struct hda_verb alc663_21jd_amic_init_verbs
[] = {
16186 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
16187 {0x21, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
16188 {0x21, AC_VERB_SET_CONNECT_SEL
, 0x01}, /* Headphone */
16189 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
16190 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
16191 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
16192 {0x21, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
16196 static struct hda_verb alc662_1bjd_amic_init_verbs
[] = {
16197 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
16198 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
16199 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
16200 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* Headphone */
16201 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
16202 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
16203 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
16204 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
16208 static struct hda_verb alc663_15jd_amic_init_verbs
[] = {
16209 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
16210 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
16211 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x01}, /* Headphone */
16212 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
16213 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
16214 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
16215 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
16219 static struct hda_verb alc663_two_hp_amic_m1_init_verbs
[] = {
16220 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
16221 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
16222 {0x21, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
16223 {0x21, AC_VERB_SET_CONNECT_SEL
, 0x0}, /* Headphone */
16224 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
16225 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
16226 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x0}, /* Headphone */
16227 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
16228 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
16229 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
16230 {0x21, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
16231 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
16235 static struct hda_verb alc663_two_hp_amic_m2_init_verbs
[] = {
16236 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
16237 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
16238 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
16239 {0x1b, AC_VERB_SET_CONNECT_SEL
, 0x01}, /* Headphone */
16240 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
16241 {0x15, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
16242 {0x15, AC_VERB_SET_CONNECT_SEL
, 0x01}, /* Headphone */
16243 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
16244 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(1)},
16245 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
16246 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
16247 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
16251 static struct hda_verb alc663_g71v_init_verbs
[] = {
16252 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
16253 /* {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, */
16254 /* {0x15, AC_VERB_SET_CONNECT_SEL, 0x01}, */ /* Headphone */
16256 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
16257 {0x21, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
16258 {0x21, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* Headphone */
16260 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
|ALC880_FRONT_EVENT
},
16261 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
|ALC880_MIC_EVENT
},
16262 {0x21, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
|ALC880_HP_EVENT
},
16266 static struct hda_verb alc663_g50v_init_verbs
[] = {
16267 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
16268 {0x21, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
16269 {0x21, AC_VERB_SET_CONNECT_SEL
, 0x00}, /* Headphone */
16271 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
16272 {0x21, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
16276 static struct hda_verb alc662_ecs_init_verbs
[] = {
16277 {0x09, AC_VERB_SET_AMP_GAIN_MUTE
, 0x701f},
16278 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
16279 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
16280 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
16284 static struct hda_verb alc272_dell_zm1_init_verbs
[] = {
16285 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
16286 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
16287 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
16288 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
16289 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
16290 {0x21, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
16291 {0x21, AC_VERB_SET_CONNECT_SEL
, 0x01}, /* Headphone */
16292 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
16293 {0x22, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(9)},
16294 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
16295 {0x21, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
16299 static struct hda_verb alc272_dell_init_verbs
[] = {
16300 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
16301 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
16302 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
16303 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_IN
},
16304 {0x21, AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_HP
},
16305 {0x21, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_OUT_UNMUTE
},
16306 {0x21, AC_VERB_SET_CONNECT_SEL
, 0x01}, /* Headphone */
16307 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_MUTE(0)},
16308 {0x23, AC_VERB_SET_AMP_GAIN_MUTE
, AMP_IN_UNMUTE(9)},
16309 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_MIC_EVENT
},
16310 {0x21, AC_VERB_SET_UNSOLICITED_ENABLE
, AC_USRSP_EN
| ALC880_HP_EVENT
},
16314 static struct snd_kcontrol_new alc662_auto_capture_mixer
[] = {
16315 HDA_CODEC_VOLUME("Capture Volume", 0x09, 0x0, HDA_INPUT
),
16316 HDA_CODEC_MUTE("Capture Switch", 0x09, 0x0, HDA_INPUT
),
16320 static struct snd_kcontrol_new alc272_auto_capture_mixer
[] = {
16321 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT
),
16322 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT
),
16326 static void alc662_lenovo_101e_ispeaker_automute(struct hda_codec
*codec
)
16328 unsigned int present
;
16329 unsigned char bits
;
16331 present
= snd_hda_codec_read(codec
, 0x14, 0,
16332 AC_VERB_GET_PIN_SENSE
, 0) & 0x80000000;
16333 bits
= present
? HDA_AMP_MUTE
: 0;
16334 snd_hda_codec_amp_stereo(codec
, 0x15, HDA_OUTPUT
, 0,
16335 HDA_AMP_MUTE
, bits
);
16338 static void alc662_lenovo_101e_all_automute(struct hda_codec
*codec
)
16340 unsigned int present
;
16341 unsigned char bits
;
16343 present
= snd_hda_codec_read(codec
, 0x1b, 0,
16344 AC_VERB_GET_PIN_SENSE
, 0) & 0x80000000;
16345 bits
= present
? HDA_AMP_MUTE
: 0;
16346 snd_hda_codec_amp_stereo(codec
, 0x15, HDA_OUTPUT
, 0,
16347 HDA_AMP_MUTE
, bits
);
16348 snd_hda_codec_amp_stereo(codec
, 0x14, HDA_OUTPUT
, 0,
16349 HDA_AMP_MUTE
, bits
);
16352 static void alc662_lenovo_101e_unsol_event(struct hda_codec
*codec
,
16355 if ((res
>> 26) == ALC880_HP_EVENT
)
16356 alc662_lenovo_101e_all_automute(codec
);
16357 if ((res
>> 26) == ALC880_FRONT_EVENT
)
16358 alc662_lenovo_101e_ispeaker_automute(codec
);
16361 static void alc662_eeepc_mic_automute(struct hda_codec
*codec
)
16363 unsigned int present
;
16365 present
= snd_hda_codec_read(codec
, 0x18, 0,
16366 AC_VERB_GET_PIN_SENSE
, 0) & 0x80000000;
16367 snd_hda_codec_write(codec
, 0x22, 0, AC_VERB_SET_AMP_GAIN_MUTE
,
16368 0x7000 | (0x00 << 8) | (present
? 0 : 0x80));
16369 snd_hda_codec_write(codec
, 0x23, 0, AC_VERB_SET_AMP_GAIN_MUTE
,
16370 0x7000 | (0x00 << 8) | (present
? 0 : 0x80));
16371 snd_hda_codec_write(codec
, 0x22, 0, AC_VERB_SET_AMP_GAIN_MUTE
,
16372 0x7000 | (0x01 << 8) | (present
? 0x80 : 0));
16373 snd_hda_codec_write(codec
, 0x23, 0, AC_VERB_SET_AMP_GAIN_MUTE
,
16374 0x7000 | (0x01 << 8) | (present
? 0x80 : 0));
16377 /* unsolicited event for HP jack sensing */
16378 static void alc662_eeepc_unsol_event(struct hda_codec
*codec
,
16381 if ((res
>> 26) == ALC880_MIC_EVENT
)
16382 alc662_eeepc_mic_automute(codec
);
16384 alc262_hippo_unsol_event(codec
, res
);
16387 static void alc662_eeepc_inithook(struct hda_codec
*codec
)
16389 alc262_hippo1_init_hook(codec
);
16390 alc662_eeepc_mic_automute(codec
);
16393 static void alc662_eeepc_ep20_inithook(struct hda_codec
*codec
)
16395 struct alc_spec
*spec
= codec
->spec
;
16397 spec
->autocfg
.hp_pins
[0] = 0x14;
16398 spec
->autocfg
.speaker_pins
[0] = 0x1b;
16399 alc262_hippo_master_update(codec
);
16402 static void alc663_m51va_speaker_automute(struct hda_codec
*codec
)
16404 unsigned int present
;
16405 unsigned char bits
;
16407 present
= snd_hda_codec_read(codec
, 0x21, 0,
16408 AC_VERB_GET_PIN_SENSE
, 0)
16409 & AC_PINSENSE_PRESENCE
;
16410 bits
= present
? HDA_AMP_MUTE
: 0;
16411 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 0,
16412 AMP_IN_MUTE(0), bits
);
16413 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 1,
16414 AMP_IN_MUTE(0), bits
);
16417 static void alc663_21jd_two_speaker_automute(struct hda_codec
*codec
)
16419 unsigned int present
;
16420 unsigned char bits
;
16422 present
= snd_hda_codec_read(codec
, 0x21, 0,
16423 AC_VERB_GET_PIN_SENSE
, 0)
16424 & AC_PINSENSE_PRESENCE
;
16425 bits
= present
? HDA_AMP_MUTE
: 0;
16426 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 0,
16427 AMP_IN_MUTE(0), bits
);
16428 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 1,
16429 AMP_IN_MUTE(0), bits
);
16430 snd_hda_codec_amp_stereo(codec
, 0x0e, HDA_INPUT
, 0,
16431 AMP_IN_MUTE(0), bits
);
16432 snd_hda_codec_amp_stereo(codec
, 0x0e, HDA_INPUT
, 1,
16433 AMP_IN_MUTE(0), bits
);
16436 static void alc663_15jd_two_speaker_automute(struct hda_codec
*codec
)
16438 unsigned int present
;
16439 unsigned char bits
;
16441 present
= snd_hda_codec_read(codec
, 0x15, 0,
16442 AC_VERB_GET_PIN_SENSE
, 0)
16443 & AC_PINSENSE_PRESENCE
;
16444 bits
= present
? HDA_AMP_MUTE
: 0;
16445 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 0,
16446 AMP_IN_MUTE(0), bits
);
16447 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 1,
16448 AMP_IN_MUTE(0), bits
);
16449 snd_hda_codec_amp_stereo(codec
, 0x0e, HDA_INPUT
, 0,
16450 AMP_IN_MUTE(0), bits
);
16451 snd_hda_codec_amp_stereo(codec
, 0x0e, HDA_INPUT
, 1,
16452 AMP_IN_MUTE(0), bits
);
16455 static void alc662_f5z_speaker_automute(struct hda_codec
*codec
)
16457 unsigned int present
;
16458 unsigned char bits
;
16460 present
= snd_hda_codec_read(codec
, 0x1b, 0,
16461 AC_VERB_GET_PIN_SENSE
, 0)
16462 & AC_PINSENSE_PRESENCE
;
16463 bits
= present
? 0 : PIN_OUT
;
16464 snd_hda_codec_write(codec
, 0x14, 0,
16465 AC_VERB_SET_PIN_WIDGET_CONTROL
, bits
);
16468 static void alc663_two_hp_m1_speaker_automute(struct hda_codec
*codec
)
16470 unsigned int present1
, present2
;
16472 present1
= snd_hda_codec_read(codec
, 0x21, 0,
16473 AC_VERB_GET_PIN_SENSE
, 0)
16474 & AC_PINSENSE_PRESENCE
;
16475 present2
= snd_hda_codec_read(codec
, 0x15, 0,
16476 AC_VERB_GET_PIN_SENSE
, 0)
16477 & AC_PINSENSE_PRESENCE
;
16479 if (present1
|| present2
) {
16480 snd_hda_codec_write_cache(codec
, 0x14, 0,
16481 AC_VERB_SET_PIN_WIDGET_CONTROL
, 0);
16483 snd_hda_codec_write_cache(codec
, 0x14, 0,
16484 AC_VERB_SET_PIN_WIDGET_CONTROL
, PIN_OUT
);
16488 static void alc663_two_hp_m2_speaker_automute(struct hda_codec
*codec
)
16490 unsigned int present1
, present2
;
16492 present1
= snd_hda_codec_read(codec
, 0x1b, 0,
16493 AC_VERB_GET_PIN_SENSE
, 0)
16494 & AC_PINSENSE_PRESENCE
;
16495 present2
= snd_hda_codec_read(codec
, 0x15, 0,
16496 AC_VERB_GET_PIN_SENSE
, 0)
16497 & AC_PINSENSE_PRESENCE
;
16499 if (present1
|| present2
) {
16500 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 0,
16501 AMP_IN_MUTE(0), AMP_IN_MUTE(0));
16502 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 1,
16503 AMP_IN_MUTE(0), AMP_IN_MUTE(0));
16505 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 0,
16506 AMP_IN_MUTE(0), 0);
16507 snd_hda_codec_amp_stereo(codec
, 0x0c, HDA_INPUT
, 1,
16508 AMP_IN_MUTE(0), 0);
16512 static void alc663_m51va_mic_automute(struct hda_codec
*codec
)
16514 unsigned int present
;
16516 present
= snd_hda_codec_read(codec
, 0x18, 0,
16517 AC_VERB_GET_PIN_SENSE
, 0)
16518 & AC_PINSENSE_PRESENCE
;
16519 snd_hda_codec_write_cache(codec
, 0x22, 0, AC_VERB_SET_AMP_GAIN_MUTE
,
16520 0x7000 | (0x00 << 8) | (present
? 0 : 0x80));
16521 snd_hda_codec_write_cache(codec
, 0x23, 0, AC_VERB_SET_AMP_GAIN_MUTE
,
16522 0x7000 | (0x00 << 8) | (present
? 0 : 0x80));
16523 snd_hda_codec_write_cache(codec
, 0x22, 0, AC_VERB_SET_AMP_GAIN_MUTE
,
16524 0x7000 | (0x09 << 8) | (present
? 0x80 : 0));
16525 snd_hda_codec_write_cache(codec
, 0x23, 0, AC_VERB_SET_AMP_GAIN_MUTE
,
16526 0x7000 | (0x09 << 8) | (present
? 0x80 : 0));
16529 static void alc663_m51va_unsol_event(struct hda_codec
*codec
,
16532 switch (res
>> 26) {
16533 case ALC880_HP_EVENT
:
16534 alc663_m51va_speaker_automute(codec
);
16536 case ALC880_MIC_EVENT
:
16537 alc663_m51va_mic_automute(codec
);
16542 static void alc663_m51va_inithook(struct hda_codec
*codec
)
16544 alc663_m51va_speaker_automute(codec
);
16545 alc663_m51va_mic_automute(codec
);
16548 /* ***************** Mode1 ******************************/
16549 static void alc663_mode1_unsol_event(struct hda_codec
*codec
,
16552 switch (res
>> 26) {
16553 case ALC880_HP_EVENT
:
16554 alc663_m51va_speaker_automute(codec
);
16556 case ALC880_MIC_EVENT
:
16557 alc662_eeepc_mic_automute(codec
);
16562 static void alc663_mode1_inithook(struct hda_codec
*codec
)
16564 alc663_m51va_speaker_automute(codec
);
16565 alc662_eeepc_mic_automute(codec
);
16567 /* ***************** Mode2 ******************************/
16568 static void alc662_mode2_unsol_event(struct hda_codec
*codec
,
16571 switch (res
>> 26) {
16572 case ALC880_HP_EVENT
:
16573 alc662_f5z_speaker_automute(codec
);
16575 case ALC880_MIC_EVENT
:
16576 alc662_eeepc_mic_automute(codec
);
16581 static void alc662_mode2_inithook(struct hda_codec
*codec
)
16583 alc662_f5z_speaker_automute(codec
);
16584 alc662_eeepc_mic_automute(codec
);
16586 /* ***************** Mode3 ******************************/
16587 static void alc663_mode3_unsol_event(struct hda_codec
*codec
,
16590 switch (res
>> 26) {
16591 case ALC880_HP_EVENT
:
16592 alc663_two_hp_m1_speaker_automute(codec
);
16594 case ALC880_MIC_EVENT
:
16595 alc662_eeepc_mic_automute(codec
);
16600 static void alc663_mode3_inithook(struct hda_codec
*codec
)
16602 alc663_two_hp_m1_speaker_automute(codec
);
16603 alc662_eeepc_mic_automute(codec
);
16605 /* ***************** Mode4 ******************************/
16606 static void alc663_mode4_unsol_event(struct hda_codec
*codec
,
16609 switch (res
>> 26) {
16610 case ALC880_HP_EVENT
:
16611 alc663_21jd_two_speaker_automute(codec
);
16613 case ALC880_MIC_EVENT
:
16614 alc662_eeepc_mic_automute(codec
);
16619 static void alc663_mode4_inithook(struct hda_codec
*codec
)
16621 alc663_21jd_two_speaker_automute(codec
);
16622 alc662_eeepc_mic_automute(codec
);
16624 /* ***************** Mode5 ******************************/
16625 static void alc663_mode5_unsol_event(struct hda_codec
*codec
,
16628 switch (res
>> 26) {
16629 case ALC880_HP_EVENT
:
16630 alc663_15jd_two_speaker_automute(codec
);
16632 case ALC880_MIC_EVENT
:
16633 alc662_eeepc_mic_automute(codec
);
16638 static void alc663_mode5_inithook(struct hda_codec
*codec
)
16640 alc663_15jd_two_speaker_automute(codec
);
16641 alc662_eeepc_mic_automute(codec
);
16643 /* ***************** Mode6 ******************************/
16644 static void alc663_mode6_unsol_event(struct hda_codec
*codec
,
16647 switch (res
>> 26) {
16648 case ALC880_HP_EVENT
:
16649 alc663_two_hp_m2_speaker_automute(codec
);
16651 case ALC880_MIC_EVENT
:
16652 alc662_eeepc_mic_automute(codec
);
16657 static void alc663_mode6_inithook(struct hda_codec
*codec
)
16659 alc663_two_hp_m2_speaker_automute(codec
);
16660 alc662_eeepc_mic_automute(codec
);
16663 static void alc663_g71v_hp_automute(struct hda_codec
*codec
)
16665 unsigned int present
;
16666 unsigned char bits
;
16668 present
= snd_hda_codec_read(codec
, 0x21, 0,
16669 AC_VERB_GET_PIN_SENSE
, 0)
16670 & AC_PINSENSE_PRESENCE
;
16671 bits
= present
? HDA_AMP_MUTE
: 0;
16672 snd_hda_codec_amp_stereo(codec
, 0x15, HDA_OUTPUT
, 0,
16673 HDA_AMP_MUTE
, bits
);
16674 snd_hda_codec_amp_stereo(codec
, 0x14, HDA_OUTPUT
, 0,
16675 HDA_AMP_MUTE
, bits
);
16678 static void alc663_g71v_front_automute(struct hda_codec
*codec
)
16680 unsigned int present
;
16681 unsigned char bits
;
16683 present
= snd_hda_codec_read(codec
, 0x15, 0,
16684 AC_VERB_GET_PIN_SENSE
, 0)
16685 & AC_PINSENSE_PRESENCE
;
16686 bits
= present
? HDA_AMP_MUTE
: 0;
16687 snd_hda_codec_amp_stereo(codec
, 0x14, HDA_OUTPUT
, 0,
16688 HDA_AMP_MUTE
, bits
);
16691 static void alc663_g71v_unsol_event(struct hda_codec
*codec
,
16694 switch (res
>> 26) {
16695 case ALC880_HP_EVENT
:
16696 alc663_g71v_hp_automute(codec
);
16698 case ALC880_FRONT_EVENT
:
16699 alc663_g71v_front_automute(codec
);
16701 case ALC880_MIC_EVENT
:
16702 alc662_eeepc_mic_automute(codec
);
16707 static void alc663_g71v_inithook(struct hda_codec
*codec
)
16709 alc663_g71v_front_automute(codec
);
16710 alc663_g71v_hp_automute(codec
);
16711 alc662_eeepc_mic_automute(codec
);
16714 static void alc663_g50v_unsol_event(struct hda_codec
*codec
,
16717 switch (res
>> 26) {
16718 case ALC880_HP_EVENT
:
16719 alc663_m51va_speaker_automute(codec
);
16721 case ALC880_MIC_EVENT
:
16722 alc662_eeepc_mic_automute(codec
);
16727 static void alc663_g50v_inithook(struct hda_codec
*codec
)
16729 alc663_m51va_speaker_automute(codec
);
16730 alc662_eeepc_mic_automute(codec
);
16733 static struct snd_kcontrol_new alc662_ecs_mixer
[] = {
16734 HDA_CODEC_VOLUME("Master Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
16735 ALC262_HIPPO_MASTER_SWITCH
,
16737 HDA_CODEC_VOLUME("e-Mic/LineIn Boost", 0x18, 0, HDA_INPUT
),
16738 HDA_CODEC_VOLUME("e-Mic/LineIn Playback Volume", 0x0b, 0x0, HDA_INPUT
),
16739 HDA_CODEC_MUTE("e-Mic/LineIn Playback Switch", 0x0b, 0x0, HDA_INPUT
),
16741 HDA_CODEC_VOLUME("i-Mic Boost", 0x19, 0, HDA_INPUT
),
16742 HDA_CODEC_VOLUME("i-Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
16743 HDA_CODEC_MUTE("i-Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
16747 static struct snd_kcontrol_new alc272_nc10_mixer
[] = {
16748 /* Master Playback automatically created from Speaker and Headphone */
16749 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x02, 0x0, HDA_OUTPUT
),
16750 HDA_CODEC_MUTE("Speaker Playback Switch", 0x14, 0x0, HDA_OUTPUT
),
16751 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x03, 0x0, HDA_OUTPUT
),
16752 HDA_CODEC_MUTE("Headphone Playback Switch", 0x21, 0x0, HDA_OUTPUT
),
16754 HDA_CODEC_VOLUME("Ext Mic Playback Volume", 0x0b, 0x0, HDA_INPUT
),
16755 HDA_CODEC_MUTE("Ext Mic Playback Switch", 0x0b, 0x0, HDA_INPUT
),
16756 HDA_CODEC_VOLUME("Ext Mic Boost", 0x18, 0, HDA_INPUT
),
16758 HDA_CODEC_VOLUME("Int Mic Playback Volume", 0x0b, 0x1, HDA_INPUT
),
16759 HDA_CODEC_MUTE("Int Mic Playback Switch", 0x0b, 0x1, HDA_INPUT
),
16760 HDA_CODEC_VOLUME("Int Mic Boost", 0x19, 0, HDA_INPUT
),
16764 #ifdef CONFIG_SND_HDA_POWER_SAVE
16765 #define alc662_loopbacks alc880_loopbacks
16769 /* pcm configuration: identical with ALC880 */
16770 #define alc662_pcm_analog_playback alc880_pcm_analog_playback
16771 #define alc662_pcm_analog_capture alc880_pcm_analog_capture
16772 #define alc662_pcm_digital_playback alc880_pcm_digital_playback
16773 #define alc662_pcm_digital_capture alc880_pcm_digital_capture
16776 * configuration and preset
16778 static const char *alc662_models
[ALC662_MODEL_LAST
] = {
16779 [ALC662_3ST_2ch_DIG
] = "3stack-dig",
16780 [ALC662_3ST_6ch_DIG
] = "3stack-6ch-dig",
16781 [ALC662_3ST_6ch
] = "3stack-6ch",
16782 [ALC662_5ST_DIG
] = "6stack-dig",
16783 [ALC662_LENOVO_101E
] = "lenovo-101e",
16784 [ALC662_ASUS_EEEPC_P701
] = "eeepc-p701",
16785 [ALC662_ASUS_EEEPC_EP20
] = "eeepc-ep20",
16786 [ALC662_ECS
] = "ecs",
16787 [ALC663_ASUS_M51VA
] = "m51va",
16788 [ALC663_ASUS_G71V
] = "g71v",
16789 [ALC663_ASUS_H13
] = "h13",
16790 [ALC663_ASUS_G50V
] = "g50v",
16791 [ALC663_ASUS_MODE1
] = "asus-mode1",
16792 [ALC662_ASUS_MODE2
] = "asus-mode2",
16793 [ALC663_ASUS_MODE3
] = "asus-mode3",
16794 [ALC663_ASUS_MODE4
] = "asus-mode4",
16795 [ALC663_ASUS_MODE5
] = "asus-mode5",
16796 [ALC663_ASUS_MODE6
] = "asus-mode6",
16797 [ALC272_DELL
] = "dell",
16798 [ALC272_DELL_ZM1
] = "dell-zm1",
16799 [ALC272_SAMSUNG_NC10
] = "samsung-nc10",
16800 [ALC662_AUTO
] = "auto",
16803 static struct snd_pci_quirk alc662_cfg_tbl
[] = {
16804 SND_PCI_QUIRK(0x1019, 0x9087, "ECS", ALC662_ECS
),
16805 SND_PCI_QUIRK(0x1028, 0x02d6, "DELL", ALC272_DELL
),
16806 SND_PCI_QUIRK(0x1028, 0x02f4, "DELL ZM1", ALC272_DELL_ZM1
),
16807 SND_PCI_QUIRK(0x1043, 0x1000, "ASUS N50Vm", ALC663_ASUS_MODE1
),
16808 SND_PCI_QUIRK(0x1043, 0x1092, "ASUS NB", ALC663_ASUS_MODE3
),
16809 SND_PCI_QUIRK(0x1043, 0x11c3, "ASUS M70V", ALC663_ASUS_MODE3
),
16810 SND_PCI_QUIRK(0x1043, 0x11d3, "ASUS NB", ALC663_ASUS_MODE1
),
16811 SND_PCI_QUIRK(0x1043, 0x11f3, "ASUS NB", ALC662_ASUS_MODE2
),
16812 SND_PCI_QUIRK(0x1043, 0x1203, "ASUS NB", ALC663_ASUS_MODE1
),
16813 SND_PCI_QUIRK(0x1043, 0x1339, "ASUS NB", ALC662_ASUS_MODE2
),
16814 SND_PCI_QUIRK(0x1043, 0x16c3, "ASUS NB", ALC662_ASUS_MODE2
),
16815 SND_PCI_QUIRK(0x1043, 0x1753, "ASUS NB", ALC662_ASUS_MODE2
),
16816 SND_PCI_QUIRK(0x1043, 0x1763, "ASUS NB", ALC663_ASUS_MODE6
),
16817 SND_PCI_QUIRK(0x1043, 0x1765, "ASUS NB", ALC663_ASUS_MODE6
),
16818 SND_PCI_QUIRK(0x1043, 0x1783, "ASUS NB", ALC662_ASUS_MODE2
),
16819 SND_PCI_QUIRK(0x1043, 0x17b3, "ASUS F70SL", ALC663_ASUS_MODE3
),
16820 SND_PCI_QUIRK(0x1043, 0x17c3, "ASUS UX20", ALC663_ASUS_M51VA
),
16821 SND_PCI_QUIRK(0x1043, 0x17f3, "ASUS X58LE", ALC662_ASUS_MODE2
),
16822 SND_PCI_QUIRK(0x1043, 0x1813, "ASUS NB", ALC662_ASUS_MODE2
),
16823 SND_PCI_QUIRK(0x1043, 0x1823, "ASUS NB", ALC663_ASUS_MODE5
),
16824 SND_PCI_QUIRK(0x1043, 0x1833, "ASUS NB", ALC663_ASUS_MODE6
),
16825 SND_PCI_QUIRK(0x1043, 0x1843, "ASUS NB", ALC662_ASUS_MODE2
),
16826 SND_PCI_QUIRK(0x1043, 0x1853, "ASUS F50Z", ALC663_ASUS_MODE1
),
16827 SND_PCI_QUIRK(0x1043, 0x1864, "ASUS NB", ALC662_ASUS_MODE2
),
16828 SND_PCI_QUIRK(0x1043, 0x1876, "ASUS NB", ALC662_ASUS_MODE2
),
16829 SND_PCI_QUIRK(0x1043, 0x1878, "ASUS M51VA", ALC663_ASUS_M51VA
),
16830 /*SND_PCI_QUIRK(0x1043, 0x1878, "ASUS M50Vr", ALC663_ASUS_MODE1),*/
16831 SND_PCI_QUIRK(0x1043, 0x1893, "ASUS M50Vm", ALC663_ASUS_MODE3
),
16832 SND_PCI_QUIRK(0x1043, 0x1894, "ASUS X55", ALC663_ASUS_MODE3
),
16833 SND_PCI_QUIRK(0x1043, 0x18b3, "ASUS N80Vc", ALC663_ASUS_MODE1
),
16834 SND_PCI_QUIRK(0x1043, 0x18d3, "ASUS N81Te", ALC663_ASUS_MODE1
),
16835 SND_PCI_QUIRK(0x1043, 0x18f3, "ASUS N505Tp", ALC663_ASUS_MODE1
),
16836 SND_PCI_QUIRK(0x1043, 0x1903, "ASUS F5GL", ALC663_ASUS_MODE1
),
16837 SND_PCI_QUIRK(0x1043, 0x1913, "ASUS NB", ALC662_ASUS_MODE2
),
16838 SND_PCI_QUIRK(0x1043, 0x1933, "ASUS F80Q", ALC662_ASUS_MODE2
),
16839 SND_PCI_QUIRK(0x1043, 0x1943, "ASUS Vx3V", ALC663_ASUS_MODE1
),
16840 SND_PCI_QUIRK(0x1043, 0x1953, "ASUS NB", ALC663_ASUS_MODE1
),
16841 SND_PCI_QUIRK(0x1043, 0x1963, "ASUS X71C", ALC663_ASUS_MODE3
),
16842 SND_PCI_QUIRK(0x1043, 0x1983, "ASUS N5051A", ALC663_ASUS_MODE1
),
16843 SND_PCI_QUIRK(0x1043, 0x1993, "ASUS N20", ALC663_ASUS_MODE1
),
16844 SND_PCI_QUIRK(0x1043, 0x19a3, "ASUS G50V", ALC663_ASUS_G50V
),
16845 /*SND_PCI_QUIRK(0x1043, 0x19a3, "ASUS NB", ALC663_ASUS_MODE1),*/
16846 SND_PCI_QUIRK(0x1043, 0x19b3, "ASUS F7Z", ALC663_ASUS_MODE1
),
16847 SND_PCI_QUIRK(0x1043, 0x19c3, "ASUS F5Z/F6x", ALC662_ASUS_MODE2
),
16848 SND_PCI_QUIRK(0x1043, 0x19d3, "ASUS NB", ALC663_ASUS_M51VA
),
16849 SND_PCI_QUIRK(0x1043, 0x19e3, "ASUS NB", ALC663_ASUS_MODE1
),
16850 SND_PCI_QUIRK(0x1043, 0x19f3, "ASUS NB", ALC663_ASUS_MODE4
),
16851 SND_PCI_QUIRK(0x1043, 0x8290, "ASUS P5GC-MX", ALC662_3ST_6ch_DIG
),
16852 SND_PCI_QUIRK(0x1043, 0x82a1, "ASUS Eeepc", ALC662_ASUS_EEEPC_P701
),
16853 SND_PCI_QUIRK(0x1043, 0x82d1, "ASUS Eeepc EP20", ALC662_ASUS_EEEPC_EP20
),
16854 SND_PCI_QUIRK(0x105b, 0x0cd6, "Foxconn", ALC662_ECS
),
16855 SND_PCI_QUIRK(0x105b, 0x0d47, "Foxconn 45CMX/45GMX/45CMX-K",
16856 ALC662_3ST_6ch_DIG
),
16857 SND_PCI_QUIRK(0x144d, 0xca00, "Samsung NC10", ALC272_SAMSUNG_NC10
),
16858 SND_PCI_QUIRK(0x1458, 0xa002, "Gigabyte 945GCM-S2L",
16859 ALC662_3ST_6ch_DIG
),
16860 SND_PCI_QUIRK(0x1565, 0x820f, "Biostar TA780G M2+", ALC662_3ST_6ch_DIG
),
16861 SND_PCI_QUIRK(0x1631, 0xc10c, "PB RS65", ALC663_ASUS_M51VA
),
16862 SND_PCI_QUIRK(0x17aa, 0x101e, "Lenovo", ALC662_LENOVO_101E
),
16863 SND_PCI_QUIRK(0x1849, 0x3662, "ASROCK K10N78FullHD-hSLI R3.0",
16864 ALC662_3ST_6ch_DIG
),
16865 SND_PCI_QUIRK_MASK(0x1854, 0xf000, 0x2000, "ASUS H13-200x",
16870 static struct alc_config_preset alc662_presets
[] = {
16871 [ALC662_3ST_2ch_DIG
] = {
16872 .mixers
= { alc662_3ST_2ch_mixer
},
16873 .init_verbs
= { alc662_init_verbs
},
16874 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
16875 .dac_nids
= alc662_dac_nids
,
16876 .dig_out_nid
= ALC662_DIGOUT_NID
,
16877 .dig_in_nid
= ALC662_DIGIN_NID
,
16878 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
16879 .channel_mode
= alc662_3ST_2ch_modes
,
16880 .input_mux
= &alc662_capture_source
,
16882 [ALC662_3ST_6ch_DIG
] = {
16883 .mixers
= { alc662_3ST_6ch_mixer
, alc662_chmode_mixer
},
16884 .init_verbs
= { alc662_init_verbs
},
16885 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
16886 .dac_nids
= alc662_dac_nids
,
16887 .dig_out_nid
= ALC662_DIGOUT_NID
,
16888 .dig_in_nid
= ALC662_DIGIN_NID
,
16889 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_6ch_modes
),
16890 .channel_mode
= alc662_3ST_6ch_modes
,
16892 .input_mux
= &alc662_capture_source
,
16894 [ALC662_3ST_6ch
] = {
16895 .mixers
= { alc662_3ST_6ch_mixer
, alc662_chmode_mixer
},
16896 .init_verbs
= { alc662_init_verbs
},
16897 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
16898 .dac_nids
= alc662_dac_nids
,
16899 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_6ch_modes
),
16900 .channel_mode
= alc662_3ST_6ch_modes
,
16902 .input_mux
= &alc662_capture_source
,
16904 [ALC662_5ST_DIG
] = {
16905 .mixers
= { alc662_base_mixer
, alc662_chmode_mixer
},
16906 .init_verbs
= { alc662_init_verbs
},
16907 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
16908 .dac_nids
= alc662_dac_nids
,
16909 .dig_out_nid
= ALC662_DIGOUT_NID
,
16910 .dig_in_nid
= ALC662_DIGIN_NID
,
16911 .num_channel_mode
= ARRAY_SIZE(alc662_5stack_modes
),
16912 .channel_mode
= alc662_5stack_modes
,
16913 .input_mux
= &alc662_capture_source
,
16915 [ALC662_LENOVO_101E
] = {
16916 .mixers
= { alc662_lenovo_101e_mixer
},
16917 .init_verbs
= { alc662_init_verbs
, alc662_sue_init_verbs
},
16918 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
16919 .dac_nids
= alc662_dac_nids
,
16920 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
16921 .channel_mode
= alc662_3ST_2ch_modes
,
16922 .input_mux
= &alc662_lenovo_101e_capture_source
,
16923 .unsol_event
= alc662_lenovo_101e_unsol_event
,
16924 .init_hook
= alc662_lenovo_101e_all_automute
,
16926 [ALC662_ASUS_EEEPC_P701
] = {
16927 .mixers
= { alc662_eeepc_p701_mixer
},
16928 .init_verbs
= { alc662_init_verbs
,
16929 alc662_eeepc_sue_init_verbs
},
16930 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
16931 .dac_nids
= alc662_dac_nids
,
16932 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
16933 .channel_mode
= alc662_3ST_2ch_modes
,
16934 .input_mux
= &alc662_eeepc_capture_source
,
16935 .unsol_event
= alc662_eeepc_unsol_event
,
16936 .init_hook
= alc662_eeepc_inithook
,
16938 [ALC662_ASUS_EEEPC_EP20
] = {
16939 .mixers
= { alc662_eeepc_ep20_mixer
,
16940 alc662_chmode_mixer
},
16941 .init_verbs
= { alc662_init_verbs
,
16942 alc662_eeepc_ep20_sue_init_verbs
},
16943 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
16944 .dac_nids
= alc662_dac_nids
,
16945 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_6ch_modes
),
16946 .channel_mode
= alc662_3ST_6ch_modes
,
16947 .input_mux
= &alc662_lenovo_101e_capture_source
,
16948 .unsol_event
= alc662_eeepc_unsol_event
,
16949 .init_hook
= alc662_eeepc_ep20_inithook
,
16952 .mixers
= { alc662_ecs_mixer
},
16953 .init_verbs
= { alc662_init_verbs
,
16954 alc662_ecs_init_verbs
},
16955 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
16956 .dac_nids
= alc662_dac_nids
,
16957 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
16958 .channel_mode
= alc662_3ST_2ch_modes
,
16959 .input_mux
= &alc662_eeepc_capture_source
,
16960 .unsol_event
= alc662_eeepc_unsol_event
,
16961 .init_hook
= alc662_eeepc_inithook
,
16963 [ALC663_ASUS_M51VA
] = {
16964 .mixers
= { alc663_m51va_mixer
},
16965 .init_verbs
= { alc662_init_verbs
, alc663_m51va_init_verbs
},
16966 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
16967 .dac_nids
= alc662_dac_nids
,
16968 .dig_out_nid
= ALC662_DIGOUT_NID
,
16969 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
16970 .channel_mode
= alc662_3ST_2ch_modes
,
16971 .input_mux
= &alc663_m51va_capture_source
,
16972 .unsol_event
= alc663_m51va_unsol_event
,
16973 .init_hook
= alc663_m51va_inithook
,
16975 [ALC663_ASUS_G71V
] = {
16976 .mixers
= { alc663_g71v_mixer
},
16977 .init_verbs
= { alc662_init_verbs
, alc663_g71v_init_verbs
},
16978 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
16979 .dac_nids
= alc662_dac_nids
,
16980 .dig_out_nid
= ALC662_DIGOUT_NID
,
16981 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
16982 .channel_mode
= alc662_3ST_2ch_modes
,
16983 .input_mux
= &alc662_eeepc_capture_source
,
16984 .unsol_event
= alc663_g71v_unsol_event
,
16985 .init_hook
= alc663_g71v_inithook
,
16987 [ALC663_ASUS_H13
] = {
16988 .mixers
= { alc663_m51va_mixer
},
16989 .init_verbs
= { alc662_init_verbs
, alc663_m51va_init_verbs
},
16990 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
16991 .dac_nids
= alc662_dac_nids
,
16992 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
16993 .channel_mode
= alc662_3ST_2ch_modes
,
16994 .input_mux
= &alc663_m51va_capture_source
,
16995 .unsol_event
= alc663_m51va_unsol_event
,
16996 .init_hook
= alc663_m51va_inithook
,
16998 [ALC663_ASUS_G50V
] = {
16999 .mixers
= { alc663_g50v_mixer
},
17000 .init_verbs
= { alc662_init_verbs
, alc663_g50v_init_verbs
},
17001 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
17002 .dac_nids
= alc662_dac_nids
,
17003 .dig_out_nid
= ALC662_DIGOUT_NID
,
17004 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_6ch_modes
),
17005 .channel_mode
= alc662_3ST_6ch_modes
,
17006 .input_mux
= &alc663_capture_source
,
17007 .unsol_event
= alc663_g50v_unsol_event
,
17008 .init_hook
= alc663_g50v_inithook
,
17010 [ALC663_ASUS_MODE1
] = {
17011 .mixers
= { alc663_m51va_mixer
},
17012 .cap_mixer
= alc662_auto_capture_mixer
,
17013 .init_verbs
= { alc662_init_verbs
,
17014 alc663_21jd_amic_init_verbs
},
17015 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
17017 .dac_nids
= alc662_dac_nids
,
17018 .dig_out_nid
= ALC662_DIGOUT_NID
,
17019 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
17020 .channel_mode
= alc662_3ST_2ch_modes
,
17021 .input_mux
= &alc662_eeepc_capture_source
,
17022 .unsol_event
= alc663_mode1_unsol_event
,
17023 .init_hook
= alc663_mode1_inithook
,
17025 [ALC662_ASUS_MODE2
] = {
17026 .mixers
= { alc662_1bjd_mixer
},
17027 .cap_mixer
= alc662_auto_capture_mixer
,
17028 .init_verbs
= { alc662_init_verbs
,
17029 alc662_1bjd_amic_init_verbs
},
17030 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
17031 .dac_nids
= alc662_dac_nids
,
17032 .dig_out_nid
= ALC662_DIGOUT_NID
,
17033 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
17034 .channel_mode
= alc662_3ST_2ch_modes
,
17035 .input_mux
= &alc662_eeepc_capture_source
,
17036 .unsol_event
= alc662_mode2_unsol_event
,
17037 .init_hook
= alc662_mode2_inithook
,
17039 [ALC663_ASUS_MODE3
] = {
17040 .mixers
= { alc663_two_hp_m1_mixer
},
17041 .cap_mixer
= alc662_auto_capture_mixer
,
17042 .init_verbs
= { alc662_init_verbs
,
17043 alc663_two_hp_amic_m1_init_verbs
},
17044 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
17046 .dac_nids
= alc662_dac_nids
,
17047 .dig_out_nid
= ALC662_DIGOUT_NID
,
17048 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
17049 .channel_mode
= alc662_3ST_2ch_modes
,
17050 .input_mux
= &alc662_eeepc_capture_source
,
17051 .unsol_event
= alc663_mode3_unsol_event
,
17052 .init_hook
= alc663_mode3_inithook
,
17054 [ALC663_ASUS_MODE4
] = {
17055 .mixers
= { alc663_asus_21jd_clfe_mixer
},
17056 .cap_mixer
= alc662_auto_capture_mixer
,
17057 .init_verbs
= { alc662_init_verbs
,
17058 alc663_21jd_amic_init_verbs
},
17059 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
17061 .dac_nids
= alc662_dac_nids
,
17062 .dig_out_nid
= ALC662_DIGOUT_NID
,
17063 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
17064 .channel_mode
= alc662_3ST_2ch_modes
,
17065 .input_mux
= &alc662_eeepc_capture_source
,
17066 .unsol_event
= alc663_mode4_unsol_event
,
17067 .init_hook
= alc663_mode4_inithook
,
17069 [ALC663_ASUS_MODE5
] = {
17070 .mixers
= { alc663_asus_15jd_clfe_mixer
},
17071 .cap_mixer
= alc662_auto_capture_mixer
,
17072 .init_verbs
= { alc662_init_verbs
,
17073 alc663_15jd_amic_init_verbs
},
17074 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
17076 .dac_nids
= alc662_dac_nids
,
17077 .dig_out_nid
= ALC662_DIGOUT_NID
,
17078 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
17079 .channel_mode
= alc662_3ST_2ch_modes
,
17080 .input_mux
= &alc662_eeepc_capture_source
,
17081 .unsol_event
= alc663_mode5_unsol_event
,
17082 .init_hook
= alc663_mode5_inithook
,
17084 [ALC663_ASUS_MODE6
] = {
17085 .mixers
= { alc663_two_hp_m2_mixer
},
17086 .cap_mixer
= alc662_auto_capture_mixer
,
17087 .init_verbs
= { alc662_init_verbs
,
17088 alc663_two_hp_amic_m2_init_verbs
},
17089 .num_dacs
= ARRAY_SIZE(alc662_dac_nids
),
17091 .dac_nids
= alc662_dac_nids
,
17092 .dig_out_nid
= ALC662_DIGOUT_NID
,
17093 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
17094 .channel_mode
= alc662_3ST_2ch_modes
,
17095 .input_mux
= &alc662_eeepc_capture_source
,
17096 .unsol_event
= alc663_mode6_unsol_event
,
17097 .init_hook
= alc663_mode6_inithook
,
17100 .mixers
= { alc663_m51va_mixer
},
17101 .cap_mixer
= alc272_auto_capture_mixer
,
17102 .init_verbs
= { alc662_init_verbs
, alc272_dell_init_verbs
},
17103 .num_dacs
= ARRAY_SIZE(alc272_dac_nids
),
17104 .dac_nids
= alc662_dac_nids
,
17105 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
17106 .adc_nids
= alc272_adc_nids
,
17107 .num_adc_nids
= ARRAY_SIZE(alc272_adc_nids
),
17108 .capsrc_nids
= alc272_capsrc_nids
,
17109 .channel_mode
= alc662_3ST_2ch_modes
,
17110 .input_mux
= &alc663_m51va_capture_source
,
17111 .unsol_event
= alc663_m51va_unsol_event
,
17112 .init_hook
= alc663_m51va_inithook
,
17114 [ALC272_DELL_ZM1
] = {
17115 .mixers
= { alc663_m51va_mixer
},
17116 .cap_mixer
= alc662_auto_capture_mixer
,
17117 .init_verbs
= { alc662_init_verbs
, alc272_dell_zm1_init_verbs
},
17118 .num_dacs
= ARRAY_SIZE(alc272_dac_nids
),
17119 .dac_nids
= alc662_dac_nids
,
17120 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
17121 .adc_nids
= alc662_adc_nids
,
17122 .num_adc_nids
= ARRAY_SIZE(alc662_adc_nids
),
17123 .capsrc_nids
= alc662_capsrc_nids
,
17124 .channel_mode
= alc662_3ST_2ch_modes
,
17125 .input_mux
= &alc663_m51va_capture_source
,
17126 .unsol_event
= alc663_m51va_unsol_event
,
17127 .init_hook
= alc663_m51va_inithook
,
17129 [ALC272_SAMSUNG_NC10
] = {
17130 .mixers
= { alc272_nc10_mixer
},
17131 .init_verbs
= { alc662_init_verbs
,
17132 alc663_21jd_amic_init_verbs
},
17133 .num_dacs
= ARRAY_SIZE(alc272_dac_nids
),
17134 .dac_nids
= alc272_dac_nids
,
17135 .num_channel_mode
= ARRAY_SIZE(alc662_3ST_2ch_modes
),
17136 .channel_mode
= alc662_3ST_2ch_modes
,
17137 .input_mux
= &alc272_nc10_capture_source
,
17138 .unsol_event
= alc663_mode4_unsol_event
,
17139 .init_hook
= alc663_mode4_inithook
,
17145 * BIOS auto configuration
17148 /* add playback controls from the parsed DAC table */
17149 static int alc662_auto_create_multi_out_ctls(struct alc_spec
*spec
,
17150 const struct auto_pin_cfg
*cfg
)
17153 static const char *chname
[4] = {
17154 "Front", "Surround", NULL
/*CLFE*/, "Side"
17159 for (i
= 0; i
< cfg
->line_outs
; i
++) {
17160 if (!spec
->multiout
.dac_nids
[i
])
17162 nid
= alc880_idx_to_dac(i
);
17165 err
= add_control(spec
, ALC_CTL_WIDGET_VOL
,
17166 "Center Playback Volume",
17167 HDA_COMPOSE_AMP_VAL(nid
, 1, 0,
17171 err
= add_control(spec
, ALC_CTL_WIDGET_VOL
,
17172 "LFE Playback Volume",
17173 HDA_COMPOSE_AMP_VAL(nid
, 2, 0,
17177 err
= add_control(spec
, ALC_CTL_WIDGET_MUTE
,
17178 "Center Playback Switch",
17179 HDA_COMPOSE_AMP_VAL(0x0e, 1, 0,
17183 err
= add_control(spec
, ALC_CTL_WIDGET_MUTE
,
17184 "LFE Playback Switch",
17185 HDA_COMPOSE_AMP_VAL(0x0e, 2, 0,
17190 sprintf(name
, "%s Playback Volume", chname
[i
]);
17191 err
= add_control(spec
, ALC_CTL_WIDGET_VOL
, name
,
17192 HDA_COMPOSE_AMP_VAL(nid
, 3, 0,
17196 sprintf(name
, "%s Playback Switch", chname
[i
]);
17197 err
= add_control(spec
, ALC_CTL_WIDGET_MUTE
, name
,
17198 HDA_COMPOSE_AMP_VAL(alc880_idx_to_mixer(i
),
17207 /* add playback controls for speaker and HP outputs */
17208 static int alc662_auto_create_extra_out(struct alc_spec
*spec
, hda_nid_t pin
,
17219 /* ALC663 has a mono output pin on 0x17 */
17220 sprintf(name
, "%s Playback Switch", pfx
);
17221 err
= add_control(spec
, ALC_CTL_WIDGET_MUTE
, name
,
17222 HDA_COMPOSE_AMP_VAL(pin
, 2, 0, HDA_OUTPUT
));
17226 if (alc880_is_fixed_pin(pin
)) {
17227 nid
= alc880_idx_to_dac(alc880_fixed_pin_idx(pin
));
17228 /* printk(KERN_DEBUG "DAC nid=%x\n",nid); */
17229 /* specify the DAC as the extra output */
17230 if (!spec
->multiout
.hp_nid
)
17231 spec
->multiout
.hp_nid
= nid
;
17233 spec
->multiout
.extra_out_nid
[0] = nid
;
17234 /* control HP volume/switch on the output mixer amp */
17235 nid
= alc880_idx_to_dac(alc880_fixed_pin_idx(pin
));
17236 sprintf(name
, "%s Playback Volume", pfx
);
17237 err
= add_control(spec
, ALC_CTL_WIDGET_VOL
, name
,
17238 HDA_COMPOSE_AMP_VAL(nid
, 3, 0, HDA_OUTPUT
));
17241 sprintf(name
, "%s Playback Switch", pfx
);
17242 err
= add_control(spec
, ALC_CTL_BIND_MUTE
, name
,
17243 HDA_COMPOSE_AMP_VAL(nid
, 3, 2, HDA_INPUT
));
17246 } else if (alc880_is_multi_pin(pin
)) {
17247 /* set manual connection */
17248 /* we have only a switch on HP-out PIN */
17249 sprintf(name
, "%s Playback Switch", pfx
);
17250 err
= add_control(spec
, ALC_CTL_WIDGET_MUTE
, name
,
17251 HDA_COMPOSE_AMP_VAL(pin
, 3, 0, HDA_OUTPUT
));
17258 /* return the index of the src widget from the connection list of the nid.
17259 * return -1 if not found
17261 static int alc662_input_pin_idx(struct hda_codec
*codec
, hda_nid_t nid
,
17264 hda_nid_t conn_list
[HDA_MAX_CONNECTIONS
];
17267 conns
= snd_hda_get_connections(codec
, nid
, conn_list
,
17268 ARRAY_SIZE(conn_list
));
17271 for (i
= 0; i
< conns
; i
++)
17272 if (conn_list
[i
] == src
)
17277 static int alc662_is_input_pin(struct hda_codec
*codec
, hda_nid_t nid
)
17279 unsigned int pincap
= snd_hda_query_pin_caps(codec
, nid
);
17280 return (pincap
& AC_PINCAP_IN
) != 0;
17283 /* create playback/capture controls for input pins */
17284 static int alc662_auto_create_analog_input_ctls(struct hda_codec
*codec
,
17285 const struct auto_pin_cfg
*cfg
)
17287 struct alc_spec
*spec
= codec
->spec
;
17288 struct hda_input_mux
*imux
= &spec
->private_imux
[0];
17291 for (i
= 0; i
< AUTO_PIN_LAST
; i
++) {
17292 if (alc662_is_input_pin(codec
, cfg
->input_pins
[i
])) {
17293 idx
= alc662_input_pin_idx(codec
, 0x0b,
17294 cfg
->input_pins
[i
]);
17296 err
= new_analog_input(spec
, cfg
->input_pins
[i
],
17297 auto_pin_cfg_labels
[i
],
17302 idx
= alc662_input_pin_idx(codec
, 0x22,
17303 cfg
->input_pins
[i
]);
17305 imux
->items
[imux
->num_items
].label
=
17306 auto_pin_cfg_labels
[i
];
17307 imux
->items
[imux
->num_items
].index
= idx
;
17315 static void alc662_auto_set_output_and_unmute(struct hda_codec
*codec
,
17316 hda_nid_t nid
, int pin_type
,
17319 alc_set_pin_output(codec
, nid
, pin_type
);
17320 /* need the manual connection? */
17321 if (alc880_is_multi_pin(nid
)) {
17322 struct alc_spec
*spec
= codec
->spec
;
17323 int idx
= alc880_multi_pin_idx(nid
);
17324 snd_hda_codec_write(codec
, alc880_idx_to_selector(idx
), 0,
17325 AC_VERB_SET_CONNECT_SEL
,
17326 alc880_dac_to_idx(spec
->multiout
.dac_nids
[dac_idx
]));
17330 static void alc662_auto_init_multi_out(struct hda_codec
*codec
)
17332 struct alc_spec
*spec
= codec
->spec
;
17335 for (i
= 0; i
<= HDA_SIDE
; i
++) {
17336 hda_nid_t nid
= spec
->autocfg
.line_out_pins
[i
];
17337 int pin_type
= get_pin_type(spec
->autocfg
.line_out_type
);
17339 alc662_auto_set_output_and_unmute(codec
, nid
, pin_type
,
17344 static void alc662_auto_init_hp_out(struct hda_codec
*codec
)
17346 struct alc_spec
*spec
= codec
->spec
;
17349 pin
= spec
->autocfg
.hp_pins
[0];
17350 if (pin
) /* connect to front */
17352 alc662_auto_set_output_and_unmute(codec
, pin
, PIN_HP
, 0);
17353 pin
= spec
->autocfg
.speaker_pins
[0];
17355 alc662_auto_set_output_and_unmute(codec
, pin
, PIN_OUT
, 0);
17358 #define ALC662_PIN_CD_NID ALC880_PIN_CD_NID
17360 static void alc662_auto_init_analog_input(struct hda_codec
*codec
)
17362 struct alc_spec
*spec
= codec
->spec
;
17365 for (i
= 0; i
< AUTO_PIN_LAST
; i
++) {
17366 hda_nid_t nid
= spec
->autocfg
.input_pins
[i
];
17367 if (alc662_is_input_pin(codec
, nid
)) {
17368 alc_set_input_pin(codec
, nid
, i
);
17369 if (nid
!= ALC662_PIN_CD_NID
&&
17370 (get_wcaps(codec
, nid
) & AC_WCAP_OUT_AMP
))
17371 snd_hda_codec_write(codec
, nid
, 0,
17372 AC_VERB_SET_AMP_GAIN_MUTE
,
17378 #define alc662_auto_init_input_src alc882_auto_init_input_src
17380 static int alc662_parse_auto_config(struct hda_codec
*codec
)
17382 struct alc_spec
*spec
= codec
->spec
;
17384 static hda_nid_t alc662_ignore
[] = { 0x1d, 0 };
17386 err
= snd_hda_parse_pin_def_config(codec
, &spec
->autocfg
,
17390 if (!spec
->autocfg
.line_outs
)
17391 return 0; /* can't find valid BIOS pin config */
17393 err
= alc880_auto_fill_dac_nids(spec
, &spec
->autocfg
);
17396 err
= alc662_auto_create_multi_out_ctls(spec
, &spec
->autocfg
);
17399 err
= alc662_auto_create_extra_out(spec
,
17400 spec
->autocfg
.speaker_pins
[0],
17404 err
= alc662_auto_create_extra_out(spec
, spec
->autocfg
.hp_pins
[0],
17408 err
= alc662_auto_create_analog_input_ctls(codec
, &spec
->autocfg
);
17412 spec
->multiout
.max_channels
= spec
->multiout
.num_dacs
* 2;
17414 if (spec
->autocfg
.dig_outs
)
17415 spec
->multiout
.dig_out_nid
= ALC880_DIGOUT_NID
;
17417 if (spec
->kctls
.list
)
17418 add_mixer(spec
, spec
->kctls
.list
);
17420 spec
->num_mux_defs
= 1;
17421 spec
->input_mux
= &spec
->private_imux
[0];
17423 add_verb(spec
, alc662_auto_init_verbs
);
17424 if (codec
->vendor_id
== 0x10ec0663)
17425 add_verb(spec
, alc663_auto_init_verbs
);
17427 err
= alc_auto_add_mic_boost(codec
);
17431 alc_ssid_check(codec
, 0x15, 0x1b, 0x14);
17436 /* additional initialization for auto-configuration model */
17437 static void alc662_auto_init(struct hda_codec
*codec
)
17439 struct alc_spec
*spec
= codec
->spec
;
17440 alc662_auto_init_multi_out(codec
);
17441 alc662_auto_init_hp_out(codec
);
17442 alc662_auto_init_analog_input(codec
);
17443 alc662_auto_init_input_src(codec
);
17444 if (spec
->unsol_event
)
17445 alc_inithook(codec
);
17448 static int patch_alc662(struct hda_codec
*codec
)
17450 struct alc_spec
*spec
;
17451 int err
, board_config
;
17453 spec
= kzalloc(sizeof(*spec
), GFP_KERNEL
);
17457 codec
->spec
= spec
;
17459 alc_fix_pll_init(codec
, 0x20, 0x04, 15);
17461 board_config
= snd_hda_check_board_config(codec
, ALC662_MODEL_LAST
,
17464 if (board_config
< 0) {
17465 printk(KERN_INFO
"hda_codec: Unknown model for %s, "
17466 "trying auto-probe from BIOS...\n", codec
->chip_name
);
17467 board_config
= ALC662_AUTO
;
17470 if (board_config
== ALC662_AUTO
) {
17471 /* automatic parse from the BIOS config */
17472 err
= alc662_parse_auto_config(codec
);
17478 "hda_codec: Cannot set up configuration "
17479 "from BIOS. Using base mode...\n");
17480 board_config
= ALC662_3ST_2ch_DIG
;
17484 err
= snd_hda_attach_beep_device(codec
, 0x1);
17490 if (board_config
!= ALC662_AUTO
)
17491 setup_preset(spec
, &alc662_presets
[board_config
]);
17493 spec
->stream_analog_playback
= &alc662_pcm_analog_playback
;
17494 spec
->stream_analog_capture
= &alc662_pcm_analog_capture
;
17496 spec
->stream_digital_playback
= &alc662_pcm_digital_playback
;
17497 spec
->stream_digital_capture
= &alc662_pcm_digital_capture
;
17499 spec
->adc_nids
= alc662_adc_nids
;
17500 spec
->num_adc_nids
= ARRAY_SIZE(alc662_adc_nids
);
17501 spec
->capsrc_nids
= alc662_capsrc_nids
;
17503 if (!spec
->cap_mixer
)
17504 set_capture_mixer(spec
);
17505 if (codec
->vendor_id
== 0x10ec0662)
17506 set_beep_amp(spec
, 0x0b, 0x05, HDA_INPUT
);
17508 set_beep_amp(spec
, 0x0b, 0x04, HDA_INPUT
);
17510 spec
->vmaster_nid
= 0x02;
17512 codec
->patch_ops
= alc_patch_ops
;
17513 if (board_config
== ALC662_AUTO
)
17514 spec
->init_hook
= alc662_auto_init
;
17515 #ifdef CONFIG_SND_HDA_POWER_SAVE
17516 if (!spec
->loopback
.amplist
)
17517 spec
->loopback
.amplist
= alc662_loopbacks
;
17519 codec
->proc_widget_hook
= print_realtek_coef
;
17527 static struct hda_codec_preset snd_hda_preset_realtek
[] = {
17528 { .id
= 0x10ec0260, .name
= "ALC260", .patch
= patch_alc260
},
17529 { .id
= 0x10ec0262, .name
= "ALC262", .patch
= patch_alc262
},
17530 { .id
= 0x10ec0267, .name
= "ALC267", .patch
= patch_alc268
},
17531 { .id
= 0x10ec0268, .name
= "ALC268", .patch
= patch_alc268
},
17532 { .id
= 0x10ec0269, .name
= "ALC269", .patch
= patch_alc269
},
17533 { .id
= 0x10ec0272, .name
= "ALC272", .patch
= patch_alc662
},
17534 { .id
= 0x10ec0861, .rev
= 0x100340, .name
= "ALC660",
17535 .patch
= patch_alc861
},
17536 { .id
= 0x10ec0660, .name
= "ALC660-VD", .patch
= patch_alc861vd
},
17537 { .id
= 0x10ec0861, .name
= "ALC861", .patch
= patch_alc861
},
17538 { .id
= 0x10ec0862, .name
= "ALC861-VD", .patch
= patch_alc861vd
},
17539 { .id
= 0x10ec0662, .rev
= 0x100002, .name
= "ALC662 rev2",
17540 .patch
= patch_alc883
},
17541 { .id
= 0x10ec0662, .rev
= 0x100101, .name
= "ALC662 rev1",
17542 .patch
= patch_alc662
},
17543 { .id
= 0x10ec0663, .name
= "ALC663", .patch
= patch_alc662
},
17544 { .id
= 0x10ec0880, .name
= "ALC880", .patch
= patch_alc880
},
17545 { .id
= 0x10ec0882, .name
= "ALC882", .patch
= patch_alc882
},
17546 { .id
= 0x10ec0883, .name
= "ALC883", .patch
= patch_alc883
},
17547 { .id
= 0x10ec0885, .rev
= 0x100101, .name
= "ALC889A",
17548 .patch
= patch_alc882
}, /* should be patch_alc883() in future */
17549 { .id
= 0x10ec0885, .rev
= 0x100103, .name
= "ALC889A",
17550 .patch
= patch_alc882
}, /* should be patch_alc883() in future */
17551 { .id
= 0x10ec0885, .name
= "ALC885", .patch
= patch_alc882
},
17552 { .id
= 0x10ec0887, .name
= "ALC887", .patch
= patch_alc883
},
17553 { .id
= 0x10ec0888, .rev
= 0x100101, .name
= "ALC1200",
17554 .patch
= patch_alc883
},
17555 { .id
= 0x10ec0888, .name
= "ALC888", .patch
= patch_alc883
},
17556 { .id
= 0x10ec0889, .name
= "ALC889", .patch
= patch_alc883
},
17557 {} /* terminator */
17560 MODULE_ALIAS("snd-hda-codec-id:10ec*");
17562 MODULE_LICENSE("GPL");
17563 MODULE_DESCRIPTION("Realtek HD-audio codec");
17565 static struct hda_codec_preset_list realtek_list
= {
17566 .preset
= snd_hda_preset_realtek
,
17567 .owner
= THIS_MODULE
,
17570 static int __init
patch_realtek_init(void)
17572 return snd_hda_add_codec_preset(&realtek_list
);
17575 static void __exit
patch_realtek_exit(void)
17577 snd_hda_delete_codec_preset(&realtek_list
);
17580 module_init(patch_realtek_init
)
17581 module_exit(patch_realtek_exit
)