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 <sound/driver.h>
27 #include <linux/init.h>
28 #include <linux/delay.h>
29 #include <linux/slab.h>
30 #include <linux/pci.h>
31 #include <sound/core.h>
32 #include "hda_codec.h"
33 #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 */
63 #ifdef CONFIG_SND_DEBUG
67 ALC880_MODEL_LAST /* last tag */
79 #ifdef CONFIG_SND_DEBUG
83 ALC260_MODEL_LAST /* last tag */
93 ALC262_HP_BPC_D7000_WL,
94 ALC262_HP_BPC_D7000_WF,
99 ALC262_MODEL_LAST /* last tag */
108 ALC268_MODEL_LAST /* last tag */
125 /* ALC861-VD models */
172 ALC883_TARGA_2ch_DIG,
178 ALC883_LENOVO_101E_2ch,
179 ALC883_LENOVO_NB0763,
180 ALC888_LENOVO_MS7195_DIG,
188 #define GPIO_MASK 0x03
191 /* codec parameterization */
192 struct snd_kcontrol_new *mixers[5]; /* mixer arrays */
193 unsigned int num_mixers;
195 const struct hda_verb *init_verbs[5]; /* initialization verbs
199 unsigned int num_init_verbs;
201 char *stream_name_analog; /* analog PCM stream */
202 struct hda_pcm_stream *stream_analog_playback;
203 struct hda_pcm_stream *stream_analog_capture;
205 char *stream_name_digital; /* digital PCM stream */
206 struct hda_pcm_stream *stream_digital_playback;
207 struct hda_pcm_stream *stream_digital_capture;
210 struct hda_multi_out multiout; /* playback set-up
211 * max_channels, dacs must be set
212 * dig_out_nid and hp_nid are optional
216 unsigned int num_adc_nids;
218 hda_nid_t dig_in_nid; /* digital-in NID; optional */
221 unsigned int num_mux_defs;
222 const struct hda_input_mux *input_mux;
223 unsigned int cur_mux[3];
226 const struct hda_channel_mode *channel_mode;
227 int num_channel_mode;
230 /* PCM information */
231 struct hda_pcm pcm_rec[3]; /* used in alc_build_pcms() */
233 /* dynamic controls, init_verbs and input_mux */
234 struct auto_pin_cfg autocfg;
235 unsigned int num_kctl_alloc, num_kctl_used;
236 struct snd_kcontrol_new *kctl_alloc;
237 struct hda_input_mux private_imux;
238 hda_nid_t private_dac_nids[5];
241 void (*init_hook)(struct hda_codec *codec);
242 void (*unsol_event)(struct hda_codec *codec, unsigned int res);
244 /* for pin sensing */
245 unsigned int sense_updated: 1;
246 unsigned int jack_present: 1;
248 #ifdef CONFIG_SND_HDA_POWER_SAVE
249 struct hda_loopback_check loopback;
254 * configuration template - to be copied to the spec instance
256 struct alc_config_preset {
257 struct snd_kcontrol_new *mixers[5]; /* should be identical size
260 const struct hda_verb *init_verbs[5];
261 unsigned int num_dacs;
263 hda_nid_t dig_out_nid; /* optional */
264 hda_nid_t hp_nid; /* optional */
265 unsigned int num_adc_nids;
267 hda_nid_t dig_in_nid;
268 unsigned int num_channel_mode;
269 const struct hda_channel_mode *channel_mode;
271 unsigned int num_mux_defs;
272 const struct hda_input_mux *input_mux;
273 void (*unsol_event)(struct hda_codec *, unsigned int);
274 void (*init_hook)(struct hda_codec *);
275 #ifdef CONFIG_SND_HDA_POWER_SAVE
276 struct hda_amp_list *loopbacks;
284 static int alc_mux_enum_info(struct snd_kcontrol *kcontrol,
285 struct snd_ctl_elem_info *uinfo)
287 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
288 struct alc_spec *spec = codec->spec;
289 unsigned int mux_idx = snd_ctl_get_ioffidx(kcontrol, &uinfo->id);
290 if (mux_idx >= spec->num_mux_defs)
292 return snd_hda_input_mux_info(&spec->input_mux[mux_idx], uinfo);
295 static int alc_mux_enum_get(struct snd_kcontrol *kcontrol,
296 struct snd_ctl_elem_value *ucontrol)
298 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
299 struct alc_spec *spec = codec->spec;
300 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
302 ucontrol->value.enumerated.item[0] = spec->cur_mux[adc_idx];
306 static int alc_mux_enum_put(struct snd_kcontrol *kcontrol,
307 struct snd_ctl_elem_value *ucontrol)
309 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
310 struct alc_spec *spec = codec->spec;
311 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
312 unsigned int mux_idx = adc_idx >= spec->num_mux_defs ? 0 : adc_idx;
313 return snd_hda_input_mux_put(codec, &spec->input_mux[mux_idx], ucontrol,
314 spec->adc_nids[adc_idx],
315 &spec->cur_mux[adc_idx]);
320 * channel mode setting
322 static int alc_ch_mode_info(struct snd_kcontrol *kcontrol,
323 struct snd_ctl_elem_info *uinfo)
325 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
326 struct alc_spec *spec = codec->spec;
327 return snd_hda_ch_mode_info(codec, uinfo, spec->channel_mode,
328 spec->num_channel_mode);
331 static int alc_ch_mode_get(struct snd_kcontrol *kcontrol,
332 struct snd_ctl_elem_value *ucontrol)
334 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
335 struct alc_spec *spec = codec->spec;
336 return snd_hda_ch_mode_get(codec, ucontrol, spec->channel_mode,
337 spec->num_channel_mode,
338 spec->multiout.max_channels);
341 static int alc_ch_mode_put(struct snd_kcontrol *kcontrol,
342 struct snd_ctl_elem_value *ucontrol)
344 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
345 struct alc_spec *spec = codec->spec;
346 int err = snd_hda_ch_mode_put(codec, ucontrol, spec->channel_mode,
347 spec->num_channel_mode,
348 &spec->multiout.max_channels);
349 if (err >= 0 && spec->need_dac_fix)
350 spec->multiout.num_dacs = spec->multiout.max_channels / 2;
355 * Control the mode of pin widget settings via the mixer. "pc" is used
356 * instead of "%" to avoid consequences of accidently treating the % as
357 * being part of a format specifier. Maximum allowed length of a value is
358 * 63 characters plus NULL terminator.
360 * Note: some retasking pin complexes seem to ignore requests for input
361 * states other than HiZ (eg: PIN_VREFxx) and revert to HiZ if any of these
362 * are requested. Therefore order this list so that this behaviour will not
363 * cause problems when mixer clients move through the enum sequentially.
364 * NIDs 0x0f and 0x10 have been observed to have this behaviour as of
367 static char *alc_pin_mode_names[] = {
368 "Mic 50pc bias", "Mic 80pc bias",
369 "Line in", "Line out", "Headphone out",
371 static unsigned char alc_pin_mode_values[] = {
372 PIN_VREF50, PIN_VREF80, PIN_IN, PIN_OUT, PIN_HP,
374 /* The control can present all 5 options, or it can limit the options based
375 * in the pin being assumed to be exclusively an input or an output pin. In
376 * addition, "input" pins may or may not process the mic bias option
377 * depending on actual widget capability (NIDs 0x0f and 0x10 don't seem to
378 * accept requests for bias as of chip versions up to March 2006) and/or
379 * wiring in the computer.
381 #define ALC_PIN_DIR_IN 0x00
382 #define ALC_PIN_DIR_OUT 0x01
383 #define ALC_PIN_DIR_INOUT 0x02
384 #define ALC_PIN_DIR_IN_NOMICBIAS 0x03
385 #define ALC_PIN_DIR_INOUT_NOMICBIAS 0x04
387 /* Info about the pin modes supported by the different pin direction modes.
388 * For each direction the minimum and maximum values are given.
390 static signed char alc_pin_mode_dir_info[5][2] = {
391 { 0, 2 }, /* ALC_PIN_DIR_IN */
392 { 3, 4 }, /* ALC_PIN_DIR_OUT */
393 { 0, 4 }, /* ALC_PIN_DIR_INOUT */
394 { 2, 2 }, /* ALC_PIN_DIR_IN_NOMICBIAS */
395 { 2, 4 }, /* ALC_PIN_DIR_INOUT_NOMICBIAS */
397 #define alc_pin_mode_min(_dir) (alc_pin_mode_dir_info[_dir][0])
398 #define alc_pin_mode_max(_dir) (alc_pin_mode_dir_info[_dir][1])
399 #define alc_pin_mode_n_items(_dir) \
400 (alc_pin_mode_max(_dir)-alc_pin_mode_min(_dir)+1)
402 static int alc_pin_mode_info(struct snd_kcontrol *kcontrol,
403 struct snd_ctl_elem_info *uinfo)
405 unsigned int item_num = uinfo->value.enumerated.item;
406 unsigned char dir = (kcontrol->private_value >> 16) & 0xff;
408 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
410 uinfo->value.enumerated.items = alc_pin_mode_n_items(dir);
412 if (item_num<alc_pin_mode_min(dir) || item_num>alc_pin_mode_max(dir))
413 item_num = alc_pin_mode_min(dir);
414 strcpy(uinfo->value.enumerated.name, alc_pin_mode_names[item_num]);
418 static int alc_pin_mode_get(struct snd_kcontrol *kcontrol,
419 struct snd_ctl_elem_value *ucontrol)
422 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
423 hda_nid_t nid = kcontrol->private_value & 0xffff;
424 unsigned char dir = (kcontrol->private_value >> 16) & 0xff;
425 long *valp = ucontrol->value.integer.value;
426 unsigned int pinctl = snd_hda_codec_read(codec, nid, 0,
427 AC_VERB_GET_PIN_WIDGET_CONTROL,
430 /* Find enumerated value for current pinctl setting */
431 i = alc_pin_mode_min(dir);
432 while (alc_pin_mode_values[i] != pinctl && i <= alc_pin_mode_max(dir))
434 *valp = i <= alc_pin_mode_max(dir) ? i: alc_pin_mode_min(dir);
438 static int alc_pin_mode_put(struct snd_kcontrol *kcontrol,
439 struct snd_ctl_elem_value *ucontrol)
442 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
443 hda_nid_t nid = kcontrol->private_value & 0xffff;
444 unsigned char dir = (kcontrol->private_value >> 16) & 0xff;
445 long val = *ucontrol->value.integer.value;
446 unsigned int pinctl = snd_hda_codec_read(codec, nid, 0,
447 AC_VERB_GET_PIN_WIDGET_CONTROL,
450 if (val < alc_pin_mode_min(dir) || val > alc_pin_mode_max(dir))
451 val = alc_pin_mode_min(dir);
453 change = pinctl != alc_pin_mode_values[val];
455 /* Set pin mode to that requested */
456 snd_hda_codec_write_cache(codec, nid, 0,
457 AC_VERB_SET_PIN_WIDGET_CONTROL,
458 alc_pin_mode_values[val]);
460 /* Also enable the retasking pin's input/output as required
461 * for the requested pin mode. Enum values of 2 or less are
464 * Dynamically switching the input/output buffers probably
465 * reduces noise slightly (particularly on input) so we'll
466 * do it. However, having both input and output buffers
467 * enabled simultaneously doesn't seem to be problematic if
468 * this turns out to be necessary in the future.
471 snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
472 HDA_AMP_MUTE, HDA_AMP_MUTE);
473 snd_hda_codec_amp_stereo(codec, nid, HDA_INPUT, 0,
476 snd_hda_codec_amp_stereo(codec, nid, HDA_INPUT, 0,
477 HDA_AMP_MUTE, HDA_AMP_MUTE);
478 snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
485 #define ALC_PIN_MODE(xname, nid, dir) \
486 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0, \
487 .info = alc_pin_mode_info, \
488 .get = alc_pin_mode_get, \
489 .put = alc_pin_mode_put, \
490 .private_value = nid | (dir<<16) }
492 /* A switch control for ALC260 GPIO pins. Multiple GPIOs can be ganged
493 * together using a mask with more than one bit set. This control is
494 * currently used only by the ALC260 test model. At this stage they are not
495 * needed for any "production" models.
497 #ifdef CONFIG_SND_DEBUG
498 #define alc_gpio_data_info snd_ctl_boolean_mono_info
500 static int alc_gpio_data_get(struct snd_kcontrol *kcontrol,
501 struct snd_ctl_elem_value *ucontrol)
503 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
504 hda_nid_t nid = kcontrol->private_value & 0xffff;
505 unsigned char mask = (kcontrol->private_value >> 16) & 0xff;
506 long *valp = ucontrol->value.integer.value;
507 unsigned int val = snd_hda_codec_read(codec, nid, 0,
508 AC_VERB_GET_GPIO_DATA, 0x00);
510 *valp = (val & mask) != 0;
513 static int alc_gpio_data_put(struct snd_kcontrol *kcontrol,
514 struct snd_ctl_elem_value *ucontrol)
517 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
518 hda_nid_t nid = kcontrol->private_value & 0xffff;
519 unsigned char mask = (kcontrol->private_value >> 16) & 0xff;
520 long val = *ucontrol->value.integer.value;
521 unsigned int gpio_data = snd_hda_codec_read(codec, nid, 0,
522 AC_VERB_GET_GPIO_DATA,
525 /* Set/unset the masked GPIO bit(s) as needed */
526 change = (val == 0 ? 0 : mask) != (gpio_data & mask);
531 snd_hda_codec_write_cache(codec, nid, 0,
532 AC_VERB_SET_GPIO_DATA, gpio_data);
536 #define ALC_GPIO_DATA_SWITCH(xname, nid, mask) \
537 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0, \
538 .info = alc_gpio_data_info, \
539 .get = alc_gpio_data_get, \
540 .put = alc_gpio_data_put, \
541 .private_value = nid | (mask<<16) }
542 #endif /* CONFIG_SND_DEBUG */
544 /* A switch control to allow the enabling of the digital IO pins on the
545 * ALC260. This is incredibly simplistic; the intention of this control is
546 * to provide something in the test model allowing digital outputs to be
547 * identified if present. If models are found which can utilise these
548 * outputs a more complete mixer control can be devised for those models if
551 #ifdef CONFIG_SND_DEBUG
552 #define alc_spdif_ctrl_info snd_ctl_boolean_mono_info
554 static int alc_spdif_ctrl_get(struct snd_kcontrol *kcontrol,
555 struct snd_ctl_elem_value *ucontrol)
557 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
558 hda_nid_t nid = kcontrol->private_value & 0xffff;
559 unsigned char mask = (kcontrol->private_value >> 16) & 0xff;
560 long *valp = ucontrol->value.integer.value;
561 unsigned int val = snd_hda_codec_read(codec, nid, 0,
562 AC_VERB_GET_DIGI_CONVERT, 0x00);
564 *valp = (val & mask) != 0;
567 static int alc_spdif_ctrl_put(struct snd_kcontrol *kcontrol,
568 struct snd_ctl_elem_value *ucontrol)
571 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
572 hda_nid_t nid = kcontrol->private_value & 0xffff;
573 unsigned char mask = (kcontrol->private_value >> 16) & 0xff;
574 long val = *ucontrol->value.integer.value;
575 unsigned int ctrl_data = snd_hda_codec_read(codec, nid, 0,
576 AC_VERB_GET_DIGI_CONVERT,
579 /* Set/unset the masked control bit(s) as needed */
580 change = (val == 0 ? 0 : mask) != (ctrl_data & mask);
585 snd_hda_codec_write_cache(codec, nid, 0, AC_VERB_SET_DIGI_CONVERT_1,
590 #define ALC_SPDIF_CTRL_SWITCH(xname, nid, mask) \
591 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0, \
592 .info = alc_spdif_ctrl_info, \
593 .get = alc_spdif_ctrl_get, \
594 .put = alc_spdif_ctrl_put, \
595 .private_value = nid | (mask<<16) }
596 #endif /* CONFIG_SND_DEBUG */
599 * set up from the preset table
601 static void setup_preset(struct alc_spec *spec,
602 const struct alc_config_preset *preset)
606 for (i = 0; i < ARRAY_SIZE(preset->mixers) && preset->mixers[i]; i++)
607 spec->mixers[spec->num_mixers++] = preset->mixers[i];
608 for (i = 0; i < ARRAY_SIZE(preset->init_verbs) && preset->init_verbs[i];
610 spec->init_verbs[spec->num_init_verbs++] =
611 preset->init_verbs[i];
613 spec->channel_mode = preset->channel_mode;
614 spec->num_channel_mode = preset->num_channel_mode;
615 spec->need_dac_fix = preset->need_dac_fix;
617 spec->multiout.max_channels = spec->channel_mode[0].channels;
619 spec->multiout.num_dacs = preset->num_dacs;
620 spec->multiout.dac_nids = preset->dac_nids;
621 spec->multiout.dig_out_nid = preset->dig_out_nid;
622 spec->multiout.hp_nid = preset->hp_nid;
624 spec->num_mux_defs = preset->num_mux_defs;
625 if (!spec->num_mux_defs)
626 spec->num_mux_defs = 1;
627 spec->input_mux = preset->input_mux;
629 spec->num_adc_nids = preset->num_adc_nids;
630 spec->adc_nids = preset->adc_nids;
631 spec->dig_in_nid = preset->dig_in_nid;
633 spec->unsol_event = preset->unsol_event;
634 spec->init_hook = preset->init_hook;
635 #ifdef CONFIG_SND_HDA_POWER_SAVE
636 spec->loopback.amplist = preset->loopbacks;
640 /* Enable GPIO mask and set output */
641 static struct hda_verb alc_gpio1_init_verbs[] = {
642 {0x01, AC_VERB_SET_GPIO_MASK, 0x01},
643 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
644 {0x01, AC_VERB_SET_GPIO_DATA, 0x01},
648 static struct hda_verb alc_gpio2_init_verbs[] = {
649 {0x01, AC_VERB_SET_GPIO_MASK, 0x02},
650 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x02},
651 {0x01, AC_VERB_SET_GPIO_DATA, 0x02},
655 static struct hda_verb alc_gpio3_init_verbs[] = {
656 {0x01, AC_VERB_SET_GPIO_MASK, 0x03},
657 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x03},
658 {0x01, AC_VERB_SET_GPIO_DATA, 0x03},
662 /* 32-bit subsystem ID for BIOS loading in HD Audio codec.
663 * 31 ~ 16 : Manufacture ID
665 * 7 ~ 0 : Assembly ID
666 * port-A --> pin 39/41, port-E --> pin 14/15, port-D --> pin 35/36
668 static void alc_subsystem_id(struct hda_codec *codec,
669 unsigned int porta, unsigned int porte,
672 unsigned int ass, tmp;
674 ass = codec->subsystem_id;
679 tmp = (ass & 0x38) >> 3; /* external Amp control */
682 snd_hda_sequence_write(codec, alc_gpio1_init_verbs);
685 snd_hda_sequence_write(codec, alc_gpio2_init_verbs);
688 snd_hda_sequence_write(codec, alc_gpio3_init_verbs);
691 switch (codec->vendor_id) {
697 snd_hda_codec_write(codec, 0x14, 0,
698 AC_VERB_SET_EAPD_BTLENABLE, 2);
699 snd_hda_codec_write(codec, 0x15, 0,
700 AC_VERB_SET_EAPD_BTLENABLE, 2);
704 if (ass & 4) { /* bit 2 : 0 = Desktop, 1 = Laptop */
706 tmp = (ass & 0x1800) >> 11;
708 case 0: port = porta; break;
709 case 1: port = porte; break;
710 case 2: port = portd; break;
713 snd_hda_codec_write(codec, port, 0,
714 AC_VERB_SET_EAPD_BTLENABLE,
717 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_COEF_INDEX, 7);
718 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_PROC_COEF,
719 (tmp == 5 ? 0x3040 : 0x3050));
725 * Fix-up pin default configurations
733 static void alc_fix_pincfg(struct hda_codec *codec,
734 const struct snd_pci_quirk *quirk,
735 const struct alc_pincfg **pinfix)
737 const struct alc_pincfg *cfg;
739 quirk = snd_pci_quirk_lookup(codec->bus->pci, quirk);
743 cfg = pinfix[quirk->value];
744 for (; cfg->nid; cfg++) {
747 for (i = 0; i < 4; i++) {
748 snd_hda_codec_write(codec, cfg->nid, 0,
749 AC_VERB_SET_CONFIG_DEFAULT_BYTES_0 + i,
757 * ALC880 3-stack model
759 * DAC: Front = 0x02 (0x0c), Surr = 0x05 (0x0f), CLFE = 0x04 (0x0e)
760 * Pin assignment: Front = 0x14, Line-In/Surr = 0x1a, Mic/CLFE = 0x18,
761 * F-Mic = 0x1b, HP = 0x19
764 static hda_nid_t alc880_dac_nids[4] = {
765 /* front, rear, clfe, rear_surr */
766 0x02, 0x05, 0x04, 0x03
769 static hda_nid_t alc880_adc_nids[3] = {
774 /* The datasheet says the node 0x07 is connected from inputs,
775 * but it shows zero connection in the real implementation on some devices.
776 * Note: this is a 915GAV bug, fixed on 915GLV
778 static hda_nid_t alc880_adc_nids_alt[2] = {
783 #define ALC880_DIGOUT_NID 0x06
784 #define ALC880_DIGIN_NID 0x0a
786 static struct hda_input_mux alc880_capture_source = {
790 { "Front Mic", 0x3 },
796 /* channel source setting (2/6 channel selection for 3-stack) */
798 static struct hda_verb alc880_threestack_ch2_init[] = {
799 /* set line-in to input, mute it */
800 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
801 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
802 /* set mic-in to input vref 80%, mute it */
803 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
804 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
809 static struct hda_verb alc880_threestack_ch6_init[] = {
810 /* set line-in to output, unmute it */
811 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
812 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
813 /* set mic-in to output, unmute it */
814 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
815 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
819 static struct hda_channel_mode alc880_threestack_modes[2] = {
820 { 2, alc880_threestack_ch2_init },
821 { 6, alc880_threestack_ch6_init },
824 static struct snd_kcontrol_new alc880_three_stack_mixer[] = {
825 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
826 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
827 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
828 HDA_BIND_MUTE("Surround Playback Switch", 0x0f, 2, HDA_INPUT),
829 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
830 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
831 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
832 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
833 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
834 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
835 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
836 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
837 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
838 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
839 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x3, HDA_INPUT),
840 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x3, HDA_INPUT),
841 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
842 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
843 HDA_CODEC_MUTE("Headphone Playback Switch", 0x19, 0x0, HDA_OUTPUT),
845 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
846 .name = "Channel Mode",
847 .info = alc_ch_mode_info,
848 .get = alc_ch_mode_get,
849 .put = alc_ch_mode_put,
854 /* capture mixer elements */
855 static struct snd_kcontrol_new alc880_capture_mixer[] = {
856 HDA_CODEC_VOLUME("Capture Volume", 0x07, 0x0, HDA_INPUT),
857 HDA_CODEC_MUTE("Capture Switch", 0x07, 0x0, HDA_INPUT),
858 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x08, 0x0, HDA_INPUT),
859 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x08, 0x0, HDA_INPUT),
860 HDA_CODEC_VOLUME_IDX("Capture Volume", 2, 0x09, 0x0, HDA_INPUT),
861 HDA_CODEC_MUTE_IDX("Capture Switch", 2, 0x09, 0x0, HDA_INPUT),
863 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
864 /* The multiple "Capture Source" controls confuse alsamixer
865 * So call somewhat different..
866 * FIXME: the controls appear in the "playback" view!
868 /* .name = "Capture Source", */
869 .name = "Input Source",
871 .info = alc_mux_enum_info,
872 .get = alc_mux_enum_get,
873 .put = alc_mux_enum_put,
878 /* capture mixer elements (in case NID 0x07 not available) */
879 static struct snd_kcontrol_new alc880_capture_alt_mixer[] = {
880 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
881 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
882 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
883 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
885 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
886 /* The multiple "Capture Source" controls confuse alsamixer
887 * So call somewhat different..
888 * FIXME: the controls appear in the "playback" view!
890 /* .name = "Capture Source", */
891 .name = "Input Source",
893 .info = alc_mux_enum_info,
894 .get = alc_mux_enum_get,
895 .put = alc_mux_enum_put,
903 * ALC880 5-stack model
905 * DAC: Front = 0x02 (0x0c), Surr = 0x05 (0x0f), CLFE = 0x04 (0x0d),
907 * Pin assignment: Front = 0x14, Surr = 0x17, CLFE = 0x16
908 * Line-In/Side = 0x1a, Mic = 0x18, F-Mic = 0x1b, HP = 0x19
911 /* additional mixers to alc880_three_stack_mixer */
912 static struct snd_kcontrol_new alc880_five_stack_mixer[] = {
913 HDA_CODEC_VOLUME("Side Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
914 HDA_BIND_MUTE("Side Playback Switch", 0x0d, 2, HDA_INPUT),
918 /* channel source setting (6/8 channel selection for 5-stack) */
920 static struct hda_verb alc880_fivestack_ch6_init[] = {
921 /* set line-in to input, mute it */
922 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
923 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
928 static struct hda_verb alc880_fivestack_ch8_init[] = {
929 /* set line-in to output, unmute it */
930 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
931 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
935 static struct hda_channel_mode alc880_fivestack_modes[2] = {
936 { 6, alc880_fivestack_ch6_init },
937 { 8, alc880_fivestack_ch8_init },
942 * ALC880 6-stack model
944 * DAC: Front = 0x02 (0x0c), Surr = 0x03 (0x0d), CLFE = 0x04 (0x0e),
946 * Pin assignment: Front = 0x14, Surr = 0x15, CLFE = 0x16, Side = 0x17,
947 * Mic = 0x18, F-Mic = 0x19, Line = 0x1a, HP = 0x1b
950 static hda_nid_t alc880_6st_dac_nids[4] = {
951 /* front, rear, clfe, rear_surr */
952 0x02, 0x03, 0x04, 0x05
955 static struct hda_input_mux alc880_6stack_capture_source = {
959 { "Front Mic", 0x1 },
965 /* fixed 8-channels */
966 static struct hda_channel_mode alc880_sixstack_modes[1] = {
970 static struct snd_kcontrol_new alc880_six_stack_mixer[] = {
971 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
972 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
973 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
974 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
975 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
976 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
977 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
978 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
979 HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
980 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT),
981 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
982 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
983 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
984 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
985 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
986 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
987 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
988 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
989 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
990 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
992 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
993 .name = "Channel Mode",
994 .info = alc_ch_mode_info,
995 .get = alc_ch_mode_get,
996 .put = alc_ch_mode_put,
1005 * W810 has rear IO for:
1008 * Center/LFE (DAC 04)
1011 * The system also has a pair of internal speakers, and a headphone jack.
1012 * These are both connected to Line2 on the codec, hence to DAC 02.
1014 * There is a variable resistor to control the speaker or headphone
1015 * volume. This is a hardware-only device without a software API.
1017 * Plugging headphones in will disable the internal speakers. This is
1018 * implemented in hardware, not via the driver using jack sense. In
1019 * a similar fashion, plugging into the rear socket marked "front" will
1020 * disable both the speakers and headphones.
1022 * For input, there's a microphone jack, and an "audio in" jack.
1023 * These may not do anything useful with this driver yet, because I
1024 * haven't setup any initialization verbs for these yet...
1027 static hda_nid_t alc880_w810_dac_nids[3] = {
1028 /* front, rear/surround, clfe */
1032 /* fixed 6 channels */
1033 static struct hda_channel_mode alc880_w810_modes[1] = {
1037 /* Pin assignment: Front = 0x14, Surr = 0x15, CLFE = 0x16, HP = 0x1b */
1038 static struct snd_kcontrol_new alc880_w810_base_mixer[] = {
1039 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1040 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
1041 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
1042 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
1043 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
1044 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
1045 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
1046 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
1047 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
1055 * DAC: Front = 0x02 (0x0c), HP = 0x03 (0x0d)
1056 * Pin assignment: Front = 0x14, HP = 0x15, Mic = 0x18, Mic2 = 0x19(?),
1060 static hda_nid_t alc880_z71v_dac_nids[1] = {
1063 #define ALC880_Z71V_HP_DAC 0x03
1065 /* fixed 2 channels */
1066 static struct hda_channel_mode alc880_2_jack_modes[1] = {
1070 static struct snd_kcontrol_new alc880_z71v_mixer[] = {
1071 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1072 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
1073 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
1074 HDA_BIND_MUTE("Headphone Playback Switch", 0x0d, 2, HDA_INPUT),
1075 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
1076 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
1077 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1078 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
1085 * ALC880 F1734 model
1087 * DAC: HP = 0x02 (0x0c), Front = 0x03 (0x0d)
1088 * Pin assignment: HP = 0x14, Front = 0x15, Mic = 0x18
1091 static hda_nid_t alc880_f1734_dac_nids[1] = {
1094 #define ALC880_F1734_HP_DAC 0x02
1096 static struct snd_kcontrol_new alc880_f1734_mixer[] = {
1097 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1098 HDA_BIND_MUTE("Headphone Playback Switch", 0x0c, 2, HDA_INPUT),
1099 HDA_CODEC_VOLUME("Internal Speaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
1100 HDA_BIND_MUTE("Internal Speaker Playback Switch", 0x0d, 2, HDA_INPUT),
1101 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
1102 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
1103 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1104 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
1113 * DAC: HP/Front = 0x02 (0x0c), Surr = 0x03 (0x0d), CLFE = 0x04 (0x0e)
1114 * Pin assignment: HP/Front = 0x14, Surr = 0x15, CLFE = 0x16,
1115 * Mic = 0x18, Line = 0x1a
1118 #define alc880_asus_dac_nids alc880_w810_dac_nids /* identical with w810 */
1119 #define alc880_asus_modes alc880_threestack_modes /* 2/6 channel mode */
1121 static struct snd_kcontrol_new alc880_asus_mixer[] = {
1122 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1123 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
1124 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
1125 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
1126 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
1127 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
1128 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
1129 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
1130 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
1131 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
1132 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
1133 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
1134 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1135 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
1137 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1138 .name = "Channel Mode",
1139 .info = alc_ch_mode_info,
1140 .get = alc_ch_mode_get,
1141 .put = alc_ch_mode_put,
1148 * ALC880 ASUS W1V model
1150 * DAC: HP/Front = 0x02 (0x0c), Surr = 0x03 (0x0d), CLFE = 0x04 (0x0e)
1151 * Pin assignment: HP/Front = 0x14, Surr = 0x15, CLFE = 0x16,
1152 * Mic = 0x18, Line = 0x1a, Line2 = 0x1b
1155 /* additional mixers to alc880_asus_mixer */
1156 static struct snd_kcontrol_new alc880_asus_w1v_mixer[] = {
1157 HDA_CODEC_VOLUME("Line2 Playback Volume", 0x0b, 0x03, HDA_INPUT),
1158 HDA_CODEC_MUTE("Line2 Playback Switch", 0x0b, 0x03, HDA_INPUT),
1162 /* additional mixers to alc880_asus_mixer */
1163 static struct snd_kcontrol_new alc880_pcbeep_mixer[] = {
1164 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
1165 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
1170 static struct snd_kcontrol_new alc880_tcl_s700_mixer[] = {
1171 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1172 HDA_CODEC_MUTE("Front Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
1173 HDA_CODEC_MUTE("Headphone Playback Switch", 0x14, 0x0, HDA_OUTPUT),
1174 HDA_CODEC_VOLUME("CD Playback Volume", 0x0B, 0x04, HDA_INPUT),
1175 HDA_CODEC_MUTE("CD Playback Switch", 0x0B, 0x04, HDA_INPUT),
1176 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0B, 0x0, HDA_INPUT),
1177 HDA_CODEC_MUTE("Mic Playback Switch", 0x0B, 0x0, HDA_INPUT),
1178 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
1179 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
1181 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1182 /* The multiple "Capture Source" controls confuse alsamixer
1183 * So call somewhat different..
1184 * FIXME: the controls appear in the "playback" view!
1186 /* .name = "Capture Source", */
1187 .name = "Input Source",
1189 .info = alc_mux_enum_info,
1190 .get = alc_mux_enum_get,
1191 .put = alc_mux_enum_put,
1197 static struct snd_kcontrol_new alc880_uniwill_mixer[] = {
1198 HDA_CODEC_VOLUME("HPhone Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1199 HDA_BIND_MUTE("HPhone Playback Switch", 0x0c, 2, HDA_INPUT),
1200 HDA_CODEC_VOLUME("iSpeaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
1201 HDA_BIND_MUTE("iSpeaker Playback Switch", 0x0d, 2, HDA_INPUT),
1202 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
1203 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
1204 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
1205 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
1206 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
1207 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
1208 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
1209 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
1210 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1211 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
1212 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
1213 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
1214 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
1215 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
1217 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1218 .name = "Channel Mode",
1219 .info = alc_ch_mode_info,
1220 .get = alc_ch_mode_get,
1221 .put = alc_ch_mode_put,
1226 static struct snd_kcontrol_new alc880_fujitsu_mixer[] = {
1227 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1228 HDA_BIND_MUTE("Headphone Playback Switch", 0x0c, 2, HDA_INPUT),
1229 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
1230 HDA_BIND_MUTE("Speaker Playback Switch", 0x0d, 2, HDA_INPUT),
1231 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
1232 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
1233 HDA_CODEC_VOLUME("Ext Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1234 HDA_CODEC_MUTE("Ext Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
1235 HDA_CODEC_VOLUME("Int Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
1236 HDA_CODEC_MUTE("Int Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
1240 static struct snd_kcontrol_new alc880_uniwill_p53_mixer[] = {
1241 HDA_CODEC_VOLUME("HPhone Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1242 HDA_BIND_MUTE("HPhone Playback Switch", 0x0c, 2, HDA_INPUT),
1243 HDA_CODEC_VOLUME("iSpeaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
1244 HDA_BIND_MUTE("iSpeaker Playback Switch", 0x0d, 2, HDA_INPUT),
1245 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1246 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
1251 * build control elements
1253 static int alc_build_controls(struct hda_codec *codec)
1255 struct alc_spec *spec = codec->spec;
1259 for (i = 0; i < spec->num_mixers; i++) {
1260 err = snd_hda_add_new_ctls(codec, spec->mixers[i]);
1265 if (spec->multiout.dig_out_nid) {
1266 err = snd_hda_create_spdif_out_ctls(codec,
1267 spec->multiout.dig_out_nid);
1271 if (spec->dig_in_nid) {
1272 err = snd_hda_create_spdif_in_ctls(codec, spec->dig_in_nid);
1281 * initialize the codec volumes, etc
1285 * generic initialization of ADC, input mixers and output mixers
1287 static struct hda_verb alc880_volume_init_verbs[] = {
1289 * Unmute ADC0-2 and set the default input to mic-in
1291 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
1292 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1293 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
1294 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1295 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
1296 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1298 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
1300 * Note: PASD motherboards uses the Line In 2 as the input for front
1303 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
1304 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1305 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1306 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
1307 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
1308 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
1309 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)},
1310 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)},
1313 * Set up output mixers (0x0c - 0x0f)
1315 /* set vol=0 to output mixers */
1316 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1317 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1318 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1319 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1320 /* set up input amps for analog loopback */
1321 /* Amp Indices: DAC = 0, mixer = 1 */
1322 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1323 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1324 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1325 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1326 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1327 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1328 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1329 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1335 * 3-stack pin configuration:
1336 * front = 0x14, mic/clfe = 0x18, HP = 0x19, line/surr = 0x1a, f-mic = 0x1b
1338 static struct hda_verb alc880_pin_3stack_init_verbs[] = {
1340 * preset connection lists of input pins
1341 * 0 = front, 1 = rear_surr, 2 = CLFE, 3 = surround
1343 {0x10, AC_VERB_SET_CONNECT_SEL, 0x02}, /* mic/clfe */
1344 {0x11, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
1345 {0x12, AC_VERB_SET_CONNECT_SEL, 0x03}, /* line/surround */
1348 * Set pin mode and muting
1350 /* set front pin widgets 0x14 for output */
1351 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1352 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1353 /* Mic1 (rear panel) pin widget for input and vref at 80% */
1354 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1355 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1356 /* Mic2 (as headphone out) for HP output */
1357 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1358 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1359 /* Line In pin widget for input */
1360 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1361 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1362 /* Line2 (as front mic) pin widget for input and vref at 80% */
1363 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1364 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1365 /* CD pin widget for input */
1366 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1372 * 5-stack pin configuration:
1373 * front = 0x14, surround = 0x17, clfe = 0x16, mic = 0x18, HP = 0x19,
1374 * line-in/side = 0x1a, f-mic = 0x1b
1376 static struct hda_verb alc880_pin_5stack_init_verbs[] = {
1378 * preset connection lists of input pins
1379 * 0 = front, 1 = rear_surr, 2 = CLFE, 3 = surround
1381 {0x11, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
1382 {0x12, AC_VERB_SET_CONNECT_SEL, 0x01}, /* line/side */
1385 * Set pin mode and muting
1387 /* set pin widgets 0x14-0x17 for output */
1388 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1389 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1390 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1391 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1392 /* unmute pins for output (no gain on this amp) */
1393 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1394 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1395 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1396 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1398 /* Mic1 (rear panel) pin widget for input and vref at 80% */
1399 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1400 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1401 /* Mic2 (as headphone out) for HP output */
1402 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1403 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1404 /* Line In pin widget for input */
1405 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1406 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1407 /* Line2 (as front mic) pin widget for input and vref at 80% */
1408 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1409 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1410 /* CD pin widget for input */
1411 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1417 * W810 pin configuration:
1418 * front = 0x14, surround = 0x15, clfe = 0x16, HP = 0x1b
1420 static struct hda_verb alc880_pin_w810_init_verbs[] = {
1421 /* hphone/speaker input selector: front DAC */
1422 {0x13, AC_VERB_SET_CONNECT_SEL, 0x0},
1424 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1425 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1426 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1427 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1428 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1429 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1431 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1432 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1438 * Z71V pin configuration:
1439 * Speaker-out = 0x14, HP = 0x15, Mic = 0x18, Line-in = 0x1a, Mic2 = 0x1b (?)
1441 static struct hda_verb alc880_pin_z71v_init_verbs[] = {
1442 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1443 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1444 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1445 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1447 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1448 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1449 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1450 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1456 * 6-stack pin configuration:
1457 * front = 0x14, surr = 0x15, clfe = 0x16, side = 0x17, mic = 0x18,
1458 * f-mic = 0x19, line = 0x1a, HP = 0x1b
1460 static struct hda_verb alc880_pin_6stack_init_verbs[] = {
1461 {0x13, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
1463 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1464 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1465 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1466 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1467 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1468 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1469 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1470 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1472 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1473 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1474 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1475 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1476 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1477 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1478 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1479 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1480 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1486 * Uniwill pin configuration:
1487 * HP = 0x14, InternalSpeaker = 0x15, mic = 0x18, internal mic = 0x19,
1490 static struct hda_verb alc880_uniwill_init_verbs[] = {
1491 {0x13, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
1493 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1494 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1495 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1496 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1497 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1498 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1499 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1500 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1501 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
1502 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
1503 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
1504 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
1505 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
1506 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
1508 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1509 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1510 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1511 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1512 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1513 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1514 /* {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP}, */
1515 /* {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, */
1516 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1518 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
1519 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_MIC_EVENT},
1526 * HP = 0x14, InternalSpeaker = 0x15, mic = 0x19,
1528 static struct hda_verb alc880_uniwill_p53_init_verbs[] = {
1529 {0x13, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
1531 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1532 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1533 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1534 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1535 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1536 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1537 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
1538 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
1539 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
1540 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
1541 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
1542 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
1544 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1545 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1546 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1547 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1548 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1549 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1551 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
1552 {0x21, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_DCVOL_EVENT},
1557 static struct hda_verb alc880_beep_init_verbs[] = {
1558 { 0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(5) },
1562 /* toggle speaker-output according to the hp-jack state */
1563 static void alc880_uniwill_hp_automute(struct hda_codec *codec)
1565 unsigned int present;
1568 present = snd_hda_codec_read(codec, 0x14, 0,
1569 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
1570 bits = present ? HDA_AMP_MUTE : 0;
1571 snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0,
1572 HDA_AMP_MUTE, bits);
1573 snd_hda_codec_amp_stereo(codec, 0x16, HDA_OUTPUT, 0,
1574 HDA_AMP_MUTE, bits);
1577 /* auto-toggle front mic */
1578 static void alc880_uniwill_mic_automute(struct hda_codec *codec)
1580 unsigned int present;
1583 present = snd_hda_codec_read(codec, 0x18, 0,
1584 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
1585 bits = present ? HDA_AMP_MUTE : 0;
1586 snd_hda_codec_amp_stereo(codec, 0x0b, HDA_INPUT, 1, HDA_AMP_MUTE, bits);
1589 static void alc880_uniwill_automute(struct hda_codec *codec)
1591 alc880_uniwill_hp_automute(codec);
1592 alc880_uniwill_mic_automute(codec);
1595 static void alc880_uniwill_unsol_event(struct hda_codec *codec,
1598 /* Looks like the unsol event is incompatible with the standard
1599 * definition. 4bit tag is placed at 28 bit!
1601 switch (res >> 28) {
1602 case ALC880_HP_EVENT:
1603 alc880_uniwill_hp_automute(codec);
1605 case ALC880_MIC_EVENT:
1606 alc880_uniwill_mic_automute(codec);
1611 static void alc880_uniwill_p53_hp_automute(struct hda_codec *codec)
1613 unsigned int present;
1616 present = snd_hda_codec_read(codec, 0x14, 0,
1617 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
1618 bits = present ? HDA_AMP_MUTE : 0;
1619 snd_hda_codec_amp_stereo(codec, 0x15, HDA_INPUT, 0, HDA_AMP_MUTE, bits);
1622 static void alc880_uniwill_p53_dcvol_automute(struct hda_codec *codec)
1624 unsigned int present;
1626 present = snd_hda_codec_read(codec, 0x21, 0,
1627 AC_VERB_GET_VOLUME_KNOB_CONTROL, 0);
1628 present &= HDA_AMP_VOLMASK;
1629 snd_hda_codec_amp_stereo(codec, 0x0c, HDA_OUTPUT, 0,
1630 HDA_AMP_VOLMASK, present);
1631 snd_hda_codec_amp_stereo(codec, 0x0d, HDA_OUTPUT, 0,
1632 HDA_AMP_VOLMASK, present);
1635 static void alc880_uniwill_p53_unsol_event(struct hda_codec *codec,
1638 /* Looks like the unsol event is incompatible with the standard
1639 * definition. 4bit tag is placed at 28 bit!
1641 if ((res >> 28) == ALC880_HP_EVENT)
1642 alc880_uniwill_p53_hp_automute(codec);
1643 if ((res >> 28) == ALC880_DCVOL_EVENT)
1644 alc880_uniwill_p53_dcvol_automute(codec);
1649 * F1734 pin configuration:
1650 * HP = 0x14, speaker-out = 0x15, mic = 0x18
1652 static struct hda_verb alc880_pin_f1734_init_verbs[] = {
1653 {0x10, AC_VERB_SET_CONNECT_SEL, 0x02},
1654 {0x11, AC_VERB_SET_CONNECT_SEL, 0x00},
1655 {0x12, AC_VERB_SET_CONNECT_SEL, 0x01},
1656 {0x13, AC_VERB_SET_CONNECT_SEL, 0x00},
1658 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1659 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1660 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1661 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1663 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1664 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1665 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1666 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1667 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1668 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1669 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1670 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1671 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1678 * ASUS pin configuration:
1679 * HP/front = 0x14, surr = 0x15, clfe = 0x16, mic = 0x18, line = 0x1a
1681 static struct hda_verb alc880_pin_asus_init_verbs[] = {
1682 {0x10, AC_VERB_SET_CONNECT_SEL, 0x02},
1683 {0x11, AC_VERB_SET_CONNECT_SEL, 0x00},
1684 {0x12, AC_VERB_SET_CONNECT_SEL, 0x01},
1685 {0x13, AC_VERB_SET_CONNECT_SEL, 0x00},
1687 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1688 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1689 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1690 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1691 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1692 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1693 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1694 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1696 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1697 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1698 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1699 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1700 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1701 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1702 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1703 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1704 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1709 /* Enable GPIO mask and set output */
1710 #define alc880_gpio1_init_verbs alc_gpio1_init_verbs
1711 #define alc880_gpio2_init_verbs alc_gpio2_init_verbs
1713 /* Clevo m520g init */
1714 static struct hda_verb alc880_pin_clevo_init_verbs[] = {
1715 /* headphone output */
1716 {0x11, AC_VERB_SET_CONNECT_SEL, 0x01},
1718 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1719 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1721 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1722 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1724 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1725 {0x1c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1726 /* Mic1 (rear panel) */
1727 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1728 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1729 /* Mic2 (front panel) */
1730 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1731 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1733 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1734 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1735 /* change to EAPD mode */
1736 {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
1737 {0x20, AC_VERB_SET_PROC_COEF, 0x3060},
1742 static struct hda_verb alc880_pin_tcl_S700_init_verbs[] = {
1743 /* change to EAPD mode */
1744 {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
1745 {0x20, AC_VERB_SET_PROC_COEF, 0x3060},
1747 /* Headphone output */
1748 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1750 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1751 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
1753 /* Line In pin widget for input */
1754 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1755 /* CD pin widget for input */
1756 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1757 /* Mic1 (rear panel) pin widget for input and vref at 80% */
1758 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1760 /* change to EAPD mode */
1761 {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
1762 {0x20, AC_VERB_SET_PROC_COEF, 0x3070},
1768 * LG m1 express dual
1771 * Rear Line-In/Out (blue): 0x14
1772 * Build-in Mic-In: 0x15
1774 * HP-Out (green): 0x1b
1775 * Mic-In/Out (red): 0x19
1779 /* To make 5.1 output working (green=Front, blue=Surr, red=CLFE) */
1780 static hda_nid_t alc880_lg_dac_nids[3] = {
1784 /* seems analog CD is not working */
1785 static struct hda_input_mux alc880_lg_capture_source = {
1790 { "Internal Mic", 0x6 },
1794 /* 2,4,6 channel modes */
1795 static struct hda_verb alc880_lg_ch2_init[] = {
1796 /* set line-in and mic-in to input */
1797 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
1798 { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
1802 static struct hda_verb alc880_lg_ch4_init[] = {
1803 /* set line-in to out and mic-in to input */
1804 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
1805 { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
1809 static struct hda_verb alc880_lg_ch6_init[] = {
1810 /* set line-in and mic-in to output */
1811 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
1812 { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
1816 static struct hda_channel_mode alc880_lg_ch_modes[3] = {
1817 { 2, alc880_lg_ch2_init },
1818 { 4, alc880_lg_ch4_init },
1819 { 6, alc880_lg_ch6_init },
1822 static struct snd_kcontrol_new alc880_lg_mixer[] = {
1823 /* FIXME: it's not really "master" but front channels */
1824 HDA_CODEC_VOLUME("Master Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
1825 HDA_BIND_MUTE("Master Playback Switch", 0x0f, 2, HDA_INPUT),
1826 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1827 HDA_BIND_MUTE("Surround Playback Switch", 0x0c, 2, HDA_INPUT),
1828 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0d, 1, 0x0, HDA_OUTPUT),
1829 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0d, 2, 0x0, HDA_OUTPUT),
1830 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0d, 1, 2, HDA_INPUT),
1831 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0d, 2, 2, HDA_INPUT),
1832 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
1833 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
1834 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x06, HDA_INPUT),
1835 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x06, HDA_INPUT),
1836 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x0b, 0x07, HDA_INPUT),
1837 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x0b, 0x07, HDA_INPUT),
1839 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1840 .name = "Channel Mode",
1841 .info = alc_ch_mode_info,
1842 .get = alc_ch_mode_get,
1843 .put = alc_ch_mode_put,
1848 static struct hda_verb alc880_lg_init_verbs[] = {
1849 /* set capture source to mic-in */
1850 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
1851 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
1852 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
1853 /* mute all amp mixer inputs */
1854 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(5)},
1855 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)},
1856 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)},
1857 /* line-in to input */
1858 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1859 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1861 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1862 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1864 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1865 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1866 /* mic-in to input */
1867 {0x11, AC_VERB_SET_CONNECT_SEL, 0x01},
1868 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1869 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1871 {0x13, AC_VERB_SET_CONNECT_SEL, 0x03},
1872 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1873 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1875 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | 0x1},
1879 /* toggle speaker-output according to the hp-jack state */
1880 static void alc880_lg_automute(struct hda_codec *codec)
1882 unsigned int present;
1885 present = snd_hda_codec_read(codec, 0x1b, 0,
1886 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
1887 bits = present ? HDA_AMP_MUTE : 0;
1888 snd_hda_codec_amp_stereo(codec, 0x17, HDA_OUTPUT, 0,
1889 HDA_AMP_MUTE, bits);
1892 static void alc880_lg_unsol_event(struct hda_codec *codec, unsigned int res)
1894 /* Looks like the unsol event is incompatible with the standard
1895 * definition. 4bit tag is placed at 28 bit!
1897 if ((res >> 28) == 0x01)
1898 alc880_lg_automute(codec);
1907 * Built-in Mic-In: 0x19
1913 static struct hda_input_mux alc880_lg_lw_capture_source = {
1917 { "Internal Mic", 0x1 },
1922 #define alc880_lg_lw_modes alc880_threestack_modes
1924 static struct snd_kcontrol_new alc880_lg_lw_mixer[] = {
1925 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1926 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
1927 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
1928 HDA_BIND_MUTE("Surround Playback Switch", 0x0f, 2, HDA_INPUT),
1929 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
1930 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
1931 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
1932 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
1933 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
1934 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
1935 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1936 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
1937 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x0b, 0x01, HDA_INPUT),
1938 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x0b, 0x01, HDA_INPUT),
1940 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1941 .name = "Channel Mode",
1942 .info = alc_ch_mode_info,
1943 .get = alc_ch_mode_get,
1944 .put = alc_ch_mode_put,
1949 static struct hda_verb alc880_lg_lw_init_verbs[] = {
1950 {0x13, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
1951 {0x10, AC_VERB_SET_CONNECT_SEL, 0x02}, /* mic/clfe */
1952 {0x12, AC_VERB_SET_CONNECT_SEL, 0x03}, /* line/surround */
1954 /* set capture source to mic-in */
1955 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1956 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1957 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1958 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)},
1960 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1961 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1963 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1964 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1965 /* mic-in to input */
1966 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1967 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1969 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1970 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1972 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | 0x1},
1976 /* toggle speaker-output according to the hp-jack state */
1977 static void alc880_lg_lw_automute(struct hda_codec *codec)
1979 unsigned int present;
1982 present = snd_hda_codec_read(codec, 0x1b, 0,
1983 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
1984 bits = present ? HDA_AMP_MUTE : 0;
1985 snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0,
1986 HDA_AMP_MUTE, bits);
1989 static void alc880_lg_lw_unsol_event(struct hda_codec *codec, unsigned int res)
1991 /* Looks like the unsol event is incompatible with the standard
1992 * definition. 4bit tag is placed at 28 bit!
1994 if ((res >> 28) == 0x01)
1995 alc880_lg_lw_automute(codec);
1998 #ifdef CONFIG_SND_HDA_POWER_SAVE
1999 static struct hda_amp_list alc880_loopbacks[] = {
2000 { 0x0b, HDA_INPUT, 0 },
2001 { 0x0b, HDA_INPUT, 1 },
2002 { 0x0b, HDA_INPUT, 2 },
2003 { 0x0b, HDA_INPUT, 3 },
2004 { 0x0b, HDA_INPUT, 4 },
2008 static struct hda_amp_list alc880_lg_loopbacks[] = {
2009 { 0x0b, HDA_INPUT, 1 },
2010 { 0x0b, HDA_INPUT, 6 },
2011 { 0x0b, HDA_INPUT, 7 },
2020 static int alc_init(struct hda_codec *codec)
2022 struct alc_spec *spec = codec->spec;
2025 for (i = 0; i < spec->num_init_verbs; i++)
2026 snd_hda_sequence_write(codec, spec->init_verbs[i]);
2028 if (spec->init_hook)
2029 spec->init_hook(codec);
2034 static void alc_unsol_event(struct hda_codec *codec, unsigned int res)
2036 struct alc_spec *spec = codec->spec;
2038 if (spec->unsol_event)
2039 spec->unsol_event(codec, res);
2042 #ifdef CONFIG_SND_HDA_POWER_SAVE
2043 static int alc_check_power_status(struct hda_codec *codec, hda_nid_t nid)
2045 struct alc_spec *spec = codec->spec;
2046 return snd_hda_check_amp_list_power(codec, &spec->loopback, nid);
2051 * Analog playback callbacks
2053 static int alc880_playback_pcm_open(struct hda_pcm_stream *hinfo,
2054 struct hda_codec *codec,
2055 struct snd_pcm_substream *substream)
2057 struct alc_spec *spec = codec->spec;
2058 return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream);
2061 static int alc880_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
2062 struct hda_codec *codec,
2063 unsigned int stream_tag,
2064 unsigned int format,
2065 struct snd_pcm_substream *substream)
2067 struct alc_spec *spec = codec->spec;
2068 return snd_hda_multi_out_analog_prepare(codec, &spec->multiout,
2069 stream_tag, format, substream);
2072 static int alc880_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
2073 struct hda_codec *codec,
2074 struct snd_pcm_substream *substream)
2076 struct alc_spec *spec = codec->spec;
2077 return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout);
2083 static int alc880_dig_playback_pcm_open(struct hda_pcm_stream *hinfo,
2084 struct hda_codec *codec,
2085 struct snd_pcm_substream *substream)
2087 struct alc_spec *spec = codec->spec;
2088 return snd_hda_multi_out_dig_open(codec, &spec->multiout);
2091 static int alc880_dig_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
2092 struct hda_codec *codec,
2093 unsigned int stream_tag,
2094 unsigned int format,
2095 struct snd_pcm_substream *substream)
2097 struct alc_spec *spec = codec->spec;
2098 return snd_hda_multi_out_dig_prepare(codec, &spec->multiout,
2099 stream_tag, format, substream);
2102 static int alc880_dig_playback_pcm_close(struct hda_pcm_stream *hinfo,
2103 struct hda_codec *codec,
2104 struct snd_pcm_substream *substream)
2106 struct alc_spec *spec = codec->spec;
2107 return snd_hda_multi_out_dig_close(codec, &spec->multiout);
2113 static int alc880_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
2114 struct hda_codec *codec,
2115 unsigned int stream_tag,
2116 unsigned int format,
2117 struct snd_pcm_substream *substream)
2119 struct alc_spec *spec = codec->spec;
2121 snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number],
2122 stream_tag, 0, format);
2126 static int alc880_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
2127 struct hda_codec *codec,
2128 struct snd_pcm_substream *substream)
2130 struct alc_spec *spec = codec->spec;
2132 snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number],
2140 static struct hda_pcm_stream alc880_pcm_analog_playback = {
2144 /* NID is set in alc_build_pcms */
2146 .open = alc880_playback_pcm_open,
2147 .prepare = alc880_playback_pcm_prepare,
2148 .cleanup = alc880_playback_pcm_cleanup
2152 static struct hda_pcm_stream alc880_pcm_analog_capture = {
2156 /* NID is set in alc_build_pcms */
2158 .prepare = alc880_capture_pcm_prepare,
2159 .cleanup = alc880_capture_pcm_cleanup
2163 static struct hda_pcm_stream alc880_pcm_digital_playback = {
2167 /* NID is set in alc_build_pcms */
2169 .open = alc880_dig_playback_pcm_open,
2170 .close = alc880_dig_playback_pcm_close,
2171 .prepare = alc880_dig_playback_pcm_prepare
2175 static struct hda_pcm_stream alc880_pcm_digital_capture = {
2179 /* NID is set in alc_build_pcms */
2182 /* Used by alc_build_pcms to flag that a PCM has no playback stream */
2183 static struct hda_pcm_stream alc_pcm_null_playback = {
2189 static int alc_build_pcms(struct hda_codec *codec)
2191 struct alc_spec *spec = codec->spec;
2192 struct hda_pcm *info = spec->pcm_rec;
2195 codec->num_pcms = 1;
2196 codec->pcm_info = info;
2198 info->name = spec->stream_name_analog;
2199 if (spec->stream_analog_playback) {
2200 snd_assert(spec->multiout.dac_nids, return -EINVAL);
2201 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = *(spec->stream_analog_playback);
2202 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dac_nids[0];
2204 if (spec->stream_analog_capture) {
2205 snd_assert(spec->adc_nids, return -EINVAL);
2206 info->stream[SNDRV_PCM_STREAM_CAPTURE] = *(spec->stream_analog_capture);
2207 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[0];
2210 if (spec->channel_mode) {
2211 info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max = 0;
2212 for (i = 0; i < spec->num_channel_mode; i++) {
2213 if (spec->channel_mode[i].channels > info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max) {
2214 info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max = spec->channel_mode[i].channels;
2219 /* SPDIF for stream index #1 */
2220 if (spec->multiout.dig_out_nid || spec->dig_in_nid) {
2221 codec->num_pcms = 2;
2222 info = spec->pcm_rec + 1;
2223 info->name = spec->stream_name_digital;
2224 if (spec->multiout.dig_out_nid &&
2225 spec->stream_digital_playback) {
2226 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = *(spec->stream_digital_playback);
2227 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dig_out_nid;
2229 if (spec->dig_in_nid &&
2230 spec->stream_digital_capture) {
2231 info->stream[SNDRV_PCM_STREAM_CAPTURE] = *(spec->stream_digital_capture);
2232 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->dig_in_nid;
2236 /* If the use of more than one ADC is requested for the current
2237 * model, configure a second analog capture-only PCM.
2239 /* Additional Analaog capture for index #2 */
2240 if (spec->num_adc_nids > 1 && spec->stream_analog_capture &&
2242 codec->num_pcms = 3;
2243 info = spec->pcm_rec + 2;
2244 info->name = spec->stream_name_analog;
2245 /* No playback stream for second PCM */
2246 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = alc_pcm_null_playback;
2247 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = 0;
2248 if (spec->stream_analog_capture) {
2249 info->stream[SNDRV_PCM_STREAM_CAPTURE] = *(spec->stream_analog_capture);
2250 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[1];
2257 static void alc_free(struct hda_codec *codec)
2259 struct alc_spec *spec = codec->spec;
2265 if (spec->kctl_alloc) {
2266 for (i = 0; i < spec->num_kctl_used; i++)
2267 kfree(spec->kctl_alloc[i].name);
2268 kfree(spec->kctl_alloc);
2275 static struct hda_codec_ops alc_patch_ops = {
2276 .build_controls = alc_build_controls,
2277 .build_pcms = alc_build_pcms,
2280 .unsol_event = alc_unsol_event,
2281 #ifdef CONFIG_SND_HDA_POWER_SAVE
2282 .check_power_status = alc_check_power_status,
2288 * Test configuration for debugging
2290 * Almost all inputs/outputs are enabled. I/O pins can be configured via
2293 #ifdef CONFIG_SND_DEBUG
2294 static hda_nid_t alc880_test_dac_nids[4] = {
2295 0x02, 0x03, 0x04, 0x05
2298 static struct hda_input_mux alc880_test_capture_source = {
2307 { "Surround", 0x6 },
2311 static struct hda_channel_mode alc880_test_modes[4] = {
2318 static int alc_test_pin_ctl_info(struct snd_kcontrol *kcontrol,
2319 struct snd_ctl_elem_info *uinfo)
2321 static char *texts[] = {
2322 "N/A", "Line Out", "HP Out",
2323 "In Hi-Z", "In 50%", "In Grd", "In 80%", "In 100%"
2325 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2327 uinfo->value.enumerated.items = 8;
2328 if (uinfo->value.enumerated.item >= 8)
2329 uinfo->value.enumerated.item = 7;
2330 strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);
2334 static int alc_test_pin_ctl_get(struct snd_kcontrol *kcontrol,
2335 struct snd_ctl_elem_value *ucontrol)
2337 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2338 hda_nid_t nid = (hda_nid_t)kcontrol->private_value;
2339 unsigned int pin_ctl, item = 0;
2341 pin_ctl = snd_hda_codec_read(codec, nid, 0,
2342 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
2343 if (pin_ctl & AC_PINCTL_OUT_EN) {
2344 if (pin_ctl & AC_PINCTL_HP_EN)
2348 } else if (pin_ctl & AC_PINCTL_IN_EN) {
2349 switch (pin_ctl & AC_PINCTL_VREFEN) {
2350 case AC_PINCTL_VREF_HIZ: item = 3; break;
2351 case AC_PINCTL_VREF_50: item = 4; break;
2352 case AC_PINCTL_VREF_GRD: item = 5; break;
2353 case AC_PINCTL_VREF_80: item = 6; break;
2354 case AC_PINCTL_VREF_100: item = 7; break;
2357 ucontrol->value.enumerated.item[0] = item;
2361 static int alc_test_pin_ctl_put(struct snd_kcontrol *kcontrol,
2362 struct snd_ctl_elem_value *ucontrol)
2364 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2365 hda_nid_t nid = (hda_nid_t)kcontrol->private_value;
2366 static unsigned int ctls[] = {
2367 0, AC_PINCTL_OUT_EN, AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN,
2368 AC_PINCTL_IN_EN | AC_PINCTL_VREF_HIZ,
2369 AC_PINCTL_IN_EN | AC_PINCTL_VREF_50,
2370 AC_PINCTL_IN_EN | AC_PINCTL_VREF_GRD,
2371 AC_PINCTL_IN_EN | AC_PINCTL_VREF_80,
2372 AC_PINCTL_IN_EN | AC_PINCTL_VREF_100,
2374 unsigned int old_ctl, new_ctl;
2376 old_ctl = snd_hda_codec_read(codec, nid, 0,
2377 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
2378 new_ctl = ctls[ucontrol->value.enumerated.item[0]];
2379 if (old_ctl != new_ctl) {
2381 snd_hda_codec_write_cache(codec, nid, 0,
2382 AC_VERB_SET_PIN_WIDGET_CONTROL,
2384 val = ucontrol->value.enumerated.item[0] >= 3 ?
2386 snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
2393 static int alc_test_pin_src_info(struct snd_kcontrol *kcontrol,
2394 struct snd_ctl_elem_info *uinfo)
2396 static char *texts[] = {
2397 "Front", "Surround", "CLFE", "Side"
2399 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2401 uinfo->value.enumerated.items = 4;
2402 if (uinfo->value.enumerated.item >= 4)
2403 uinfo->value.enumerated.item = 3;
2404 strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);
2408 static int alc_test_pin_src_get(struct snd_kcontrol *kcontrol,
2409 struct snd_ctl_elem_value *ucontrol)
2411 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2412 hda_nid_t nid = (hda_nid_t)kcontrol->private_value;
2415 sel = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_CONNECT_SEL, 0);
2416 ucontrol->value.enumerated.item[0] = sel & 3;
2420 static int alc_test_pin_src_put(struct snd_kcontrol *kcontrol,
2421 struct snd_ctl_elem_value *ucontrol)
2423 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2424 hda_nid_t nid = (hda_nid_t)kcontrol->private_value;
2427 sel = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_CONNECT_SEL, 0) & 3;
2428 if (ucontrol->value.enumerated.item[0] != sel) {
2429 sel = ucontrol->value.enumerated.item[0] & 3;
2430 snd_hda_codec_write_cache(codec, nid, 0,
2431 AC_VERB_SET_CONNECT_SEL, sel);
2437 #define PIN_CTL_TEST(xname,nid) { \
2438 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2440 .info = alc_test_pin_ctl_info, \
2441 .get = alc_test_pin_ctl_get, \
2442 .put = alc_test_pin_ctl_put, \
2443 .private_value = nid \
2446 #define PIN_SRC_TEST(xname,nid) { \
2447 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2449 .info = alc_test_pin_src_info, \
2450 .get = alc_test_pin_src_get, \
2451 .put = alc_test_pin_src_put, \
2452 .private_value = nid \
2455 static struct snd_kcontrol_new alc880_test_mixer[] = {
2456 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
2457 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
2458 HDA_CODEC_VOLUME("CLFE Playback Volume", 0x0e, 0x0, HDA_OUTPUT),
2459 HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
2460 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
2461 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
2462 HDA_BIND_MUTE("CLFE Playback Switch", 0x0e, 2, HDA_INPUT),
2463 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT),
2464 PIN_CTL_TEST("Front Pin Mode", 0x14),
2465 PIN_CTL_TEST("Surround Pin Mode", 0x15),
2466 PIN_CTL_TEST("CLFE Pin Mode", 0x16),
2467 PIN_CTL_TEST("Side Pin Mode", 0x17),
2468 PIN_CTL_TEST("In-1 Pin Mode", 0x18),
2469 PIN_CTL_TEST("In-2 Pin Mode", 0x19),
2470 PIN_CTL_TEST("In-3 Pin Mode", 0x1a),
2471 PIN_CTL_TEST("In-4 Pin Mode", 0x1b),
2472 PIN_SRC_TEST("In-1 Pin Source", 0x18),
2473 PIN_SRC_TEST("In-2 Pin Source", 0x19),
2474 PIN_SRC_TEST("In-3 Pin Source", 0x1a),
2475 PIN_SRC_TEST("In-4 Pin Source", 0x1b),
2476 HDA_CODEC_VOLUME("In-1 Playback Volume", 0x0b, 0x0, HDA_INPUT),
2477 HDA_CODEC_MUTE("In-1 Playback Switch", 0x0b, 0x0, HDA_INPUT),
2478 HDA_CODEC_VOLUME("In-2 Playback Volume", 0x0b, 0x1, HDA_INPUT),
2479 HDA_CODEC_MUTE("In-2 Playback Switch", 0x0b, 0x1, HDA_INPUT),
2480 HDA_CODEC_VOLUME("In-3 Playback Volume", 0x0b, 0x2, HDA_INPUT),
2481 HDA_CODEC_MUTE("In-3 Playback Switch", 0x0b, 0x2, HDA_INPUT),
2482 HDA_CODEC_VOLUME("In-4 Playback Volume", 0x0b, 0x3, HDA_INPUT),
2483 HDA_CODEC_MUTE("In-4 Playback Switch", 0x0b, 0x3, HDA_INPUT),
2484 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x4, HDA_INPUT),
2485 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x4, HDA_INPUT),
2487 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2488 .name = "Channel Mode",
2489 .info = alc_ch_mode_info,
2490 .get = alc_ch_mode_get,
2491 .put = alc_ch_mode_put,
2496 static struct hda_verb alc880_test_init_verbs[] = {
2497 /* Unmute inputs of 0x0c - 0x0f */
2498 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2499 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
2500 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2501 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
2502 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2503 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
2504 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2505 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
2506 /* Vol output for 0x0c-0x0f */
2507 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2508 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2509 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2510 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2511 /* Set output pins 0x14-0x17 */
2512 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2513 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2514 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2515 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2516 /* Unmute output pins 0x14-0x17 */
2517 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2518 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2519 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2520 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2521 /* Set input pins 0x18-0x1c */
2522 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
2523 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
2524 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
2525 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
2526 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
2527 /* Mute input pins 0x18-0x1b */
2528 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2529 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2530 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2531 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2533 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2534 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
2535 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2536 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
2537 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2538 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
2539 /* Analog input/passthru */
2540 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2541 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2542 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
2543 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2544 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
2552 static const char *alc880_models[ALC880_MODEL_LAST] = {
2553 [ALC880_3ST] = "3stack",
2554 [ALC880_TCL_S700] = "tcl",
2555 [ALC880_3ST_DIG] = "3stack-digout",
2556 [ALC880_CLEVO] = "clevo",
2557 [ALC880_5ST] = "5stack",
2558 [ALC880_5ST_DIG] = "5stack-digout",
2559 [ALC880_W810] = "w810",
2560 [ALC880_Z71V] = "z71v",
2561 [ALC880_6ST] = "6stack",
2562 [ALC880_6ST_DIG] = "6stack-digout",
2563 [ALC880_ASUS] = "asus",
2564 [ALC880_ASUS_W1V] = "asus-w1v",
2565 [ALC880_ASUS_DIG] = "asus-dig",
2566 [ALC880_ASUS_DIG2] = "asus-dig2",
2567 [ALC880_UNIWILL_DIG] = "uniwill",
2568 [ALC880_UNIWILL_P53] = "uniwill-p53",
2569 [ALC880_FUJITSU] = "fujitsu",
2570 [ALC880_F1734] = "F1734",
2572 [ALC880_LG_LW] = "lg-lw",
2573 #ifdef CONFIG_SND_DEBUG
2574 [ALC880_TEST] = "test",
2576 [ALC880_AUTO] = "auto",
2579 static struct snd_pci_quirk alc880_cfg_tbl[] = {
2580 /* Broken BIOS configuration */
2581 SND_PCI_QUIRK(0x2668, 0x8086, NULL, ALC880_6ST_DIG),
2582 SND_PCI_QUIRK(0x8086, 0x2668, NULL, ALC880_6ST_DIG),
2584 SND_PCI_QUIRK(0x1019, 0xa880, "ECS", ALC880_5ST_DIG),
2585 SND_PCI_QUIRK(0x1019, 0xa884, "Acer APFV", ALC880_6ST),
2586 SND_PCI_QUIRK(0x1019, 0x0f69, "Coeus G610P", ALC880_W810),
2587 SND_PCI_QUIRK(0x1025, 0x0070, "ULI", ALC880_3ST_DIG),
2588 SND_PCI_QUIRK(0x1025, 0x0077, "ULI", ALC880_6ST_DIG),
2589 SND_PCI_QUIRK(0x1025, 0x0078, "ULI", ALC880_6ST_DIG),
2590 SND_PCI_QUIRK(0x1025, 0x0087, "ULI", ALC880_6ST_DIG),
2591 SND_PCI_QUIRK(0x1025, 0xe309, "ULI", ALC880_3ST_DIG),
2592 SND_PCI_QUIRK(0x1025, 0xe310, "ULI", ALC880_3ST),
2594 SND_PCI_QUIRK(0x1039, 0x1234, NULL, ALC880_6ST_DIG),
2595 SND_PCI_QUIRK(0x103c, 0x2a09, "HP", ALC880_5ST),
2597 SND_PCI_QUIRK(0x1043, 0x10b3, "ASUS W1V", ALC880_ASUS_W1V),
2598 SND_PCI_QUIRK(0x1043, 0x10c2, "ASUS W6A", ALC880_ASUS_DIG),
2599 SND_PCI_QUIRK(0x1043, 0x10c3, "ASUS Wxx", ALC880_ASUS_DIG),
2600 SND_PCI_QUIRK(0x1043, 0x1113, "ASUS", ALC880_ASUS_DIG),
2601 SND_PCI_QUIRK(0x1043, 0x1123, "ASUS", ALC880_ASUS_DIG),
2602 SND_PCI_QUIRK(0x1043, 0x1173, "ASUS", ALC880_ASUS_DIG),
2603 SND_PCI_QUIRK(0x1043, 0x1964, "ASUS Z71V", ALC880_Z71V),
2604 /* SND_PCI_QUIRK(0x1043, 0x1964, "ASUS", ALC880_ASUS_DIG), */
2605 SND_PCI_QUIRK(0x1043, 0x1973, "ASUS", ALC880_ASUS_DIG),
2606 SND_PCI_QUIRK(0x1043, 0x19b3, "ASUS", ALC880_ASUS_DIG),
2607 SND_PCI_QUIRK(0x1043, 0x814e, "ASUS", ALC880_ASUS),
2608 SND_PCI_QUIRK(0x1043, 0x8181, "ASUS P4GPL", ALC880_ASUS_DIG),
2609 SND_PCI_QUIRK(0x1043, 0x8196, "ASUS P5GD1", ALC880_6ST),
2610 SND_PCI_QUIRK(0x1043, 0x81b4, "ASUS", ALC880_6ST),
2611 SND_PCI_QUIRK(0x1043, 0, "ASUS", ALC880_ASUS),
2613 SND_PCI_QUIRK(0x104d, 0x81d6, "Sony", ALC880_3ST),
2614 SND_PCI_QUIRK(0x104d, 0x81a0, "Sony", ALC880_3ST),
2615 SND_PCI_QUIRK(0x107b, 0x3033, "Gateway", ALC880_5ST),
2616 SND_PCI_QUIRK(0x107b, 0x4039, "Gateway", ALC880_5ST),
2617 SND_PCI_QUIRK(0x107b, 0x3032, "Gateway", ALC880_5ST),
2618 SND_PCI_QUIRK(0x1558, 0x0520, "Clevo m520G", ALC880_CLEVO),
2619 SND_PCI_QUIRK(0x1558, 0x0660, "Clevo m655n", ALC880_CLEVO),
2620 SND_PCI_QUIRK(0x1565, 0x8202, "Biostar", ALC880_5ST_DIG),
2621 SND_PCI_QUIRK(0x161f, 0x203d, "W810", ALC880_W810),
2622 SND_PCI_QUIRK(0x1695, 0x400d, "EPoX", ALC880_5ST_DIG),
2623 SND_PCI_QUIRK(0x19db, 0x4188, "TCL S700", ALC880_TCL_S700),
2624 SND_PCI_QUIRK(0xa0a0, 0x0560, "AOpen i915GMm-HFS", ALC880_5ST_DIG),
2625 SND_PCI_QUIRK(0xe803, 0x1019, NULL, ALC880_6ST_DIG),
2626 SND_PCI_QUIRK(0x1297, 0xc790, "Shuttle ST20G5", ALC880_6ST_DIG),
2627 SND_PCI_QUIRK(0x1458, 0xa102, "Gigabyte K8", ALC880_6ST_DIG),
2628 SND_PCI_QUIRK(0x1462, 0x1150, "MSI", ALC880_6ST_DIG),
2629 SND_PCI_QUIRK(0x1509, 0x925d, "FIC P4M", ALC880_6ST_DIG),
2630 SND_PCI_QUIRK(0x1558, 0x5401, "ASUS", ALC880_ASUS_DIG2),
2632 SND_PCI_QUIRK(0x1584, 0x9050, "Uniwill", ALC880_UNIWILL_DIG),
2633 SND_PCI_QUIRK(0x1584, 0x9070, "Uniwill", ALC880_UNIWILL),
2634 SND_PCI_QUIRK(0x1584, 0x9077, "Uniwill P53", ALC880_UNIWILL_P53),
2635 SND_PCI_QUIRK(0x1584, 0x9054, "Uniwlll", ALC880_F1734),
2637 SND_PCI_QUIRK(0x1695, 0x4012, "EPox EP-5LDA", ALC880_5ST_DIG),
2638 SND_PCI_QUIRK(0x1734, 0x10ac, "FSC", ALC880_UNIWILL),
2639 SND_PCI_QUIRK(0x1734, 0x107c, "FSC F1734", ALC880_F1734),
2640 SND_PCI_QUIRK(0x1734, 0x10b0, "Fujitsu", ALC880_FUJITSU),
2642 SND_PCI_QUIRK(0x1854, 0x003b, "LG", ALC880_LG),
2643 SND_PCI_QUIRK(0x1854, 0x0068, "LG w1", ALC880_LG),
2644 SND_PCI_QUIRK(0x1854, 0x0018, "LG LW20", ALC880_LG_LW),
2645 SND_PCI_QUIRK(0x1854, 0x0077, "LG LW25", ALC880_LG_LW),
2647 SND_PCI_QUIRK(0x8086, 0xe308, "Intel mobo", ALC880_3ST_DIG),
2648 SND_PCI_QUIRK(0x8086, 0xe305, "Intel mobo", ALC880_3ST_DIG),
2649 SND_PCI_QUIRK(0x8086, 0xd402, "Intel mobo", ALC880_3ST_DIG),
2650 SND_PCI_QUIRK(0x8086, 0xd400, "Intel mobo", ALC880_5ST_DIG),
2651 SND_PCI_QUIRK(0x8086, 0xd401, "Intel mobo", ALC880_5ST_DIG),
2652 SND_PCI_QUIRK(0x8086, 0xe224, "Intel mobo", ALC880_5ST_DIG),
2653 SND_PCI_QUIRK(0x8086, 0xe400, "Intel mobo", ALC880_5ST_DIG),
2654 SND_PCI_QUIRK(0x8086, 0xe401, "Intel mobo", ALC880_5ST_DIG),
2655 SND_PCI_QUIRK(0x8086, 0xe402, "Intel mobo", ALC880_5ST_DIG),
2656 SND_PCI_QUIRK(0x8086, 0xa100, "Intel mobo", ALC880_5ST_DIG),
2657 SND_PCI_QUIRK(0x8086, 0, "Intel mobo", ALC880_3ST),
2663 * ALC880 codec presets
2665 static struct alc_config_preset alc880_presets[] = {
2667 .mixers = { alc880_three_stack_mixer },
2668 .init_verbs = { alc880_volume_init_verbs,
2669 alc880_pin_3stack_init_verbs },
2670 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2671 .dac_nids = alc880_dac_nids,
2672 .num_channel_mode = ARRAY_SIZE(alc880_threestack_modes),
2673 .channel_mode = alc880_threestack_modes,
2675 .input_mux = &alc880_capture_source,
2677 [ALC880_3ST_DIG] = {
2678 .mixers = { alc880_three_stack_mixer },
2679 .init_verbs = { alc880_volume_init_verbs,
2680 alc880_pin_3stack_init_verbs },
2681 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2682 .dac_nids = alc880_dac_nids,
2683 .dig_out_nid = ALC880_DIGOUT_NID,
2684 .num_channel_mode = ARRAY_SIZE(alc880_threestack_modes),
2685 .channel_mode = alc880_threestack_modes,
2687 .input_mux = &alc880_capture_source,
2689 [ALC880_TCL_S700] = {
2690 .mixers = { alc880_tcl_s700_mixer },
2691 .init_verbs = { alc880_volume_init_verbs,
2692 alc880_pin_tcl_S700_init_verbs,
2693 alc880_gpio2_init_verbs },
2694 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2695 .dac_nids = alc880_dac_nids,
2697 .num_channel_mode = ARRAY_SIZE(alc880_2_jack_modes),
2698 .channel_mode = alc880_2_jack_modes,
2699 .input_mux = &alc880_capture_source,
2702 .mixers = { alc880_three_stack_mixer,
2703 alc880_five_stack_mixer},
2704 .init_verbs = { alc880_volume_init_verbs,
2705 alc880_pin_5stack_init_verbs },
2706 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2707 .dac_nids = alc880_dac_nids,
2708 .num_channel_mode = ARRAY_SIZE(alc880_fivestack_modes),
2709 .channel_mode = alc880_fivestack_modes,
2710 .input_mux = &alc880_capture_source,
2712 [ALC880_5ST_DIG] = {
2713 .mixers = { alc880_three_stack_mixer,
2714 alc880_five_stack_mixer },
2715 .init_verbs = { alc880_volume_init_verbs,
2716 alc880_pin_5stack_init_verbs },
2717 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2718 .dac_nids = alc880_dac_nids,
2719 .dig_out_nid = ALC880_DIGOUT_NID,
2720 .num_channel_mode = ARRAY_SIZE(alc880_fivestack_modes),
2721 .channel_mode = alc880_fivestack_modes,
2722 .input_mux = &alc880_capture_source,
2725 .mixers = { alc880_six_stack_mixer },
2726 .init_verbs = { alc880_volume_init_verbs,
2727 alc880_pin_6stack_init_verbs },
2728 .num_dacs = ARRAY_SIZE(alc880_6st_dac_nids),
2729 .dac_nids = alc880_6st_dac_nids,
2730 .num_channel_mode = ARRAY_SIZE(alc880_sixstack_modes),
2731 .channel_mode = alc880_sixstack_modes,
2732 .input_mux = &alc880_6stack_capture_source,
2734 [ALC880_6ST_DIG] = {
2735 .mixers = { alc880_six_stack_mixer },
2736 .init_verbs = { alc880_volume_init_verbs,
2737 alc880_pin_6stack_init_verbs },
2738 .num_dacs = ARRAY_SIZE(alc880_6st_dac_nids),
2739 .dac_nids = alc880_6st_dac_nids,
2740 .dig_out_nid = ALC880_DIGOUT_NID,
2741 .num_channel_mode = ARRAY_SIZE(alc880_sixstack_modes),
2742 .channel_mode = alc880_sixstack_modes,
2743 .input_mux = &alc880_6stack_capture_source,
2746 .mixers = { alc880_w810_base_mixer },
2747 .init_verbs = { alc880_volume_init_verbs,
2748 alc880_pin_w810_init_verbs,
2749 alc880_gpio2_init_verbs },
2750 .num_dacs = ARRAY_SIZE(alc880_w810_dac_nids),
2751 .dac_nids = alc880_w810_dac_nids,
2752 .dig_out_nid = ALC880_DIGOUT_NID,
2753 .num_channel_mode = ARRAY_SIZE(alc880_w810_modes),
2754 .channel_mode = alc880_w810_modes,
2755 .input_mux = &alc880_capture_source,
2758 .mixers = { alc880_z71v_mixer },
2759 .init_verbs = { alc880_volume_init_verbs,
2760 alc880_pin_z71v_init_verbs },
2761 .num_dacs = ARRAY_SIZE(alc880_z71v_dac_nids),
2762 .dac_nids = alc880_z71v_dac_nids,
2763 .dig_out_nid = ALC880_DIGOUT_NID,
2765 .num_channel_mode = ARRAY_SIZE(alc880_2_jack_modes),
2766 .channel_mode = alc880_2_jack_modes,
2767 .input_mux = &alc880_capture_source,
2770 .mixers = { alc880_f1734_mixer },
2771 .init_verbs = { alc880_volume_init_verbs,
2772 alc880_pin_f1734_init_verbs },
2773 .num_dacs = ARRAY_SIZE(alc880_f1734_dac_nids),
2774 .dac_nids = alc880_f1734_dac_nids,
2776 .num_channel_mode = ARRAY_SIZE(alc880_2_jack_modes),
2777 .channel_mode = alc880_2_jack_modes,
2778 .input_mux = &alc880_capture_source,
2781 .mixers = { alc880_asus_mixer },
2782 .init_verbs = { alc880_volume_init_verbs,
2783 alc880_pin_asus_init_verbs,
2784 alc880_gpio1_init_verbs },
2785 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2786 .dac_nids = alc880_asus_dac_nids,
2787 .num_channel_mode = ARRAY_SIZE(alc880_asus_modes),
2788 .channel_mode = alc880_asus_modes,
2790 .input_mux = &alc880_capture_source,
2792 [ALC880_ASUS_DIG] = {
2793 .mixers = { alc880_asus_mixer },
2794 .init_verbs = { alc880_volume_init_verbs,
2795 alc880_pin_asus_init_verbs,
2796 alc880_gpio1_init_verbs },
2797 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2798 .dac_nids = alc880_asus_dac_nids,
2799 .dig_out_nid = ALC880_DIGOUT_NID,
2800 .num_channel_mode = ARRAY_SIZE(alc880_asus_modes),
2801 .channel_mode = alc880_asus_modes,
2803 .input_mux = &alc880_capture_source,
2805 [ALC880_ASUS_DIG2] = {
2806 .mixers = { alc880_asus_mixer },
2807 .init_verbs = { alc880_volume_init_verbs,
2808 alc880_pin_asus_init_verbs,
2809 alc880_gpio2_init_verbs }, /* use GPIO2 */
2810 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2811 .dac_nids = alc880_asus_dac_nids,
2812 .dig_out_nid = ALC880_DIGOUT_NID,
2813 .num_channel_mode = ARRAY_SIZE(alc880_asus_modes),
2814 .channel_mode = alc880_asus_modes,
2816 .input_mux = &alc880_capture_source,
2818 [ALC880_ASUS_W1V] = {
2819 .mixers = { alc880_asus_mixer, alc880_asus_w1v_mixer },
2820 .init_verbs = { alc880_volume_init_verbs,
2821 alc880_pin_asus_init_verbs,
2822 alc880_gpio1_init_verbs },
2823 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2824 .dac_nids = alc880_asus_dac_nids,
2825 .dig_out_nid = ALC880_DIGOUT_NID,
2826 .num_channel_mode = ARRAY_SIZE(alc880_asus_modes),
2827 .channel_mode = alc880_asus_modes,
2829 .input_mux = &alc880_capture_source,
2831 [ALC880_UNIWILL_DIG] = {
2832 .mixers = { alc880_asus_mixer, alc880_pcbeep_mixer },
2833 .init_verbs = { alc880_volume_init_verbs,
2834 alc880_pin_asus_init_verbs },
2835 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2836 .dac_nids = alc880_asus_dac_nids,
2837 .dig_out_nid = ALC880_DIGOUT_NID,
2838 .num_channel_mode = ARRAY_SIZE(alc880_asus_modes),
2839 .channel_mode = alc880_asus_modes,
2841 .input_mux = &alc880_capture_source,
2843 [ALC880_UNIWILL] = {
2844 .mixers = { alc880_uniwill_mixer },
2845 .init_verbs = { alc880_volume_init_verbs,
2846 alc880_uniwill_init_verbs },
2847 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2848 .dac_nids = alc880_asus_dac_nids,
2849 .dig_out_nid = ALC880_DIGOUT_NID,
2850 .num_channel_mode = ARRAY_SIZE(alc880_threestack_modes),
2851 .channel_mode = alc880_threestack_modes,
2853 .input_mux = &alc880_capture_source,
2854 .unsol_event = alc880_uniwill_unsol_event,
2855 .init_hook = alc880_uniwill_automute,
2857 [ALC880_UNIWILL_P53] = {
2858 .mixers = { alc880_uniwill_p53_mixer },
2859 .init_verbs = { alc880_volume_init_verbs,
2860 alc880_uniwill_p53_init_verbs },
2861 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2862 .dac_nids = alc880_asus_dac_nids,
2863 .num_channel_mode = ARRAY_SIZE(alc880_w810_modes),
2864 .channel_mode = alc880_threestack_modes,
2865 .input_mux = &alc880_capture_source,
2866 .unsol_event = alc880_uniwill_p53_unsol_event,
2867 .init_hook = alc880_uniwill_p53_hp_automute,
2869 [ALC880_FUJITSU] = {
2870 .mixers = { alc880_fujitsu_mixer,
2871 alc880_pcbeep_mixer, },
2872 .init_verbs = { alc880_volume_init_verbs,
2873 alc880_uniwill_p53_init_verbs,
2874 alc880_beep_init_verbs },
2875 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2876 .dac_nids = alc880_dac_nids,
2877 .num_channel_mode = ARRAY_SIZE(alc880_2_jack_modes),
2878 .channel_mode = alc880_2_jack_modes,
2879 .input_mux = &alc880_capture_source,
2880 .unsol_event = alc880_uniwill_p53_unsol_event,
2881 .init_hook = alc880_uniwill_p53_hp_automute,
2884 .mixers = { alc880_three_stack_mixer },
2885 .init_verbs = { alc880_volume_init_verbs,
2886 alc880_pin_clevo_init_verbs },
2887 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2888 .dac_nids = alc880_dac_nids,
2890 .num_channel_mode = ARRAY_SIZE(alc880_threestack_modes),
2891 .channel_mode = alc880_threestack_modes,
2893 .input_mux = &alc880_capture_source,
2896 .mixers = { alc880_lg_mixer },
2897 .init_verbs = { alc880_volume_init_verbs,
2898 alc880_lg_init_verbs },
2899 .num_dacs = ARRAY_SIZE(alc880_lg_dac_nids),
2900 .dac_nids = alc880_lg_dac_nids,
2901 .dig_out_nid = ALC880_DIGOUT_NID,
2902 .num_channel_mode = ARRAY_SIZE(alc880_lg_ch_modes),
2903 .channel_mode = alc880_lg_ch_modes,
2905 .input_mux = &alc880_lg_capture_source,
2906 .unsol_event = alc880_lg_unsol_event,
2907 .init_hook = alc880_lg_automute,
2908 #ifdef CONFIG_SND_HDA_POWER_SAVE
2909 .loopbacks = alc880_lg_loopbacks,
2913 .mixers = { alc880_lg_lw_mixer },
2914 .init_verbs = { alc880_volume_init_verbs,
2915 alc880_lg_lw_init_verbs },
2916 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2917 .dac_nids = alc880_dac_nids,
2918 .dig_out_nid = ALC880_DIGOUT_NID,
2919 .num_channel_mode = ARRAY_SIZE(alc880_lg_lw_modes),
2920 .channel_mode = alc880_lg_lw_modes,
2921 .input_mux = &alc880_lg_lw_capture_source,
2922 .unsol_event = alc880_lg_lw_unsol_event,
2923 .init_hook = alc880_lg_lw_automute,
2925 #ifdef CONFIG_SND_DEBUG
2927 .mixers = { alc880_test_mixer },
2928 .init_verbs = { alc880_test_init_verbs },
2929 .num_dacs = ARRAY_SIZE(alc880_test_dac_nids),
2930 .dac_nids = alc880_test_dac_nids,
2931 .dig_out_nid = ALC880_DIGOUT_NID,
2932 .num_channel_mode = ARRAY_SIZE(alc880_test_modes),
2933 .channel_mode = alc880_test_modes,
2934 .input_mux = &alc880_test_capture_source,
2940 * Automatic parse of I/O pins from the BIOS configuration
2943 #define NUM_CONTROL_ALLOC 32
2944 #define NUM_VERB_ALLOC 32
2948 ALC_CTL_WIDGET_MUTE,
2951 static struct snd_kcontrol_new alc880_control_templates[] = {
2952 HDA_CODEC_VOLUME(NULL, 0, 0, 0),
2953 HDA_CODEC_MUTE(NULL, 0, 0, 0),
2954 HDA_BIND_MUTE(NULL, 0, 0, 0),
2957 /* add dynamic controls */
2958 static int add_control(struct alc_spec *spec, int type, const char *name,
2961 struct snd_kcontrol_new *knew;
2963 if (spec->num_kctl_used >= spec->num_kctl_alloc) {
2964 int num = spec->num_kctl_alloc + NUM_CONTROL_ALLOC;
2966 /* array + terminator */
2967 knew = kcalloc(num + 1, sizeof(*knew), GFP_KERNEL);
2970 if (spec->kctl_alloc) {
2971 memcpy(knew, spec->kctl_alloc,
2972 sizeof(*knew) * spec->num_kctl_alloc);
2973 kfree(spec->kctl_alloc);
2975 spec->kctl_alloc = knew;
2976 spec->num_kctl_alloc = num;
2979 knew = &spec->kctl_alloc[spec->num_kctl_used];
2980 *knew = alc880_control_templates[type];
2981 knew->name = kstrdup(name, GFP_KERNEL);
2984 knew->private_value = val;
2985 spec->num_kctl_used++;
2989 #define alc880_is_fixed_pin(nid) ((nid) >= 0x14 && (nid) <= 0x17)
2990 #define alc880_fixed_pin_idx(nid) ((nid) - 0x14)
2991 #define alc880_is_multi_pin(nid) ((nid) >= 0x18)
2992 #define alc880_multi_pin_idx(nid) ((nid) - 0x18)
2993 #define alc880_is_input_pin(nid) ((nid) >= 0x18)
2994 #define alc880_input_pin_idx(nid) ((nid) - 0x18)
2995 #define alc880_idx_to_dac(nid) ((nid) + 0x02)
2996 #define alc880_dac_to_idx(nid) ((nid) - 0x02)
2997 #define alc880_idx_to_mixer(nid) ((nid) + 0x0c)
2998 #define alc880_idx_to_selector(nid) ((nid) + 0x10)
2999 #define ALC880_PIN_CD_NID 0x1c
3001 /* fill in the dac_nids table from the parsed pin configuration */
3002 static int alc880_auto_fill_dac_nids(struct alc_spec *spec,
3003 const struct auto_pin_cfg *cfg)
3009 memset(assigned, 0, sizeof(assigned));
3010 spec->multiout.dac_nids = spec->private_dac_nids;
3012 /* check the pins hardwired to audio widget */
3013 for (i = 0; i < cfg->line_outs; i++) {
3014 nid = cfg->line_out_pins[i];
3015 if (alc880_is_fixed_pin(nid)) {
3016 int idx = alc880_fixed_pin_idx(nid);
3017 spec->multiout.dac_nids[i] = alc880_idx_to_dac(idx);
3021 /* left pins can be connect to any audio widget */
3022 for (i = 0; i < cfg->line_outs; i++) {
3023 nid = cfg->line_out_pins[i];
3024 if (alc880_is_fixed_pin(nid))
3026 /* search for an empty channel */
3027 for (j = 0; j < cfg->line_outs; j++) {
3029 spec->multiout.dac_nids[i] =
3030 alc880_idx_to_dac(j);
3036 spec->multiout.num_dacs = cfg->line_outs;
3040 /* add playback controls from the parsed DAC table */
3041 static int alc880_auto_create_multi_out_ctls(struct alc_spec *spec,
3042 const struct auto_pin_cfg *cfg)
3045 static const char *chname[4] = {
3046 "Front", "Surround", NULL /*CLFE*/, "Side"
3051 for (i = 0; i < cfg->line_outs; i++) {
3052 if (!spec->multiout.dac_nids[i])
3054 nid = alc880_idx_to_mixer(alc880_dac_to_idx(spec->multiout.dac_nids[i]));
3057 err = add_control(spec, ALC_CTL_WIDGET_VOL,
3058 "Center Playback Volume",
3059 HDA_COMPOSE_AMP_VAL(nid, 1, 0,
3063 err = add_control(spec, ALC_CTL_WIDGET_VOL,
3064 "LFE Playback Volume",
3065 HDA_COMPOSE_AMP_VAL(nid, 2, 0,
3069 err = add_control(spec, ALC_CTL_BIND_MUTE,
3070 "Center Playback Switch",
3071 HDA_COMPOSE_AMP_VAL(nid, 1, 2,
3075 err = add_control(spec, ALC_CTL_BIND_MUTE,
3076 "LFE Playback Switch",
3077 HDA_COMPOSE_AMP_VAL(nid, 2, 2,
3082 sprintf(name, "%s Playback Volume", chname[i]);
3083 err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
3084 HDA_COMPOSE_AMP_VAL(nid, 3, 0,
3088 sprintf(name, "%s Playback Switch", chname[i]);
3089 err = add_control(spec, ALC_CTL_BIND_MUTE, name,
3090 HDA_COMPOSE_AMP_VAL(nid, 3, 2,
3099 /* add playback controls for speaker and HP outputs */
3100 static int alc880_auto_create_extra_out(struct alc_spec *spec, hda_nid_t pin,
3110 if (alc880_is_fixed_pin(pin)) {
3111 nid = alc880_idx_to_dac(alc880_fixed_pin_idx(pin));
3112 /* specify the DAC as the extra output */
3113 if (!spec->multiout.hp_nid)
3114 spec->multiout.hp_nid = nid;
3116 spec->multiout.extra_out_nid[0] = nid;
3117 /* control HP volume/switch on the output mixer amp */
3118 nid = alc880_idx_to_mixer(alc880_fixed_pin_idx(pin));
3119 sprintf(name, "%s Playback Volume", pfx);
3120 err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
3121 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT));
3124 sprintf(name, "%s Playback Switch", pfx);
3125 err = add_control(spec, ALC_CTL_BIND_MUTE, name,
3126 HDA_COMPOSE_AMP_VAL(nid, 3, 2, HDA_INPUT));
3129 } else if (alc880_is_multi_pin(pin)) {
3130 /* set manual connection */
3131 /* we have only a switch on HP-out PIN */
3132 sprintf(name, "%s Playback Switch", pfx);
3133 err = add_control(spec, ALC_CTL_WIDGET_MUTE, name,
3134 HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_OUTPUT));
3141 /* create input playback/capture controls for the given pin */
3142 static int new_analog_input(struct alc_spec *spec, hda_nid_t pin,
3143 const char *ctlname,
3144 int idx, hda_nid_t mix_nid)
3149 sprintf(name, "%s Playback Volume", ctlname);
3150 err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
3151 HDA_COMPOSE_AMP_VAL(mix_nid, 3, idx, HDA_INPUT));
3154 sprintf(name, "%s Playback Switch", ctlname);
3155 err = add_control(spec, ALC_CTL_WIDGET_MUTE, name,
3156 HDA_COMPOSE_AMP_VAL(mix_nid, 3, idx, HDA_INPUT));
3162 /* create playback/capture controls for input pins */
3163 static int alc880_auto_create_analog_input_ctls(struct alc_spec *spec,
3164 const struct auto_pin_cfg *cfg)
3166 struct hda_input_mux *imux = &spec->private_imux;
3169 for (i = 0; i < AUTO_PIN_LAST; i++) {
3170 if (alc880_is_input_pin(cfg->input_pins[i])) {
3171 idx = alc880_input_pin_idx(cfg->input_pins[i]);
3172 err = new_analog_input(spec, cfg->input_pins[i],
3173 auto_pin_cfg_labels[i],
3177 imux->items[imux->num_items].label =
3178 auto_pin_cfg_labels[i];
3179 imux->items[imux->num_items].index =
3180 alc880_input_pin_idx(cfg->input_pins[i]);
3187 static void alc880_auto_set_output_and_unmute(struct hda_codec *codec,
3188 hda_nid_t nid, int pin_type,
3192 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
3194 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
3196 /* need the manual connection? */
3197 if (alc880_is_multi_pin(nid)) {
3198 struct alc_spec *spec = codec->spec;
3199 int idx = alc880_multi_pin_idx(nid);
3200 snd_hda_codec_write(codec, alc880_idx_to_selector(idx), 0,
3201 AC_VERB_SET_CONNECT_SEL,
3202 alc880_dac_to_idx(spec->multiout.dac_nids[dac_idx]));
3206 static int get_pin_type(int line_out_type)
3208 if (line_out_type == AUTO_PIN_HP_OUT)
3214 static void alc880_auto_init_multi_out(struct hda_codec *codec)
3216 struct alc_spec *spec = codec->spec;
3219 alc_subsystem_id(codec, 0x15, 0x1b, 0x14);
3220 for (i = 0; i < spec->autocfg.line_outs; i++) {
3221 hda_nid_t nid = spec->autocfg.line_out_pins[i];
3222 int pin_type = get_pin_type(spec->autocfg.line_out_type);
3223 alc880_auto_set_output_and_unmute(codec, nid, pin_type, i);
3227 static void alc880_auto_init_extra_out(struct hda_codec *codec)
3229 struct alc_spec *spec = codec->spec;
3232 pin = spec->autocfg.speaker_pins[0];
3233 if (pin) /* connect to front */
3234 alc880_auto_set_output_and_unmute(codec, pin, PIN_OUT, 0);
3235 pin = spec->autocfg.hp_pins[0];
3236 if (pin) /* connect to front */
3237 alc880_auto_set_output_and_unmute(codec, pin, PIN_HP, 0);
3240 static void alc880_auto_init_analog_input(struct hda_codec *codec)
3242 struct alc_spec *spec = codec->spec;
3245 for (i = 0; i < AUTO_PIN_LAST; i++) {
3246 hda_nid_t nid = spec->autocfg.input_pins[i];
3247 if (alc880_is_input_pin(nid)) {
3248 snd_hda_codec_write(codec, nid, 0,
3249 AC_VERB_SET_PIN_WIDGET_CONTROL,
3250 i <= AUTO_PIN_FRONT_MIC ?
3251 PIN_VREF80 : PIN_IN);
3252 if (nid != ALC880_PIN_CD_NID)
3253 snd_hda_codec_write(codec, nid, 0,
3254 AC_VERB_SET_AMP_GAIN_MUTE,
3260 /* parse the BIOS configuration and set up the alc_spec */
3261 /* return 1 if successful, 0 if the proper config is not found,
3262 * or a negative error code
3264 static int alc880_parse_auto_config(struct hda_codec *codec)
3266 struct alc_spec *spec = codec->spec;
3268 static hda_nid_t alc880_ignore[] = { 0x1d, 0 };
3270 err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
3274 if (!spec->autocfg.line_outs)
3275 return 0; /* can't find valid BIOS pin config */
3277 err = alc880_auto_fill_dac_nids(spec, &spec->autocfg);
3280 err = alc880_auto_create_multi_out_ctls(spec, &spec->autocfg);
3283 err = alc880_auto_create_extra_out(spec,
3284 spec->autocfg.speaker_pins[0],
3288 err = alc880_auto_create_extra_out(spec, spec->autocfg.hp_pins[0],
3292 err = alc880_auto_create_analog_input_ctls(spec, &spec->autocfg);
3296 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
3298 if (spec->autocfg.dig_out_pin)
3299 spec->multiout.dig_out_nid = ALC880_DIGOUT_NID;
3300 if (spec->autocfg.dig_in_pin)
3301 spec->dig_in_nid = ALC880_DIGIN_NID;
3303 if (spec->kctl_alloc)
3304 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
3306 spec->init_verbs[spec->num_init_verbs++] = alc880_volume_init_verbs;
3308 spec->num_mux_defs = 1;
3309 spec->input_mux = &spec->private_imux;
3314 /* additional initialization for auto-configuration model */
3315 static void alc880_auto_init(struct hda_codec *codec)
3317 alc880_auto_init_multi_out(codec);
3318 alc880_auto_init_extra_out(codec);
3319 alc880_auto_init_analog_input(codec);
3323 * OK, here we have finally the patch for ALC880
3326 static int patch_alc880(struct hda_codec *codec)
3328 struct alc_spec *spec;
3332 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
3338 board_config = snd_hda_check_board_config(codec, ALC880_MODEL_LAST,
3341 if (board_config < 0) {
3342 printk(KERN_INFO "hda_codec: Unknown model for ALC880, "
3343 "trying auto-probe from BIOS...\n");
3344 board_config = ALC880_AUTO;
3347 if (board_config == ALC880_AUTO) {
3348 /* automatic parse from the BIOS config */
3349 err = alc880_parse_auto_config(codec);
3355 "hda_codec: Cannot set up configuration "
3356 "from BIOS. Using 3-stack mode...\n");
3357 board_config = ALC880_3ST;
3361 if (board_config != ALC880_AUTO)
3362 setup_preset(spec, &alc880_presets[board_config]);
3364 spec->stream_name_analog = "ALC880 Analog";
3365 spec->stream_analog_playback = &alc880_pcm_analog_playback;
3366 spec->stream_analog_capture = &alc880_pcm_analog_capture;
3368 spec->stream_name_digital = "ALC880 Digital";
3369 spec->stream_digital_playback = &alc880_pcm_digital_playback;
3370 spec->stream_digital_capture = &alc880_pcm_digital_capture;
3372 if (!spec->adc_nids && spec->input_mux) {
3373 /* check whether NID 0x07 is valid */
3374 unsigned int wcap = get_wcaps(codec, alc880_adc_nids[0]);
3376 wcap = (wcap & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT;
3377 if (wcap != AC_WID_AUD_IN) {
3378 spec->adc_nids = alc880_adc_nids_alt;
3379 spec->num_adc_nids = ARRAY_SIZE(alc880_adc_nids_alt);
3380 spec->mixers[spec->num_mixers] =
3381 alc880_capture_alt_mixer;
3384 spec->adc_nids = alc880_adc_nids;
3385 spec->num_adc_nids = ARRAY_SIZE(alc880_adc_nids);
3386 spec->mixers[spec->num_mixers] = alc880_capture_mixer;
3391 codec->patch_ops = alc_patch_ops;
3392 if (board_config == ALC880_AUTO)
3393 spec->init_hook = alc880_auto_init;
3394 #ifdef CONFIG_SND_HDA_POWER_SAVE
3395 if (!spec->loopback.amplist)
3396 spec->loopback.amplist = alc880_loopbacks;
3407 static hda_nid_t alc260_dac_nids[1] = {
3412 static hda_nid_t alc260_adc_nids[1] = {
3417 static hda_nid_t alc260_adc_nids_alt[1] = {
3422 static hda_nid_t alc260_hp_adc_nids[2] = {
3427 /* NIDs used when simultaneous access to both ADCs makes sense. Note that
3428 * alc260_capture_mixer assumes ADC0 (nid 0x04) is the first ADC.
3430 static hda_nid_t alc260_dual_adc_nids[2] = {
3435 #define ALC260_DIGOUT_NID 0x03
3436 #define ALC260_DIGIN_NID 0x06
3438 static struct hda_input_mux alc260_capture_source = {
3442 { "Front Mic", 0x1 },
3448 /* On Fujitsu S702x laptops capture only makes sense from Mic/LineIn jack,
3449 * headphone jack and the internal CD lines since these are the only pins at
3450 * which audio can appear. For flexibility, also allow the option of
3451 * recording the mixer output on the second ADC (ADC0 doesn't have a
3452 * connection to the mixer output).
3454 static struct hda_input_mux alc260_fujitsu_capture_sources[2] = {
3458 { "Mic/Line", 0x0 },
3460 { "Headphone", 0x2 },
3466 { "Mic/Line", 0x0 },
3468 { "Headphone", 0x2 },
3475 /* Acer TravelMate(/Extensa/Aspire) notebooks have similar configuration to
3476 * the Fujitsu S702x, but jacks are marked differently.
3478 static struct hda_input_mux alc260_acer_capture_sources[2] = {
3485 { "Headphone", 0x5 },
3494 { "Headphone", 0x6 },
3500 * This is just place-holder, so there's something for alc_build_pcms to look
3501 * at when it calculates the maximum number of channels. ALC260 has no mixer
3502 * element which allows changing the channel mode, so the verb list is
3505 static struct hda_channel_mode alc260_modes[1] = {
3510 /* Mixer combinations
3512 * basic: base_output + input + pc_beep + capture
3513 * HP: base_output + input + capture_alt
3514 * HP_3013: hp_3013 + input + capture
3515 * fujitsu: fujitsu + capture
3516 * acer: acer + capture
3519 static struct snd_kcontrol_new alc260_base_output_mixer[] = {
3520 HDA_CODEC_VOLUME("Front Playback Volume", 0x08, 0x0, HDA_OUTPUT),
3521 HDA_BIND_MUTE("Front Playback Switch", 0x08, 2, HDA_INPUT),
3522 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x09, 0x0, HDA_OUTPUT),
3523 HDA_BIND_MUTE("Headphone Playback Switch", 0x09, 2, HDA_INPUT),
3524 HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x0a, 1, 0x0, HDA_OUTPUT),
3525 HDA_BIND_MUTE_MONO("Mono Playback Switch", 0x0a, 1, 2, HDA_INPUT),
3529 static struct snd_kcontrol_new alc260_input_mixer[] = {
3530 HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT),
3531 HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT),
3532 HDA_CODEC_VOLUME("Line Playback Volume", 0x07, 0x02, HDA_INPUT),
3533 HDA_CODEC_MUTE("Line Playback Switch", 0x07, 0x02, HDA_INPUT),
3534 HDA_CODEC_VOLUME("Mic Playback Volume", 0x07, 0x0, HDA_INPUT),
3535 HDA_CODEC_MUTE("Mic Playback Switch", 0x07, 0x0, HDA_INPUT),
3536 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x07, 0x01, HDA_INPUT),
3537 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x07, 0x01, HDA_INPUT),
3541 static struct snd_kcontrol_new alc260_pc_beep_mixer[] = {
3542 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x07, 0x05, HDA_INPUT),
3543 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x07, 0x05, HDA_INPUT),
3547 static struct snd_kcontrol_new alc260_hp_3013_mixer[] = {
3548 HDA_CODEC_VOLUME("Front Playback Volume", 0x09, 0x0, HDA_OUTPUT),
3549 HDA_CODEC_MUTE("Front Playback Switch", 0x10, 0x0, HDA_OUTPUT),
3550 HDA_CODEC_VOLUME("Aux-In Playback Volume", 0x07, 0x06, HDA_INPUT),
3551 HDA_CODEC_MUTE("Aux-In Playback Switch", 0x07, 0x06, HDA_INPUT),
3552 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x08, 0x0, HDA_OUTPUT),
3553 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT),
3554 HDA_CODEC_VOLUME_MONO("iSpeaker Playback Volume", 0x0a, 1, 0x0, HDA_OUTPUT),
3555 HDA_CODEC_MUTE_MONO("iSpeaker Playback Switch", 0x11, 1, 0x0, HDA_OUTPUT),
3559 /* Fujitsu S702x series laptops. ALC260 pin usage: Mic/Line jack = 0x12,
3560 * HP jack = 0x14, CD audio = 0x16, internal speaker = 0x10.
3562 static struct snd_kcontrol_new alc260_fujitsu_mixer[] = {
3563 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x08, 0x0, HDA_OUTPUT),
3564 HDA_BIND_MUTE("Headphone Playback Switch", 0x08, 2, HDA_INPUT),
3565 ALC_PIN_MODE("Headphone Jack Mode", 0x14, ALC_PIN_DIR_INOUT),
3566 HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT),
3567 HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT),
3568 HDA_CODEC_VOLUME("Mic/Line Playback Volume", 0x07, 0x0, HDA_INPUT),
3569 HDA_CODEC_MUTE("Mic/Line Playback Switch", 0x07, 0x0, HDA_INPUT),
3570 ALC_PIN_MODE("Mic/Line Jack Mode", 0x12, ALC_PIN_DIR_IN),
3571 HDA_CODEC_VOLUME("Beep Playback Volume", 0x07, 0x05, HDA_INPUT),
3572 HDA_CODEC_MUTE("Beep Playback Switch", 0x07, 0x05, HDA_INPUT),
3573 HDA_CODEC_VOLUME("Internal Speaker Playback Volume", 0x09, 0x0, HDA_OUTPUT),
3574 HDA_BIND_MUTE("Internal Speaker Playback Switch", 0x09, 2, HDA_INPUT),
3578 /* Mixer for Acer TravelMate(/Extensa/Aspire) notebooks. Note that current
3579 * versions of the ALC260 don't act on requests to enable mic bias from NID
3580 * 0x0f (used to drive the headphone jack in these laptops). The ALC260
3581 * datasheet doesn't mention this restriction. At this stage it's not clear
3582 * whether this behaviour is intentional or is a hardware bug in chip
3583 * revisions available in early 2006. Therefore for now allow the
3584 * "Headphone Jack Mode" control to span all choices, but if it turns out
3585 * that the lack of mic bias for this NID is intentional we could change the
3586 * mode from ALC_PIN_DIR_INOUT to ALC_PIN_DIR_INOUT_NOMICBIAS.
3588 * In addition, Acer TravelMate(/Extensa/Aspire) notebooks in early 2006
3589 * don't appear to make the mic bias available from the "line" jack, even
3590 * though the NID used for this jack (0x14) can supply it. The theory is
3591 * that perhaps Acer have included blocking capacitors between the ALC260
3592 * and the output jack. If this turns out to be the case for all such
3593 * models the "Line Jack Mode" mode could be changed from ALC_PIN_DIR_INOUT
3594 * to ALC_PIN_DIR_INOUT_NOMICBIAS.
3596 * The C20x Tablet series have a mono internal speaker which is controlled
3597 * via the chip's Mono sum widget and pin complex, so include the necessary
3598 * controls for such models. On models without a "mono speaker" the control
3599 * won't do anything.
3601 static struct snd_kcontrol_new alc260_acer_mixer[] = {
3602 HDA_CODEC_VOLUME("Master Playback Volume", 0x08, 0x0, HDA_OUTPUT),
3603 HDA_BIND_MUTE("Master Playback Switch", 0x08, 2, HDA_INPUT),
3604 ALC_PIN_MODE("Headphone Jack Mode", 0x0f, ALC_PIN_DIR_INOUT),
3605 HDA_CODEC_VOLUME_MONO("Mono Speaker Playback Volume", 0x0a, 1, 0x0,
3607 HDA_BIND_MUTE_MONO("Mono Speaker Playback Switch", 0x0a, 1, 2,
3609 HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT),
3610 HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT),
3611 HDA_CODEC_VOLUME("Mic Playback Volume", 0x07, 0x0, HDA_INPUT),
3612 HDA_CODEC_MUTE("Mic Playback Switch", 0x07, 0x0, HDA_INPUT),
3613 ALC_PIN_MODE("Mic Jack Mode", 0x12, ALC_PIN_DIR_IN),
3614 HDA_CODEC_VOLUME("Line Playback Volume", 0x07, 0x02, HDA_INPUT),
3615 HDA_CODEC_MUTE("Line Playback Switch", 0x07, 0x02, HDA_INPUT),
3616 ALC_PIN_MODE("Line Jack Mode", 0x14, ALC_PIN_DIR_INOUT),
3617 HDA_CODEC_VOLUME("Beep Playback Volume", 0x07, 0x05, HDA_INPUT),
3618 HDA_CODEC_MUTE("Beep Playback Switch", 0x07, 0x05, HDA_INPUT),
3622 /* Packard bell V7900 ALC260 pin usage: HP = 0x0f, Mic jack = 0x12,
3623 * Line In jack = 0x14, CD audio = 0x16, pc beep = 0x17.
3625 static struct snd_kcontrol_new alc260_will_mixer[] = {
3626 HDA_CODEC_VOLUME("Master Playback Volume", 0x08, 0x0, HDA_OUTPUT),
3627 HDA_BIND_MUTE("Master Playback Switch", 0x08, 0x2, HDA_INPUT),
3628 HDA_CODEC_VOLUME("Mic Playback Volume", 0x07, 0x0, HDA_INPUT),
3629 HDA_CODEC_MUTE("Mic Playback Switch", 0x07, 0x0, HDA_INPUT),
3630 ALC_PIN_MODE("Mic Jack Mode", 0x12, ALC_PIN_DIR_IN),
3631 HDA_CODEC_VOLUME("Line Playback Volume", 0x07, 0x02, HDA_INPUT),
3632 HDA_CODEC_MUTE("Line Playback Switch", 0x07, 0x02, HDA_INPUT),
3633 ALC_PIN_MODE("Line Jack Mode", 0x14, ALC_PIN_DIR_INOUT),
3634 HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT),
3635 HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT),
3636 HDA_CODEC_VOLUME("Beep Playback Volume", 0x07, 0x05, HDA_INPUT),
3637 HDA_CODEC_MUTE("Beep Playback Switch", 0x07, 0x05, HDA_INPUT),
3641 /* Replacer 672V ALC260 pin usage: Mic jack = 0x12,
3642 * Line In jack = 0x14, ATAPI Mic = 0x13, speaker = 0x0f.
3644 static struct snd_kcontrol_new alc260_replacer_672v_mixer[] = {
3645 HDA_CODEC_VOLUME("Master Playback Volume", 0x08, 0x0, HDA_OUTPUT),
3646 HDA_BIND_MUTE("Master Playback Switch", 0x08, 0x2, HDA_INPUT),
3647 HDA_CODEC_VOLUME("Mic Playback Volume", 0x07, 0x0, HDA_INPUT),
3648 HDA_CODEC_MUTE("Mic Playback Switch", 0x07, 0x0, HDA_INPUT),
3649 ALC_PIN_MODE("Mic Jack Mode", 0x12, ALC_PIN_DIR_IN),
3650 HDA_CODEC_VOLUME("ATAPI Mic Playback Volume", 0x07, 0x1, HDA_INPUT),
3651 HDA_CODEC_MUTE("ATATI Mic Playback Switch", 0x07, 0x1, HDA_INPUT),
3652 HDA_CODEC_VOLUME("Line Playback Volume", 0x07, 0x02, HDA_INPUT),
3653 HDA_CODEC_MUTE("Line Playback Switch", 0x07, 0x02, HDA_INPUT),
3654 ALC_PIN_MODE("Line Jack Mode", 0x14, ALC_PIN_DIR_INOUT),
3658 /* capture mixer elements */
3659 static struct snd_kcontrol_new alc260_capture_mixer[] = {
3660 HDA_CODEC_VOLUME("Capture Volume", 0x04, 0x0, HDA_INPUT),
3661 HDA_CODEC_MUTE("Capture Switch", 0x04, 0x0, HDA_INPUT),
3662 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x05, 0x0, HDA_INPUT),
3663 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x05, 0x0, HDA_INPUT),
3665 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
3666 /* The multiple "Capture Source" controls confuse alsamixer
3667 * So call somewhat different..
3668 * FIXME: the controls appear in the "playback" view!
3670 /* .name = "Capture Source", */
3671 .name = "Input Source",
3673 .info = alc_mux_enum_info,
3674 .get = alc_mux_enum_get,
3675 .put = alc_mux_enum_put,
3680 static struct snd_kcontrol_new alc260_capture_alt_mixer[] = {
3681 HDA_CODEC_VOLUME("Capture Volume", 0x05, 0x0, HDA_INPUT),
3682 HDA_CODEC_MUTE("Capture Switch", 0x05, 0x0, HDA_INPUT),
3684 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
3685 /* The multiple "Capture Source" controls confuse alsamixer
3686 * So call somewhat different..
3687 * FIXME: the controls appear in the "playback" view!
3689 /* .name = "Capture Source", */
3690 .name = "Input Source",
3692 .info = alc_mux_enum_info,
3693 .get = alc_mux_enum_get,
3694 .put = alc_mux_enum_put,
3700 * initialization verbs
3702 static struct hda_verb alc260_init_verbs[] = {
3703 /* Line In pin widget for input */
3704 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
3705 /* CD pin widget for input */
3706 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
3707 /* Mic1 (rear panel) pin widget for input and vref at 80% */
3708 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
3709 /* Mic2 (front panel) pin widget for input and vref at 80% */
3710 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
3711 /* LINE-2 is used for line-out in rear */
3712 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
3713 /* select line-out */
3714 {0x0e, AC_VERB_SET_CONNECT_SEL, 0x00},
3716 {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
3718 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
3720 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
3721 /* mute capture amp left and right */
3722 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3723 /* set connection select to line in (default select for this ADC) */
3724 {0x04, AC_VERB_SET_CONNECT_SEL, 0x02},
3725 /* mute capture amp left and right */
3726 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3727 /* set connection select to line in (default select for this ADC) */
3728 {0x05, AC_VERB_SET_CONNECT_SEL, 0x02},
3729 /* set vol=0 Line-Out mixer amp left and right */
3730 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3731 /* unmute pin widget amp left and right (no gain on this amp) */
3732 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3733 /* set vol=0 HP mixer amp left and right */
3734 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3735 /* unmute pin widget amp left and right (no gain on this amp) */
3736 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3737 /* set vol=0 Mono mixer amp left and right */
3738 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3739 /* unmute pin widget amp left and right (no gain on this amp) */
3740 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3741 /* unmute LINE-2 out pin */
3742 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3743 /* Amp Indexes: CD = 0x04, Line In 1 = 0x02, Mic 1 = 0x00 &
3746 /* mute analog inputs */
3747 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3748 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3749 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
3750 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
3751 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
3752 /* Amp Indexes: DAC = 0x01 & mixer = 0x00 */
3753 /* mute Front out path */
3754 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3755 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3756 /* mute Headphone out path */
3757 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3758 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3759 /* mute Mono out path */
3760 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3761 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3765 #if 0 /* should be identical with alc260_init_verbs? */
3766 static struct hda_verb alc260_hp_init_verbs[] = {
3767 /* Headphone and output */
3768 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0},
3770 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
3771 /* Mic1 (rear panel) pin widget for input and vref at 80% */
3772 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
3773 /* Mic2 (front panel) pin widget for input and vref at 80% */
3774 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
3775 /* Line In pin widget for input */
3776 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
3777 /* Line-2 pin widget for output */
3778 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
3779 /* CD pin widget for input */
3780 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
3781 /* unmute amp left and right */
3782 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000},
3783 /* set connection select to line in (default select for this ADC) */
3784 {0x04, AC_VERB_SET_CONNECT_SEL, 0x02},
3785 /* unmute Line-Out mixer amp left and right (volume = 0) */
3786 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
3787 /* mute pin widget amp left and right (no gain on this amp) */
3788 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
3789 /* unmute HP mixer amp left and right (volume = 0) */
3790 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
3791 /* mute pin widget amp left and right (no gain on this amp) */
3792 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
3793 /* Amp Indexes: CD = 0x04, Line In 1 = 0x02, Mic 1 = 0x00 &
3796 /* mute analog inputs */
3797 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3798 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3799 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
3800 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
3801 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
3802 /* Amp Indexes: DAC = 0x01 & mixer = 0x00 */
3803 /* Unmute Front out path */
3804 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
3805 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
3806 /* Unmute Headphone out path */
3807 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
3808 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
3809 /* Unmute Mono out path */
3810 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
3811 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
3816 static struct hda_verb alc260_hp_3013_init_verbs[] = {
3817 /* Line out and output */
3818 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
3820 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
3821 /* Mic1 (rear panel) pin widget for input and vref at 80% */
3822 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
3823 /* Mic2 (front panel) pin widget for input and vref at 80% */
3824 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
3825 /* Line In pin widget for input */
3826 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
3827 /* Headphone pin widget for output */
3828 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0},
3829 /* CD pin widget for input */
3830 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
3831 /* unmute amp left and right */
3832 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000},
3833 /* set connection select to line in (default select for this ADC) */
3834 {0x04, AC_VERB_SET_CONNECT_SEL, 0x02},
3835 /* unmute Line-Out mixer amp left and right (volume = 0) */
3836 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
3837 /* mute pin widget amp left and right (no gain on this amp) */
3838 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
3839 /* unmute HP mixer amp left and right (volume = 0) */
3840 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
3841 /* mute pin widget amp left and right (no gain on this amp) */
3842 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
3843 /* Amp Indexes: CD = 0x04, Line In 1 = 0x02, Mic 1 = 0x00 &
3846 /* mute analog inputs */
3847 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3848 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3849 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
3850 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
3851 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
3852 /* Amp Indexes: DAC = 0x01 & mixer = 0x00 */
3853 /* Unmute Front out path */
3854 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
3855 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
3856 /* Unmute Headphone out path */
3857 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
3858 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
3859 /* Unmute Mono out path */
3860 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
3861 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
3865 /* Initialisation sequence for ALC260 as configured in Fujitsu S702x
3866 * laptops. ALC260 pin usage: Mic/Line jack = 0x12, HP jack = 0x14, CD
3867 * audio = 0x16, internal speaker = 0x10.
3869 static struct hda_verb alc260_fujitsu_init_verbs[] = {
3870 /* Disable all GPIOs */
3871 {0x01, AC_VERB_SET_GPIO_MASK, 0},
3872 /* Internal speaker is connected to headphone pin */
3873 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
3874 /* Headphone/Line-out jack connects to Line1 pin; make it an output */
3875 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
3876 /* Mic/Line-in jack is connected to mic1 pin, so make it an input */
3877 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
3878 /* Ensure all other unused pins are disabled and muted. */
3879 {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3880 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3881 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3882 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3883 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3884 {0x13, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3885 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3886 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3888 /* Disable digital (SPDIF) pins */
3889 {0x03, AC_VERB_SET_DIGI_CONVERT_1, 0},
3890 {0x06, AC_VERB_SET_DIGI_CONVERT_1, 0},
3892 /* Ensure Line1 pin widget takes its input from the OUT1 sum bus
3893 * when acting as an output.
3895 {0x0d, AC_VERB_SET_CONNECT_SEL, 0},
3897 /* Start with output sum widgets muted and their output gains at min */
3898 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3899 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3900 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3901 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3902 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3903 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3904 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3905 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3906 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3908 /* Unmute HP pin widget amp left and right (no equiv mixer ctrl) */
3909 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3910 /* Unmute Line1 pin widget output buffer since it starts as an output.
3911 * If the pin mode is changed by the user the pin mode control will
3912 * take care of enabling the pin's input/output buffers as needed.
3913 * Therefore there's no need to enable the input buffer at this
3916 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3917 /* Unmute input buffer of pin widget used for Line-in (no equiv
3920 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3922 /* Mute capture amp left and right */
3923 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3924 /* Set ADC connection select to match default mixer setting - line
3927 {0x04, AC_VERB_SET_CONNECT_SEL, 0x00},
3929 /* Do the same for the second ADC: mute capture input amp and
3930 * set ADC connection to line in (on mic1 pin)
3932 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3933 {0x05, AC_VERB_SET_CONNECT_SEL, 0x00},
3935 /* Mute all inputs to mixer widget (even unconnected ones) */
3936 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* mic1 pin */
3937 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, /* mic2 pin */
3938 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, /* line1 pin */
3939 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, /* line2 pin */
3940 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, /* CD pin */
3941 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)}, /* Beep-gen pin */
3942 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)}, /* Line-out pin */
3943 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)}, /* HP-pin pin */
3948 /* Initialisation sequence for ALC260 as configured in Acer TravelMate and
3949 * similar laptops (adapted from Fujitsu init verbs).
3951 static struct hda_verb alc260_acer_init_verbs[] = {
3952 /* On TravelMate laptops, GPIO 0 enables the internal speaker and
3953 * the headphone jack. Turn this on and rely on the standard mute
3954 * methods whenever the user wants to turn these outputs off.
3956 {0x01, AC_VERB_SET_GPIO_MASK, 0x01},
3957 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
3958 {0x01, AC_VERB_SET_GPIO_DATA, 0x01},
3959 /* Internal speaker/Headphone jack is connected to Line-out pin */
3960 {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
3961 /* Internal microphone/Mic jack is connected to Mic1 pin */
3962 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF50},
3963 /* Line In jack is connected to Line1 pin */
3964 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
3965 /* Some Acers (eg: C20x Tablets) use Mono pin for internal speaker */
3966 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
3967 /* Ensure all other unused pins are disabled and muted. */
3968 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3969 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3970 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3971 {0x13, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3972 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3973 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3974 /* Disable digital (SPDIF) pins */
3975 {0x03, AC_VERB_SET_DIGI_CONVERT_1, 0},
3976 {0x06, AC_VERB_SET_DIGI_CONVERT_1, 0},
3978 /* Ensure Mic1 and Line1 pin widgets take input from the OUT1 sum
3979 * bus when acting as outputs.
3981 {0x0b, AC_VERB_SET_CONNECT_SEL, 0},
3982 {0x0d, AC_VERB_SET_CONNECT_SEL, 0},
3984 /* Start with output sum widgets muted and their output gains at min */
3985 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3986 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3987 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3988 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3989 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3990 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3991 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3992 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3993 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3995 /* Unmute Line-out pin widget amp left and right
3996 * (no equiv mixer ctrl)
3998 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3999 /* Unmute mono pin widget amp output (no equiv mixer ctrl) */
4000 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4001 /* Unmute Mic1 and Line1 pin widget input buffers since they start as
4002 * inputs. If the pin mode is changed by the user the pin mode control
4003 * will take care of enabling the pin's input/output buffers as needed.
4004 * Therefore there's no need to enable the input buffer at this
4007 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4008 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4010 /* Mute capture amp left and right */
4011 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4012 /* Set ADC connection select to match default mixer setting - mic
4015 {0x04, AC_VERB_SET_CONNECT_SEL, 0x00},
4017 /* Do similar with the second ADC: mute capture input amp and
4018 * set ADC connection to mic to match ALSA's default state.
4020 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4021 {0x05, AC_VERB_SET_CONNECT_SEL, 0x00},
4023 /* Mute all inputs to mixer widget (even unconnected ones) */
4024 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* mic1 pin */
4025 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, /* mic2 pin */
4026 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, /* line1 pin */
4027 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, /* line2 pin */
4028 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, /* CD pin */
4029 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)}, /* Beep-gen pin */
4030 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)}, /* Line-out pin */
4031 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)}, /* HP-pin pin */
4036 static struct hda_verb alc260_will_verbs[] = {
4037 {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
4038 {0x0b, AC_VERB_SET_CONNECT_SEL, 0x00},
4039 {0x0d, AC_VERB_SET_CONNECT_SEL, 0x00},
4040 {0x0f, AC_VERB_SET_EAPD_BTLENABLE, 0x02},
4041 {0x1a, AC_VERB_SET_COEF_INDEX, 0x07},
4042 {0x1a, AC_VERB_SET_PROC_COEF, 0x3040},
4046 static struct hda_verb alc260_replacer_672v_verbs[] = {
4047 {0x0f, AC_VERB_SET_EAPD_BTLENABLE, 0x02},
4048 {0x1a, AC_VERB_SET_COEF_INDEX, 0x07},
4049 {0x1a, AC_VERB_SET_PROC_COEF, 0x3050},
4051 {0x01, AC_VERB_SET_GPIO_MASK, 0x01},
4052 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
4053 {0x01, AC_VERB_SET_GPIO_DATA, 0x00},
4055 {0x0f, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
4059 /* toggle speaker-output according to the hp-jack state */
4060 static void alc260_replacer_672v_automute(struct hda_codec *codec)
4062 unsigned int present;
4064 /* speaker --> GPIO Data 0, hp or spdif --> GPIO data 1 */
4065 present = snd_hda_codec_read(codec, 0x0f, 0,
4066 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
4068 snd_hda_codec_write_cache(codec, 0x01, 0,
4069 AC_VERB_SET_GPIO_DATA, 1);
4070 snd_hda_codec_write_cache(codec, 0x0f, 0,
4071 AC_VERB_SET_PIN_WIDGET_CONTROL,
4074 snd_hda_codec_write_cache(codec, 0x01, 0,
4075 AC_VERB_SET_GPIO_DATA, 0);
4076 snd_hda_codec_write_cache(codec, 0x0f, 0,
4077 AC_VERB_SET_PIN_WIDGET_CONTROL,
4082 static void alc260_replacer_672v_unsol_event(struct hda_codec *codec,
4085 if ((res >> 26) == ALC880_HP_EVENT)
4086 alc260_replacer_672v_automute(codec);
4089 /* Test configuration for debugging, modelled after the ALC880 test
4092 #ifdef CONFIG_SND_DEBUG
4093 static hda_nid_t alc260_test_dac_nids[1] = {
4096 static hda_nid_t alc260_test_adc_nids[2] = {
4099 /* For testing the ALC260, each input MUX needs its own definition since
4100 * the signal assignments are different. This assumes that the first ADC
4103 static struct hda_input_mux alc260_test_capture_sources[2] = {
4107 { "MIC1 pin", 0x0 },
4108 { "MIC2 pin", 0x1 },
4109 { "LINE1 pin", 0x2 },
4110 { "LINE2 pin", 0x3 },
4112 { "LINE-OUT pin", 0x5 },
4113 { "HP-OUT pin", 0x6 },
4119 { "MIC1 pin", 0x0 },
4120 { "MIC2 pin", 0x1 },
4121 { "LINE1 pin", 0x2 },
4122 { "LINE2 pin", 0x3 },
4125 { "LINE-OUT pin", 0x6 },
4126 { "HP-OUT pin", 0x7 },
4130 static struct snd_kcontrol_new alc260_test_mixer[] = {
4131 /* Output driver widgets */
4132 HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x0a, 1, 0x0, HDA_OUTPUT),
4133 HDA_BIND_MUTE_MONO("Mono Playback Switch", 0x0a, 1, 2, HDA_INPUT),
4134 HDA_CODEC_VOLUME("LOUT2 Playback Volume", 0x09, 0x0, HDA_OUTPUT),
4135 HDA_BIND_MUTE("LOUT2 Playback Switch", 0x09, 2, HDA_INPUT),
4136 HDA_CODEC_VOLUME("LOUT1 Playback Volume", 0x08, 0x0, HDA_OUTPUT),
4137 HDA_BIND_MUTE("LOUT1 Playback Switch", 0x08, 2, HDA_INPUT),
4139 /* Modes for retasking pin widgets
4140 * Note: the ALC260 doesn't seem to act on requests to enable mic
4141 * bias from NIDs 0x0f and 0x10. The ALC260 datasheet doesn't
4142 * mention this restriction. At this stage it's not clear whether
4143 * this behaviour is intentional or is a hardware bug in chip
4144 * revisions available at least up until early 2006. Therefore for
4145 * now allow the "HP-OUT" and "LINE-OUT" Mode controls to span all
4146 * choices, but if it turns out that the lack of mic bias for these
4147 * NIDs is intentional we could change their modes from
4148 * ALC_PIN_DIR_INOUT to ALC_PIN_DIR_INOUT_NOMICBIAS.
4150 ALC_PIN_MODE("HP-OUT pin mode", 0x10, ALC_PIN_DIR_INOUT),
4151 ALC_PIN_MODE("LINE-OUT pin mode", 0x0f, ALC_PIN_DIR_INOUT),
4152 ALC_PIN_MODE("LINE2 pin mode", 0x15, ALC_PIN_DIR_INOUT),
4153 ALC_PIN_MODE("LINE1 pin mode", 0x14, ALC_PIN_DIR_INOUT),
4154 ALC_PIN_MODE("MIC2 pin mode", 0x13, ALC_PIN_DIR_INOUT),
4155 ALC_PIN_MODE("MIC1 pin mode", 0x12, ALC_PIN_DIR_INOUT),
4157 /* Loopback mixer controls */
4158 HDA_CODEC_VOLUME("MIC1 Playback Volume", 0x07, 0x00, HDA_INPUT),
4159 HDA_CODEC_MUTE("MIC1 Playback Switch", 0x07, 0x00, HDA_INPUT),
4160 HDA_CODEC_VOLUME("MIC2 Playback Volume", 0x07, 0x01, HDA_INPUT),
4161 HDA_CODEC_MUTE("MIC2 Playback Switch", 0x07, 0x01, HDA_INPUT),
4162 HDA_CODEC_VOLUME("LINE1 Playback Volume", 0x07, 0x02, HDA_INPUT),
4163 HDA_CODEC_MUTE("LINE1 Playback Switch", 0x07, 0x02, HDA_INPUT),
4164 HDA_CODEC_VOLUME("LINE2 Playback Volume", 0x07, 0x03, HDA_INPUT),
4165 HDA_CODEC_MUTE("LINE2 Playback Switch", 0x07, 0x03, HDA_INPUT),
4166 HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT),
4167 HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT),
4168 HDA_CODEC_VOLUME("Beep Playback Volume", 0x07, 0x05, HDA_INPUT),
4169 HDA_CODEC_MUTE("Beep Playback Switch", 0x07, 0x05, HDA_INPUT),
4170 HDA_CODEC_VOLUME("LINE-OUT loopback Playback Volume", 0x07, 0x06, HDA_INPUT),
4171 HDA_CODEC_MUTE("LINE-OUT loopback Playback Switch", 0x07, 0x06, HDA_INPUT),
4172 HDA_CODEC_VOLUME("HP-OUT loopback Playback Volume", 0x07, 0x7, HDA_INPUT),
4173 HDA_CODEC_MUTE("HP-OUT loopback Playback Switch", 0x07, 0x7, HDA_INPUT),
4175 /* Controls for GPIO pins, assuming they are configured as outputs */
4176 ALC_GPIO_DATA_SWITCH("GPIO pin 0", 0x01, 0x01),
4177 ALC_GPIO_DATA_SWITCH("GPIO pin 1", 0x01, 0x02),
4178 ALC_GPIO_DATA_SWITCH("GPIO pin 2", 0x01, 0x04),
4179 ALC_GPIO_DATA_SWITCH("GPIO pin 3", 0x01, 0x08),
4181 /* Switches to allow the digital IO pins to be enabled. The datasheet
4182 * is ambigious as to which NID is which; testing on laptops which
4183 * make this output available should provide clarification.
4185 ALC_SPDIF_CTRL_SWITCH("SPDIF Playback Switch", 0x03, 0x01),
4186 ALC_SPDIF_CTRL_SWITCH("SPDIF Capture Switch", 0x06, 0x01),
4190 static struct hda_verb alc260_test_init_verbs[] = {
4191 /* Enable all GPIOs as outputs with an initial value of 0 */
4192 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x0f},
4193 {0x01, AC_VERB_SET_GPIO_DATA, 0x00},
4194 {0x01, AC_VERB_SET_GPIO_MASK, 0x0f},
4196 /* Enable retasking pins as output, initially without power amp */
4197 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4198 {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4199 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4200 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4201 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4202 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4204 /* Disable digital (SPDIF) pins initially, but users can enable
4205 * them via a mixer switch. In the case of SPDIF-out, this initverb
4206 * payload also sets the generation to 0, output to be in "consumer"
4207 * PCM format, copyright asserted, no pre-emphasis and no validity
4210 {0x03, AC_VERB_SET_DIGI_CONVERT_1, 0},
4211 {0x06, AC_VERB_SET_DIGI_CONVERT_1, 0},
4213 /* Ensure mic1, mic2, line1 and line2 pin widgets take input from the
4214 * OUT1 sum bus when acting as an output.
4216 {0x0b, AC_VERB_SET_CONNECT_SEL, 0},
4217 {0x0c, AC_VERB_SET_CONNECT_SEL, 0},
4218 {0x0d, AC_VERB_SET_CONNECT_SEL, 0},
4219 {0x0e, AC_VERB_SET_CONNECT_SEL, 0},
4221 /* Start with output sum widgets muted and their output gains at min */
4222 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4223 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4224 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4225 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4226 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4227 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4228 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4229 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4230 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4232 /* Unmute retasking pin widget output buffers since the default
4233 * state appears to be output. As the pin mode is changed by the
4234 * user the pin mode control will take care of enabling the pin's
4235 * input/output buffers as needed.
4237 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4238 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4239 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4240 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4241 {0x13, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4242 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4243 /* Also unmute the mono-out pin widget */
4244 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4246 /* Mute capture amp left and right */
4247 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4248 /* Set ADC connection select to match default mixer setting (mic1
4251 {0x04, AC_VERB_SET_CONNECT_SEL, 0x00},
4253 /* Do the same for the second ADC: mute capture input amp and
4254 * set ADC connection to mic1 pin
4256 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4257 {0x05, AC_VERB_SET_CONNECT_SEL, 0x00},
4259 /* Mute all inputs to mixer widget (even unconnected ones) */
4260 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* mic1 pin */
4261 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, /* mic2 pin */
4262 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, /* line1 pin */
4263 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, /* line2 pin */
4264 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, /* CD pin */
4265 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)}, /* Beep-gen pin */
4266 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)}, /* Line-out pin */
4267 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)}, /* HP-pin pin */
4273 static struct hda_pcm_stream alc260_pcm_analog_playback = {
4279 static struct hda_pcm_stream alc260_pcm_analog_capture = {
4285 #define alc260_pcm_digital_playback alc880_pcm_digital_playback
4286 #define alc260_pcm_digital_capture alc880_pcm_digital_capture
4289 * for BIOS auto-configuration
4292 static int alc260_add_playback_controls(struct alc_spec *spec, hda_nid_t nid,
4296 unsigned long vol_val, sw_val;
4300 if (nid >= 0x0f && nid < 0x11) {
4301 nid_vol = nid - 0x7;
4302 vol_val = HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0, HDA_OUTPUT);
4303 sw_val = HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT);
4304 } else if (nid == 0x11) {
4305 nid_vol = nid - 0x7;
4306 vol_val = HDA_COMPOSE_AMP_VAL(nid_vol, 2, 0, HDA_OUTPUT);
4307 sw_val = HDA_COMPOSE_AMP_VAL(nid, 2, 0, HDA_OUTPUT);
4308 } else if (nid >= 0x12 && nid <= 0x15) {
4310 vol_val = HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0, HDA_OUTPUT);
4311 sw_val = HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT);
4315 snprintf(name, sizeof(name), "%s Playback Volume", pfx);
4316 err = add_control(spec, ALC_CTL_WIDGET_VOL, name, vol_val);
4319 snprintf(name, sizeof(name), "%s Playback Switch", pfx);
4320 err = add_control(spec, ALC_CTL_WIDGET_MUTE, name, sw_val);
4326 /* add playback controls from the parsed DAC table */
4327 static int alc260_auto_create_multi_out_ctls(struct alc_spec *spec,
4328 const struct auto_pin_cfg *cfg)
4333 spec->multiout.num_dacs = 1;
4334 spec->multiout.dac_nids = spec->private_dac_nids;
4335 spec->multiout.dac_nids[0] = 0x02;
4337 nid = cfg->line_out_pins[0];
4339 err = alc260_add_playback_controls(spec, nid, "Front");
4344 nid = cfg->speaker_pins[0];
4346 err = alc260_add_playback_controls(spec, nid, "Speaker");
4351 nid = cfg->hp_pins[0];
4353 err = alc260_add_playback_controls(spec, nid, "Headphone");
4360 /* create playback/capture controls for input pins */
4361 static int alc260_auto_create_analog_input_ctls(struct alc_spec *spec,
4362 const struct auto_pin_cfg *cfg)
4364 struct hda_input_mux *imux = &spec->private_imux;
4367 for (i = 0; i < AUTO_PIN_LAST; i++) {
4368 if (cfg->input_pins[i] >= 0x12) {
4369 idx = cfg->input_pins[i] - 0x12;
4370 err = new_analog_input(spec, cfg->input_pins[i],
4371 auto_pin_cfg_labels[i], idx,
4375 imux->items[imux->num_items].label =
4376 auto_pin_cfg_labels[i];
4377 imux->items[imux->num_items].index = idx;
4380 if (cfg->input_pins[i] >= 0x0f && cfg->input_pins[i] <= 0x10){
4381 idx = cfg->input_pins[i] - 0x09;
4382 err = new_analog_input(spec, cfg->input_pins[i],
4383 auto_pin_cfg_labels[i], idx,
4387 imux->items[imux->num_items].label =
4388 auto_pin_cfg_labels[i];
4389 imux->items[imux->num_items].index = idx;
4396 static void alc260_auto_set_output_and_unmute(struct hda_codec *codec,
4397 hda_nid_t nid, int pin_type,
4401 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
4403 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
4405 /* need the manual connection? */
4407 int idx = nid - 0x12;
4408 snd_hda_codec_write(codec, idx + 0x0b, 0,
4409 AC_VERB_SET_CONNECT_SEL, sel_idx);
4413 static void alc260_auto_init_multi_out(struct hda_codec *codec)
4415 struct alc_spec *spec = codec->spec;
4418 alc_subsystem_id(codec, 0x10, 0x15, 0x0f);
4419 nid = spec->autocfg.line_out_pins[0];
4421 int pin_type = get_pin_type(spec->autocfg.line_out_type);
4422 alc260_auto_set_output_and_unmute(codec, nid, pin_type, 0);
4425 nid = spec->autocfg.speaker_pins[0];
4427 alc260_auto_set_output_and_unmute(codec, nid, PIN_OUT, 0);
4429 nid = spec->autocfg.hp_pins[0];
4431 alc260_auto_set_output_and_unmute(codec, nid, PIN_HP, 0);
4434 #define ALC260_PIN_CD_NID 0x16
4435 static void alc260_auto_init_analog_input(struct hda_codec *codec)
4437 struct alc_spec *spec = codec->spec;
4440 for (i = 0; i < AUTO_PIN_LAST; i++) {
4441 hda_nid_t nid = spec->autocfg.input_pins[i];
4443 snd_hda_codec_write(codec, nid, 0,
4444 AC_VERB_SET_PIN_WIDGET_CONTROL,
4445 i <= AUTO_PIN_FRONT_MIC ?
4446 PIN_VREF80 : PIN_IN);
4447 if (nid != ALC260_PIN_CD_NID)
4448 snd_hda_codec_write(codec, nid, 0,
4449 AC_VERB_SET_AMP_GAIN_MUTE,
4456 * generic initialization of ADC, input mixers and output mixers
4458 static struct hda_verb alc260_volume_init_verbs[] = {
4460 * Unmute ADC0-1 and set the default input to mic-in
4462 {0x04, AC_VERB_SET_CONNECT_SEL, 0x00},
4463 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4464 {0x05, AC_VERB_SET_CONNECT_SEL, 0x00},
4465 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4467 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
4469 * Note: PASD motherboards uses the Line In 2 as the input for
4470 * front panel mic (mic 2)
4472 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
4473 /* mute analog inputs */
4474 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4475 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4476 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
4477 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
4478 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
4481 * Set up output mixers (0x08 - 0x0a)
4483 /* set vol=0 to output mixers */
4484 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4485 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4486 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4487 /* set up input amps for analog loopback */
4488 /* Amp Indices: DAC = 0, mixer = 1 */
4489 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4490 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4491 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4492 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4493 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4494 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4499 static int alc260_parse_auto_config(struct hda_codec *codec)
4501 struct alc_spec *spec = codec->spec;
4504 static hda_nid_t alc260_ignore[] = { 0x17, 0 };
4506 err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
4510 err = alc260_auto_create_multi_out_ctls(spec, &spec->autocfg);
4513 if (!spec->kctl_alloc)
4514 return 0; /* can't find valid BIOS pin config */
4515 err = alc260_auto_create_analog_input_ctls(spec, &spec->autocfg);
4519 spec->multiout.max_channels = 2;
4521 if (spec->autocfg.dig_out_pin)
4522 spec->multiout.dig_out_nid = ALC260_DIGOUT_NID;
4523 if (spec->kctl_alloc)
4524 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
4526 spec->init_verbs[spec->num_init_verbs++] = alc260_volume_init_verbs;
4528 spec->num_mux_defs = 1;
4529 spec->input_mux = &spec->private_imux;
4531 /* check whether NID 0x04 is valid */
4532 wcap = get_wcaps(codec, 0x04);
4533 wcap = (wcap & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT; /* get type */
4534 if (wcap != AC_WID_AUD_IN) {
4535 spec->adc_nids = alc260_adc_nids_alt;
4536 spec->num_adc_nids = ARRAY_SIZE(alc260_adc_nids_alt);
4537 spec->mixers[spec->num_mixers] = alc260_capture_alt_mixer;
4539 spec->adc_nids = alc260_adc_nids;
4540 spec->num_adc_nids = ARRAY_SIZE(alc260_adc_nids);
4541 spec->mixers[spec->num_mixers] = alc260_capture_mixer;
4548 /* additional initialization for auto-configuration model */
4549 static void alc260_auto_init(struct hda_codec *codec)
4551 alc260_auto_init_multi_out(codec);
4552 alc260_auto_init_analog_input(codec);
4555 #ifdef CONFIG_SND_HDA_POWER_SAVE
4556 static struct hda_amp_list alc260_loopbacks[] = {
4557 { 0x07, HDA_INPUT, 0 },
4558 { 0x07, HDA_INPUT, 1 },
4559 { 0x07, HDA_INPUT, 2 },
4560 { 0x07, HDA_INPUT, 3 },
4561 { 0x07, HDA_INPUT, 4 },
4567 * ALC260 configurations
4569 static const char *alc260_models[ALC260_MODEL_LAST] = {
4570 [ALC260_BASIC] = "basic",
4572 [ALC260_HP_3013] = "hp-3013",
4573 [ALC260_FUJITSU_S702X] = "fujitsu",
4574 [ALC260_ACER] = "acer",
4575 [ALC260_WILL] = "will",
4576 [ALC260_REPLACER_672V] = "replacer",
4577 #ifdef CONFIG_SND_DEBUG
4578 [ALC260_TEST] = "test",
4580 [ALC260_AUTO] = "auto",
4583 static struct snd_pci_quirk alc260_cfg_tbl[] = {
4584 SND_PCI_QUIRK(0x1025, 0x007b, "Acer C20x", ALC260_ACER),
4585 SND_PCI_QUIRK(0x1025, 0x008f, "Acer", ALC260_ACER),
4586 SND_PCI_QUIRK(0x103c, 0x2808, "HP d5700", ALC260_HP_3013),
4587 SND_PCI_QUIRK(0x103c, 0x280a, "HP d5750", ALC260_HP_3013),
4588 SND_PCI_QUIRK(0x103c, 0x3010, "HP", ALC260_HP_3013),
4589 SND_PCI_QUIRK(0x103c, 0x3011, "HP", ALC260_HP),
4590 SND_PCI_QUIRK(0x103c, 0x3012, "HP", ALC260_HP_3013),
4591 SND_PCI_QUIRK(0x103c, 0x3013, "HP", ALC260_HP_3013),
4592 SND_PCI_QUIRK(0x103c, 0x3014, "HP", ALC260_HP),
4593 SND_PCI_QUIRK(0x103c, 0x3015, "HP", ALC260_HP),
4594 SND_PCI_QUIRK(0x103c, 0x3016, "HP", ALC260_HP),
4595 SND_PCI_QUIRK(0x104d, 0x81bb, "Sony VAIO", ALC260_BASIC),
4596 SND_PCI_QUIRK(0x104d, 0x81cc, "Sony VAIO", ALC260_BASIC),
4597 SND_PCI_QUIRK(0x104d, 0x81cd, "Sony VAIO", ALC260_BASIC),
4598 SND_PCI_QUIRK(0x10cf, 0x1326, "Fujitsu S702X", ALC260_FUJITSU_S702X),
4599 SND_PCI_QUIRK(0x152d, 0x0729, "CTL U553W", ALC260_BASIC),
4600 SND_PCI_QUIRK(0x1631, 0xc017, "PB V7900", ALC260_WILL),
4601 SND_PCI_QUIRK(0x161f, 0x2057, "Replacer 672V", ALC260_REPLACER_672V),
4605 static struct alc_config_preset alc260_presets[] = {
4607 .mixers = { alc260_base_output_mixer,
4609 alc260_pc_beep_mixer,
4610 alc260_capture_mixer },
4611 .init_verbs = { alc260_init_verbs },
4612 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
4613 .dac_nids = alc260_dac_nids,
4614 .num_adc_nids = ARRAY_SIZE(alc260_adc_nids),
4615 .adc_nids = alc260_adc_nids,
4616 .num_channel_mode = ARRAY_SIZE(alc260_modes),
4617 .channel_mode = alc260_modes,
4618 .input_mux = &alc260_capture_source,
4621 .mixers = { alc260_base_output_mixer,
4623 alc260_capture_alt_mixer },
4624 .init_verbs = { alc260_init_verbs },
4625 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
4626 .dac_nids = alc260_dac_nids,
4627 .num_adc_nids = ARRAY_SIZE(alc260_hp_adc_nids),
4628 .adc_nids = alc260_hp_adc_nids,
4629 .num_channel_mode = ARRAY_SIZE(alc260_modes),
4630 .channel_mode = alc260_modes,
4631 .input_mux = &alc260_capture_source,
4633 [ALC260_HP_3013] = {
4634 .mixers = { alc260_hp_3013_mixer,
4636 alc260_capture_alt_mixer },
4637 .init_verbs = { alc260_hp_3013_init_verbs },
4638 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
4639 .dac_nids = alc260_dac_nids,
4640 .num_adc_nids = ARRAY_SIZE(alc260_hp_adc_nids),
4641 .adc_nids = alc260_hp_adc_nids,
4642 .num_channel_mode = ARRAY_SIZE(alc260_modes),
4643 .channel_mode = alc260_modes,
4644 .input_mux = &alc260_capture_source,
4646 [ALC260_FUJITSU_S702X] = {
4647 .mixers = { alc260_fujitsu_mixer,
4648 alc260_capture_mixer },
4649 .init_verbs = { alc260_fujitsu_init_verbs },
4650 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
4651 .dac_nids = alc260_dac_nids,
4652 .num_adc_nids = ARRAY_SIZE(alc260_dual_adc_nids),
4653 .adc_nids = alc260_dual_adc_nids,
4654 .num_channel_mode = ARRAY_SIZE(alc260_modes),
4655 .channel_mode = alc260_modes,
4656 .num_mux_defs = ARRAY_SIZE(alc260_fujitsu_capture_sources),
4657 .input_mux = alc260_fujitsu_capture_sources,
4660 .mixers = { alc260_acer_mixer,
4661 alc260_capture_mixer },
4662 .init_verbs = { alc260_acer_init_verbs },
4663 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
4664 .dac_nids = alc260_dac_nids,
4665 .num_adc_nids = ARRAY_SIZE(alc260_dual_adc_nids),
4666 .adc_nids = alc260_dual_adc_nids,
4667 .num_channel_mode = ARRAY_SIZE(alc260_modes),
4668 .channel_mode = alc260_modes,
4669 .num_mux_defs = ARRAY_SIZE(alc260_acer_capture_sources),
4670 .input_mux = alc260_acer_capture_sources,
4673 .mixers = { alc260_will_mixer,
4674 alc260_capture_mixer },
4675 .init_verbs = { alc260_init_verbs, alc260_will_verbs },
4676 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
4677 .dac_nids = alc260_dac_nids,
4678 .num_adc_nids = ARRAY_SIZE(alc260_adc_nids),
4679 .adc_nids = alc260_adc_nids,
4680 .dig_out_nid = ALC260_DIGOUT_NID,
4681 .num_channel_mode = ARRAY_SIZE(alc260_modes),
4682 .channel_mode = alc260_modes,
4683 .input_mux = &alc260_capture_source,
4685 [ALC260_REPLACER_672V] = {
4686 .mixers = { alc260_replacer_672v_mixer,
4687 alc260_capture_mixer },
4688 .init_verbs = { alc260_init_verbs, alc260_replacer_672v_verbs },
4689 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
4690 .dac_nids = alc260_dac_nids,
4691 .num_adc_nids = ARRAY_SIZE(alc260_adc_nids),
4692 .adc_nids = alc260_adc_nids,
4693 .dig_out_nid = ALC260_DIGOUT_NID,
4694 .num_channel_mode = ARRAY_SIZE(alc260_modes),
4695 .channel_mode = alc260_modes,
4696 .input_mux = &alc260_capture_source,
4697 .unsol_event = alc260_replacer_672v_unsol_event,
4698 .init_hook = alc260_replacer_672v_automute,
4700 #ifdef CONFIG_SND_DEBUG
4702 .mixers = { alc260_test_mixer,
4703 alc260_capture_mixer },
4704 .init_verbs = { alc260_test_init_verbs },
4705 .num_dacs = ARRAY_SIZE(alc260_test_dac_nids),
4706 .dac_nids = alc260_test_dac_nids,
4707 .num_adc_nids = ARRAY_SIZE(alc260_test_adc_nids),
4708 .adc_nids = alc260_test_adc_nids,
4709 .num_channel_mode = ARRAY_SIZE(alc260_modes),
4710 .channel_mode = alc260_modes,
4711 .num_mux_defs = ARRAY_SIZE(alc260_test_capture_sources),
4712 .input_mux = alc260_test_capture_sources,
4717 static int patch_alc260(struct hda_codec *codec)
4719 struct alc_spec *spec;
4720 int err, board_config;
4722 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
4728 board_config = snd_hda_check_board_config(codec, ALC260_MODEL_LAST,
4731 if (board_config < 0) {
4732 snd_printd(KERN_INFO "hda_codec: Unknown model for ALC260, "
4733 "trying auto-probe from BIOS...\n");
4734 board_config = ALC260_AUTO;
4737 if (board_config == ALC260_AUTO) {
4738 /* automatic parse from the BIOS config */
4739 err = alc260_parse_auto_config(codec);
4745 "hda_codec: Cannot set up configuration "
4746 "from BIOS. Using base mode...\n");
4747 board_config = ALC260_BASIC;
4751 if (board_config != ALC260_AUTO)
4752 setup_preset(spec, &alc260_presets[board_config]);
4754 spec->stream_name_analog = "ALC260 Analog";
4755 spec->stream_analog_playback = &alc260_pcm_analog_playback;
4756 spec->stream_analog_capture = &alc260_pcm_analog_capture;
4758 spec->stream_name_digital = "ALC260 Digital";
4759 spec->stream_digital_playback = &alc260_pcm_digital_playback;
4760 spec->stream_digital_capture = &alc260_pcm_digital_capture;
4762 codec->patch_ops = alc_patch_ops;
4763 if (board_config == ALC260_AUTO)
4764 spec->init_hook = alc260_auto_init;
4765 #ifdef CONFIG_SND_HDA_POWER_SAVE
4766 if (!spec->loopback.amplist)
4767 spec->loopback.amplist = alc260_loopbacks;
4777 * ALC882 is almost identical with ALC880 but has cleaner and more flexible
4778 * configuration. Each pin widget can choose any input DACs and a mixer.
4779 * Each ADC is connected from a mixer of all inputs. This makes possible
4780 * 6-channel independent captures.
4782 * In addition, an independent DAC for the multi-playback (not used in this
4785 #define ALC882_DIGOUT_NID 0x06
4786 #define ALC882_DIGIN_NID 0x0a
4788 static struct hda_channel_mode alc882_ch_modes[1] = {
4792 static hda_nid_t alc882_dac_nids[4] = {
4793 /* front, rear, clfe, rear_surr */
4794 0x02, 0x03, 0x04, 0x05
4797 /* identical with ALC880 */
4798 #define alc882_adc_nids alc880_adc_nids
4799 #define alc882_adc_nids_alt alc880_adc_nids_alt
4802 /* FIXME: should be a matrix-type input source selection */
4804 static struct hda_input_mux alc882_capture_source = {
4808 { "Front Mic", 0x1 },
4813 #define alc882_mux_enum_info alc_mux_enum_info
4814 #define alc882_mux_enum_get alc_mux_enum_get
4816 static int alc882_mux_enum_put(struct snd_kcontrol *kcontrol,
4817 struct snd_ctl_elem_value *ucontrol)
4819 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
4820 struct alc_spec *spec = codec->spec;
4821 const struct hda_input_mux *imux = spec->input_mux;
4822 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
4823 static hda_nid_t capture_mixers[3] = { 0x24, 0x23, 0x22 };
4824 hda_nid_t nid = capture_mixers[adc_idx];
4825 unsigned int *cur_val = &spec->cur_mux[adc_idx];
4826 unsigned int i, idx;
4828 idx = ucontrol->value.enumerated.item[0];
4829 if (idx >= imux->num_items)
4830 idx = imux->num_items - 1;
4831 if (*cur_val == idx)
4833 for (i = 0; i < imux->num_items; i++) {
4834 unsigned int v = (i == idx) ? 0 : HDA_AMP_MUTE;
4835 snd_hda_codec_amp_stereo(codec, nid, HDA_INPUT,
4836 imux->items[i].index,
4846 static struct hda_verb alc882_3ST_ch2_init[] = {
4847 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
4848 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
4849 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
4850 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
4857 static struct hda_verb alc882_3ST_ch6_init[] = {
4858 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4859 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
4860 { 0x18, AC_VERB_SET_CONNECT_SEL, 0x02 },
4861 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4862 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
4863 { 0x1a, AC_VERB_SET_CONNECT_SEL, 0x01 },
4867 static struct hda_channel_mode alc882_3ST_6ch_modes[2] = {
4868 { 2, alc882_3ST_ch2_init },
4869 { 6, alc882_3ST_ch6_init },
4875 static struct hda_verb alc882_sixstack_ch6_init[] = {
4876 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
4877 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4878 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4879 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4886 static struct hda_verb alc882_sixstack_ch8_init[] = {
4887 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4888 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4889 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4890 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4894 static struct hda_channel_mode alc882_sixstack_modes[2] = {
4895 { 6, alc882_sixstack_ch6_init },
4896 { 8, alc882_sixstack_ch8_init },
4900 * macbook pro ALC885 can switch LineIn to LineOut without loosing Mic
4906 static struct hda_verb alc885_mbp_ch2_init[] = {
4907 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
4908 { 0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4909 { 0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4916 static struct hda_verb alc885_mbp_ch6_init[] = {
4917 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4918 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4919 { 0x1a, AC_VERB_SET_CONNECT_SEL, 0x01 },
4920 { 0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4921 { 0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4925 static struct hda_channel_mode alc885_mbp_6ch_modes[2] = {
4926 { 2, alc885_mbp_ch2_init },
4927 { 6, alc885_mbp_ch6_init },
4931 /* Pin assignment: Front=0x14, Rear=0x15, CLFE=0x16, Side=0x17
4932 * Mic=0x18, Front Mic=0x19, Line-In=0x1a, HP=0x1b
4934 static struct snd_kcontrol_new alc882_base_mixer[] = {
4935 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
4936 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
4937 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
4938 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
4939 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
4940 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
4941 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
4942 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
4943 HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
4944 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT),
4945 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
4946 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
4947 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
4948 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
4949 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
4950 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
4951 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
4952 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
4953 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
4954 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
4955 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
4956 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
4957 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
4961 static struct snd_kcontrol_new alc885_mbp3_mixer[] = {
4962 HDA_CODEC_VOLUME("Master Volume", 0x0c, 0x00, HDA_OUTPUT),
4963 HDA_BIND_MUTE ("Master Switch", 0x0c, 0x02, HDA_INPUT),
4964 HDA_CODEC_MUTE ("Speaker Switch", 0x14, 0x00, HDA_OUTPUT),
4965 HDA_CODEC_VOLUME("Line Out Volume", 0x0d,0x00, HDA_OUTPUT),
4966 HDA_CODEC_VOLUME("Line In Playback Volume", 0x0b, 0x02, HDA_INPUT),
4967 HDA_CODEC_MUTE ("Line In Playback Switch", 0x0b, 0x02, HDA_INPUT),
4968 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x00, HDA_INPUT),
4969 HDA_CODEC_MUTE ("Mic Playback Switch", 0x0b, 0x00, HDA_INPUT),
4970 HDA_CODEC_VOLUME("Line In Boost", 0x1a, 0x00, HDA_INPUT),
4971 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0x00, HDA_INPUT),
4974 static struct snd_kcontrol_new alc882_w2jc_mixer[] = {
4975 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
4976 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
4977 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
4978 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
4979 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
4980 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
4981 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
4982 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
4983 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
4984 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
4985 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
4989 static struct snd_kcontrol_new alc882_targa_mixer[] = {
4990 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
4991 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
4992 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
4993 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
4994 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
4995 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
4996 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
4997 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
4998 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
4999 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
5000 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
5004 /* Pin assignment: Front=0x14, HP = 0x15, Front = 0x16, ???
5005 * Front Mic=0x18, Line In = 0x1a, Line In = 0x1b, CD = 0x1c
5007 static struct snd_kcontrol_new alc882_asus_a7j_mixer[] = {
5008 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
5009 HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT),
5010 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT),
5011 HDA_CODEC_MUTE("Mobile Front Playback Switch", 0x16, 0x0, HDA_OUTPUT),
5012 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
5013 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
5014 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
5015 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
5016 HDA_CODEC_VOLUME("Mobile Line Playback Volume", 0x0b, 0x03, HDA_INPUT),
5017 HDA_CODEC_MUTE("Mobile Line Playback Switch", 0x0b, 0x03, HDA_INPUT),
5018 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
5019 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
5023 static struct snd_kcontrol_new alc882_chmode_mixer[] = {
5025 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
5026 .name = "Channel Mode",
5027 .info = alc_ch_mode_info,
5028 .get = alc_ch_mode_get,
5029 .put = alc_ch_mode_put,
5034 static struct hda_verb alc882_init_verbs[] = {
5035 /* Front mixer: unmute input/output amp left and right (volume = 0) */
5036 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5037 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5038 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5040 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5041 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5042 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5044 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5045 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5046 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5048 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5049 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5050 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5052 /* Front Pin: output 0 (0x0c) */
5053 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5054 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5055 {0x14, AC_VERB_SET_CONNECT_SEL, 0x00},
5056 /* Rear Pin: output 1 (0x0d) */
5057 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5058 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5059 {0x15, AC_VERB_SET_CONNECT_SEL, 0x01},
5060 /* CLFE Pin: output 2 (0x0e) */
5061 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5062 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5063 {0x16, AC_VERB_SET_CONNECT_SEL, 0x02},
5064 /* Side Pin: output 3 (0x0f) */
5065 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5066 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5067 {0x17, AC_VERB_SET_CONNECT_SEL, 0x03},
5068 /* Mic (rear) pin: input vref at 80% */
5069 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
5070 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5071 /* Front Mic pin: input vref at 80% */
5072 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
5073 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5074 /* Line In pin: input */
5075 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
5076 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5077 /* Line-2 In: Headphone output (output 0 - 0x0c) */
5078 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
5079 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5080 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
5081 /* CD pin widget for input */
5082 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
5084 /* FIXME: use matrix-type input source selection */
5085 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
5086 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
5087 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5088 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
5089 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
5090 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
5092 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5093 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
5094 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
5095 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
5097 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5098 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
5099 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
5100 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
5101 /* ADC1: mute amp left and right */
5102 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5103 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
5104 /* ADC2: mute amp left and right */
5105 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5106 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
5107 /* ADC3: mute amp left and right */
5108 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5109 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
5114 static struct hda_verb alc882_eapd_verbs[] = {
5115 /* change to EAPD mode */
5116 {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
5117 {0x20, AC_VERB_SET_PROC_COEF, 0x3060},
5122 static struct snd_kcontrol_new alc882_macpro_mixer[] = {
5123 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
5124 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
5125 HDA_CODEC_MUTE("Headphone Playback Switch", 0x18, 0x0, HDA_OUTPUT),
5126 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x01, HDA_INPUT),
5127 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x01, HDA_INPUT),
5128 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x02, HDA_INPUT),
5129 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x02, HDA_INPUT),
5133 static struct hda_verb alc882_macpro_init_verbs[] = {
5134 /* Front mixer: unmute input/output amp left and right (volume = 0) */
5135 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5136 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5137 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5138 /* Front Pin: output 0 (0x0c) */
5139 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5140 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5141 {0x15, AC_VERB_SET_CONNECT_SEL, 0x00},
5142 /* Front Mic pin: input vref at 80% */
5143 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
5144 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5145 /* Speaker: output */
5146 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5147 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5148 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x04},
5149 /* Headphone output (output 0 - 0x0c) */
5150 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
5151 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5152 {0x18, AC_VERB_SET_CONNECT_SEL, 0x00},
5154 /* FIXME: use matrix-type input source selection */
5155 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
5156 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
5157 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5158 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
5159 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
5160 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
5162 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5163 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
5164 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
5165 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
5167 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5168 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
5169 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
5170 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
5171 /* ADC1: mute amp left and right */
5172 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5173 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
5174 /* ADC2: mute amp left and right */
5175 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5176 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
5177 /* ADC3: mute amp left and right */
5178 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5179 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
5184 /* Macbook Pro rev3 */
5185 static struct hda_verb alc885_mbp3_init_verbs[] = {
5186 /* Front mixer: unmute input/output amp left and right (volume = 0) */
5187 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5188 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5189 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5191 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5192 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5193 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5194 /* Front Pin: output 0 (0x0c) */
5195 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5196 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5197 {0x14, AC_VERB_SET_CONNECT_SEL, 0x00},
5198 /* HP Pin: output 0 (0x0d) */
5199 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc4},
5200 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5201 {0x15, AC_VERB_SET_CONNECT_SEL, 0x00},
5202 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
5203 /* Mic (rear) pin: input vref at 80% */
5204 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
5205 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5206 /* Front Mic pin: input vref at 80% */
5207 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
5208 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5209 /* Line In pin: use output 1 when in LineOut mode */
5210 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
5211 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5212 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x01},
5214 /* FIXME: use matrix-type input source selection */
5215 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
5216 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
5217 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5218 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
5219 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
5220 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
5222 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5223 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
5224 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
5225 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
5227 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5228 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
5229 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
5230 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
5231 /* ADC1: mute amp left and right */
5232 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5233 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
5234 /* ADC2: mute amp left and right */
5235 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5236 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
5237 /* ADC3: mute amp left and right */
5238 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5239 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
5244 /* iMac 24 mixer. */
5245 static struct snd_kcontrol_new alc885_imac24_mixer[] = {
5246 HDA_CODEC_VOLUME("Master Playback Volume", 0x0c, 0x00, HDA_OUTPUT),
5247 HDA_CODEC_MUTE("Master Playback Switch", 0x0c, 0x00, HDA_INPUT),
5251 /* iMac 24 init verbs. */
5252 static struct hda_verb alc885_imac24_init_verbs[] = {
5253 /* Internal speakers: output 0 (0x0c) */
5254 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5255 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5256 {0x18, AC_VERB_SET_CONNECT_SEL, 0x00},
5257 /* Internal speakers: output 0 (0x0c) */
5258 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5259 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5260 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x00},
5261 /* Headphone: output 0 (0x0c) */
5262 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
5263 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5264 {0x14, AC_VERB_SET_CONNECT_SEL, 0x00},
5265 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
5266 /* Front Mic: input vref at 80% */
5267 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
5268 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5272 /* Toggle speaker-output according to the hp-jack state */
5273 static void alc885_imac24_automute(struct hda_codec *codec)
5275 unsigned int present;
5277 present = snd_hda_codec_read(codec, 0x14, 0,
5278 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
5279 snd_hda_codec_amp_stereo(codec, 0x18, HDA_OUTPUT, 0,
5280 HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0);
5281 snd_hda_codec_amp_stereo(codec, 0x1a, HDA_OUTPUT, 0,
5282 HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0);
5285 /* Processes unsolicited events. */
5286 static void alc885_imac24_unsol_event(struct hda_codec *codec,
5289 /* Headphone insertion or removal. */
5290 if ((res >> 26) == ALC880_HP_EVENT)
5291 alc885_imac24_automute(codec);
5294 static void alc885_mbp3_automute(struct hda_codec *codec)
5296 unsigned int present;
5298 present = snd_hda_codec_read(codec, 0x15, 0,
5299 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
5300 snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0,
5301 HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0);
5302 snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0,
5303 HDA_AMP_MUTE, present ? 0 : HDA_AMP_MUTE);
5306 static void alc885_mbp3_unsol_event(struct hda_codec *codec,
5309 /* Headphone insertion or removal. */
5310 if ((res >> 26) == ALC880_HP_EVENT)
5311 alc885_mbp3_automute(codec);
5315 static struct hda_verb alc882_targa_verbs[] = {
5316 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5317 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5319 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
5320 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5322 {0x18, AC_VERB_SET_CONNECT_SEL, 0x02}, /* mic/clfe */
5323 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x01}, /* line/surround */
5324 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
5326 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
5327 {0x01, AC_VERB_SET_GPIO_MASK, 0x03},
5328 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x03},
5329 {0x01, AC_VERB_SET_GPIO_DATA, 0x03},
5333 /* toggle speaker-output according to the hp-jack state */
5334 static void alc882_targa_automute(struct hda_codec *codec)
5336 unsigned int present;
5338 present = snd_hda_codec_read(codec, 0x14, 0,
5339 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
5340 snd_hda_codec_amp_stereo(codec, 0x1b, HDA_OUTPUT, 0,
5341 HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0);
5342 snd_hda_codec_write_cache(codec, 1, 0, AC_VERB_SET_GPIO_DATA,
5346 static void alc882_targa_unsol_event(struct hda_codec *codec, unsigned int res)
5348 /* Looks like the unsol event is incompatible with the standard
5349 * definition. 4bit tag is placed at 26 bit!
5351 if (((res >> 26) == ALC880_HP_EVENT)) {
5352 alc882_targa_automute(codec);
5356 static struct hda_verb alc882_asus_a7j_verbs[] = {
5357 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5358 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5360 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
5361 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5362 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5364 {0x14, AC_VERB_SET_CONNECT_SEL, 0x00}, /* Front */
5365 {0x15, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
5366 {0x16, AC_VERB_SET_CONNECT_SEL, 0x00}, /* Front */
5368 {0x18, AC_VERB_SET_CONNECT_SEL, 0x02}, /* mic/clfe */
5369 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x01}, /* line/surround */
5370 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
5374 static void alc882_gpio_mute(struct hda_codec *codec, int pin, int muted)
5376 unsigned int gpiostate, gpiomask, gpiodir;
5378 gpiostate = snd_hda_codec_read(codec, codec->afg, 0,
5379 AC_VERB_GET_GPIO_DATA, 0);
5382 gpiostate |= (1 << pin);
5384 gpiostate &= ~(1 << pin);
5386 gpiomask = snd_hda_codec_read(codec, codec->afg, 0,
5387 AC_VERB_GET_GPIO_MASK, 0);
5388 gpiomask |= (1 << pin);
5390 gpiodir = snd_hda_codec_read(codec, codec->afg, 0,
5391 AC_VERB_GET_GPIO_DIRECTION, 0);
5392 gpiodir |= (1 << pin);
5395 snd_hda_codec_write(codec, codec->afg, 0,
5396 AC_VERB_SET_GPIO_MASK, gpiomask);
5397 snd_hda_codec_write(codec, codec->afg, 0,
5398 AC_VERB_SET_GPIO_DIRECTION, gpiodir);
5402 snd_hda_codec_write(codec, codec->afg, 0,
5403 AC_VERB_SET_GPIO_DATA, gpiostate);
5406 /* set up GPIO at initialization */
5407 static void alc885_macpro_init_hook(struct hda_codec *codec)
5409 alc882_gpio_mute(codec, 0, 0);
5410 alc882_gpio_mute(codec, 1, 0);
5413 /* set up GPIO and update auto-muting at initialization */
5414 static void alc885_imac24_init_hook(struct hda_codec *codec)
5416 alc885_macpro_init_hook(codec);
5417 alc885_imac24_automute(codec);
5421 * generic initialization of ADC, input mixers and output mixers
5423 static struct hda_verb alc882_auto_init_verbs[] = {
5425 * Unmute ADC0-2 and set the default input to mic-in
5427 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
5428 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5429 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
5430 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5431 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
5432 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5434 /* Mute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
5436 * Note: PASD motherboards uses the Line In 2 as the input for
5437 * front panel mic (mic 2)
5439 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
5440 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5441 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5442 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
5443 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
5444 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
5447 * Set up output mixers (0x0c - 0x0f)
5449 /* set vol=0 to output mixers */
5450 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5451 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5452 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5453 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5454 /* set up input amps for analog loopback */
5455 /* Amp Indices: DAC = 0, mixer = 1 */
5456 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5457 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5458 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5459 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5460 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5461 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5462 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5463 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5464 {0x26, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5465 {0x26, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5467 /* FIXME: use matrix-type input source selection */
5468 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
5469 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
5470 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
5471 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
5472 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
5473 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
5475 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
5476 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
5477 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
5478 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
5480 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
5481 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
5482 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
5483 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
5488 /* capture mixer elements */
5489 static struct snd_kcontrol_new alc882_capture_alt_mixer[] = {
5490 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
5491 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
5492 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
5493 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
5495 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
5496 /* The multiple "Capture Source" controls confuse alsamixer
5497 * So call somewhat different..
5498 * FIXME: the controls appear in the "playback" view!
5500 /* .name = "Capture Source", */
5501 .name = "Input Source",
5503 .info = alc882_mux_enum_info,
5504 .get = alc882_mux_enum_get,
5505 .put = alc882_mux_enum_put,
5510 static struct snd_kcontrol_new alc882_capture_mixer[] = {
5511 HDA_CODEC_VOLUME("Capture Volume", 0x07, 0x0, HDA_INPUT),
5512 HDA_CODEC_MUTE("Capture Switch", 0x07, 0x0, HDA_INPUT),
5513 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x08, 0x0, HDA_INPUT),
5514 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x08, 0x0, HDA_INPUT),
5515 HDA_CODEC_VOLUME_IDX("Capture Volume", 2, 0x09, 0x0, HDA_INPUT),
5516 HDA_CODEC_MUTE_IDX("Capture Switch", 2, 0x09, 0x0, HDA_INPUT),
5518 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
5519 /* The multiple "Capture Source" controls confuse alsamixer
5520 * So call somewhat different..
5521 * FIXME: the controls appear in the "playback" view!
5523 /* .name = "Capture Source", */
5524 .name = "Input Source",
5526 .info = alc882_mux_enum_info,
5527 .get = alc882_mux_enum_get,
5528 .put = alc882_mux_enum_put,
5533 #ifdef CONFIG_SND_HDA_POWER_SAVE
5534 #define alc882_loopbacks alc880_loopbacks
5537 /* pcm configuration: identiacal with ALC880 */
5538 #define alc882_pcm_analog_playback alc880_pcm_analog_playback
5539 #define alc882_pcm_analog_capture alc880_pcm_analog_capture
5540 #define alc882_pcm_digital_playback alc880_pcm_digital_playback
5541 #define alc882_pcm_digital_capture alc880_pcm_digital_capture
5544 * configuration and preset
5546 static const char *alc882_models[ALC882_MODEL_LAST] = {
5547 [ALC882_3ST_DIG] = "3stack-dig",
5548 [ALC882_6ST_DIG] = "6stack-dig",
5549 [ALC882_ARIMA] = "arima",
5550 [ALC882_W2JC] = "w2jc",
5551 [ALC885_MACPRO] = "macpro",
5552 [ALC885_MBP3] = "mbp3",
5553 [ALC885_IMAC24] = "imac24",
5554 [ALC882_AUTO] = "auto",
5557 static struct snd_pci_quirk alc882_cfg_tbl[] = {
5558 SND_PCI_QUIRK(0x1019, 0x6668, "ECS", ALC882_6ST_DIG),
5559 SND_PCI_QUIRK(0x105b, 0x6668, "Foxconn", ALC882_6ST_DIG),
5560 SND_PCI_QUIRK(0x1462, 0x6668, "MSI", ALC882_6ST_DIG),
5561 SND_PCI_QUIRK(0x1462, 0x28fb, "Targa T8", ALC882_TARGA), /* MSI-1049 T8 */
5562 SND_PCI_QUIRK(0x161f, 0x2054, "Arima W820", ALC882_ARIMA),
5563 SND_PCI_QUIRK(0x1043, 0x060d, "Asus A7J", ALC882_ASUS_A7J),
5564 SND_PCI_QUIRK(0x1043, 0x817f, "Asus P5LD2", ALC882_6ST_DIG),
5565 SND_PCI_QUIRK(0x1043, 0x81d8, "Asus P5WD", ALC882_6ST_DIG),
5566 SND_PCI_QUIRK(0x1043, 0x1971, "Asus W2JC", ALC882_W2JC),
5570 static struct alc_config_preset alc882_presets[] = {
5571 [ALC882_3ST_DIG] = {
5572 .mixers = { alc882_base_mixer },
5573 .init_verbs = { alc882_init_verbs },
5574 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
5575 .dac_nids = alc882_dac_nids,
5576 .dig_out_nid = ALC882_DIGOUT_NID,
5577 .dig_in_nid = ALC882_DIGIN_NID,
5578 .num_channel_mode = ARRAY_SIZE(alc882_ch_modes),
5579 .channel_mode = alc882_ch_modes,
5581 .input_mux = &alc882_capture_source,
5583 [ALC882_6ST_DIG] = {
5584 .mixers = { alc882_base_mixer, alc882_chmode_mixer },
5585 .init_verbs = { alc882_init_verbs },
5586 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
5587 .dac_nids = alc882_dac_nids,
5588 .dig_out_nid = ALC882_DIGOUT_NID,
5589 .dig_in_nid = ALC882_DIGIN_NID,
5590 .num_channel_mode = ARRAY_SIZE(alc882_sixstack_modes),
5591 .channel_mode = alc882_sixstack_modes,
5592 .input_mux = &alc882_capture_source,
5595 .mixers = { alc882_base_mixer, alc882_chmode_mixer },
5596 .init_verbs = { alc882_init_verbs, alc882_eapd_verbs },
5597 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
5598 .dac_nids = alc882_dac_nids,
5599 .num_channel_mode = ARRAY_SIZE(alc882_sixstack_modes),
5600 .channel_mode = alc882_sixstack_modes,
5601 .input_mux = &alc882_capture_source,
5604 .mixers = { alc882_w2jc_mixer, alc882_chmode_mixer },
5605 .init_verbs = { alc882_init_verbs, alc882_eapd_verbs,
5606 alc880_gpio1_init_verbs },
5607 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
5608 .dac_nids = alc882_dac_nids,
5609 .num_channel_mode = ARRAY_SIZE(alc880_threestack_modes),
5610 .channel_mode = alc880_threestack_modes,
5612 .input_mux = &alc882_capture_source,
5613 .dig_out_nid = ALC882_DIGOUT_NID,
5616 .mixers = { alc885_mbp3_mixer, alc882_chmode_mixer },
5617 .init_verbs = { alc885_mbp3_init_verbs,
5618 alc880_gpio1_init_verbs },
5619 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
5620 .dac_nids = alc882_dac_nids,
5621 .channel_mode = alc885_mbp_6ch_modes,
5622 .num_channel_mode = ARRAY_SIZE(alc885_mbp_6ch_modes),
5623 .input_mux = &alc882_capture_source,
5624 .dig_out_nid = ALC882_DIGOUT_NID,
5625 .dig_in_nid = ALC882_DIGIN_NID,
5626 .unsol_event = alc885_mbp3_unsol_event,
5627 .init_hook = alc885_mbp3_automute,
5630 .mixers = { alc882_macpro_mixer },
5631 .init_verbs = { alc882_macpro_init_verbs },
5632 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
5633 .dac_nids = alc882_dac_nids,
5634 .dig_out_nid = ALC882_DIGOUT_NID,
5635 .dig_in_nid = ALC882_DIGIN_NID,
5636 .num_channel_mode = ARRAY_SIZE(alc882_ch_modes),
5637 .channel_mode = alc882_ch_modes,
5638 .input_mux = &alc882_capture_source,
5639 .init_hook = alc885_macpro_init_hook,
5642 .mixers = { alc885_imac24_mixer },
5643 .init_verbs = { alc885_imac24_init_verbs },
5644 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
5645 .dac_nids = alc882_dac_nids,
5646 .dig_out_nid = ALC882_DIGOUT_NID,
5647 .dig_in_nid = ALC882_DIGIN_NID,
5648 .num_channel_mode = ARRAY_SIZE(alc882_ch_modes),
5649 .channel_mode = alc882_ch_modes,
5650 .input_mux = &alc882_capture_source,
5651 .unsol_event = alc885_imac24_unsol_event,
5652 .init_hook = alc885_imac24_init_hook,
5655 .mixers = { alc882_targa_mixer, alc882_chmode_mixer,
5656 alc882_capture_mixer },
5657 .init_verbs = { alc882_init_verbs, alc882_targa_verbs},
5658 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
5659 .dac_nids = alc882_dac_nids,
5660 .dig_out_nid = ALC882_DIGOUT_NID,
5661 .num_adc_nids = ARRAY_SIZE(alc882_adc_nids),
5662 .adc_nids = alc882_adc_nids,
5663 .num_channel_mode = ARRAY_SIZE(alc882_3ST_6ch_modes),
5664 .channel_mode = alc882_3ST_6ch_modes,
5666 .input_mux = &alc882_capture_source,
5667 .unsol_event = alc882_targa_unsol_event,
5668 .init_hook = alc882_targa_automute,
5670 [ALC882_ASUS_A7J] = {
5671 .mixers = { alc882_asus_a7j_mixer, alc882_chmode_mixer,
5672 alc882_capture_mixer },
5673 .init_verbs = { alc882_init_verbs, alc882_asus_a7j_verbs},
5674 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
5675 .dac_nids = alc882_dac_nids,
5676 .dig_out_nid = ALC882_DIGOUT_NID,
5677 .num_adc_nids = ARRAY_SIZE(alc882_adc_nids),
5678 .adc_nids = alc882_adc_nids,
5679 .num_channel_mode = ARRAY_SIZE(alc882_3ST_6ch_modes),
5680 .channel_mode = alc882_3ST_6ch_modes,
5682 .input_mux = &alc882_capture_source,
5691 PINFIX_ABIT_AW9D_MAX
5694 static struct alc_pincfg alc882_abit_aw9d_pinfix[] = {
5695 { 0x15, 0x01080104 }, /* side */
5696 { 0x16, 0x01011012 }, /* rear */
5697 { 0x17, 0x01016011 }, /* clfe */
5701 static const struct alc_pincfg *alc882_pin_fixes[] = {
5702 [PINFIX_ABIT_AW9D_MAX] = alc882_abit_aw9d_pinfix,
5705 static struct snd_pci_quirk alc882_pinfix_tbl[] = {
5706 SND_PCI_QUIRK(0x147b, 0x107a, "Abit AW9D-MAX", PINFIX_ABIT_AW9D_MAX),
5711 * BIOS auto configuration
5713 static void alc882_auto_set_output_and_unmute(struct hda_codec *codec,
5714 hda_nid_t nid, int pin_type,
5718 struct alc_spec *spec = codec->spec;
5721 if (spec->multiout.dac_nids[dac_idx] == 0x25)
5724 idx = spec->multiout.dac_nids[dac_idx] - 2;
5726 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
5728 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
5730 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CONNECT_SEL, idx);
5734 static void alc882_auto_init_multi_out(struct hda_codec *codec)
5736 struct alc_spec *spec = codec->spec;
5739 alc_subsystem_id(codec, 0x15, 0x1b, 0x14);
5740 for (i = 0; i <= HDA_SIDE; i++) {
5741 hda_nid_t nid = spec->autocfg.line_out_pins[i];
5742 int pin_type = get_pin_type(spec->autocfg.line_out_type);
5744 alc882_auto_set_output_and_unmute(codec, nid, pin_type,
5749 static void alc882_auto_init_hp_out(struct hda_codec *codec)
5751 struct alc_spec *spec = codec->spec;
5754 pin = spec->autocfg.hp_pins[0];
5755 if (pin) /* connect to front */
5757 alc882_auto_set_output_and_unmute(codec, pin, PIN_HP, 0);
5760 #define alc882_is_input_pin(nid) alc880_is_input_pin(nid)
5761 #define ALC882_PIN_CD_NID ALC880_PIN_CD_NID
5763 static void alc882_auto_init_analog_input(struct hda_codec *codec)
5765 struct alc_spec *spec = codec->spec;
5768 for (i = 0; i < AUTO_PIN_LAST; i++) {
5769 hda_nid_t nid = spec->autocfg.input_pins[i];
5770 if (alc882_is_input_pin(nid)) {
5771 snd_hda_codec_write(codec, nid, 0,
5772 AC_VERB_SET_PIN_WIDGET_CONTROL,
5773 i <= AUTO_PIN_FRONT_MIC ?
5774 PIN_VREF80 : PIN_IN);
5775 if (nid != ALC882_PIN_CD_NID)
5776 snd_hda_codec_write(codec, nid, 0,
5777 AC_VERB_SET_AMP_GAIN_MUTE,
5783 /* almost identical with ALC880 parser... */
5784 static int alc882_parse_auto_config(struct hda_codec *codec)
5786 struct alc_spec *spec = codec->spec;
5787 int err = alc880_parse_auto_config(codec);
5792 /* hack - override the init verbs */
5793 spec->init_verbs[0] = alc882_auto_init_verbs;
5797 /* additional initialization for auto-configuration model */
5798 static void alc882_auto_init(struct hda_codec *codec)
5800 alc882_auto_init_multi_out(codec);
5801 alc882_auto_init_hp_out(codec);
5802 alc882_auto_init_analog_input(codec);
5805 static int patch_alc882(struct hda_codec *codec)
5807 struct alc_spec *spec;
5808 int err, board_config;
5810 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
5816 board_config = snd_hda_check_board_config(codec, ALC882_MODEL_LAST,
5820 if (board_config < 0 || board_config >= ALC882_MODEL_LAST) {
5821 /* Pick up systems that don't supply PCI SSID */
5822 switch (codec->subsystem_id) {
5823 case 0x106b0c00: /* Mac Pro */
5824 board_config = ALC885_MACPRO;
5826 case 0x106b1000: /* iMac 24 */
5827 board_config = ALC885_IMAC24;
5829 case 0x106b2c00: /* Macbook Pro rev3 */
5830 board_config = ALC885_MBP3;
5833 printk(KERN_INFO "hda_codec: Unknown model for ALC882, "
5834 "trying auto-probe from BIOS...\n");
5835 board_config = ALC882_AUTO;
5839 alc_fix_pincfg(codec, alc882_pinfix_tbl, alc882_pin_fixes);
5841 if (board_config == ALC882_AUTO) {
5842 /* automatic parse from the BIOS config */
5843 err = alc882_parse_auto_config(codec);
5849 "hda_codec: Cannot set up configuration "
5850 "from BIOS. Using base mode...\n");
5851 board_config = ALC882_3ST_DIG;
5855 if (board_config != ALC882_AUTO)
5856 setup_preset(spec, &alc882_presets[board_config]);
5858 spec->stream_name_analog = "ALC882 Analog";
5859 spec->stream_analog_playback = &alc882_pcm_analog_playback;
5860 spec->stream_analog_capture = &alc882_pcm_analog_capture;
5862 spec->stream_name_digital = "ALC882 Digital";
5863 spec->stream_digital_playback = &alc882_pcm_digital_playback;
5864 spec->stream_digital_capture = &alc882_pcm_digital_capture;
5866 if (!spec->adc_nids && spec->input_mux) {
5867 /* check whether NID 0x07 is valid */
5868 unsigned int wcap = get_wcaps(codec, 0x07);
5870 wcap = (wcap & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT;
5871 if (wcap != AC_WID_AUD_IN) {
5872 spec->adc_nids = alc882_adc_nids_alt;
5873 spec->num_adc_nids = ARRAY_SIZE(alc882_adc_nids_alt);
5874 spec->mixers[spec->num_mixers] =
5875 alc882_capture_alt_mixer;
5878 spec->adc_nids = alc882_adc_nids;
5879 spec->num_adc_nids = ARRAY_SIZE(alc882_adc_nids);
5880 spec->mixers[spec->num_mixers] = alc882_capture_mixer;
5885 codec->patch_ops = alc_patch_ops;
5886 if (board_config == ALC882_AUTO)
5887 spec->init_hook = alc882_auto_init;
5888 #ifdef CONFIG_SND_HDA_POWER_SAVE
5889 if (!spec->loopback.amplist)
5890 spec->loopback.amplist = alc882_loopbacks;
5899 * ALC883 is almost identical with ALC880 but has cleaner and more flexible
5900 * configuration. Each pin widget can choose any input DACs and a mixer.
5901 * Each ADC is connected from a mixer of all inputs. This makes possible
5902 * 6-channel independent captures.
5904 * In addition, an independent DAC for the multi-playback (not used in this
5907 #define ALC883_DIGOUT_NID 0x06
5908 #define ALC883_DIGIN_NID 0x0a
5910 static hda_nid_t alc883_dac_nids[4] = {
5911 /* front, rear, clfe, rear_surr */
5912 0x02, 0x04, 0x03, 0x05
5915 static hda_nid_t alc883_adc_nids[2] = {
5921 /* FIXME: should be a matrix-type input source selection */
5923 static struct hda_input_mux alc883_capture_source = {
5927 { "Front Mic", 0x1 },
5933 static struct hda_input_mux alc883_lenovo_101e_capture_source = {
5941 static struct hda_input_mux alc883_lenovo_nb0763_capture_source = {
5951 #define alc883_mux_enum_info alc_mux_enum_info
5952 #define alc883_mux_enum_get alc_mux_enum_get
5954 static int alc883_mux_enum_put(struct snd_kcontrol *kcontrol,
5955 struct snd_ctl_elem_value *ucontrol)
5957 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
5958 struct alc_spec *spec = codec->spec;
5959 const struct hda_input_mux *imux = spec->input_mux;
5960 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
5961 static hda_nid_t capture_mixers[3] = { 0x24, 0x23, 0x22 };
5962 hda_nid_t nid = capture_mixers[adc_idx];
5963 unsigned int *cur_val = &spec->cur_mux[adc_idx];
5964 unsigned int i, idx;
5966 idx = ucontrol->value.enumerated.item[0];
5967 if (idx >= imux->num_items)
5968 idx = imux->num_items - 1;
5969 if (*cur_val == idx)
5971 for (i = 0; i < imux->num_items; i++) {
5972 unsigned int v = (i == idx) ? 0 : HDA_AMP_MUTE;
5973 snd_hda_codec_amp_stereo(codec, nid, HDA_INPUT,
5974 imux->items[i].index,
5984 static struct hda_channel_mode alc883_3ST_2ch_modes[1] = {
5991 static struct hda_verb alc883_3ST_ch2_init[] = {
5992 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
5993 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
5994 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
5995 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
6002 static struct hda_verb alc883_3ST_ch6_init[] = {
6003 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
6004 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
6005 { 0x18, AC_VERB_SET_CONNECT_SEL, 0x02 },
6006 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
6007 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
6008 { 0x1a, AC_VERB_SET_CONNECT_SEL, 0x01 },
6012 static struct hda_channel_mode alc883_3ST_6ch_modes[2] = {
6013 { 2, alc883_3ST_ch2_init },
6014 { 6, alc883_3ST_ch6_init },
6020 static struct hda_verb alc883_sixstack_ch6_init[] = {
6021 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
6022 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
6023 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
6024 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
6031 static struct hda_verb alc883_sixstack_ch8_init[] = {
6032 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
6033 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
6034 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
6035 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
6039 static struct hda_channel_mode alc883_sixstack_modes[2] = {
6040 { 6, alc883_sixstack_ch6_init },
6041 { 8, alc883_sixstack_ch8_init },
6044 static struct hda_verb alc883_medion_eapd_verbs[] = {
6045 /* eanable EAPD on medion laptop */
6046 {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
6047 {0x20, AC_VERB_SET_PROC_COEF, 0x3070},
6051 /* Pin assignment: Front=0x14, Rear=0x15, CLFE=0x16, Side=0x17
6052 * Mic=0x18, Front Mic=0x19, Line-In=0x1a, HP=0x1b
6055 static struct snd_kcontrol_new alc883_base_mixer[] = {
6056 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
6057 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
6058 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
6059 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
6060 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
6061 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
6062 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
6063 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
6064 HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
6065 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT),
6066 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
6067 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
6068 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
6069 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
6070 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
6071 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
6072 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
6073 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
6074 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
6075 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
6076 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
6077 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
6078 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
6079 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
6080 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
6081 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
6082 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
6084 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
6085 /* .name = "Capture Source", */
6086 .name = "Input Source",
6088 .info = alc883_mux_enum_info,
6089 .get = alc883_mux_enum_get,
6090 .put = alc883_mux_enum_put,
6095 static struct snd_kcontrol_new alc883_3ST_2ch_mixer[] = {
6096 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
6097 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
6098 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
6099 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
6100 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
6101 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
6102 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
6103 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
6104 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
6105 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
6106 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
6107 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
6108 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
6109 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
6110 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
6111 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
6112 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
6113 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
6114 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
6116 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
6117 /* .name = "Capture Source", */
6118 .name = "Input Source",
6120 .info = alc883_mux_enum_info,
6121 .get = alc883_mux_enum_get,
6122 .put = alc883_mux_enum_put,
6127 static struct snd_kcontrol_new alc883_3ST_6ch_mixer[] = {
6128 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
6129 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
6130 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
6131 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
6132 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
6133 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
6134 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
6135 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
6136 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
6137 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
6138 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
6139 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
6140 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
6141 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
6142 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
6143 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
6144 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
6145 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
6146 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
6147 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
6148 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
6149 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
6150 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
6151 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
6152 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
6154 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
6155 /* .name = "Capture Source", */
6156 .name = "Input Source",
6158 .info = alc883_mux_enum_info,
6159 .get = alc883_mux_enum_get,
6160 .put = alc883_mux_enum_put,
6165 static struct snd_kcontrol_new alc883_fivestack_mixer[] = {
6166 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
6167 HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT),
6168 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
6169 HDA_CODEC_MUTE("Surround Playback Switch", 0x15, 0x0, HDA_OUTPUT),
6170 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
6171 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
6172 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x16, 1, 0x0, HDA_OUTPUT),
6173 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x16, 2, 0x0, HDA_OUTPUT),
6174 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
6175 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
6176 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
6177 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
6178 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
6179 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
6180 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
6181 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
6182 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
6183 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
6184 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
6185 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
6186 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
6187 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
6188 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
6191 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
6192 /* .name = "Capture Source", */
6193 .name = "Input Source",
6195 .info = alc883_mux_enum_info,
6196 .get = alc883_mux_enum_get,
6197 .put = alc883_mux_enum_put,
6202 static struct snd_kcontrol_new alc883_tagra_mixer[] = {
6203 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
6204 HDA_CODEC_MUTE("Headphone Playback Switch", 0x14, 0x0, HDA_OUTPUT),
6205 HDA_CODEC_MUTE("Front Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
6206 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
6207 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
6208 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
6209 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
6210 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
6211 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
6212 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
6213 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
6214 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
6215 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
6216 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
6217 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
6218 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
6219 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
6220 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
6221 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
6222 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
6224 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
6225 /* .name = "Capture Source", */
6226 .name = "Input Source",
6228 .info = alc883_mux_enum_info,
6229 .get = alc883_mux_enum_get,
6230 .put = alc883_mux_enum_put,
6235 static struct snd_kcontrol_new alc883_tagra_2ch_mixer[] = {
6236 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
6237 HDA_CODEC_MUTE("Headphone Playback Switch", 0x14, 0x0, HDA_OUTPUT),
6238 HDA_CODEC_MUTE("Front Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
6239 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
6240 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
6241 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
6242 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
6243 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
6244 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
6245 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
6246 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
6247 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
6249 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
6250 /* .name = "Capture Source", */
6251 .name = "Input Source",
6253 .info = alc883_mux_enum_info,
6254 .get = alc883_mux_enum_get,
6255 .put = alc883_mux_enum_put,
6260 static struct snd_kcontrol_new alc883_lenovo_101e_2ch_mixer[] = {
6261 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
6262 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
6263 HDA_CODEC_VOLUME("iSpeaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
6264 HDA_BIND_MUTE("iSpeaker Playback Switch", 0x0d, 2, HDA_INPUT),
6265 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
6266 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
6267 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
6268 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
6269 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
6270 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
6272 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
6273 /* .name = "Capture Source", */
6274 .name = "Input Source",
6276 .info = alc883_mux_enum_info,
6277 .get = alc883_mux_enum_get,
6278 .put = alc883_mux_enum_put,
6283 static struct snd_kcontrol_new alc883_lenovo_nb0763_mixer[] = {
6284 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
6285 HDA_BIND_MUTE("Speaker Playback Switch", 0x0c, 2, HDA_INPUT),
6286 HDA_CODEC_MUTE("Headphone Playback Switch", 0x14, 0x0, HDA_OUTPUT),
6287 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
6288 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
6289 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
6290 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
6291 HDA_CODEC_VOLUME("iMic Playback Volume", 0x0b, 0x1, HDA_INPUT),
6292 HDA_CODEC_MUTE("iMic Playback Switch", 0x0b, 0x1, HDA_INPUT),
6293 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
6294 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
6295 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
6296 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
6298 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
6299 /* .name = "Capture Source", */
6300 .name = "Input Source",
6302 .info = alc883_mux_enum_info,
6303 .get = alc883_mux_enum_get,
6304 .put = alc883_mux_enum_put,
6309 static struct snd_kcontrol_new alc883_medion_md2_mixer[] = {
6310 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
6311 HDA_CODEC_MUTE("Headphone Playback Switch", 0x14, 0x0, HDA_OUTPUT),
6312 HDA_CODEC_MUTE("Front Playback Switch", 0x15, 0x0, HDA_OUTPUT),
6313 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
6314 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
6315 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
6316 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
6317 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
6318 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
6319 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
6320 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
6321 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
6322 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
6324 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
6325 /* .name = "Capture Source", */
6326 .name = "Input Source",
6328 .info = alc883_mux_enum_info,
6329 .get = alc883_mux_enum_get,
6330 .put = alc883_mux_enum_put,
6335 static struct snd_kcontrol_new alc888_6st_hp_mixer[] = {
6336 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
6337 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
6338 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0e, 0x0, HDA_OUTPUT),
6339 HDA_BIND_MUTE("Surround Playback Switch", 0x0e, 2, HDA_INPUT),
6340 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0d, 1, 0x0, HDA_OUTPUT),
6341 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0d, 2, 0x0, HDA_OUTPUT),
6342 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0d, 1, 2, HDA_INPUT),
6343 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0d, 2, 2, HDA_INPUT),
6344 HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
6345 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT),
6346 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
6347 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
6348 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
6349 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
6350 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
6351 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
6352 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
6353 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
6354 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
6355 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
6356 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
6357 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
6358 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
6359 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
6360 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
6361 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
6362 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
6364 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
6365 /* .name = "Capture Source", */
6366 .name = "Input Source",
6368 .info = alc883_mux_enum_info,
6369 .get = alc883_mux_enum_get,
6370 .put = alc883_mux_enum_put,
6375 static struct snd_kcontrol_new alc888_3st_hp_mixer[] = {
6376 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
6377 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
6378 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0e, 0x0, HDA_OUTPUT),
6379 HDA_BIND_MUTE("Surround Playback Switch", 0x0e, 2, HDA_INPUT),
6380 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0d, 1, 0x0, HDA_OUTPUT),
6381 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0d, 2, 0x0, HDA_OUTPUT),
6382 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0d, 1, 2, HDA_INPUT),
6383 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0d, 2, 2, HDA_INPUT),
6384 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
6385 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
6386 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
6387 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
6388 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
6389 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
6390 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
6391 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
6392 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
6393 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
6394 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
6395 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
6396 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
6397 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
6398 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
6399 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
6400 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
6402 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
6403 /* .name = "Capture Source", */
6404 .name = "Input Source",
6406 .info = alc883_mux_enum_info,
6407 .get = alc883_mux_enum_get,
6408 .put = alc883_mux_enum_put,
6413 static struct snd_kcontrol_new alc883_acer_aspire_mixer[] = {
6414 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
6415 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
6416 HDA_CODEC_MUTE("Headphone Playback Switch", 0x14, 0x0, HDA_OUTPUT),
6417 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
6418 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
6419 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
6420 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
6421 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
6422 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
6423 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
6424 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
6425 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
6427 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
6428 /* .name = "Capture Source", */
6429 .name = "Input Source",
6431 .info = alc883_mux_enum_info,
6432 .get = alc883_mux_enum_get,
6433 .put = alc883_mux_enum_put,
6438 static struct snd_kcontrol_new alc883_chmode_mixer[] = {
6440 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
6441 .name = "Channel Mode",
6442 .info = alc_ch_mode_info,
6443 .get = alc_ch_mode_get,
6444 .put = alc_ch_mode_put,
6449 static struct hda_verb alc883_init_verbs[] = {
6450 /* ADC1: mute amp left and right */
6451 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
6452 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
6453 /* ADC2: mute amp left and right */
6454 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
6455 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
6456 /* Front mixer: unmute input/output amp left and right (volume = 0) */
6457 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6458 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
6459 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
6461 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6462 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
6463 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
6465 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6466 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
6467 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
6469 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6470 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
6471 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
6473 /* mute analog input loopbacks */
6474 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
6475 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
6476 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
6477 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
6478 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
6480 /* Front Pin: output 0 (0x0c) */
6481 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
6482 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
6483 {0x14, AC_VERB_SET_CONNECT_SEL, 0x00},
6484 /* Rear Pin: output 1 (0x0d) */
6485 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
6486 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
6487 {0x15, AC_VERB_SET_CONNECT_SEL, 0x01},
6488 /* CLFE Pin: output 2 (0x0e) */
6489 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
6490 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
6491 {0x16, AC_VERB_SET_CONNECT_SEL, 0x02},
6492 /* Side Pin: output 3 (0x0f) */
6493 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
6494 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
6495 {0x17, AC_VERB_SET_CONNECT_SEL, 0x03},
6496 /* Mic (rear) pin: input vref at 80% */
6497 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
6498 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
6499 /* Front Mic pin: input vref at 80% */
6500 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
6501 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
6502 /* Line In pin: input */
6503 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
6504 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
6505 /* Line-2 In: Headphone output (output 0 - 0x0c) */
6506 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
6507 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
6508 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
6509 /* CD pin widget for input */
6510 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
6512 /* FIXME: use matrix-type input source selection */
6513 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
6515 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6516 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6517 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
6518 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
6520 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6521 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6522 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
6523 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
6527 static struct hda_verb alc883_tagra_verbs[] = {
6528 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6529 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6531 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
6532 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
6534 {0x18, AC_VERB_SET_CONNECT_SEL, 0x02}, /* mic/clfe */
6535 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x01}, /* line/surround */
6536 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
6538 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
6539 {0x01, AC_VERB_SET_GPIO_MASK, 0x03},
6540 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x03},
6541 {0x01, AC_VERB_SET_GPIO_DATA, 0x03},
6546 static struct hda_verb alc883_lenovo_101e_verbs[] = {
6547 {0x15, AC_VERB_SET_CONNECT_SEL, 0x00},
6548 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_FRONT_EVENT|AC_USRSP_EN},
6549 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT|AC_USRSP_EN},
6553 static struct hda_verb alc883_lenovo_nb0763_verbs[] = {
6554 {0x15, AC_VERB_SET_CONNECT_SEL, 0x00},
6555 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
6556 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
6557 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
6561 static struct hda_verb alc888_lenovo_ms7195_verbs[] = {
6562 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6563 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6564 {0x15, AC_VERB_SET_CONNECT_SEL, 0x00},
6565 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_FRONT_EVENT | AC_USRSP_EN},
6566 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
6570 static struct hda_verb alc888_6st_hp_verbs[] = {
6571 {0x14, AC_VERB_SET_CONNECT_SEL, 0x00}, /* Front: output 0 (0x0c) */
6572 {0x15, AC_VERB_SET_CONNECT_SEL, 0x02}, /* Rear : output 2 (0x0e) */
6573 {0x16, AC_VERB_SET_CONNECT_SEL, 0x01}, /* CLFE : output 1 (0x0d) */
6574 {0x17, AC_VERB_SET_CONNECT_SEL, 0x03}, /* Side : output 3 (0x0f) */
6578 static struct hda_verb alc888_3st_hp_verbs[] = {
6579 {0x14, AC_VERB_SET_CONNECT_SEL, 0x00}, /* Front: output 0 (0x0c) */
6580 {0x18, AC_VERB_SET_CONNECT_SEL, 0x01}, /* Rear : output 1 (0x0d) */
6581 {0x16, AC_VERB_SET_CONNECT_SEL, 0x02}, /* CLFE : output 2 (0x0e) */
6585 static struct hda_verb alc888_3st_hp_2ch_init[] = {
6586 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
6587 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
6588 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
6589 { 0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
6593 static struct hda_verb alc888_3st_hp_6ch_init[] = {
6594 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
6595 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
6596 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
6597 { 0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
6601 static struct hda_channel_mode alc888_3st_hp_modes[2] = {
6602 { 2, alc888_3st_hp_2ch_init },
6603 { 6, alc888_3st_hp_6ch_init },
6606 /* toggle front-jack and RCA according to the hp-jack state */
6607 static void alc888_lenovo_ms7195_front_automute(struct hda_codec *codec)
6609 unsigned int present;
6611 present = snd_hda_codec_read(codec, 0x1b, 0,
6612 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
6613 snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0,
6614 HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0);
6615 snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0,
6616 HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0);
6619 /* toggle RCA according to the front-jack state */
6620 static void alc888_lenovo_ms7195_rca_automute(struct hda_codec *codec)
6622 unsigned int present;
6624 present = snd_hda_codec_read(codec, 0x14, 0,
6625 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
6626 snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0,
6627 HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0);
6630 static void alc883_lenovo_ms7195_unsol_event(struct hda_codec *codec,
6633 if ((res >> 26) == ALC880_HP_EVENT)
6634 alc888_lenovo_ms7195_front_automute(codec);
6635 if ((res >> 26) == ALC880_FRONT_EVENT)
6636 alc888_lenovo_ms7195_rca_automute(codec);
6639 static struct hda_verb alc883_medion_md2_verbs[] = {
6640 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6641 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6643 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
6645 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
6649 /* toggle speaker-output according to the hp-jack state */
6650 static void alc883_medion_md2_automute(struct hda_codec *codec)
6652 unsigned int present;
6654 present = snd_hda_codec_read(codec, 0x14, 0,
6655 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
6656 snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0,
6657 HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0);
6660 static void alc883_medion_md2_unsol_event(struct hda_codec *codec,
6663 if ((res >> 26) == ALC880_HP_EVENT)
6664 alc883_medion_md2_automute(codec);
6667 /* toggle speaker-output according to the hp-jack state */
6668 static void alc883_tagra_automute(struct hda_codec *codec)
6670 unsigned int present;
6673 present = snd_hda_codec_read(codec, 0x14, 0,
6674 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
6675 bits = present ? HDA_AMP_MUTE : 0;
6676 snd_hda_codec_amp_stereo(codec, 0x1b, HDA_OUTPUT, 0,
6677 HDA_AMP_MUTE, bits);
6678 snd_hda_codec_write_cache(codec, 1, 0, AC_VERB_SET_GPIO_DATA,
6682 static void alc883_tagra_unsol_event(struct hda_codec *codec, unsigned int res)
6684 if ((res >> 26) == ALC880_HP_EVENT)
6685 alc883_tagra_automute(codec);
6688 static void alc883_lenovo_101e_ispeaker_automute(struct hda_codec *codec)
6690 unsigned int present;
6693 present = snd_hda_codec_read(codec, 0x14, 0,
6694 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
6695 bits = present ? HDA_AMP_MUTE : 0;
6696 snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0,
6697 HDA_AMP_MUTE, bits);
6700 static void alc883_lenovo_101e_all_automute(struct hda_codec *codec)
6702 unsigned int present;
6705 present = snd_hda_codec_read(codec, 0x1b, 0,
6706 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
6707 bits = present ? HDA_AMP_MUTE : 0;
6708 snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0,
6709 HDA_AMP_MUTE, bits);
6710 snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0,
6711 HDA_AMP_MUTE, bits);
6714 static void alc883_lenovo_101e_unsol_event(struct hda_codec *codec,
6717 if ((res >> 26) == ALC880_HP_EVENT)
6718 alc883_lenovo_101e_all_automute(codec);
6719 if ((res >> 26) == ALC880_FRONT_EVENT)
6720 alc883_lenovo_101e_ispeaker_automute(codec);
6723 /* toggle speaker-output according to the hp-jack state */
6724 static void alc883_acer_aspire_automute(struct hda_codec *codec)
6726 unsigned int present;
6728 present = snd_hda_codec_read(codec, 0x14, 0,
6729 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
6730 snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0,
6731 HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0);
6732 snd_hda_codec_amp_stereo(codec, 0x16, HDA_OUTPUT, 0,
6733 HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0);
6736 static void alc883_acer_aspire_unsol_event(struct hda_codec *codec,
6739 if ((res >> 26) == ALC880_HP_EVENT)
6740 alc883_acer_aspire_automute(codec);
6743 static struct hda_verb alc883_acer_eapd_verbs[] = {
6744 /* HP Pin: output 0 (0x0c) */
6745 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
6746 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
6747 {0x14, AC_VERB_SET_CONNECT_SEL, 0x00},
6748 /* Front Pin: output 0 (0x0c) */
6749 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
6750 {0x15, AC_VERB_SET_CONNECT_SEL, 0x00},
6751 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
6752 {0x16, AC_VERB_SET_CONNECT_SEL, 0x00},
6753 /* eanable EAPD on medion laptop */
6754 {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
6755 {0x20, AC_VERB_SET_PROC_COEF, 0x3050},
6756 /* enable unsolicited event */
6757 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
6762 * generic initialization of ADC, input mixers and output mixers
6764 static struct hda_verb alc883_auto_init_verbs[] = {
6766 * Unmute ADC0-2 and set the default input to mic-in
6768 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
6769 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6770 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
6771 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6773 /* Mute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
6775 * Note: PASD motherboards uses the Line In 2 as the input for
6776 * front panel mic (mic 2)
6778 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
6779 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
6780 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
6781 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
6782 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
6783 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
6786 * Set up output mixers (0x0c - 0x0f)
6788 /* set vol=0 to output mixers */
6789 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6790 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6791 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6792 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6793 /* set up input amps for analog loopback */
6794 /* Amp Indices: DAC = 0, mixer = 1 */
6795 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6796 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6797 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6798 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6799 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6800 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6801 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6802 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6803 {0x26, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6804 {0x26, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6806 /* FIXME: use matrix-type input source selection */
6807 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
6809 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6810 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6811 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
6812 /* {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)}, */
6813 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
6815 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6816 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6817 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
6818 /* {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)}, */
6819 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
6824 /* capture mixer elements */
6825 static struct snd_kcontrol_new alc883_capture_mixer[] = {
6826 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
6827 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
6828 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
6829 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
6831 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
6832 /* The multiple "Capture Source" controls confuse alsamixer
6833 * So call somewhat different..
6834 * FIXME: the controls appear in the "playback" view!
6836 /* .name = "Capture Source", */
6837 .name = "Input Source",
6839 .info = alc882_mux_enum_info,
6840 .get = alc882_mux_enum_get,
6841 .put = alc882_mux_enum_put,
6846 #ifdef CONFIG_SND_HDA_POWER_SAVE
6847 #define alc883_loopbacks alc880_loopbacks
6850 /* pcm configuration: identiacal with ALC880 */
6851 #define alc883_pcm_analog_playback alc880_pcm_analog_playback
6852 #define alc883_pcm_analog_capture alc880_pcm_analog_capture
6853 #define alc883_pcm_digital_playback alc880_pcm_digital_playback
6854 #define alc883_pcm_digital_capture alc880_pcm_digital_capture
6857 * configuration and preset
6859 static const char *alc883_models[ALC883_MODEL_LAST] = {
6860 [ALC883_3ST_2ch_DIG] = "3stack-dig",
6861 [ALC883_3ST_6ch_DIG] = "3stack-6ch-dig",
6862 [ALC883_3ST_6ch] = "3stack-6ch",
6863 [ALC883_6ST_DIG] = "6stack-dig",
6864 [ALC883_TARGA_DIG] = "targa-dig",
6865 [ALC883_TARGA_2ch_DIG] = "targa-2ch-dig",
6866 [ALC883_ACER] = "acer",
6867 [ALC883_ACER_ASPIRE] = "acer-aspire",
6868 [ALC883_MEDION] = "medion",
6869 [ALC883_MEDION_MD2] = "medion-md2",
6870 [ALC883_LAPTOP_EAPD] = "laptop-eapd",
6871 [ALC883_LENOVO_101E_2ch] = "lenovo-101e",
6872 [ALC883_LENOVO_NB0763] = "lenovo-nb0763",
6873 [ALC888_LENOVO_MS7195_DIG] = "lenovo-ms7195-dig",
6874 [ALC888_6ST_HP] = "6stack-hp",
6875 [ALC888_3ST_HP] = "3stack-hp",
6876 [ALC883_AUTO] = "auto",
6879 static struct snd_pci_quirk alc883_cfg_tbl[] = {
6880 SND_PCI_QUIRK(0x1019, 0x6668, "ECS", ALC883_3ST_6ch_DIG),
6881 SND_PCI_QUIRK(0x103c, 0x2a3d, "HP Pavillion", ALC883_6ST_DIG),
6882 SND_PCI_QUIRK(0x108e, 0x534d, NULL, ALC883_3ST_6ch),
6883 SND_PCI_QUIRK(0x1558, 0, "Clevo laptop", ALC883_LAPTOP_EAPD),
6884 SND_PCI_QUIRK(0x105b, 0x6668, "Foxconn", ALC883_6ST_DIG),
6885 SND_PCI_QUIRK(0x1458, 0xa002, "MSI", ALC883_6ST_DIG),
6886 SND_PCI_QUIRK(0x1462, 0x6668, "MSI", ALC883_6ST_DIG),
6887 SND_PCI_QUIRK(0x1462, 0x7187, "MSI", ALC883_6ST_DIG),
6888 SND_PCI_QUIRK(0x1462, 0x7250, "MSI", ALC883_6ST_DIG),
6889 SND_PCI_QUIRK(0x1462, 0x7280, "MSI", ALC883_6ST_DIG),
6890 SND_PCI_QUIRK(0x1462, 0x7327, "MSI", ALC883_6ST_DIG),
6891 SND_PCI_QUIRK(0x1462, 0x0349, "MSI", ALC883_TARGA_2ch_DIG),
6892 SND_PCI_QUIRK(0x1462, 0x0579, "MSI", ALC883_TARGA_2ch_DIG),
6893 SND_PCI_QUIRK(0x1462, 0x3729, "MSI S420", ALC883_TARGA_DIG),
6894 SND_PCI_QUIRK(0x1462, 0x3ef9, "MSI", ALC883_TARGA_DIG),
6895 SND_PCI_QUIRK(0x1462, 0x3b7f, "MSI", ALC883_TARGA_2ch_DIG),
6896 SND_PCI_QUIRK(0x1462, 0x3fcc, "MSI", ALC883_TARGA_DIG),
6897 SND_PCI_QUIRK(0x1462, 0x3fc1, "MSI", ALC883_TARGA_DIG),
6898 SND_PCI_QUIRK(0x1462, 0x3fc3, "MSI", ALC883_TARGA_DIG),
6899 SND_PCI_QUIRK(0x1462, 0x3fdf, "MSI", ALC883_TARGA_DIG),
6900 SND_PCI_QUIRK(0x1462, 0x4314, "MSI", ALC883_TARGA_DIG),
6901 SND_PCI_QUIRK(0x1462, 0x4319, "MSI", ALC883_TARGA_DIG),
6902 SND_PCI_QUIRK(0x1462, 0x4324, "MSI", ALC883_TARGA_DIG),
6903 SND_PCI_QUIRK(0x1462, 0xa422, "MSI", ALC883_TARGA_2ch_DIG),
6904 SND_PCI_QUIRK(0x1025, 0x006c, "Acer Aspire 9810", ALC883_ACER_ASPIRE),
6905 SND_PCI_QUIRK(0x1025, 0x0110, "Acer Aspire", ALC883_ACER_ASPIRE),
6906 SND_PCI_QUIRK(0x1025, 0, "Acer laptop", ALC883_ACER),
6907 SND_PCI_QUIRK(0x15d9, 0x8780, "Supermicro PDSBA", ALC883_3ST_6ch),
6908 SND_PCI_QUIRK(0x161f, 0x2054, "Medion laptop", ALC883_MEDION),
6909 SND_PCI_QUIRK(0x1071, 0x8258, "Evesham Voyaeger", ALC883_LAPTOP_EAPD),
6910 SND_PCI_QUIRK(0x8086, 0xd601, "D102GGC", ALC883_3ST_6ch),
6911 SND_PCI_QUIRK(0x17aa, 0x101e, "Lenovo 101e", ALC883_LENOVO_101E_2ch),
6912 SND_PCI_QUIRK(0x17aa, 0x3bfd, "Lenovo NB0763", ALC883_LENOVO_NB0763),
6913 SND_PCI_QUIRK(0x17aa, 0x2085, "Lenovo NB0763", ALC883_LENOVO_NB0763),
6914 SND_PCI_QUIRK(0x103c, 0x2a61, "HP Nettle", ALC888_6ST_HP),
6915 SND_PCI_QUIRK(0x103c, 0x2a60, "HP Lucknow", ALC888_3ST_HP),
6916 SND_PCI_QUIRK(0x103c, 0x2a4f, "HP Samba", ALC888_3ST_HP),
6917 SND_PCI_QUIRK(0x17c0, 0x4071, "MEDION MD2", ALC883_MEDION_MD2),
6921 static struct alc_config_preset alc883_presets[] = {
6922 [ALC883_3ST_2ch_DIG] = {
6923 .mixers = { alc883_3ST_2ch_mixer },
6924 .init_verbs = { alc883_init_verbs },
6925 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
6926 .dac_nids = alc883_dac_nids,
6927 .dig_out_nid = ALC883_DIGOUT_NID,
6928 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
6929 .adc_nids = alc883_adc_nids,
6930 .dig_in_nid = ALC883_DIGIN_NID,
6931 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
6932 .channel_mode = alc883_3ST_2ch_modes,
6933 .input_mux = &alc883_capture_source,
6935 [ALC883_3ST_6ch_DIG] = {
6936 .mixers = { alc883_3ST_6ch_mixer, alc883_chmode_mixer },
6937 .init_verbs = { alc883_init_verbs },
6938 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
6939 .dac_nids = alc883_dac_nids,
6940 .dig_out_nid = ALC883_DIGOUT_NID,
6941 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
6942 .adc_nids = alc883_adc_nids,
6943 .dig_in_nid = ALC883_DIGIN_NID,
6944 .num_channel_mode = ARRAY_SIZE(alc883_3ST_6ch_modes),
6945 .channel_mode = alc883_3ST_6ch_modes,
6947 .input_mux = &alc883_capture_source,
6949 [ALC883_3ST_6ch] = {
6950 .mixers = { alc883_3ST_6ch_mixer, alc883_chmode_mixer },
6951 .init_verbs = { alc883_init_verbs },
6952 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
6953 .dac_nids = alc883_dac_nids,
6954 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
6955 .adc_nids = alc883_adc_nids,
6956 .num_channel_mode = ARRAY_SIZE(alc883_3ST_6ch_modes),
6957 .channel_mode = alc883_3ST_6ch_modes,
6959 .input_mux = &alc883_capture_source,
6961 [ALC883_6ST_DIG] = {
6962 .mixers = { alc883_base_mixer, alc883_chmode_mixer },
6963 .init_verbs = { alc883_init_verbs },
6964 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
6965 .dac_nids = alc883_dac_nids,
6966 .dig_out_nid = ALC883_DIGOUT_NID,
6967 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
6968 .adc_nids = alc883_adc_nids,
6969 .dig_in_nid = ALC883_DIGIN_NID,
6970 .num_channel_mode = ARRAY_SIZE(alc883_sixstack_modes),
6971 .channel_mode = alc883_sixstack_modes,
6972 .input_mux = &alc883_capture_source,
6974 [ALC883_TARGA_DIG] = {
6975 .mixers = { alc883_tagra_mixer, alc883_chmode_mixer },
6976 .init_verbs = { alc883_init_verbs, alc883_tagra_verbs},
6977 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
6978 .dac_nids = alc883_dac_nids,
6979 .dig_out_nid = ALC883_DIGOUT_NID,
6980 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
6981 .adc_nids = alc883_adc_nids,
6982 .num_channel_mode = ARRAY_SIZE(alc883_3ST_6ch_modes),
6983 .channel_mode = alc883_3ST_6ch_modes,
6985 .input_mux = &alc883_capture_source,
6986 .unsol_event = alc883_tagra_unsol_event,
6987 .init_hook = alc883_tagra_automute,
6989 [ALC883_TARGA_2ch_DIG] = {
6990 .mixers = { alc883_tagra_2ch_mixer},
6991 .init_verbs = { alc883_init_verbs, alc883_tagra_verbs},
6992 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
6993 .dac_nids = alc883_dac_nids,
6994 .dig_out_nid = ALC883_DIGOUT_NID,
6995 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
6996 .adc_nids = alc883_adc_nids,
6997 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
6998 .channel_mode = alc883_3ST_2ch_modes,
6999 .input_mux = &alc883_capture_source,
7000 .unsol_event = alc883_tagra_unsol_event,
7001 .init_hook = alc883_tagra_automute,
7004 .mixers = { alc883_base_mixer },
7005 /* On TravelMate laptops, GPIO 0 enables the internal speaker
7006 * and the headphone jack. Turn this on and rely on the
7007 * standard mute methods whenever the user wants to turn
7008 * these outputs off.
7010 .init_verbs = { alc883_init_verbs, alc880_gpio1_init_verbs },
7011 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
7012 .dac_nids = alc883_dac_nids,
7013 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
7014 .adc_nids = alc883_adc_nids,
7015 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
7016 .channel_mode = alc883_3ST_2ch_modes,
7017 .input_mux = &alc883_capture_source,
7019 [ALC883_ACER_ASPIRE] = {
7020 .mixers = { alc883_acer_aspire_mixer },
7021 .init_verbs = { alc883_init_verbs, alc883_acer_eapd_verbs },
7022 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
7023 .dac_nids = alc883_dac_nids,
7024 .dig_out_nid = ALC883_DIGOUT_NID,
7025 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
7026 .adc_nids = alc883_adc_nids,
7027 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
7028 .channel_mode = alc883_3ST_2ch_modes,
7029 .input_mux = &alc883_capture_source,
7030 .unsol_event = alc883_acer_aspire_unsol_event,
7031 .init_hook = alc883_acer_aspire_automute,
7034 .mixers = { alc883_fivestack_mixer,
7035 alc883_chmode_mixer },
7036 .init_verbs = { alc883_init_verbs,
7037 alc883_medion_eapd_verbs },
7038 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
7039 .dac_nids = alc883_dac_nids,
7040 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
7041 .adc_nids = alc883_adc_nids,
7042 .num_channel_mode = ARRAY_SIZE(alc883_sixstack_modes),
7043 .channel_mode = alc883_sixstack_modes,
7044 .input_mux = &alc883_capture_source,
7046 [ALC883_MEDION_MD2] = {
7047 .mixers = { alc883_medion_md2_mixer},
7048 .init_verbs = { alc883_init_verbs, alc883_medion_md2_verbs},
7049 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
7050 .dac_nids = alc883_dac_nids,
7051 .dig_out_nid = ALC883_DIGOUT_NID,
7052 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
7053 .adc_nids = alc883_adc_nids,
7054 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
7055 .channel_mode = alc883_3ST_2ch_modes,
7056 .input_mux = &alc883_capture_source,
7057 .unsol_event = alc883_medion_md2_unsol_event,
7058 .init_hook = alc883_medion_md2_automute,
7060 [ALC883_LAPTOP_EAPD] = {
7061 .mixers = { alc883_base_mixer },
7062 .init_verbs = { alc883_init_verbs, alc882_eapd_verbs },
7063 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
7064 .dac_nids = alc883_dac_nids,
7065 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
7066 .adc_nids = alc883_adc_nids,
7067 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
7068 .channel_mode = alc883_3ST_2ch_modes,
7069 .input_mux = &alc883_capture_source,
7071 [ALC883_LENOVO_101E_2ch] = {
7072 .mixers = { alc883_lenovo_101e_2ch_mixer},
7073 .init_verbs = { alc883_init_verbs, alc883_lenovo_101e_verbs},
7074 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
7075 .dac_nids = alc883_dac_nids,
7076 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
7077 .adc_nids = alc883_adc_nids,
7078 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
7079 .channel_mode = alc883_3ST_2ch_modes,
7080 .input_mux = &alc883_lenovo_101e_capture_source,
7081 .unsol_event = alc883_lenovo_101e_unsol_event,
7082 .init_hook = alc883_lenovo_101e_all_automute,
7084 [ALC883_LENOVO_NB0763] = {
7085 .mixers = { alc883_lenovo_nb0763_mixer },
7086 .init_verbs = { alc883_init_verbs, alc883_lenovo_nb0763_verbs},
7087 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
7088 .dac_nids = alc883_dac_nids,
7089 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
7090 .adc_nids = alc883_adc_nids,
7091 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
7092 .channel_mode = alc883_3ST_2ch_modes,
7094 .input_mux = &alc883_lenovo_nb0763_capture_source,
7095 .unsol_event = alc883_medion_md2_unsol_event,
7096 .init_hook = alc883_medion_md2_automute,
7098 [ALC888_LENOVO_MS7195_DIG] = {
7099 .mixers = { alc883_3ST_6ch_mixer, alc883_chmode_mixer },
7100 .init_verbs = { alc883_init_verbs, alc888_lenovo_ms7195_verbs},
7101 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
7102 .dac_nids = alc883_dac_nids,
7103 .dig_out_nid = ALC883_DIGOUT_NID,
7104 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
7105 .adc_nids = alc883_adc_nids,
7106 .num_channel_mode = ARRAY_SIZE(alc883_3ST_6ch_modes),
7107 .channel_mode = alc883_3ST_6ch_modes,
7109 .input_mux = &alc883_capture_source,
7110 .unsol_event = alc883_lenovo_ms7195_unsol_event,
7111 .init_hook = alc888_lenovo_ms7195_front_automute,
7114 .mixers = { alc888_6st_hp_mixer, alc883_chmode_mixer },
7115 .init_verbs = { alc883_init_verbs, alc888_6st_hp_verbs },
7116 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
7117 .dac_nids = alc883_dac_nids,
7118 .dig_out_nid = ALC883_DIGOUT_NID,
7119 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
7120 .adc_nids = alc883_adc_nids,
7121 .dig_in_nid = ALC883_DIGIN_NID,
7122 .num_channel_mode = ARRAY_SIZE(alc883_sixstack_modes),
7123 .channel_mode = alc883_sixstack_modes,
7124 .input_mux = &alc883_capture_source,
7127 .mixers = { alc888_3st_hp_mixer, alc883_chmode_mixer },
7128 .init_verbs = { alc883_init_verbs, alc888_3st_hp_verbs },
7129 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
7130 .dac_nids = alc883_dac_nids,
7131 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
7132 .adc_nids = alc883_adc_nids,
7133 .num_channel_mode = ARRAY_SIZE(alc888_3st_hp_modes),
7134 .channel_mode = alc888_3st_hp_modes,
7136 .input_mux = &alc883_capture_source,
7142 * BIOS auto configuration
7144 static void alc883_auto_set_output_and_unmute(struct hda_codec *codec,
7145 hda_nid_t nid, int pin_type,
7149 struct alc_spec *spec = codec->spec;
7152 if (spec->multiout.dac_nids[dac_idx] == 0x25)
7155 idx = spec->multiout.dac_nids[dac_idx] - 2;
7157 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
7159 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
7161 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CONNECT_SEL, idx);
7165 static void alc883_auto_init_multi_out(struct hda_codec *codec)
7167 struct alc_spec *spec = codec->spec;
7170 alc_subsystem_id(codec, 0x15, 0x1b, 0x14);
7171 for (i = 0; i <= HDA_SIDE; i++) {
7172 hda_nid_t nid = spec->autocfg.line_out_pins[i];
7173 int pin_type = get_pin_type(spec->autocfg.line_out_type);
7175 alc883_auto_set_output_and_unmute(codec, nid, pin_type,
7180 static void alc883_auto_init_hp_out(struct hda_codec *codec)
7182 struct alc_spec *spec = codec->spec;
7185 pin = spec->autocfg.hp_pins[0];
7186 if (pin) /* connect to front */
7188 alc883_auto_set_output_and_unmute(codec, pin, PIN_HP, 0);
7191 #define alc883_is_input_pin(nid) alc880_is_input_pin(nid)
7192 #define ALC883_PIN_CD_NID ALC880_PIN_CD_NID
7194 static void alc883_auto_init_analog_input(struct hda_codec *codec)
7196 struct alc_spec *spec = codec->spec;
7199 for (i = 0; i < AUTO_PIN_LAST; i++) {
7200 hda_nid_t nid = spec->autocfg.input_pins[i];
7201 if (alc883_is_input_pin(nid)) {
7202 snd_hda_codec_write(codec, nid, 0,
7203 AC_VERB_SET_PIN_WIDGET_CONTROL,
7204 (i <= AUTO_PIN_FRONT_MIC ?
7205 PIN_VREF80 : PIN_IN));
7206 if (nid != ALC883_PIN_CD_NID)
7207 snd_hda_codec_write(codec, nid, 0,
7208 AC_VERB_SET_AMP_GAIN_MUTE,
7214 /* almost identical with ALC880 parser... */
7215 static int alc883_parse_auto_config(struct hda_codec *codec)
7217 struct alc_spec *spec = codec->spec;
7218 int err = alc880_parse_auto_config(codec);
7223 /* hack - override the init verbs */
7224 spec->init_verbs[0] = alc883_auto_init_verbs;
7225 spec->mixers[spec->num_mixers] = alc883_capture_mixer;
7230 /* additional initialization for auto-configuration model */
7231 static void alc883_auto_init(struct hda_codec *codec)
7233 alc883_auto_init_multi_out(codec);
7234 alc883_auto_init_hp_out(codec);
7235 alc883_auto_init_analog_input(codec);
7238 static int patch_alc883(struct hda_codec *codec)
7240 struct alc_spec *spec;
7241 int err, board_config;
7243 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
7249 board_config = snd_hda_check_board_config(codec, ALC883_MODEL_LAST,
7252 if (board_config < 0) {
7253 printk(KERN_INFO "hda_codec: Unknown model for ALC883, "
7254 "trying auto-probe from BIOS...\n");
7255 board_config = ALC883_AUTO;
7258 if (board_config == ALC883_AUTO) {
7259 /* automatic parse from the BIOS config */
7260 err = alc883_parse_auto_config(codec);
7266 "hda_codec: Cannot set up configuration "
7267 "from BIOS. Using base mode...\n");
7268 board_config = ALC883_3ST_2ch_DIG;
7272 if (board_config != ALC883_AUTO)
7273 setup_preset(spec, &alc883_presets[board_config]);
7275 spec->stream_name_analog = "ALC883 Analog";
7276 spec->stream_analog_playback = &alc883_pcm_analog_playback;
7277 spec->stream_analog_capture = &alc883_pcm_analog_capture;
7279 spec->stream_name_digital = "ALC883 Digital";
7280 spec->stream_digital_playback = &alc883_pcm_digital_playback;
7281 spec->stream_digital_capture = &alc883_pcm_digital_capture;
7283 if (!spec->adc_nids && spec->input_mux) {
7284 spec->adc_nids = alc883_adc_nids;
7285 spec->num_adc_nids = ARRAY_SIZE(alc883_adc_nids);
7288 codec->patch_ops = alc_patch_ops;
7289 if (board_config == ALC883_AUTO)
7290 spec->init_hook = alc883_auto_init;
7291 #ifdef CONFIG_SND_HDA_POWER_SAVE
7292 if (!spec->loopback.amplist)
7293 spec->loopback.amplist = alc883_loopbacks;
7303 #define ALC262_DIGOUT_NID ALC880_DIGOUT_NID
7304 #define ALC262_DIGIN_NID ALC880_DIGIN_NID
7306 #define alc262_dac_nids alc260_dac_nids
7307 #define alc262_adc_nids alc882_adc_nids
7308 #define alc262_adc_nids_alt alc882_adc_nids_alt
7310 #define alc262_modes alc260_modes
7311 #define alc262_capture_source alc882_capture_source
7313 static struct snd_kcontrol_new alc262_base_mixer[] = {
7314 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
7315 HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT),
7316 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
7317 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
7318 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
7319 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
7320 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
7321 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
7322 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
7323 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x01, HDA_INPUT),
7324 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x01, HDA_INPUT),
7325 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
7326 /* HDA_CODEC_VOLUME("PC Beep Playback Volume", 0x0b, 0x05, HDA_INPUT),
7327 HDA_CODEC_MUTE("PC Beelp Playback Switch", 0x0b, 0x05, HDA_INPUT), */
7328 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0D, 0x0, HDA_OUTPUT),
7329 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT),
7330 HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
7331 HDA_CODEC_MUTE_MONO("Mono Playback Switch", 0x16, 2, 0x0, HDA_OUTPUT),
7335 static struct snd_kcontrol_new alc262_hippo1_mixer[] = {
7336 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
7337 HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT),
7338 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
7339 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
7340 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
7341 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
7342 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
7343 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
7344 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
7345 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x01, HDA_INPUT),
7346 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x01, HDA_INPUT),
7347 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
7348 /* HDA_CODEC_VOLUME("PC Beep Playback Volume", 0x0b, 0x05, HDA_INPUT),
7349 HDA_CODEC_MUTE("PC Beelp Playback Switch", 0x0b, 0x05, HDA_INPUT), */
7350 /*HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0D, 0x0, HDA_OUTPUT),*/
7351 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
7355 static struct snd_kcontrol_new alc262_HP_BPC_mixer[] = {
7356 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
7357 HDA_CODEC_MUTE("Front Playback Switch", 0x15, 0x0, HDA_OUTPUT),
7358 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
7359 HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
7360 HDA_CODEC_MUTE_MONO("Mono Playback Switch", 0x16, 2, 0x0, HDA_OUTPUT),
7362 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
7363 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
7364 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
7365 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x01, HDA_INPUT),
7366 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x01, HDA_INPUT),
7367 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
7368 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
7369 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
7370 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
7371 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
7372 HDA_CODEC_VOLUME("PC Beep Playback Volume", 0x0b, 0x05, HDA_INPUT),
7373 HDA_CODEC_MUTE("PC Beep Playback Switch", 0x0b, 0x05, HDA_INPUT),
7374 HDA_CODEC_VOLUME("AUX IN Playback Volume", 0x0b, 0x06, HDA_INPUT),
7375 HDA_CODEC_MUTE("AUX IN Playback Switch", 0x0b, 0x06, HDA_INPUT),
7379 static struct snd_kcontrol_new alc262_HP_BPC_WildWest_mixer[] = {
7380 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
7381 HDA_CODEC_MUTE("Front Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
7382 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
7383 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT),
7384 HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
7385 HDA_CODEC_MUTE_MONO("Mono Playback Switch", 0x16, 2, 0x0, HDA_OUTPUT),
7386 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x02, HDA_INPUT),
7387 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x02, HDA_INPUT),
7388 HDA_CODEC_VOLUME("Front Mic Boost", 0x1a, 0, HDA_INPUT),
7389 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x01, HDA_INPUT),
7390 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x01, HDA_INPUT),
7391 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
7392 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
7393 HDA_CODEC_VOLUME("PC Beep Playback Volume", 0x0b, 0x05, HDA_INPUT),
7394 HDA_CODEC_MUTE("PC Beep Playback Switch", 0x0b, 0x05, HDA_INPUT),
7398 static struct snd_kcontrol_new alc262_HP_BPC_WildWest_option_mixer[] = {
7399 HDA_CODEC_VOLUME("Rear Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
7400 HDA_CODEC_MUTE("Rear Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
7401 HDA_CODEC_VOLUME("Rear Mic Boost", 0x18, 0, HDA_INPUT),
7405 static struct hda_bind_ctls alc262_sony_bind_sw = {
7406 .ops = &snd_hda_bind_sw,
7408 HDA_COMPOSE_AMP_VAL(0x15, 3, 0, HDA_OUTPUT),
7409 HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT),
7414 static struct snd_kcontrol_new alc262_sony_mixer[] = {
7415 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
7416 HDA_BIND_SW("Front Playback Switch", &alc262_sony_bind_sw),
7417 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
7418 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
7419 HDA_CODEC_VOLUME("ATAPI Mic Playback Volume", 0x0b, 0x01, HDA_INPUT),
7420 HDA_CODEC_MUTE("ATAPI Mic Playback Switch", 0x0b, 0x01, HDA_INPUT),
7424 static struct snd_kcontrol_new alc262_benq_t31_mixer[] = {
7425 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
7426 HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT),
7427 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT),
7428 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
7429 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
7430 HDA_CODEC_VOLUME("ATAPI Mic Playback Volume", 0x0b, 0x01, HDA_INPUT),
7431 HDA_CODEC_MUTE("ATAPI Mic Playback Switch", 0x0b, 0x01, HDA_INPUT),
7435 #define alc262_capture_mixer alc882_capture_mixer
7436 #define alc262_capture_alt_mixer alc882_capture_alt_mixer
7439 * generic initialization of ADC, input mixers and output mixers
7441 static struct hda_verb alc262_init_verbs[] = {
7443 * Unmute ADC0-2 and set the default input to mic-in
7445 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
7446 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7447 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
7448 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7449 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
7450 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7452 /* Mute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
7454 * Note: PASD motherboards uses the Line In 2 as the input for
7455 * front panel mic (mic 2)
7457 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
7458 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
7459 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
7460 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
7461 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
7462 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
7465 * Set up output mixers (0x0c - 0x0e)
7467 /* set vol=0 to output mixers */
7468 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
7469 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
7470 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
7471 /* set up input amps for analog loopback */
7472 /* Amp Indices: DAC = 0, mixer = 1 */
7473 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7474 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7475 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7476 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7477 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7478 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7480 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
7481 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0},
7482 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
7483 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
7484 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
7485 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
7487 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
7488 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
7489 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
7490 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
7491 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
7493 {0x14, AC_VERB_SET_CONNECT_SEL, 0x00},
7494 {0x15, AC_VERB_SET_CONNECT_SEL, 0x01},
7496 /* FIXME: use matrix-type input source selection */
7497 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
7498 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
7499 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
7500 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
7501 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
7502 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
7504 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
7505 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
7506 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
7507 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
7509 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
7510 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
7511 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
7512 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
7517 static struct hda_verb alc262_hippo_unsol_verbs[] = {
7518 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
7519 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
7523 static struct hda_verb alc262_hippo1_unsol_verbs[] = {
7524 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0},
7525 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
7526 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
7528 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
7529 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
7533 static struct hda_verb alc262_sony_unsol_verbs[] = {
7534 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0},
7535 {0x15, AC_VERB_SET_CONNECT_SEL, 0x00},
7536 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24}, // Front Mic
7538 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
7539 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
7542 /* mute/unmute internal speaker according to the hp jack and mute state */
7543 static void alc262_hippo_automute(struct hda_codec *codec)
7545 struct alc_spec *spec = codec->spec;
7547 unsigned int present;
7549 /* need to execute and sync at first */
7550 snd_hda_codec_read(codec, 0x15, 0, AC_VERB_SET_PIN_SENSE, 0);
7551 present = snd_hda_codec_read(codec, 0x15, 0,
7552 AC_VERB_GET_PIN_SENSE, 0);
7553 spec->jack_present = (present & 0x80000000) != 0;
7554 if (spec->jack_present) {
7555 /* mute internal speaker */
7556 snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0,
7557 HDA_AMP_MUTE, HDA_AMP_MUTE);
7559 /* unmute internal speaker if necessary */
7560 mute = snd_hda_codec_amp_read(codec, 0x15, 0, HDA_OUTPUT, 0);
7561 snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0,
7562 HDA_AMP_MUTE, mute);
7566 /* unsolicited event for HP jack sensing */
7567 static void alc262_hippo_unsol_event(struct hda_codec *codec,
7570 if ((res >> 26) != ALC880_HP_EVENT)
7572 alc262_hippo_automute(codec);
7575 static void alc262_hippo1_automute(struct hda_codec *codec)
7578 unsigned int present;
7580 snd_hda_codec_read(codec, 0x1b, 0, AC_VERB_SET_PIN_SENSE, 0);
7581 present = snd_hda_codec_read(codec, 0x1b, 0,
7582 AC_VERB_GET_PIN_SENSE, 0);
7583 present = (present & 0x80000000) != 0;
7585 /* mute internal speaker */
7586 snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0,
7587 HDA_AMP_MUTE, HDA_AMP_MUTE);
7589 /* unmute internal speaker if necessary */
7590 mute = snd_hda_codec_amp_read(codec, 0x1b, 0, HDA_OUTPUT, 0);
7591 snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0,
7592 HDA_AMP_MUTE, mute);
7596 /* unsolicited event for HP jack sensing */
7597 static void alc262_hippo1_unsol_event(struct hda_codec *codec,
7600 if ((res >> 26) != ALC880_HP_EVENT)
7602 alc262_hippo1_automute(codec);
7607 * 0x14 = headphone/spdif-out, 0x15 = internal speaker
7610 #define ALC_HP_EVENT 0x37
7612 static struct hda_verb alc262_fujitsu_unsol_verbs[] = {
7613 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC_HP_EVENT},
7614 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
7618 static struct hda_input_mux alc262_fujitsu_capture_source = {
7626 static struct hda_input_mux alc262_HP_capture_source = {
7630 { "Front Mic", 0x3 },
7637 /* mute/unmute internal speaker according to the hp jack and mute state */
7638 static void alc262_fujitsu_automute(struct hda_codec *codec, int force)
7640 struct alc_spec *spec = codec->spec;
7643 if (force || !spec->sense_updated) {
7644 unsigned int present;
7645 /* need to execute and sync at first */
7646 snd_hda_codec_read(codec, 0x14, 0, AC_VERB_SET_PIN_SENSE, 0);
7647 present = snd_hda_codec_read(codec, 0x14, 0,
7648 AC_VERB_GET_PIN_SENSE, 0);
7649 spec->jack_present = (present & 0x80000000) != 0;
7650 spec->sense_updated = 1;
7652 if (spec->jack_present) {
7653 /* mute internal speaker */
7654 snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0,
7655 HDA_AMP_MUTE, HDA_AMP_MUTE);
7657 /* unmute internal speaker if necessary */
7658 mute = snd_hda_codec_amp_read(codec, 0x14, 0, HDA_OUTPUT, 0);
7659 snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0,
7660 HDA_AMP_MUTE, mute);
7664 /* unsolicited event for HP jack sensing */
7665 static void alc262_fujitsu_unsol_event(struct hda_codec *codec,
7668 if ((res >> 26) != ALC_HP_EVENT)
7670 alc262_fujitsu_automute(codec, 1);
7673 /* bind volumes of both NID 0x0c and 0x0d */
7674 static struct hda_bind_ctls alc262_fujitsu_bind_master_vol = {
7675 .ops = &snd_hda_bind_vol,
7677 HDA_COMPOSE_AMP_VAL(0x0c, 3, 0, HDA_OUTPUT),
7678 HDA_COMPOSE_AMP_VAL(0x0d, 3, 0, HDA_OUTPUT),
7683 /* bind hp and internal speaker mute (with plug check) */
7684 static int alc262_fujitsu_master_sw_put(struct snd_kcontrol *kcontrol,
7685 struct snd_ctl_elem_value *ucontrol)
7687 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
7688 long *valp = ucontrol->value.integer.value;
7691 change = snd_hda_codec_amp_update(codec, 0x14, 0, HDA_OUTPUT, 0,
7693 valp[0] ? 0 : HDA_AMP_MUTE);
7694 change |= snd_hda_codec_amp_update(codec, 0x14, 1, HDA_OUTPUT, 0,
7696 valp[1] ? 0 : HDA_AMP_MUTE);
7698 alc262_fujitsu_automute(codec, 0);
7702 static struct snd_kcontrol_new alc262_fujitsu_mixer[] = {
7703 HDA_BIND_VOL("Master Playback Volume", &alc262_fujitsu_bind_master_vol),
7705 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
7706 .name = "Master Playback Switch",
7707 .info = snd_hda_mixer_amp_switch_info,
7708 .get = snd_hda_mixer_amp_switch_get,
7709 .put = alc262_fujitsu_master_sw_put,
7710 .private_value = HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT),
7712 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
7713 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
7714 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
7715 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
7716 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
7720 /* additional init verbs for Benq laptops */
7721 static struct hda_verb alc262_EAPD_verbs[] = {
7722 {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
7723 {0x20, AC_VERB_SET_PROC_COEF, 0x3070},
7727 static struct hda_verb alc262_benq_t31_EAPD_verbs[] = {
7728 {0x15, AC_VERB_SET_CONNECT_SEL, 0x00},
7729 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
7731 {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
7732 {0x20, AC_VERB_SET_PROC_COEF, 0x3050},
7736 /* add playback controls from the parsed DAC table */
7737 static int alc262_auto_create_multi_out_ctls(struct alc_spec *spec,
7738 const struct auto_pin_cfg *cfg)
7743 spec->multiout.num_dacs = 1; /* only use one dac */
7744 spec->multiout.dac_nids = spec->private_dac_nids;
7745 spec->multiout.dac_nids[0] = 2;
7747 nid = cfg->line_out_pins[0];
7749 err = add_control(spec, ALC_CTL_WIDGET_VOL,
7750 "Front Playback Volume",
7751 HDA_COMPOSE_AMP_VAL(0x0c, 3, 0, HDA_OUTPUT));
7754 err = add_control(spec, ALC_CTL_WIDGET_MUTE,
7755 "Front Playback Switch",
7756 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT));
7761 nid = cfg->speaker_pins[0];
7764 err = add_control(spec, ALC_CTL_WIDGET_VOL,
7765 "Speaker Playback Volume",
7766 HDA_COMPOSE_AMP_VAL(0x0e, 2, 0,
7770 err = add_control(spec, ALC_CTL_WIDGET_MUTE,
7771 "Speaker Playback Switch",
7772 HDA_COMPOSE_AMP_VAL(nid, 2, 0,
7777 err = add_control(spec, ALC_CTL_WIDGET_MUTE,
7778 "Speaker Playback Switch",
7779 HDA_COMPOSE_AMP_VAL(nid, 3, 0,
7785 nid = cfg->hp_pins[0];
7787 /* spec->multiout.hp_nid = 2; */
7789 err = add_control(spec, ALC_CTL_WIDGET_VOL,
7790 "Headphone Playback Volume",
7791 HDA_COMPOSE_AMP_VAL(0x0e, 2, 0,
7795 err = add_control(spec, ALC_CTL_WIDGET_MUTE,
7796 "Headphone Playback Switch",
7797 HDA_COMPOSE_AMP_VAL(nid, 2, 0,
7802 err = add_control(spec, ALC_CTL_WIDGET_MUTE,
7803 "Headphone Playback Switch",
7804 HDA_COMPOSE_AMP_VAL(nid, 3, 0,
7813 /* identical with ALC880 */
7814 #define alc262_auto_create_analog_input_ctls \
7815 alc880_auto_create_analog_input_ctls
7818 * generic initialization of ADC, input mixers and output mixers
7820 static struct hda_verb alc262_volume_init_verbs[] = {
7822 * Unmute ADC0-2 and set the default input to mic-in
7824 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
7825 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7826 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
7827 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7828 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
7829 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7831 /* Mute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
7833 * Note: PASD motherboards uses the Line In 2 as the input for
7834 * front panel mic (mic 2)
7836 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
7837 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
7838 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
7839 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
7840 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
7841 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
7844 * Set up output mixers (0x0c - 0x0f)
7846 /* set vol=0 to output mixers */
7847 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
7848 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
7849 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
7851 /* set up input amps for analog loopback */
7852 /* Amp Indices: DAC = 0, mixer = 1 */
7853 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7854 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7855 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7856 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7857 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7858 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7860 /* FIXME: use matrix-type input source selection */
7861 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
7862 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
7863 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
7864 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
7865 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
7866 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
7868 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
7869 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
7870 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
7871 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
7873 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
7874 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
7875 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
7876 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
7881 static struct hda_verb alc262_HP_BPC_init_verbs[] = {
7883 * Unmute ADC0-2 and set the default input to mic-in
7885 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
7886 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7887 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
7888 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7889 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
7890 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7892 /* Mute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
7894 * Note: PASD motherboards uses the Line In 2 as the input for
7895 * front panel mic (mic 2)
7897 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
7898 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
7899 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
7900 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
7901 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
7902 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
7903 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)},
7904 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)},
7907 * Set up output mixers (0x0c - 0x0e)
7909 /* set vol=0 to output mixers */
7910 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
7911 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
7912 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
7914 /* set up input amps for analog loopback */
7915 /* Amp Indices: DAC = 0, mixer = 1 */
7916 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7917 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7918 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7919 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7920 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7921 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7923 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0},
7924 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
7925 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
7927 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
7928 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
7930 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
7931 {0x15, AC_VERB_SET_CONNECT_SEL, 0x00},
7933 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
7934 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
7935 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
7936 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
7937 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
7939 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, 0x7023 },
7940 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000 },
7941 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000 },
7942 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, 0x7023 },
7943 {0x1c, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000 },
7944 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000 },
7947 /* FIXME: use matrix-type input source selection */
7948 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
7949 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
7950 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
7951 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x03 << 8))},
7952 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))},
7953 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x04 << 8))},
7955 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
7956 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x03 << 8))},
7957 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))},
7958 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x04 << 8))},
7960 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
7961 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x03 << 8))},
7962 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))},
7963 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x04 << 8))},
7968 static struct hda_verb alc262_HP_BPC_WildWest_init_verbs[] = {
7970 * Unmute ADC0-2 and set the default input to mic-in
7972 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
7973 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7974 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
7975 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7976 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
7977 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7979 /* Mute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
7981 * Note: PASD motherboards uses the Line In 2 as the input for front
7984 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
7985 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
7986 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
7987 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
7988 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
7989 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
7990 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)},
7991 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)},
7992 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)},
7994 * Set up output mixers (0x0c - 0x0e)
7996 /* set vol=0 to output mixers */
7997 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
7998 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
7999 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
8001 /* set up input amps for analog loopback */
8002 /* Amp Indices: DAC = 0, mixer = 1 */
8003 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8004 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8005 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8006 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8007 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8008 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8011 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP }, /* HP */
8012 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT }, /* Mono */
8013 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 }, /* rear MIC */
8014 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN }, /* Line in */
8015 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 }, /* Front MIC */
8016 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT }, /* Line out */
8017 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN }, /* CD in */
8019 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
8020 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
8022 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
8023 {0x15, AC_VERB_SET_CONNECT_SEL, 0x01},
8025 /* {0x14, AC_VERB_SET_AMP_GAIN_MUTE, 0x7023 }, */
8026 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000 },
8027 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000 },
8028 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, 0x7023 },
8029 {0x1c, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000 },
8030 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000 },
8032 /* FIXME: use matrix-type input source selection */
8033 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
8034 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
8035 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))}, /*rear MIC*/
8036 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))}, /*Line in*/
8037 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))}, /*F MIC*/
8038 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x03 << 8))}, /*Front*/
8039 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x04 << 8))}, /*CD*/
8040 /* {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x06 << 8))}, */
8041 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x07 << 8))}, /*HP*/
8043 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
8044 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
8045 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))},
8046 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x03 << 8))},
8047 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x04 << 8))},
8048 /* {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x06 << 8))}, */
8049 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x07 << 8))},
8051 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
8052 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
8053 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))},
8054 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x03 << 8))},
8055 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x04 << 8))},
8056 /* {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x06 << 8))}, */
8057 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x07 << 8))},
8062 #ifdef CONFIG_SND_HDA_POWER_SAVE
8063 #define alc262_loopbacks alc880_loopbacks
8066 /* pcm configuration: identiacal with ALC880 */
8067 #define alc262_pcm_analog_playback alc880_pcm_analog_playback
8068 #define alc262_pcm_analog_capture alc880_pcm_analog_capture
8069 #define alc262_pcm_digital_playback alc880_pcm_digital_playback
8070 #define alc262_pcm_digital_capture alc880_pcm_digital_capture
8073 * BIOS auto configuration
8075 static int alc262_parse_auto_config(struct hda_codec *codec)
8077 struct alc_spec *spec = codec->spec;
8079 static hda_nid_t alc262_ignore[] = { 0x1d, 0 };
8081 err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
8085 if (!spec->autocfg.line_outs)
8086 return 0; /* can't find valid BIOS pin config */
8087 err = alc262_auto_create_multi_out_ctls(spec, &spec->autocfg);
8090 err = alc262_auto_create_analog_input_ctls(spec, &spec->autocfg);
8094 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
8096 if (spec->autocfg.dig_out_pin)
8097 spec->multiout.dig_out_nid = ALC262_DIGOUT_NID;
8098 if (spec->autocfg.dig_in_pin)
8099 spec->dig_in_nid = ALC262_DIGIN_NID;
8101 if (spec->kctl_alloc)
8102 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
8104 spec->init_verbs[spec->num_init_verbs++] = alc262_volume_init_verbs;
8105 spec->num_mux_defs = 1;
8106 spec->input_mux = &spec->private_imux;
8111 #define alc262_auto_init_multi_out alc882_auto_init_multi_out
8112 #define alc262_auto_init_hp_out alc882_auto_init_hp_out
8113 #define alc262_auto_init_analog_input alc882_auto_init_analog_input
8116 /* init callback for auto-configuration model -- overriding the default init */
8117 static void alc262_auto_init(struct hda_codec *codec)
8119 alc262_auto_init_multi_out(codec);
8120 alc262_auto_init_hp_out(codec);
8121 alc262_auto_init_analog_input(codec);
8125 * configuration and preset
8127 static const char *alc262_models[ALC262_MODEL_LAST] = {
8128 [ALC262_BASIC] = "basic",
8129 [ALC262_HIPPO] = "hippo",
8130 [ALC262_HIPPO_1] = "hippo_1",
8131 [ALC262_FUJITSU] = "fujitsu",
8132 [ALC262_HP_BPC] = "hp-bpc",
8133 [ALC262_HP_BPC_D7000_WL]= "hp-bpc-d7000",
8134 [ALC262_BENQ_ED8] = "benq",
8135 [ALC262_BENQ_T31] = "benq-t31",
8136 [ALC262_SONY_ASSAMD] = "sony-assamd",
8137 [ALC262_AUTO] = "auto",
8140 static struct snd_pci_quirk alc262_cfg_tbl[] = {
8141 SND_PCI_QUIRK(0x1002, 0x437b, "Hippo", ALC262_HIPPO),
8142 SND_PCI_QUIRK(0x103c, 0x12fe, "HP xw9400", ALC262_HP_BPC),
8143 SND_PCI_QUIRK(0x103c, 0x280c, "HP xw4400", ALC262_HP_BPC),
8144 SND_PCI_QUIRK(0x103c, 0x12ff, "HP xw4550", ALC262_HP_BPC),
8145 SND_PCI_QUIRK(0x103c, 0x1308, "HP xw4600", ALC262_HP_BPC),
8146 SND_PCI_QUIRK(0x103c, 0x3014, "HP xw6400", ALC262_HP_BPC),
8147 SND_PCI_QUIRK(0x103c, 0x1307, "HP xw6600", ALC262_HP_BPC),
8148 SND_PCI_QUIRK(0x103c, 0x3015, "HP xw8400", ALC262_HP_BPC),
8149 SND_PCI_QUIRK(0x103c, 0x1306, "HP xw8600", ALC262_HP_BPC),
8150 SND_PCI_QUIRK(0x103c, 0x2800, "HP D7000", ALC262_HP_BPC_D7000_WL),
8151 SND_PCI_QUIRK(0x103c, 0x2802, "HP D7000", ALC262_HP_BPC_D7000_WL),
8152 SND_PCI_QUIRK(0x103c, 0x2804, "HP D7000", ALC262_HP_BPC_D7000_WL),
8153 SND_PCI_QUIRK(0x103c, 0x2806, "HP D7000", ALC262_HP_BPC_D7000_WL),
8154 SND_PCI_QUIRK(0x103c, 0x2801, "HP D7000", ALC262_HP_BPC_D7000_WF),
8155 SND_PCI_QUIRK(0x103c, 0x2803, "HP D7000", ALC262_HP_BPC_D7000_WF),
8156 SND_PCI_QUIRK(0x103c, 0x2805, "HP D7000", ALC262_HP_BPC_D7000_WF),
8157 SND_PCI_QUIRK(0x103c, 0x2807, "HP D7000", ALC262_HP_BPC_D7000_WF),
8158 SND_PCI_QUIRK(0x104d, 0x8203, "Sony UX-90", ALC262_HIPPO),
8159 SND_PCI_QUIRK(0x10cf, 0x1397, "Fujitsu", ALC262_FUJITSU),
8160 SND_PCI_QUIRK(0x17ff, 0x058f, "Benq Hippo", ALC262_HIPPO_1),
8161 SND_PCI_QUIRK(0x17ff, 0x0560, "Benq ED8", ALC262_BENQ_ED8),
8162 SND_PCI_QUIRK(0x17ff, 0x058d, "Benq T31-16", ALC262_BENQ_T31),
8163 SND_PCI_QUIRK(0x104d, 0x820f, "Sony ASSAMD", ALC262_SONY_ASSAMD),
8164 SND_PCI_QUIRK(0x104d, 0x9015, "Sony 0x9015", ALC262_SONY_ASSAMD),
8165 SND_PCI_QUIRK(0x104d, 0x900e, "Sony ASSAMD", ALC262_SONY_ASSAMD),
8166 SND_PCI_QUIRK(0x104d, 0x1f00, "Sony ASSAMD", ALC262_SONY_ASSAMD),
8170 static struct alc_config_preset alc262_presets[] = {
8172 .mixers = { alc262_base_mixer },
8173 .init_verbs = { alc262_init_verbs },
8174 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
8175 .dac_nids = alc262_dac_nids,
8177 .num_channel_mode = ARRAY_SIZE(alc262_modes),
8178 .channel_mode = alc262_modes,
8179 .input_mux = &alc262_capture_source,
8182 .mixers = { alc262_base_mixer },
8183 .init_verbs = { alc262_init_verbs, alc262_hippo_unsol_verbs},
8184 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
8185 .dac_nids = alc262_dac_nids,
8187 .dig_out_nid = ALC262_DIGOUT_NID,
8188 .num_channel_mode = ARRAY_SIZE(alc262_modes),
8189 .channel_mode = alc262_modes,
8190 .input_mux = &alc262_capture_source,
8191 .unsol_event = alc262_hippo_unsol_event,
8192 .init_hook = alc262_hippo_automute,
8194 [ALC262_HIPPO_1] = {
8195 .mixers = { alc262_hippo1_mixer },
8196 .init_verbs = { alc262_init_verbs, alc262_hippo1_unsol_verbs},
8197 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
8198 .dac_nids = alc262_dac_nids,
8200 .dig_out_nid = ALC262_DIGOUT_NID,
8201 .num_channel_mode = ARRAY_SIZE(alc262_modes),
8202 .channel_mode = alc262_modes,
8203 .input_mux = &alc262_capture_source,
8204 .unsol_event = alc262_hippo1_unsol_event,
8205 .init_hook = alc262_hippo1_automute,
8207 [ALC262_FUJITSU] = {
8208 .mixers = { alc262_fujitsu_mixer },
8209 .init_verbs = { alc262_init_verbs, alc262_fujitsu_unsol_verbs },
8210 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
8211 .dac_nids = alc262_dac_nids,
8213 .dig_out_nid = ALC262_DIGOUT_NID,
8214 .num_channel_mode = ARRAY_SIZE(alc262_modes),
8215 .channel_mode = alc262_modes,
8216 .input_mux = &alc262_fujitsu_capture_source,
8217 .unsol_event = alc262_fujitsu_unsol_event,
8220 .mixers = { alc262_HP_BPC_mixer },
8221 .init_verbs = { alc262_HP_BPC_init_verbs },
8222 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
8223 .dac_nids = alc262_dac_nids,
8225 .num_channel_mode = ARRAY_SIZE(alc262_modes),
8226 .channel_mode = alc262_modes,
8227 .input_mux = &alc262_HP_capture_source,
8229 [ALC262_HP_BPC_D7000_WF] = {
8230 .mixers = { alc262_HP_BPC_WildWest_mixer },
8231 .init_verbs = { alc262_HP_BPC_WildWest_init_verbs },
8232 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
8233 .dac_nids = alc262_dac_nids,
8235 .num_channel_mode = ARRAY_SIZE(alc262_modes),
8236 .channel_mode = alc262_modes,
8237 .input_mux = &alc262_HP_capture_source,
8239 [ALC262_HP_BPC_D7000_WL] = {
8240 .mixers = { alc262_HP_BPC_WildWest_mixer,
8241 alc262_HP_BPC_WildWest_option_mixer },
8242 .init_verbs = { alc262_HP_BPC_WildWest_init_verbs },
8243 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
8244 .dac_nids = alc262_dac_nids,
8246 .num_channel_mode = ARRAY_SIZE(alc262_modes),
8247 .channel_mode = alc262_modes,
8248 .input_mux = &alc262_HP_capture_source,
8250 [ALC262_BENQ_ED8] = {
8251 .mixers = { alc262_base_mixer },
8252 .init_verbs = { alc262_init_verbs, alc262_EAPD_verbs },
8253 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
8254 .dac_nids = alc262_dac_nids,
8256 .num_channel_mode = ARRAY_SIZE(alc262_modes),
8257 .channel_mode = alc262_modes,
8258 .input_mux = &alc262_capture_source,
8260 [ALC262_SONY_ASSAMD] = {
8261 .mixers = { alc262_sony_mixer },
8262 .init_verbs = { alc262_init_verbs, alc262_sony_unsol_verbs},
8263 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
8264 .dac_nids = alc262_dac_nids,
8266 .num_channel_mode = ARRAY_SIZE(alc262_modes),
8267 .channel_mode = alc262_modes,
8268 .input_mux = &alc262_capture_source,
8269 .unsol_event = alc262_hippo_unsol_event,
8270 .init_hook = alc262_hippo_automute,
8272 [ALC262_BENQ_T31] = {
8273 .mixers = { alc262_benq_t31_mixer },
8274 .init_verbs = { alc262_init_verbs, alc262_benq_t31_EAPD_verbs, alc262_hippo_unsol_verbs },
8275 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
8276 .dac_nids = alc262_dac_nids,
8278 .num_channel_mode = ARRAY_SIZE(alc262_modes),
8279 .channel_mode = alc262_modes,
8280 .input_mux = &alc262_capture_source,
8281 .unsol_event = alc262_hippo_unsol_event,
8282 .init_hook = alc262_hippo_automute,
8286 static int patch_alc262(struct hda_codec *codec)
8288 struct alc_spec *spec;
8292 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
8298 /* pshou 07/11/05 set a zero PCM sample to DAC when FIFO is
8303 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_COEF_INDEX, 7);
8304 tmp = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_PROC_COEF, 0);
8305 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_COEF_INDEX, 7);
8306 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_PROC_COEF, tmp | 0x80);
8310 board_config = snd_hda_check_board_config(codec, ALC262_MODEL_LAST,
8314 if (board_config < 0) {
8315 printk(KERN_INFO "hda_codec: Unknown model for ALC262, "
8316 "trying auto-probe from BIOS...\n");
8317 board_config = ALC262_AUTO;
8320 if (board_config == ALC262_AUTO) {
8321 /* automatic parse from the BIOS config */
8322 err = alc262_parse_auto_config(codec);
8328 "hda_codec: Cannot set up configuration "
8329 "from BIOS. Using base mode...\n");
8330 board_config = ALC262_BASIC;
8334 if (board_config != ALC262_AUTO)
8335 setup_preset(spec, &alc262_presets[board_config]);
8337 spec->stream_name_analog = "ALC262 Analog";
8338 spec->stream_analog_playback = &alc262_pcm_analog_playback;
8339 spec->stream_analog_capture = &alc262_pcm_analog_capture;
8341 spec->stream_name_digital = "ALC262 Digital";
8342 spec->stream_digital_playback = &alc262_pcm_digital_playback;
8343 spec->stream_digital_capture = &alc262_pcm_digital_capture;
8345 if (!spec->adc_nids && spec->input_mux) {
8346 /* check whether NID 0x07 is valid */
8347 unsigned int wcap = get_wcaps(codec, 0x07);
8350 wcap = (wcap & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT;
8351 if (wcap != AC_WID_AUD_IN) {
8352 spec->adc_nids = alc262_adc_nids_alt;
8353 spec->num_adc_nids = ARRAY_SIZE(alc262_adc_nids_alt);
8354 spec->mixers[spec->num_mixers] =
8355 alc262_capture_alt_mixer;
8358 spec->adc_nids = alc262_adc_nids;
8359 spec->num_adc_nids = ARRAY_SIZE(alc262_adc_nids);
8360 spec->mixers[spec->num_mixers] = alc262_capture_mixer;
8365 codec->patch_ops = alc_patch_ops;
8366 if (board_config == ALC262_AUTO)
8367 spec->init_hook = alc262_auto_init;
8368 #ifdef CONFIG_SND_HDA_POWER_SAVE
8369 if (!spec->loopback.amplist)
8370 spec->loopback.amplist = alc262_loopbacks;
8377 * ALC268 channel source setting (2 channel)
8379 #define ALC268_DIGOUT_NID ALC880_DIGOUT_NID
8380 #define alc268_modes alc260_modes
8382 static hda_nid_t alc268_dac_nids[2] = {
8387 static hda_nid_t alc268_adc_nids[2] = {
8392 static hda_nid_t alc268_adc_nids_alt[1] = {
8397 static struct snd_kcontrol_new alc268_base_mixer[] = {
8398 /* output mixer control */
8399 HDA_CODEC_VOLUME("Front Playback Volume", 0x2, 0x0, HDA_OUTPUT),
8400 HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT),
8401 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x3, 0x0, HDA_OUTPUT),
8402 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT),
8406 static struct hda_verb alc268_eapd_verbs[] = {
8407 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 2},
8408 {0x15, AC_VERB_SET_EAPD_BTLENABLE, 2},
8412 /* Toshiba specific */
8413 #define alc268_toshiba_automute alc262_hippo_automute
8415 static struct hda_verb alc268_toshiba_verbs[] = {
8416 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
8421 /* bind volumes of both NID 0x0c and 0x0d */
8422 static struct hda_bind_ctls alc268_acer_bind_master_vol = {
8423 .ops = &snd_hda_bind_vol,
8425 HDA_COMPOSE_AMP_VAL(0x02, 3, 0, HDA_OUTPUT),
8426 HDA_COMPOSE_AMP_VAL(0x03, 3, 0, HDA_OUTPUT),
8431 #define alc268_acer_master_sw_put alc262_fujitsu_master_sw_put
8432 #define alc268_acer_automute alc262_fujitsu_automute
8434 static struct snd_kcontrol_new alc268_acer_mixer[] = {
8435 /* output mixer control */
8436 HDA_BIND_VOL("Master Playback Volume", &alc268_acer_bind_master_vol),
8438 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
8439 .name = "Master Playback Switch",
8440 .info = snd_hda_mixer_amp_switch_info,
8441 .get = snd_hda_mixer_amp_switch_get,
8442 .put = alc268_acer_master_sw_put,
8443 .private_value = HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT),
8448 static struct hda_verb alc268_acer_verbs[] = {
8449 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
8450 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
8452 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
8456 /* unsolicited event for HP jack sensing */
8457 static void alc268_toshiba_unsol_event(struct hda_codec *codec,
8460 if ((res >> 28) != ALC880_HP_EVENT)
8462 alc268_toshiba_automute(codec);
8465 static void alc268_acer_unsol_event(struct hda_codec *codec,
8468 if ((res >> 28) != ALC880_HP_EVENT)
8470 alc268_acer_automute(codec, 1);
8474 * generic initialization of ADC, input mixers and output mixers
8476 static struct hda_verb alc268_base_init_verbs[] = {
8477 /* Unmute DAC0-1 and set vol = 0 */
8478 {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
8479 {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8480 {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8481 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
8482 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8483 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8486 * Set up output mixers (0x0c - 0x0e)
8488 /* set vol=0 to output mixers */
8489 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8490 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8491 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
8492 {0x0e, AC_VERB_SET_CONNECT_SEL, 0x00},
8494 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8495 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8497 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
8498 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0},
8499 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
8500 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
8501 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
8502 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
8503 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
8504 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
8506 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
8507 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
8508 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
8509 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
8510 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
8511 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
8512 {0x1c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
8513 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
8515 /* FIXME: use matrix-type input source selection */
8516 /* Mixer elements: 0x18, 19, 1a, 1c, 14, 15, 0b */
8517 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
8519 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
8520 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
8521 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))},
8522 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x03 << 8))},
8524 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
8525 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
8526 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))},
8527 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x03 << 8))},
8532 * generic initialization of ADC, input mixers and output mixers
8534 static struct hda_verb alc268_volume_init_verbs[] = {
8535 /* set output DAC */
8536 {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8537 {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8538 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8539 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8541 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
8542 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
8543 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
8544 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
8545 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
8547 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
8548 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8549 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8550 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8551 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8553 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
8554 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
8555 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
8556 {0x1c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
8558 /* set PCBEEP vol = 0 */
8559 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, (0xb000 | (0x00 << 8))},
8564 #define alc268_mux_enum_info alc_mux_enum_info
8565 #define alc268_mux_enum_get alc_mux_enum_get
8567 static int alc268_mux_enum_put(struct snd_kcontrol *kcontrol,
8568 struct snd_ctl_elem_value *ucontrol)
8570 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
8571 struct alc_spec *spec = codec->spec;
8572 const struct hda_input_mux *imux = spec->input_mux;
8573 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
8574 static hda_nid_t capture_mixers[3] = { 0x23, 0x24 };
8575 hda_nid_t nid = capture_mixers[adc_idx];
8576 unsigned int *cur_val = &spec->cur_mux[adc_idx];
8577 unsigned int i, idx;
8579 idx = ucontrol->value.enumerated.item[0];
8580 if (idx >= imux->num_items)
8581 idx = imux->num_items - 1;
8582 if (*cur_val == idx)
8584 for (i = 0; i < imux->num_items; i++) {
8585 unsigned int v = (i == idx) ? 0 : HDA_AMP_MUTE;
8586 snd_hda_codec_amp_stereo(codec, nid, HDA_INPUT,
8587 imux->items[i].index,
8589 snd_hda_codec_write_cache(codec, nid, 0,
8590 AC_VERB_SET_CONNECT_SEL,
8597 static struct snd_kcontrol_new alc268_capture_alt_mixer[] = {
8598 HDA_CODEC_VOLUME("Capture Volume", 0x23, 0x0, HDA_OUTPUT),
8599 HDA_CODEC_MUTE("Capture Switch", 0x23, 0x0, HDA_OUTPUT),
8601 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
8602 /* The multiple "Capture Source" controls confuse alsamixer
8603 * So call somewhat different..
8604 * FIXME: the controls appear in the "playback" view!
8606 /* .name = "Capture Source", */
8607 .name = "Input Source",
8609 .info = alc268_mux_enum_info,
8610 .get = alc268_mux_enum_get,
8611 .put = alc268_mux_enum_put,
8616 static struct snd_kcontrol_new alc268_capture_mixer[] = {
8617 HDA_CODEC_VOLUME("Capture Volume", 0x23, 0x0, HDA_OUTPUT),
8618 HDA_CODEC_MUTE("Capture Switch", 0x23, 0x0, HDA_OUTPUT),
8619 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x24, 0x0, HDA_OUTPUT),
8620 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x24, 0x0, HDA_OUTPUT),
8622 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
8623 /* The multiple "Capture Source" controls confuse alsamixer
8624 * So call somewhat different..
8625 * FIXME: the controls appear in the "playback" view!
8627 /* .name = "Capture Source", */
8628 .name = "Input Source",
8630 .info = alc268_mux_enum_info,
8631 .get = alc268_mux_enum_get,
8632 .put = alc268_mux_enum_put,
8637 static struct hda_input_mux alc268_capture_source = {
8641 { "Front Mic", 0x1 },
8647 /* create input playback/capture controls for the given pin */
8648 static int alc268_new_analog_output(struct alc_spec *spec, hda_nid_t nid,
8649 const char *ctlname, int idx)
8654 sprintf(name, "%s Playback Volume", ctlname);
8656 err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
8657 HDA_COMPOSE_AMP_VAL(0x02, 3, idx,
8661 } else if (nid == 0x15) {
8662 err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
8663 HDA_COMPOSE_AMP_VAL(0x03, 3, idx,
8669 sprintf(name, "%s Playback Switch", ctlname);
8670 err = add_control(spec, ALC_CTL_WIDGET_MUTE, name,
8671 HDA_COMPOSE_AMP_VAL(nid, 3, idx, HDA_OUTPUT));
8677 /* add playback controls from the parsed DAC table */
8678 static int alc268_auto_create_multi_out_ctls(struct alc_spec *spec,
8679 const struct auto_pin_cfg *cfg)
8684 spec->multiout.num_dacs = 2; /* only use one dac */
8685 spec->multiout.dac_nids = spec->private_dac_nids;
8686 spec->multiout.dac_nids[0] = 2;
8687 spec->multiout.dac_nids[1] = 3;
8689 nid = cfg->line_out_pins[0];
8691 alc268_new_analog_output(spec, nid, "Front", 0);
8693 nid = cfg->speaker_pins[0];
8695 err = add_control(spec, ALC_CTL_WIDGET_VOL,
8696 "Speaker Playback Volume",
8697 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_INPUT));
8701 nid = cfg->hp_pins[0];
8703 alc268_new_analog_output(spec, nid, "Headphone", 0);
8705 nid = cfg->line_out_pins[1] | cfg->line_out_pins[2];
8707 err = add_control(spec, ALC_CTL_WIDGET_MUTE,
8708 "Mono Playback Switch",
8709 HDA_COMPOSE_AMP_VAL(nid, 2, 0, HDA_INPUT));
8716 /* create playback/capture controls for input pins */
8717 static int alc268_auto_create_analog_input_ctls(struct alc_spec *spec,
8718 const struct auto_pin_cfg *cfg)
8720 struct hda_input_mux *imux = &spec->private_imux;
8723 for (i = 0; i < AUTO_PIN_LAST; i++) {
8724 switch(cfg->input_pins[i]) {
8726 idx1 = 0; /* Mic 1 */
8729 idx1 = 1; /* Mic 2 */
8732 idx1 = 2; /* Line In */
8740 imux->items[imux->num_items].label = auto_pin_cfg_labels[i];
8741 imux->items[imux->num_items].index = idx1;
8747 static void alc268_auto_init_mono_speaker_out(struct hda_codec *codec)
8749 struct alc_spec *spec = codec->spec;
8750 hda_nid_t speaker_nid = spec->autocfg.speaker_pins[0];
8751 hda_nid_t hp_nid = spec->autocfg.hp_pins[0];
8752 hda_nid_t line_nid = spec->autocfg.line_out_pins[0];
8753 unsigned int dac_vol1, dac_vol2;
8756 snd_hda_codec_write(codec, speaker_nid, 0,
8757 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
8758 snd_hda_codec_write(codec, 0x0f, 0,
8759 AC_VERB_SET_AMP_GAIN_MUTE,
8761 snd_hda_codec_write(codec, 0x10, 0,
8762 AC_VERB_SET_AMP_GAIN_MUTE,
8765 snd_hda_codec_write(codec, 0x0f, 0,
8766 AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1));
8767 snd_hda_codec_write(codec, 0x10, 0,
8768 AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1));
8771 dac_vol1 = dac_vol2 = 0xb000 | 0x40; /* set max volume */
8772 if (line_nid == 0x14)
8773 dac_vol2 = AMP_OUT_ZERO;
8774 else if (line_nid == 0x15)
8775 dac_vol1 = AMP_OUT_ZERO;
8777 dac_vol2 = AMP_OUT_ZERO;
8778 else if (hp_nid == 0x15)
8779 dac_vol1 = AMP_OUT_ZERO;
8780 if (line_nid != 0x16 || hp_nid != 0x16 ||
8781 spec->autocfg.line_out_pins[1] != 0x16 ||
8782 spec->autocfg.line_out_pins[2] != 0x16)
8783 dac_vol1 = dac_vol2 = AMP_OUT_ZERO;
8785 snd_hda_codec_write(codec, 0x02, 0,
8786 AC_VERB_SET_AMP_GAIN_MUTE, dac_vol1);
8787 snd_hda_codec_write(codec, 0x03, 0,
8788 AC_VERB_SET_AMP_GAIN_MUTE, dac_vol2);
8791 /* pcm configuration: identiacal with ALC880 */
8792 #define alc268_pcm_analog_playback alc880_pcm_analog_playback
8793 #define alc268_pcm_analog_capture alc880_pcm_analog_capture
8794 #define alc268_pcm_digital_playback alc880_pcm_digital_playback
8797 * BIOS auto configuration
8799 static int alc268_parse_auto_config(struct hda_codec *codec)
8801 struct alc_spec *spec = codec->spec;
8803 static hda_nid_t alc268_ignore[] = { 0 };
8805 err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
8809 if (!spec->autocfg.line_outs)
8810 return 0; /* can't find valid BIOS pin config */
8812 err = alc268_auto_create_multi_out_ctls(spec, &spec->autocfg);
8815 err = alc268_auto_create_analog_input_ctls(spec, &spec->autocfg);
8819 spec->multiout.max_channels = 2;
8821 /* digital only support output */
8822 if (spec->autocfg.dig_out_pin)
8823 spec->multiout.dig_out_nid = ALC268_DIGOUT_NID;
8825 if (spec->kctl_alloc)
8826 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
8828 spec->init_verbs[spec->num_init_verbs++] = alc268_volume_init_verbs;
8829 spec->num_mux_defs = 1;
8830 spec->input_mux = &spec->private_imux;
8835 #define alc268_auto_init_multi_out alc882_auto_init_multi_out
8836 #define alc268_auto_init_hp_out alc882_auto_init_hp_out
8837 #define alc268_auto_init_analog_input alc882_auto_init_analog_input
8839 /* init callback for auto-configuration model -- overriding the default init */
8840 static void alc268_auto_init(struct hda_codec *codec)
8842 alc268_auto_init_multi_out(codec);
8843 alc268_auto_init_hp_out(codec);
8844 alc268_auto_init_mono_speaker_out(codec);
8845 alc268_auto_init_analog_input(codec);
8849 * configuration and preset
8851 static const char *alc268_models[ALC268_MODEL_LAST] = {
8852 [ALC268_3ST] = "3stack",
8853 [ALC268_TOSHIBA] = "toshiba",
8854 [ALC268_ACER] = "acer",
8855 [ALC268_AUTO] = "auto",
8858 static struct snd_pci_quirk alc268_cfg_tbl[] = {
8859 SND_PCI_QUIRK(0x1043, 0x1205, "ASUS W7J", ALC268_3ST),
8860 SND_PCI_QUIRK(0x1179, 0xff10, "TOSHIBA A205", ALC268_TOSHIBA),
8861 SND_PCI_QUIRK(0x103c, 0x30cc, "TOSHIBA", ALC268_TOSHIBA),
8862 SND_PCI_QUIRK(0x1025, 0x0126, "Acer", ALC268_ACER),
8866 static struct alc_config_preset alc268_presets[] = {
8868 .mixers = { alc268_base_mixer, alc268_capture_alt_mixer },
8869 .init_verbs = { alc268_base_init_verbs },
8870 .num_dacs = ARRAY_SIZE(alc268_dac_nids),
8871 .dac_nids = alc268_dac_nids,
8872 .num_adc_nids = ARRAY_SIZE(alc268_adc_nids_alt),
8873 .adc_nids = alc268_adc_nids_alt,
8875 .dig_out_nid = ALC268_DIGOUT_NID,
8876 .num_channel_mode = ARRAY_SIZE(alc268_modes),
8877 .channel_mode = alc268_modes,
8878 .input_mux = &alc268_capture_source,
8880 [ALC268_TOSHIBA] = {
8881 .mixers = { alc268_base_mixer, alc268_capture_alt_mixer },
8882 .init_verbs = { alc268_base_init_verbs, alc268_eapd_verbs,
8883 alc268_toshiba_verbs },
8884 .num_dacs = ARRAY_SIZE(alc268_dac_nids),
8885 .dac_nids = alc268_dac_nids,
8886 .num_adc_nids = ARRAY_SIZE(alc268_adc_nids_alt),
8887 .adc_nids = alc268_adc_nids_alt,
8889 .num_channel_mode = ARRAY_SIZE(alc268_modes),
8890 .channel_mode = alc268_modes,
8891 .input_mux = &alc268_capture_source,
8892 .input_mux = &alc268_capture_source,
8893 .unsol_event = alc268_toshiba_unsol_event,
8894 .init_hook = alc268_toshiba_automute,
8897 .mixers = { alc268_acer_mixer, alc268_capture_alt_mixer },
8898 .init_verbs = { alc268_base_init_verbs, alc268_eapd_verbs,
8899 alc268_acer_verbs },
8900 .num_dacs = ARRAY_SIZE(alc268_dac_nids),
8901 .dac_nids = alc268_dac_nids,
8902 .num_adc_nids = ARRAY_SIZE(alc268_adc_nids_alt),
8903 .adc_nids = alc268_adc_nids_alt,
8905 .num_channel_mode = ARRAY_SIZE(alc268_modes),
8906 .channel_mode = alc268_modes,
8907 .input_mux = &alc268_capture_source,
8908 .unsol_event = alc268_acer_unsol_event,
8912 static int patch_alc268(struct hda_codec *codec)
8914 struct alc_spec *spec;
8918 spec = kcalloc(1, sizeof(*spec), GFP_KERNEL);
8924 board_config = snd_hda_check_board_config(codec, ALC268_MODEL_LAST,
8928 if (board_config < 0 || board_config >= ALC268_MODEL_LAST) {
8929 printk(KERN_INFO "hda_codec: Unknown model for ALC268, "
8930 "trying auto-probe from BIOS...\n");
8931 board_config = ALC268_AUTO;
8934 if (board_config == ALC268_AUTO) {
8935 /* automatic parse from the BIOS config */
8936 err = alc268_parse_auto_config(codec);
8942 "hda_codec: Cannot set up configuration "
8943 "from BIOS. Using base mode...\n");
8944 board_config = ALC268_3ST;
8948 if (board_config != ALC268_AUTO)
8949 setup_preset(spec, &alc268_presets[board_config]);
8951 spec->stream_name_analog = "ALC268 Analog";
8952 spec->stream_analog_playback = &alc268_pcm_analog_playback;
8953 spec->stream_analog_capture = &alc268_pcm_analog_capture;
8955 spec->stream_name_digital = "ALC268 Digital";
8956 spec->stream_digital_playback = &alc268_pcm_digital_playback;
8958 if (board_config == ALC268_AUTO) {
8959 if (!spec->adc_nids && spec->input_mux) {
8960 /* check whether NID 0x07 is valid */
8961 unsigned int wcap = get_wcaps(codec, 0x07);
8964 wcap = (wcap & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT;
8965 if (wcap != AC_WID_AUD_IN) {
8966 spec->adc_nids = alc268_adc_nids_alt;
8967 spec->num_adc_nids =
8968 ARRAY_SIZE(alc268_adc_nids_alt);
8969 spec->mixers[spec->num_mixers] =
8970 alc268_capture_alt_mixer;
8973 spec->adc_nids = alc268_adc_nids;
8974 spec->num_adc_nids =
8975 ARRAY_SIZE(alc268_adc_nids);
8976 spec->mixers[spec->num_mixers] =
8977 alc268_capture_mixer;
8982 codec->patch_ops = alc_patch_ops;
8983 if (board_config == ALC268_AUTO)
8984 spec->init_hook = alc268_auto_init;
8990 * ALC861 channel source setting (2/6 channel selection for 3-stack)
8994 * set the path ways for 2 channel output
8995 * need to set the codec line out and mic 1 pin widgets to inputs
8997 static struct hda_verb alc861_threestack_ch2_init[] = {
8998 /* set pin widget 1Ah (line in) for input */
8999 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
9000 /* set pin widget 18h (mic1/2) for input, for mic also enable
9003 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
9005 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c },
9007 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8)) }, /*mic*/
9008 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8)) }, /*line-in*/
9014 * need to set the codec line out and mic 1 pin widgets to outputs
9016 static struct hda_verb alc861_threestack_ch6_init[] = {
9017 /* set pin widget 1Ah (line in) for output (Back Surround)*/
9018 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
9019 /* set pin widget 18h (mic1) for output (CLFE)*/
9020 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
9022 { 0x0c, AC_VERB_SET_CONNECT_SEL, 0x00 },
9023 { 0x0d, AC_VERB_SET_CONNECT_SEL, 0x00 },
9025 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080 },
9027 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x01 << 8)) }, /*mic*/
9028 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8)) }, /*line in*/
9033 static struct hda_channel_mode alc861_threestack_modes[2] = {
9034 { 2, alc861_threestack_ch2_init },
9035 { 6, alc861_threestack_ch6_init },
9037 /* Set mic1 as input and unmute the mixer */
9038 static struct hda_verb alc861_uniwill_m31_ch2_init[] = {
9039 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
9040 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x01 << 8)) }, /*mic*/
9043 /* Set mic1 as output and mute mixer */
9044 static struct hda_verb alc861_uniwill_m31_ch4_init[] = {
9045 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
9046 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8)) }, /*mic*/
9050 static struct hda_channel_mode alc861_uniwill_m31_modes[2] = {
9051 { 2, alc861_uniwill_m31_ch2_init },
9052 { 4, alc861_uniwill_m31_ch4_init },
9055 /* Set mic1 and line-in as input and unmute the mixer */
9056 static struct hda_verb alc861_asus_ch2_init[] = {
9057 /* set pin widget 1Ah (line in) for input */
9058 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
9059 /* set pin widget 18h (mic1/2) for input, for mic also enable
9062 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
9064 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c },
9066 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8)) }, /*mic*/
9067 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8)) }, /*line-in*/
9071 /* Set mic1 nad line-in as output and mute mixer */
9072 static struct hda_verb alc861_asus_ch6_init[] = {
9073 /* set pin widget 1Ah (line in) for output (Back Surround)*/
9074 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
9075 /* { 0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE }, */
9076 /* set pin widget 18h (mic1) for output (CLFE)*/
9077 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
9078 /* { 0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE }, */
9079 { 0x0c, AC_VERB_SET_CONNECT_SEL, 0x00 },
9080 { 0x0d, AC_VERB_SET_CONNECT_SEL, 0x00 },
9082 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080 },
9084 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x01 << 8)) }, /*mic*/
9085 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8)) }, /*line in*/
9090 static struct hda_channel_mode alc861_asus_modes[2] = {
9091 { 2, alc861_asus_ch2_init },
9092 { 6, alc861_asus_ch6_init },
9097 static struct snd_kcontrol_new alc861_base_mixer[] = {
9098 /* output mixer control */
9099 HDA_CODEC_MUTE("Front Playback Switch", 0x03, 0x0, HDA_OUTPUT),
9100 HDA_CODEC_MUTE("Surround Playback Switch", 0x06, 0x0, HDA_OUTPUT),
9101 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x05, 1, 0x0, HDA_OUTPUT),
9102 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x05, 2, 0x0, HDA_OUTPUT),
9103 HDA_CODEC_MUTE("Side Playback Switch", 0x04, 0x0, HDA_OUTPUT),
9105 /*Input mixer control */
9106 /* HDA_CODEC_VOLUME("Input Playback Volume", 0x15, 0x0, HDA_OUTPUT),
9107 HDA_CODEC_MUTE("Input Playback Switch", 0x15, 0x0, HDA_OUTPUT), */
9108 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT),
9109 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT),
9110 HDA_CODEC_VOLUME("Line Playback Volume", 0x15, 0x02, HDA_INPUT),
9111 HDA_CODEC_MUTE("Line Playback Switch", 0x15, 0x02, HDA_INPUT),
9112 HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT),
9113 HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT),
9114 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x10, 0x01, HDA_OUTPUT),
9115 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x03, HDA_INPUT),
9117 /* Capture mixer control */
9118 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
9119 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
9121 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
9122 .name = "Capture Source",
9124 .info = alc_mux_enum_info,
9125 .get = alc_mux_enum_get,
9126 .put = alc_mux_enum_put,
9131 static struct snd_kcontrol_new alc861_3ST_mixer[] = {
9132 /* output mixer control */
9133 HDA_CODEC_MUTE("Front Playback Switch", 0x03, 0x0, HDA_OUTPUT),
9134 HDA_CODEC_MUTE("Surround Playback Switch", 0x06, 0x0, HDA_OUTPUT),
9135 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x05, 1, 0x0, HDA_OUTPUT),
9136 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x05, 2, 0x0, HDA_OUTPUT),
9137 /*HDA_CODEC_MUTE("Side Playback Switch", 0x04, 0x0, HDA_OUTPUT), */
9139 /* Input mixer control */
9140 /* HDA_CODEC_VOLUME("Input Playback Volume", 0x15, 0x0, HDA_OUTPUT),
9141 HDA_CODEC_MUTE("Input Playback Switch", 0x15, 0x0, HDA_OUTPUT), */
9142 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT),
9143 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT),
9144 HDA_CODEC_VOLUME("Line Playback Volume", 0x15, 0x02, HDA_INPUT),
9145 HDA_CODEC_MUTE("Line Playback Switch", 0x15, 0x02, HDA_INPUT),
9146 HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT),
9147 HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT),
9148 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x10, 0x01, HDA_OUTPUT),
9149 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x03, HDA_INPUT),
9151 /* Capture mixer control */
9152 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
9153 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
9155 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
9156 .name = "Capture Source",
9158 .info = alc_mux_enum_info,
9159 .get = alc_mux_enum_get,
9160 .put = alc_mux_enum_put,
9163 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
9164 .name = "Channel Mode",
9165 .info = alc_ch_mode_info,
9166 .get = alc_ch_mode_get,
9167 .put = alc_ch_mode_put,
9168 .private_value = ARRAY_SIZE(alc861_threestack_modes),
9173 static struct snd_kcontrol_new alc861_toshiba_mixer[] = {
9174 /* output mixer control */
9175 HDA_CODEC_MUTE("Master Playback Switch", 0x03, 0x0, HDA_OUTPUT),
9176 HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT),
9177 HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT),
9179 /*Capture mixer control */
9180 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
9181 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
9183 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
9184 .name = "Capture Source",
9186 .info = alc_mux_enum_info,
9187 .get = alc_mux_enum_get,
9188 .put = alc_mux_enum_put,
9194 static struct snd_kcontrol_new alc861_uniwill_m31_mixer[] = {
9195 /* output mixer control */
9196 HDA_CODEC_MUTE("Front Playback Switch", 0x03, 0x0, HDA_OUTPUT),
9197 HDA_CODEC_MUTE("Surround Playback Switch", 0x06, 0x0, HDA_OUTPUT),
9198 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x05, 1, 0x0, HDA_OUTPUT),
9199 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x05, 2, 0x0, HDA_OUTPUT),
9200 /*HDA_CODEC_MUTE("Side Playback Switch", 0x04, 0x0, HDA_OUTPUT), */
9202 /* Input mixer control */
9203 /* HDA_CODEC_VOLUME("Input Playback Volume", 0x15, 0x0, HDA_OUTPUT),
9204 HDA_CODEC_MUTE("Input Playback Switch", 0x15, 0x0, HDA_OUTPUT), */
9205 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT),
9206 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT),
9207 HDA_CODEC_VOLUME("Line Playback Volume", 0x15, 0x02, HDA_INPUT),
9208 HDA_CODEC_MUTE("Line Playback Switch", 0x15, 0x02, HDA_INPUT),
9209 HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT),
9210 HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT),
9211 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x10, 0x01, HDA_OUTPUT),
9212 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x03, HDA_INPUT),
9214 /* Capture mixer control */
9215 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
9216 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
9218 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
9219 .name = "Capture Source",
9221 .info = alc_mux_enum_info,
9222 .get = alc_mux_enum_get,
9223 .put = alc_mux_enum_put,
9226 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
9227 .name = "Channel Mode",
9228 .info = alc_ch_mode_info,
9229 .get = alc_ch_mode_get,
9230 .put = alc_ch_mode_put,
9231 .private_value = ARRAY_SIZE(alc861_uniwill_m31_modes),
9236 static struct snd_kcontrol_new alc861_asus_mixer[] = {
9237 /* output mixer control */
9238 HDA_CODEC_MUTE("Front Playback Switch", 0x03, 0x0, HDA_OUTPUT),
9239 HDA_CODEC_MUTE("Surround Playback Switch", 0x06, 0x0, HDA_OUTPUT),
9240 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x05, 1, 0x0, HDA_OUTPUT),
9241 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x05, 2, 0x0, HDA_OUTPUT),
9242 HDA_CODEC_MUTE("Side Playback Switch", 0x04, 0x0, HDA_OUTPUT),
9244 /* Input mixer control */
9245 HDA_CODEC_VOLUME("Input Playback Volume", 0x15, 0x0, HDA_OUTPUT),
9246 HDA_CODEC_MUTE("Input Playback Switch", 0x15, 0x0, HDA_OUTPUT),
9247 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT),
9248 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT),
9249 HDA_CODEC_VOLUME("Line Playback Volume", 0x15, 0x02, HDA_INPUT),
9250 HDA_CODEC_MUTE("Line Playback Switch", 0x15, 0x02, HDA_INPUT),
9251 HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT),
9252 HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT),
9253 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x10, 0x01, HDA_OUTPUT),
9254 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x03, HDA_OUTPUT),
9256 /* Capture mixer control */
9257 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
9258 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
9260 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
9261 .name = "Capture Source",
9263 .info = alc_mux_enum_info,
9264 .get = alc_mux_enum_get,
9265 .put = alc_mux_enum_put,
9268 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
9269 .name = "Channel Mode",
9270 .info = alc_ch_mode_info,
9271 .get = alc_ch_mode_get,
9272 .put = alc_ch_mode_put,
9273 .private_value = ARRAY_SIZE(alc861_asus_modes),
9278 /* additional mixer */
9279 static struct snd_kcontrol_new alc861_asus_laptop_mixer[] = {
9280 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT),
9281 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT),
9282 HDA_CODEC_VOLUME("PC Beep Playback Volume", 0x23, 0x0, HDA_OUTPUT),
9283 HDA_CODEC_MUTE("PC Beep Playback Switch", 0x23, 0x0, HDA_OUTPUT),
9288 * generic initialization of ADC, input mixers and output mixers
9290 static struct hda_verb alc861_base_init_verbs[] = {
9292 * Unmute ADC0 and set the default input to mic-in
9294 /* port-A for surround (rear panel) */
9295 { 0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
9296 { 0x0e, AC_VERB_SET_CONNECT_SEL, 0x00 },
9297 /* port-B for mic-in (rear panel) with vref */
9298 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
9299 /* port-C for line-in (rear panel) */
9300 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
9301 /* port-D for Front */
9302 { 0x0b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
9303 { 0x0b, AC_VERB_SET_CONNECT_SEL, 0x00 },
9304 /* port-E for HP out (front panel) */
9305 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0 },
9306 /* route front PCM to HP */
9307 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x00 },
9308 /* port-F for mic-in (front panel) with vref */
9309 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
9310 /* port-G for CLFE (rear panel) */
9311 { 0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
9312 { 0x1f, AC_VERB_SET_CONNECT_SEL, 0x00 },
9313 /* port-H for side (rear panel) */
9314 { 0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
9315 { 0x20, AC_VERB_SET_CONNECT_SEL, 0x00 },
9317 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
9318 /* route front mic to ADC1*/
9319 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
9320 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9322 /* Unmute DAC0~3 & spdif out*/
9323 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9324 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9325 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9326 {0x06, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9327 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9329 /* Unmute Mixer 14 (mic) 1c (Line in)*/
9330 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9331 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9332 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9333 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9335 /* Unmute Stereo Mixer 15 */
9336 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9337 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9338 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
9339 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c}, /* Output 0~12 step */
9341 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9342 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9343 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9344 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9345 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9346 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9347 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9348 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9349 /* hp used DAC 3 (Front) */
9350 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
9351 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
9356 static struct hda_verb alc861_threestack_init_verbs[] = {
9358 * Unmute ADC0 and set the default input to mic-in
9360 /* port-A for surround (rear panel) */
9361 { 0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
9362 /* port-B for mic-in (rear panel) with vref */
9363 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
9364 /* port-C for line-in (rear panel) */
9365 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
9366 /* port-D for Front */
9367 { 0x0b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
9368 { 0x0b, AC_VERB_SET_CONNECT_SEL, 0x00 },
9369 /* port-E for HP out (front panel) */
9370 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0 },
9371 /* route front PCM to HP */
9372 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x00 },
9373 /* port-F for mic-in (front panel) with vref */
9374 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
9375 /* port-G for CLFE (rear panel) */
9376 { 0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
9377 /* port-H for side (rear panel) */
9378 { 0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
9380 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
9381 /* route front mic to ADC1*/
9382 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
9383 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9384 /* Unmute DAC0~3 & spdif out*/
9385 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9386 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9387 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9388 {0x06, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9389 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9391 /* Unmute Mixer 14 (mic) 1c (Line in)*/
9392 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9393 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9394 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9395 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9397 /* Unmute Stereo Mixer 15 */
9398 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9399 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9400 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
9401 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c}, /* Output 0~12 step */
9403 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9404 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9405 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9406 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9407 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9408 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9409 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9410 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9411 /* hp used DAC 3 (Front) */
9412 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
9413 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
9417 static struct hda_verb alc861_uniwill_m31_init_verbs[] = {
9419 * Unmute ADC0 and set the default input to mic-in
9421 /* port-A for surround (rear panel) */
9422 { 0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
9423 /* port-B for mic-in (rear panel) with vref */
9424 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
9425 /* port-C for line-in (rear panel) */
9426 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
9427 /* port-D for Front */
9428 { 0x0b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
9429 { 0x0b, AC_VERB_SET_CONNECT_SEL, 0x00 },
9430 /* port-E for HP out (front panel) */
9431 /* this has to be set to VREF80 */
9432 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
9433 /* route front PCM to HP */
9434 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x00 },
9435 /* port-F for mic-in (front panel) with vref */
9436 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
9437 /* port-G for CLFE (rear panel) */
9438 { 0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
9439 /* port-H for side (rear panel) */
9440 { 0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
9442 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
9443 /* route front mic to ADC1*/
9444 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
9445 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9446 /* Unmute DAC0~3 & spdif out*/
9447 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9448 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9449 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9450 {0x06, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9451 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9453 /* Unmute Mixer 14 (mic) 1c (Line in)*/
9454 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9455 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9456 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9457 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9459 /* Unmute Stereo Mixer 15 */
9460 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9461 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9462 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
9463 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c}, /* Output 0~12 step */
9465 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9466 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9467 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9468 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9469 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9470 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9471 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9472 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9473 /* hp used DAC 3 (Front) */
9474 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
9475 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
9479 static struct hda_verb alc861_asus_init_verbs[] = {
9481 * Unmute ADC0 and set the default input to mic-in
9483 /* port-A for surround (rear panel)
9484 * according to codec#0 this is the HP jack
9486 { 0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0 }, /* was 0x00 */
9487 /* route front PCM to HP */
9488 { 0x0e, AC_VERB_SET_CONNECT_SEL, 0x01 },
9489 /* port-B for mic-in (rear panel) with vref */
9490 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
9491 /* port-C for line-in (rear panel) */
9492 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
9493 /* port-D for Front */
9494 { 0x0b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
9495 { 0x0b, AC_VERB_SET_CONNECT_SEL, 0x00 },
9496 /* port-E for HP out (front panel) */
9497 /* this has to be set to VREF80 */
9498 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
9499 /* route front PCM to HP */
9500 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x00 },
9501 /* port-F for mic-in (front panel) with vref */
9502 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
9503 /* port-G for CLFE (rear panel) */
9504 { 0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
9505 /* port-H for side (rear panel) */
9506 { 0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
9508 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
9509 /* route front mic to ADC1*/
9510 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
9511 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9512 /* Unmute DAC0~3 & spdif out*/
9513 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9514 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9515 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9516 {0x06, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9517 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9518 /* Unmute Mixer 14 (mic) 1c (Line in)*/
9519 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9520 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9521 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9522 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9524 /* Unmute Stereo Mixer 15 */
9525 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9526 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9527 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
9528 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c}, /* Output 0~12 step */
9530 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9531 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9532 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9533 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9534 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9535 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9536 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9537 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9538 /* hp used DAC 3 (Front) */
9539 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
9540 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
9544 /* additional init verbs for ASUS laptops */
9545 static struct hda_verb alc861_asus_laptop_init_verbs[] = {
9546 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x45 }, /* HP-out */
9547 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2) }, /* mute line-in */
9552 * generic initialization of ADC, input mixers and output mixers
9554 static struct hda_verb alc861_auto_init_verbs[] = {
9556 * Unmute ADC0 and set the default input to mic-in
9558 /* {0x08, AC_VERB_SET_CONNECT_SEL, 0x00}, */
9559 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9561 /* Unmute DAC0~3 & spdif out*/
9562 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
9563 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
9564 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
9565 {0x06, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
9566 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9568 /* Unmute Mixer 14 (mic) 1c (Line in)*/
9569 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9570 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9571 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9572 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9574 /* Unmute Stereo Mixer 15 */
9575 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9576 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9577 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
9578 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c},
9580 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9581 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9582 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9583 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9584 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9585 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9586 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9587 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9589 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
9590 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
9591 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
9592 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
9593 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
9594 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
9595 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
9596 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
9598 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00}, /* set Mic 1 */
9603 static struct hda_verb alc861_toshiba_init_verbs[] = {
9604 {0x0f, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
9609 /* toggle speaker-output according to the hp-jack state */
9610 static void alc861_toshiba_automute(struct hda_codec *codec)
9612 unsigned int present;
9614 present = snd_hda_codec_read(codec, 0x0f, 0,
9615 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
9616 snd_hda_codec_amp_stereo(codec, 0x16, HDA_INPUT, 0,
9617 HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0);
9618 snd_hda_codec_amp_stereo(codec, 0x1a, HDA_INPUT, 3,
9619 HDA_AMP_MUTE, present ? 0 : HDA_AMP_MUTE);
9622 static void alc861_toshiba_unsol_event(struct hda_codec *codec,
9625 if ((res >> 26) == ALC880_HP_EVENT)
9626 alc861_toshiba_automute(codec);
9629 /* pcm configuration: identiacal with ALC880 */
9630 #define alc861_pcm_analog_playback alc880_pcm_analog_playback
9631 #define alc861_pcm_analog_capture alc880_pcm_analog_capture
9632 #define alc861_pcm_digital_playback alc880_pcm_digital_playback
9633 #define alc861_pcm_digital_capture alc880_pcm_digital_capture
9636 #define ALC861_DIGOUT_NID 0x07
9638 static struct hda_channel_mode alc861_8ch_modes[1] = {
9642 static hda_nid_t alc861_dac_nids[4] = {
9643 /* front, surround, clfe, side */
9644 0x03, 0x06, 0x05, 0x04
9647 static hda_nid_t alc660_dac_nids[3] = {
9648 /* front, clfe, surround */
9652 static hda_nid_t alc861_adc_nids[1] = {
9657 static struct hda_input_mux alc861_capture_source = {
9661 { "Front Mic", 0x3 },
9668 /* fill in the dac_nids table from the parsed pin configuration */
9669 static int alc861_auto_fill_dac_nids(struct alc_spec *spec,
9670 const struct auto_pin_cfg *cfg)
9675 spec->multiout.dac_nids = spec->private_dac_nids;
9676 for (i = 0; i < cfg->line_outs; i++) {
9677 nid = cfg->line_out_pins[i];
9679 if (i >= ARRAY_SIZE(alc861_dac_nids))
9681 spec->multiout.dac_nids[i] = alc861_dac_nids[i];
9684 spec->multiout.num_dacs = cfg->line_outs;
9688 /* add playback controls from the parsed DAC table */
9689 static int alc861_auto_create_multi_out_ctls(struct alc_spec *spec,
9690 const struct auto_pin_cfg *cfg)
9693 static const char *chname[4] = {
9694 "Front", "Surround", NULL /*CLFE*/, "Side"
9699 for (i = 0; i < cfg->line_outs; i++) {
9700 nid = spec->multiout.dac_nids[i];
9705 err = add_control(spec, ALC_CTL_BIND_MUTE,
9706 "Center Playback Switch",
9707 HDA_COMPOSE_AMP_VAL(nid, 1, 0,
9711 err = add_control(spec, ALC_CTL_BIND_MUTE,
9712 "LFE Playback Switch",
9713 HDA_COMPOSE_AMP_VAL(nid, 2, 0,
9718 for (idx = 0; idx < ARRAY_SIZE(alc861_dac_nids) - 1;
9720 if (nid == alc861_dac_nids[idx])
9722 sprintf(name, "%s Playback Switch", chname[idx]);
9723 err = add_control(spec, ALC_CTL_BIND_MUTE, name,
9724 HDA_COMPOSE_AMP_VAL(nid, 3, 0,
9733 static int alc861_auto_create_hp_ctls(struct alc_spec *spec, hda_nid_t pin)
9741 if ((pin >= 0x0b && pin <= 0x10) || pin == 0x1f || pin == 0x20) {
9743 err = add_control(spec, ALC_CTL_WIDGET_MUTE,
9744 "Headphone Playback Switch",
9745 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT));
9748 spec->multiout.hp_nid = nid;
9753 /* create playback/capture controls for input pins */
9754 static int alc861_auto_create_analog_input_ctls(struct alc_spec *spec,
9755 const struct auto_pin_cfg *cfg)
9757 struct hda_input_mux *imux = &spec->private_imux;
9758 int i, err, idx, idx1;
9760 for (i = 0; i < AUTO_PIN_LAST; i++) {
9761 switch (cfg->input_pins[i]) {
9764 idx = 2; /* Line In */
9768 idx = 2; /* Line In */
9772 idx = 1; /* Mic In */
9776 idx = 1; /* Mic In */
9786 err = new_analog_input(spec, cfg->input_pins[i],
9787 auto_pin_cfg_labels[i], idx, 0x15);
9791 imux->items[imux->num_items].label = auto_pin_cfg_labels[i];
9792 imux->items[imux->num_items].index = idx1;
9798 static struct snd_kcontrol_new alc861_capture_mixer[] = {
9799 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
9800 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
9803 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
9804 /* The multiple "Capture Source" controls confuse alsamixer
9805 * So call somewhat different..
9806 *FIXME: the controls appear in the "playback" view!
9808 /* .name = "Capture Source", */
9809 .name = "Input Source",
9811 .info = alc_mux_enum_info,
9812 .get = alc_mux_enum_get,
9813 .put = alc_mux_enum_put,
9818 static void alc861_auto_set_output_and_unmute(struct hda_codec *codec,
9820 int pin_type, int dac_idx)
9824 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
9826 snd_hda_codec_write(codec, dac_idx, 0, AC_VERB_SET_AMP_GAIN_MUTE,
9831 static void alc861_auto_init_multi_out(struct hda_codec *codec)
9833 struct alc_spec *spec = codec->spec;
9836 alc_subsystem_id(codec, 0x0e, 0x0f, 0x0b);
9837 for (i = 0; i < spec->autocfg.line_outs; i++) {
9838 hda_nid_t nid = spec->autocfg.line_out_pins[i];
9839 int pin_type = get_pin_type(spec->autocfg.line_out_type);
9841 alc861_auto_set_output_and_unmute(codec, nid, pin_type,
9842 spec->multiout.dac_nids[i]);
9846 static void alc861_auto_init_hp_out(struct hda_codec *codec)
9848 struct alc_spec *spec = codec->spec;
9851 pin = spec->autocfg.hp_pins[0];
9852 if (pin) /* connect to front */
9853 alc861_auto_set_output_and_unmute(codec, pin, PIN_HP,
9854 spec->multiout.dac_nids[0]);
9857 static void alc861_auto_init_analog_input(struct hda_codec *codec)
9859 struct alc_spec *spec = codec->spec;
9862 for (i = 0; i < AUTO_PIN_LAST; i++) {
9863 hda_nid_t nid = spec->autocfg.input_pins[i];
9864 if (nid >= 0x0c && nid <= 0x11) {
9865 snd_hda_codec_write(codec, nid, 0,
9866 AC_VERB_SET_PIN_WIDGET_CONTROL,
9867 i <= AUTO_PIN_FRONT_MIC ?
9868 PIN_VREF80 : PIN_IN);
9873 /* parse the BIOS configuration and set up the alc_spec */
9874 /* return 1 if successful, 0 if the proper config is not found,
9875 * or a negative error code
9877 static int alc861_parse_auto_config(struct hda_codec *codec)
9879 struct alc_spec *spec = codec->spec;
9881 static hda_nid_t alc861_ignore[] = { 0x1d, 0 };
9883 err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
9887 if (!spec->autocfg.line_outs)
9888 return 0; /* can't find valid BIOS pin config */
9890 err = alc861_auto_fill_dac_nids(spec, &spec->autocfg);
9893 err = alc861_auto_create_multi_out_ctls(spec, &spec->autocfg);
9896 err = alc861_auto_create_hp_ctls(spec, spec->autocfg.hp_pins[0]);
9899 err = alc861_auto_create_analog_input_ctls(spec, &spec->autocfg);
9903 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
9905 if (spec->autocfg.dig_out_pin)
9906 spec->multiout.dig_out_nid = ALC861_DIGOUT_NID;
9908 if (spec->kctl_alloc)
9909 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
9911 spec->init_verbs[spec->num_init_verbs++] = alc861_auto_init_verbs;
9913 spec->num_mux_defs = 1;
9914 spec->input_mux = &spec->private_imux;
9916 spec->adc_nids = alc861_adc_nids;
9917 spec->num_adc_nids = ARRAY_SIZE(alc861_adc_nids);
9918 spec->mixers[spec->num_mixers] = alc861_capture_mixer;
9924 /* additional initialization for auto-configuration model */
9925 static void alc861_auto_init(struct hda_codec *codec)
9927 alc861_auto_init_multi_out(codec);
9928 alc861_auto_init_hp_out(codec);
9929 alc861_auto_init_analog_input(codec);
9932 #ifdef CONFIG_SND_HDA_POWER_SAVE
9933 static struct hda_amp_list alc861_loopbacks[] = {
9934 { 0x15, HDA_INPUT, 0 },
9935 { 0x15, HDA_INPUT, 1 },
9936 { 0x15, HDA_INPUT, 2 },
9937 { 0x15, HDA_INPUT, 3 },
9944 * configuration and preset
9946 static const char *alc861_models[ALC861_MODEL_LAST] = {
9947 [ALC861_3ST] = "3stack",
9948 [ALC660_3ST] = "3stack-660",
9949 [ALC861_3ST_DIG] = "3stack-dig",
9950 [ALC861_6ST_DIG] = "6stack-dig",
9951 [ALC861_UNIWILL_M31] = "uniwill-m31",
9952 [ALC861_TOSHIBA] = "toshiba",
9953 [ALC861_ASUS] = "asus",
9954 [ALC861_ASUS_LAPTOP] = "asus-laptop",
9955 [ALC861_AUTO] = "auto",
9958 static struct snd_pci_quirk alc861_cfg_tbl[] = {
9959 SND_PCI_QUIRK(0x1043, 0x1205, "ASUS W7J", ALC861_3ST),
9960 SND_PCI_QUIRK(0x1043, 0x1335, "ASUS F2/3", ALC861_ASUS_LAPTOP),
9961 SND_PCI_QUIRK(0x1043, 0x1338, "ASUS F2/3", ALC861_ASUS_LAPTOP),
9962 SND_PCI_QUIRK(0x1043, 0x13d7, "ASUS A9rp", ALC861_ASUS_LAPTOP),
9963 SND_PCI_QUIRK(0x1584, 0x9075, "Airis Praxis N1212", ALC861_ASUS_LAPTOP),
9964 SND_PCI_QUIRK(0x1043, 0x1393, "ASUS", ALC861_ASUS),
9965 SND_PCI_QUIRK(0x1043, 0x81cb, "ASUS P1-AH2", ALC861_3ST_DIG),
9966 SND_PCI_QUIRK(0x1179, 0xff00, "Toshiba", ALC861_TOSHIBA),
9967 /* FIXME: the entry below breaks Toshiba A100 (model=auto works!)
9968 * Any other models that need this preset?
9970 /* SND_PCI_QUIRK(0x1179, 0xff10, "Toshiba", ALC861_TOSHIBA), */
9971 SND_PCI_QUIRK(0x1584, 0x9072, "Uniwill m31", ALC861_UNIWILL_M31),
9972 SND_PCI_QUIRK(0x1584, 0x9075, "Uniwill", ALC861_UNIWILL_M31),
9973 SND_PCI_QUIRK(0x1584, 0x2b01, "Uniwill X40AIx", ALC861_UNIWILL_M31),
9974 SND_PCI_QUIRK(0x1849, 0x0660, "Asrock 939SLI32", ALC660_3ST),
9975 SND_PCI_QUIRK(0x8086, 0xd600, "Intel", ALC861_3ST),
9976 SND_PCI_QUIRK(0x1462, 0x7254, "HP dx2200 (MSI MS-7254)", ALC861_3ST),
9977 SND_PCI_QUIRK(0x1462, 0x7297, "HP dx2250 (MSI MS-7297)", ALC861_3ST),
9981 static struct alc_config_preset alc861_presets[] = {
9983 .mixers = { alc861_3ST_mixer },
9984 .init_verbs = { alc861_threestack_init_verbs },
9985 .num_dacs = ARRAY_SIZE(alc861_dac_nids),
9986 .dac_nids = alc861_dac_nids,
9987 .num_channel_mode = ARRAY_SIZE(alc861_threestack_modes),
9988 .channel_mode = alc861_threestack_modes,
9990 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
9991 .adc_nids = alc861_adc_nids,
9992 .input_mux = &alc861_capture_source,
9994 [ALC861_3ST_DIG] = {
9995 .mixers = { alc861_base_mixer },
9996 .init_verbs = { alc861_threestack_init_verbs },
9997 .num_dacs = ARRAY_SIZE(alc861_dac_nids),
9998 .dac_nids = alc861_dac_nids,
9999 .dig_out_nid = ALC861_DIGOUT_NID,
10000 .num_channel_mode = ARRAY_SIZE(alc861_threestack_modes),
10001 .channel_mode = alc861_threestack_modes,
10003 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
10004 .adc_nids = alc861_adc_nids,
10005 .input_mux = &alc861_capture_source,
10007 [ALC861_6ST_DIG] = {
10008 .mixers = { alc861_base_mixer },
10009 .init_verbs = { alc861_base_init_verbs },
10010 .num_dacs = ARRAY_SIZE(alc861_dac_nids),
10011 .dac_nids = alc861_dac_nids,
10012 .dig_out_nid = ALC861_DIGOUT_NID,
10013 .num_channel_mode = ARRAY_SIZE(alc861_8ch_modes),
10014 .channel_mode = alc861_8ch_modes,
10015 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
10016 .adc_nids = alc861_adc_nids,
10017 .input_mux = &alc861_capture_source,
10020 .mixers = { alc861_3ST_mixer },
10021 .init_verbs = { alc861_threestack_init_verbs },
10022 .num_dacs = ARRAY_SIZE(alc660_dac_nids),
10023 .dac_nids = alc660_dac_nids,
10024 .num_channel_mode = ARRAY_SIZE(alc861_threestack_modes),
10025 .channel_mode = alc861_threestack_modes,
10027 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
10028 .adc_nids = alc861_adc_nids,
10029 .input_mux = &alc861_capture_source,
10031 [ALC861_UNIWILL_M31] = {
10032 .mixers = { alc861_uniwill_m31_mixer },
10033 .init_verbs = { alc861_uniwill_m31_init_verbs },
10034 .num_dacs = ARRAY_SIZE(alc861_dac_nids),
10035 .dac_nids = alc861_dac_nids,
10036 .dig_out_nid = ALC861_DIGOUT_NID,
10037 .num_channel_mode = ARRAY_SIZE(alc861_uniwill_m31_modes),
10038 .channel_mode = alc861_uniwill_m31_modes,
10040 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
10041 .adc_nids = alc861_adc_nids,
10042 .input_mux = &alc861_capture_source,
10044 [ALC861_TOSHIBA] = {
10045 .mixers = { alc861_toshiba_mixer },
10046 .init_verbs = { alc861_base_init_verbs,
10047 alc861_toshiba_init_verbs },
10048 .num_dacs = ARRAY_SIZE(alc861_dac_nids),
10049 .dac_nids = alc861_dac_nids,
10050 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
10051 .channel_mode = alc883_3ST_2ch_modes,
10052 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
10053 .adc_nids = alc861_adc_nids,
10054 .input_mux = &alc861_capture_source,
10055 .unsol_event = alc861_toshiba_unsol_event,
10056 .init_hook = alc861_toshiba_automute,
10059 .mixers = { alc861_asus_mixer },
10060 .init_verbs = { alc861_asus_init_verbs },
10061 .num_dacs = ARRAY_SIZE(alc861_dac_nids),
10062 .dac_nids = alc861_dac_nids,
10063 .dig_out_nid = ALC861_DIGOUT_NID,
10064 .num_channel_mode = ARRAY_SIZE(alc861_asus_modes),
10065 .channel_mode = alc861_asus_modes,
10068 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
10069 .adc_nids = alc861_adc_nids,
10070 .input_mux = &alc861_capture_source,
10072 [ALC861_ASUS_LAPTOP] = {
10073 .mixers = { alc861_toshiba_mixer, alc861_asus_laptop_mixer },
10074 .init_verbs = { alc861_asus_init_verbs,
10075 alc861_asus_laptop_init_verbs },
10076 .num_dacs = ARRAY_SIZE(alc861_dac_nids),
10077 .dac_nids = alc861_dac_nids,
10078 .dig_out_nid = ALC861_DIGOUT_NID,
10079 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
10080 .channel_mode = alc883_3ST_2ch_modes,
10082 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
10083 .adc_nids = alc861_adc_nids,
10084 .input_mux = &alc861_capture_source,
10089 static int patch_alc861(struct hda_codec *codec)
10091 struct alc_spec *spec;
10095 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
10099 codec->spec = spec;
10101 board_config = snd_hda_check_board_config(codec, ALC861_MODEL_LAST,
10105 if (board_config < 0) {
10106 printk(KERN_INFO "hda_codec: Unknown model for ALC861, "
10107 "trying auto-probe from BIOS...\n");
10108 board_config = ALC861_AUTO;
10111 if (board_config == ALC861_AUTO) {
10112 /* automatic parse from the BIOS config */
10113 err = alc861_parse_auto_config(codec);
10119 "hda_codec: Cannot set up configuration "
10120 "from BIOS. Using base mode...\n");
10121 board_config = ALC861_3ST_DIG;
10125 if (board_config != ALC861_AUTO)
10126 setup_preset(spec, &alc861_presets[board_config]);
10128 spec->stream_name_analog = "ALC861 Analog";
10129 spec->stream_analog_playback = &alc861_pcm_analog_playback;
10130 spec->stream_analog_capture = &alc861_pcm_analog_capture;
10132 spec->stream_name_digital = "ALC861 Digital";
10133 spec->stream_digital_playback = &alc861_pcm_digital_playback;
10134 spec->stream_digital_capture = &alc861_pcm_digital_capture;
10136 codec->patch_ops = alc_patch_ops;
10137 if (board_config == ALC861_AUTO)
10138 spec->init_hook = alc861_auto_init;
10139 #ifdef CONFIG_SND_HDA_POWER_SAVE
10140 if (!spec->loopback.amplist)
10141 spec->loopback.amplist = alc861_loopbacks;
10148 * ALC861-VD support
10152 * In addition, an independent DAC
10154 #define ALC861VD_DIGOUT_NID 0x06
10156 static hda_nid_t alc861vd_dac_nids[4] = {
10157 /* front, surr, clfe, side surr */
10158 0x02, 0x03, 0x04, 0x05
10161 /* dac_nids for ALC660vd are in a different order - according to
10162 * Realtek's driver.
10163 * This should probably tesult in a different mixer for 6stack models
10164 * of ALC660vd codecs, but for now there is only 3stack mixer
10165 * - and it is the same as in 861vd.
10166 * adc_nids in ALC660vd are (is) the same as in 861vd
10168 static hda_nid_t alc660vd_dac_nids[3] = {
10169 /* front, rear, clfe, rear_surr */
10173 static hda_nid_t alc861vd_adc_nids[1] = {
10179 /* FIXME: should be a matrix-type input source selection */
10180 static struct hda_input_mux alc861vd_capture_source = {
10184 { "Front Mic", 0x1 },
10190 static struct hda_input_mux alc861vd_dallas_capture_source = {
10193 { "Front Mic", 0x0 },
10194 { "ATAPI Mic", 0x1 },
10195 { "Line In", 0x5 },
10199 static struct hda_input_mux alc861vd_hp_capture_source = {
10202 { "Front Mic", 0x0 },
10203 { "ATAPI Mic", 0x1 },
10207 #define alc861vd_mux_enum_info alc_mux_enum_info
10208 #define alc861vd_mux_enum_get alc_mux_enum_get
10210 static int alc861vd_mux_enum_put(struct snd_kcontrol *kcontrol,
10211 struct snd_ctl_elem_value *ucontrol)
10213 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
10214 struct alc_spec *spec = codec->spec;
10215 const struct hda_input_mux *imux = spec->input_mux;
10216 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
10217 static hda_nid_t capture_mixers[1] = { 0x22 };
10218 hda_nid_t nid = capture_mixers[adc_idx];
10219 unsigned int *cur_val = &spec->cur_mux[adc_idx];
10220 unsigned int i, idx;
10222 idx = ucontrol->value.enumerated.item[0];
10223 if (idx >= imux->num_items)
10224 idx = imux->num_items - 1;
10225 if (*cur_val == idx)
10227 for (i = 0; i < imux->num_items; i++) {
10228 unsigned int v = (i == idx) ? 0 : HDA_AMP_MUTE;
10229 snd_hda_codec_amp_stereo(codec, nid, HDA_INPUT,
10230 imux->items[i].index,
10240 static struct hda_channel_mode alc861vd_3stack_2ch_modes[1] = {
10247 static struct hda_verb alc861vd_6stack_ch6_init[] = {
10248 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
10249 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
10250 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
10251 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
10258 static struct hda_verb alc861vd_6stack_ch8_init[] = {
10259 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
10260 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
10261 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
10262 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
10266 static struct hda_channel_mode alc861vd_6stack_modes[2] = {
10267 { 6, alc861vd_6stack_ch6_init },
10268 { 8, alc861vd_6stack_ch8_init },
10271 static struct snd_kcontrol_new alc861vd_chmode_mixer[] = {
10273 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
10274 .name = "Channel Mode",
10275 .info = alc_ch_mode_info,
10276 .get = alc_ch_mode_get,
10277 .put = alc_ch_mode_put,
10282 static struct snd_kcontrol_new alc861vd_capture_mixer[] = {
10283 HDA_CODEC_VOLUME("Capture Volume", 0x09, 0x0, HDA_INPUT),
10284 HDA_CODEC_MUTE("Capture Switch", 0x09, 0x0, HDA_INPUT),
10287 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
10288 /* The multiple "Capture Source" controls confuse alsamixer
10289 * So call somewhat different..
10290 *FIXME: the controls appear in the "playback" view!
10292 /* .name = "Capture Source", */
10293 .name = "Input Source",
10295 .info = alc861vd_mux_enum_info,
10296 .get = alc861vd_mux_enum_get,
10297 .put = alc861vd_mux_enum_put,
10302 /* Pin assignment: Front=0x14, Rear=0x15, CLFE=0x16, Side=0x17
10303 * Mic=0x18, Front Mic=0x19, Line-In=0x1a, HP=0x1b
10305 static struct snd_kcontrol_new alc861vd_6st_mixer[] = {
10306 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT),
10307 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
10309 HDA_CODEC_VOLUME("Surround Playback Volume", 0x03, 0x0, HDA_OUTPUT),
10310 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
10312 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x04, 1, 0x0,
10314 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x04, 2, 0x0,
10316 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
10317 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
10319 HDA_CODEC_VOLUME("Side Playback Volume", 0x05, 0x0, HDA_OUTPUT),
10320 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT),
10322 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
10324 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
10325 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
10326 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
10328 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
10329 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
10330 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
10332 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
10333 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
10335 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
10336 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
10338 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
10339 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
10344 static struct snd_kcontrol_new alc861vd_3st_mixer[] = {
10345 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT),
10346 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
10348 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
10350 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
10351 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
10352 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
10354 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
10355 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
10356 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
10358 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
10359 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
10361 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
10362 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
10364 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
10365 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
10370 static struct snd_kcontrol_new alc861vd_lenovo_mixer[] = {
10371 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT),
10372 /*HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),*/
10373 HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT),
10375 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
10377 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
10378 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
10379 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
10381 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
10382 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
10383 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
10385 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
10386 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
10391 /* Pin assignment: Front=0x14, HP = 0x15,
10392 * Front Mic=0x18, ATAPI Mic = 0x19, Line In = 0x1d
10394 static struct snd_kcontrol_new alc861vd_dallas_mixer[] = {
10395 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT),
10396 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
10397 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x03, 0x0, HDA_OUTPUT),
10398 HDA_BIND_MUTE("Headphone Playback Switch", 0x0d, 2, HDA_INPUT),
10399 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
10400 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
10401 HDA_CODEC_VOLUME("ATAPI Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
10402 HDA_CODEC_MUTE("ATAPI Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
10403 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x05, HDA_INPUT),
10404 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x05, HDA_INPUT),
10408 /* Pin assignment: Speaker=0x14, Line-out = 0x15,
10409 * Front Mic=0x18, ATAPI Mic = 0x19,
10411 static struct snd_kcontrol_new alc861vd_hp_mixer[] = {
10412 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT),
10413 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
10414 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x03, 0x0, HDA_OUTPUT),
10415 HDA_BIND_MUTE("Headphone Playback Switch", 0x0d, 2, HDA_INPUT),
10416 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
10417 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
10418 HDA_CODEC_VOLUME("ATAPI Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
10419 HDA_CODEC_MUTE("ATAPI Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
10425 * generic initialization of ADC, input mixers and output mixers
10427 static struct hda_verb alc861vd_volume_init_verbs[] = {
10429 * Unmute ADC0 and set the default input to mic-in
10431 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
10432 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
10434 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of
10435 * the analog-loopback mixer widget
10437 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
10438 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
10439 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
10440 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
10441 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
10442 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
10444 /* Capture mixer: unmute Mic, F-Mic, Line, CD inputs */
10445 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
10446 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
10447 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
10448 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
10451 * Set up output mixers (0x02 - 0x05)
10453 /* set vol=0 to output mixers */
10454 {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
10455 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
10456 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
10457 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
10459 /* set up input amps for analog loopback */
10460 /* Amp Indices: DAC = 0, mixer = 1 */
10461 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
10462 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
10463 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
10464 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
10465 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
10466 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
10467 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
10468 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
10474 * 3-stack pin configuration:
10475 * front = 0x14, mic/clfe = 0x18, HP = 0x19, line/surr = 0x1a, f-mic = 0x1b
10477 static struct hda_verb alc861vd_3stack_init_verbs[] = {
10479 * Set pin mode and muting
10481 /* set front pin widgets 0x14 for output */
10482 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
10483 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
10484 {0x14, AC_VERB_SET_CONNECT_SEL, 0x00},
10486 /* Mic (rear) pin: input vref at 80% */
10487 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
10488 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
10489 /* Front Mic pin: input vref at 80% */
10490 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
10491 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
10492 /* Line In pin: input */
10493 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
10494 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
10495 /* Line-2 In: Headphone output (output 0 - 0x0c) */
10496 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
10497 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
10498 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
10499 /* CD pin widget for input */
10500 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
10506 * 6-stack pin configuration:
10508 static struct hda_verb alc861vd_6stack_init_verbs[] = {
10510 * Set pin mode and muting
10512 /* set front pin widgets 0x14 for output */
10513 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
10514 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
10515 {0x14, AC_VERB_SET_CONNECT_SEL, 0x00},
10517 /* Rear Pin: output 1 (0x0d) */
10518 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
10519 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
10520 {0x15, AC_VERB_SET_CONNECT_SEL, 0x01},
10521 /* CLFE Pin: output 2 (0x0e) */
10522 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
10523 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
10524 {0x16, AC_VERB_SET_CONNECT_SEL, 0x02},
10525 /* Side Pin: output 3 (0x0f) */
10526 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
10527 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
10528 {0x17, AC_VERB_SET_CONNECT_SEL, 0x03},
10530 /* Mic (rear) pin: input vref at 80% */
10531 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
10532 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
10533 /* Front Mic pin: input vref at 80% */
10534 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
10535 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
10536 /* Line In pin: input */
10537 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
10538 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
10539 /* Line-2 In: Headphone output (output 0 - 0x0c) */
10540 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
10541 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
10542 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
10543 /* CD pin widget for input */
10544 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
10549 static struct hda_verb alc861vd_eapd_verbs[] = {
10550 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 2},
10554 static struct hda_verb alc861vd_lenovo_unsol_verbs[] = {
10555 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
10556 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
10557 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)},
10558 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
10559 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_MIC_EVENT},
10563 /* toggle speaker-output according to the hp-jack state */
10564 static void alc861vd_lenovo_hp_automute(struct hda_codec *codec)
10566 unsigned int present;
10567 unsigned char bits;
10569 present = snd_hda_codec_read(codec, 0x1b, 0,
10570 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
10571 bits = present ? HDA_AMP_MUTE : 0;
10572 snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0,
10573 HDA_AMP_MUTE, bits);
10576 static void alc861vd_lenovo_mic_automute(struct hda_codec *codec)
10578 unsigned int present;
10579 unsigned char bits;
10581 present = snd_hda_codec_read(codec, 0x18, 0,
10582 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
10583 bits = present ? HDA_AMP_MUTE : 0;
10584 snd_hda_codec_amp_stereo(codec, 0x0b, HDA_INPUT, 1,
10585 HDA_AMP_MUTE, bits);
10588 static void alc861vd_lenovo_automute(struct hda_codec *codec)
10590 alc861vd_lenovo_hp_automute(codec);
10591 alc861vd_lenovo_mic_automute(codec);
10594 static void alc861vd_lenovo_unsol_event(struct hda_codec *codec,
10597 switch (res >> 26) {
10598 case ALC880_HP_EVENT:
10599 alc861vd_lenovo_hp_automute(codec);
10601 case ALC880_MIC_EVENT:
10602 alc861vd_lenovo_mic_automute(codec);
10607 static struct hda_verb alc861vd_dallas_verbs[] = {
10608 {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
10609 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
10610 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
10611 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
10613 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
10614 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
10615 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
10616 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
10617 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
10618 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
10619 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
10620 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
10622 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
10623 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
10624 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
10625 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
10626 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
10627 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
10628 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
10629 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
10631 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF50},
10632 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
10633 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF50},
10634 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
10635 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
10636 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
10637 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
10638 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
10640 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
10641 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
10642 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
10643 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
10645 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
10646 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
10647 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
10652 /* toggle speaker-output according to the hp-jack state */
10653 static void alc861vd_dallas_automute(struct hda_codec *codec)
10655 unsigned int present;
10657 present = snd_hda_codec_read(codec, 0x15, 0,
10658 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
10659 snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0,
10660 HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0);
10663 static void alc861vd_dallas_unsol_event(struct hda_codec *codec, unsigned int res)
10665 if ((res >> 26) == ALC880_HP_EVENT)
10666 alc861vd_dallas_automute(codec);
10669 #ifdef CONFIG_SND_HDA_POWER_SAVE
10670 #define alc861vd_loopbacks alc880_loopbacks
10673 /* pcm configuration: identiacal with ALC880 */
10674 #define alc861vd_pcm_analog_playback alc880_pcm_analog_playback
10675 #define alc861vd_pcm_analog_capture alc880_pcm_analog_capture
10676 #define alc861vd_pcm_digital_playback alc880_pcm_digital_playback
10677 #define alc861vd_pcm_digital_capture alc880_pcm_digital_capture
10680 * configuration and preset
10682 static const char *alc861vd_models[ALC861VD_MODEL_LAST] = {
10683 [ALC660VD_3ST] = "3stack-660",
10684 [ALC660VD_3ST_DIG] = "3stack-660-digout",
10685 [ALC861VD_3ST] = "3stack",
10686 [ALC861VD_3ST_DIG] = "3stack-digout",
10687 [ALC861VD_6ST_DIG] = "6stack-digout",
10688 [ALC861VD_LENOVO] = "lenovo",
10689 [ALC861VD_DALLAS] = "dallas",
10690 [ALC861VD_HP] = "hp",
10691 [ALC861VD_AUTO] = "auto",
10694 static struct snd_pci_quirk alc861vd_cfg_tbl[] = {
10695 SND_PCI_QUIRK(0x1043, 0x12e2, "Asus z35m", ALC660VD_3ST),
10696 SND_PCI_QUIRK(0x1043, 0x1339, "Asus G1", ALC660VD_3ST),
10697 SND_PCI_QUIRK(0x1043, 0x81e7, "ASUS", ALC660VD_3ST_DIG),
10698 SND_PCI_QUIRK(0x10de, 0x03f0, "Realtek ALC660 demo", ALC660VD_3ST),
10699 SND_PCI_QUIRK(0x1019, 0xa88d, "Realtek ALC660 demo", ALC660VD_3ST),
10701 /*SND_PCI_QUIRK(0x1179, 0xff00, "DALLAS", ALC861VD_DALLAS),*/ /*lenovo*/
10702 SND_PCI_QUIRK(0x1179, 0xff01, "DALLAS", ALC861VD_DALLAS),
10703 SND_PCI_QUIRK(0x17aa, 0x3802, "Lenovo 3000 C200", ALC861VD_LENOVO),
10704 SND_PCI_QUIRK(0x17aa, 0x2066, "Lenovo", ALC861VD_LENOVO),
10705 SND_PCI_QUIRK(0x1179, 0xff00, "Toshiba A135", ALC861VD_LENOVO),
10706 SND_PCI_QUIRK(0x1179, 0xff03, "Toshiba P205", ALC861VD_LENOVO),
10707 SND_PCI_QUIRK(0x1565, 0x820d, "Biostar NF61S SE", ALC861VD_6ST_DIG),
10708 SND_PCI_QUIRK(0x1849, 0x0862, "ASRock K8NF6G-VSTA", ALC861VD_6ST_DIG),
10709 SND_PCI_QUIRK(0x103c, 0x30bf, "HP TX1000", ALC861VD_HP),
10713 static struct alc_config_preset alc861vd_presets[] = {
10715 .mixers = { alc861vd_3st_mixer },
10716 .init_verbs = { alc861vd_volume_init_verbs,
10717 alc861vd_3stack_init_verbs },
10718 .num_dacs = ARRAY_SIZE(alc660vd_dac_nids),
10719 .dac_nids = alc660vd_dac_nids,
10720 .num_adc_nids = ARRAY_SIZE(alc861vd_adc_nids),
10721 .adc_nids = alc861vd_adc_nids,
10722 .num_channel_mode = ARRAY_SIZE(alc861vd_3stack_2ch_modes),
10723 .channel_mode = alc861vd_3stack_2ch_modes,
10724 .input_mux = &alc861vd_capture_source,
10726 [ALC660VD_3ST_DIG] = {
10727 .mixers = { alc861vd_3st_mixer },
10728 .init_verbs = { alc861vd_volume_init_verbs,
10729 alc861vd_3stack_init_verbs },
10730 .num_dacs = ARRAY_SIZE(alc660vd_dac_nids),
10731 .dac_nids = alc660vd_dac_nids,
10732 .dig_out_nid = ALC861VD_DIGOUT_NID,
10733 .num_adc_nids = ARRAY_SIZE(alc861vd_adc_nids),
10734 .adc_nids = alc861vd_adc_nids,
10735 .num_channel_mode = ARRAY_SIZE(alc861vd_3stack_2ch_modes),
10736 .channel_mode = alc861vd_3stack_2ch_modes,
10737 .input_mux = &alc861vd_capture_source,
10740 .mixers = { alc861vd_3st_mixer },
10741 .init_verbs = { alc861vd_volume_init_verbs,
10742 alc861vd_3stack_init_verbs },
10743 .num_dacs = ARRAY_SIZE(alc861vd_dac_nids),
10744 .dac_nids = alc861vd_dac_nids,
10745 .num_channel_mode = ARRAY_SIZE(alc861vd_3stack_2ch_modes),
10746 .channel_mode = alc861vd_3stack_2ch_modes,
10747 .input_mux = &alc861vd_capture_source,
10749 [ALC861VD_3ST_DIG] = {
10750 .mixers = { alc861vd_3st_mixer },
10751 .init_verbs = { alc861vd_volume_init_verbs,
10752 alc861vd_3stack_init_verbs },
10753 .num_dacs = ARRAY_SIZE(alc861vd_dac_nids),
10754 .dac_nids = alc861vd_dac_nids,
10755 .dig_out_nid = ALC861VD_DIGOUT_NID,
10756 .num_channel_mode = ARRAY_SIZE(alc861vd_3stack_2ch_modes),
10757 .channel_mode = alc861vd_3stack_2ch_modes,
10758 .input_mux = &alc861vd_capture_source,
10760 [ALC861VD_6ST_DIG] = {
10761 .mixers = { alc861vd_6st_mixer, alc861vd_chmode_mixer },
10762 .init_verbs = { alc861vd_volume_init_verbs,
10763 alc861vd_6stack_init_verbs },
10764 .num_dacs = ARRAY_SIZE(alc861vd_dac_nids),
10765 .dac_nids = alc861vd_dac_nids,
10766 .dig_out_nid = ALC861VD_DIGOUT_NID,
10767 .num_channel_mode = ARRAY_SIZE(alc861vd_6stack_modes),
10768 .channel_mode = alc861vd_6stack_modes,
10769 .input_mux = &alc861vd_capture_source,
10771 [ALC861VD_LENOVO] = {
10772 .mixers = { alc861vd_lenovo_mixer },
10773 .init_verbs = { alc861vd_volume_init_verbs,
10774 alc861vd_3stack_init_verbs,
10775 alc861vd_eapd_verbs,
10776 alc861vd_lenovo_unsol_verbs },
10777 .num_dacs = ARRAY_SIZE(alc660vd_dac_nids),
10778 .dac_nids = alc660vd_dac_nids,
10779 .num_adc_nids = ARRAY_SIZE(alc861vd_adc_nids),
10780 .adc_nids = alc861vd_adc_nids,
10781 .num_channel_mode = ARRAY_SIZE(alc861vd_3stack_2ch_modes),
10782 .channel_mode = alc861vd_3stack_2ch_modes,
10783 .input_mux = &alc861vd_capture_source,
10784 .unsol_event = alc861vd_lenovo_unsol_event,
10785 .init_hook = alc861vd_lenovo_automute,
10787 [ALC861VD_DALLAS] = {
10788 .mixers = { alc861vd_dallas_mixer },
10789 .init_verbs = { alc861vd_dallas_verbs },
10790 .num_dacs = ARRAY_SIZE(alc861vd_dac_nids),
10791 .dac_nids = alc861vd_dac_nids,
10792 .num_adc_nids = ARRAY_SIZE(alc861vd_adc_nids),
10793 .adc_nids = alc861vd_adc_nids,
10794 .num_channel_mode = ARRAY_SIZE(alc861vd_3stack_2ch_modes),
10795 .channel_mode = alc861vd_3stack_2ch_modes,
10796 .input_mux = &alc861vd_dallas_capture_source,
10797 .unsol_event = alc861vd_dallas_unsol_event,
10798 .init_hook = alc861vd_dallas_automute,
10801 .mixers = { alc861vd_hp_mixer },
10802 .init_verbs = { alc861vd_dallas_verbs, alc861vd_eapd_verbs },
10803 .num_dacs = ARRAY_SIZE(alc861vd_dac_nids),
10804 .dac_nids = alc861vd_dac_nids,
10805 .num_adc_nids = ARRAY_SIZE(alc861vd_adc_nids),
10806 .dig_out_nid = ALC861VD_DIGOUT_NID,
10807 .adc_nids = alc861vd_adc_nids,
10808 .num_channel_mode = ARRAY_SIZE(alc861vd_3stack_2ch_modes),
10809 .channel_mode = alc861vd_3stack_2ch_modes,
10810 .input_mux = &alc861vd_hp_capture_source,
10811 .unsol_event = alc861vd_dallas_unsol_event,
10812 .init_hook = alc861vd_dallas_automute,
10817 * BIOS auto configuration
10819 static void alc861vd_auto_set_output_and_unmute(struct hda_codec *codec,
10820 hda_nid_t nid, int pin_type, int dac_idx)
10822 /* set as output */
10823 snd_hda_codec_write(codec, nid, 0,
10824 AC_VERB_SET_PIN_WIDGET_CONTROL, pin_type);
10825 snd_hda_codec_write(codec, nid, 0,
10826 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
10829 static void alc861vd_auto_init_multi_out(struct hda_codec *codec)
10831 struct alc_spec *spec = codec->spec;
10834 alc_subsystem_id(codec, 0x15, 0x1b, 0x14);
10835 for (i = 0; i <= HDA_SIDE; i++) {
10836 hda_nid_t nid = spec->autocfg.line_out_pins[i];
10837 int pin_type = get_pin_type(spec->autocfg.line_out_type);
10839 alc861vd_auto_set_output_and_unmute(codec, nid,
10845 static void alc861vd_auto_init_hp_out(struct hda_codec *codec)
10847 struct alc_spec *spec = codec->spec;
10850 pin = spec->autocfg.hp_pins[0];
10851 if (pin) /* connect to front and use dac 0 */
10852 alc861vd_auto_set_output_and_unmute(codec, pin, PIN_HP, 0);
10855 #define alc861vd_is_input_pin(nid) alc880_is_input_pin(nid)
10856 #define ALC861VD_PIN_CD_NID ALC880_PIN_CD_NID
10858 static void alc861vd_auto_init_analog_input(struct hda_codec *codec)
10860 struct alc_spec *spec = codec->spec;
10863 for (i = 0; i < AUTO_PIN_LAST; i++) {
10864 hda_nid_t nid = spec->autocfg.input_pins[i];
10865 if (alc861vd_is_input_pin(nid)) {
10866 snd_hda_codec_write(codec, nid, 0,
10867 AC_VERB_SET_PIN_WIDGET_CONTROL,
10868 i <= AUTO_PIN_FRONT_MIC ?
10869 PIN_VREF80 : PIN_IN);
10870 if (nid != ALC861VD_PIN_CD_NID)
10871 snd_hda_codec_write(codec, nid, 0,
10872 AC_VERB_SET_AMP_GAIN_MUTE,
10878 #define alc861vd_idx_to_mixer_vol(nid) ((nid) + 0x02)
10879 #define alc861vd_idx_to_mixer_switch(nid) ((nid) + 0x0c)
10881 /* add playback controls from the parsed DAC table */
10882 /* Based on ALC880 version. But ALC861VD has separate,
10883 * different NIDs for mute/unmute switch and volume control */
10884 static int alc861vd_auto_create_multi_out_ctls(struct alc_spec *spec,
10885 const struct auto_pin_cfg *cfg)
10888 static const char *chname[4] = {"Front", "Surround", "CLFE", "Side"};
10889 hda_nid_t nid_v, nid_s;
10892 for (i = 0; i < cfg->line_outs; i++) {
10893 if (!spec->multiout.dac_nids[i])
10895 nid_v = alc861vd_idx_to_mixer_vol(
10897 spec->multiout.dac_nids[i]));
10898 nid_s = alc861vd_idx_to_mixer_switch(
10900 spec->multiout.dac_nids[i]));
10904 err = add_control(spec, ALC_CTL_WIDGET_VOL,
10905 "Center Playback Volume",
10906 HDA_COMPOSE_AMP_VAL(nid_v, 1, 0,
10910 err = add_control(spec, ALC_CTL_WIDGET_VOL,
10911 "LFE Playback Volume",
10912 HDA_COMPOSE_AMP_VAL(nid_v, 2, 0,
10916 err = add_control(spec, ALC_CTL_BIND_MUTE,
10917 "Center Playback Switch",
10918 HDA_COMPOSE_AMP_VAL(nid_s, 1, 2,
10922 err = add_control(spec, ALC_CTL_BIND_MUTE,
10923 "LFE Playback Switch",
10924 HDA_COMPOSE_AMP_VAL(nid_s, 2, 2,
10929 sprintf(name, "%s Playback Volume", chname[i]);
10930 err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
10931 HDA_COMPOSE_AMP_VAL(nid_v, 3, 0,
10935 sprintf(name, "%s Playback Switch", chname[i]);
10936 err = add_control(spec, ALC_CTL_BIND_MUTE, name,
10937 HDA_COMPOSE_AMP_VAL(nid_s, 3, 2,
10946 /* add playback controls for speaker and HP outputs */
10947 /* Based on ALC880 version. But ALC861VD has separate,
10948 * different NIDs for mute/unmute switch and volume control */
10949 static int alc861vd_auto_create_extra_out(struct alc_spec *spec,
10950 hda_nid_t pin, const char *pfx)
10952 hda_nid_t nid_v, nid_s;
10959 if (alc880_is_fixed_pin(pin)) {
10960 nid_v = alc880_idx_to_dac(alc880_fixed_pin_idx(pin));
10961 /* specify the DAC as the extra output */
10962 if (!spec->multiout.hp_nid)
10963 spec->multiout.hp_nid = nid_v;
10965 spec->multiout.extra_out_nid[0] = nid_v;
10966 /* control HP volume/switch on the output mixer amp */
10967 nid_v = alc861vd_idx_to_mixer_vol(
10968 alc880_fixed_pin_idx(pin));
10969 nid_s = alc861vd_idx_to_mixer_switch(
10970 alc880_fixed_pin_idx(pin));
10972 sprintf(name, "%s Playback Volume", pfx);
10973 err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
10974 HDA_COMPOSE_AMP_VAL(nid_v, 3, 0, HDA_OUTPUT));
10977 sprintf(name, "%s Playback Switch", pfx);
10978 err = add_control(spec, ALC_CTL_BIND_MUTE, name,
10979 HDA_COMPOSE_AMP_VAL(nid_s, 3, 2, HDA_INPUT));
10982 } else if (alc880_is_multi_pin(pin)) {
10983 /* set manual connection */
10984 /* we have only a switch on HP-out PIN */
10985 sprintf(name, "%s Playback Switch", pfx);
10986 err = add_control(spec, ALC_CTL_WIDGET_MUTE, name,
10987 HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_OUTPUT));
10994 /* parse the BIOS configuration and set up the alc_spec
10995 * return 1 if successful, 0 if the proper config is not found,
10996 * or a negative error code
10997 * Based on ALC880 version - had to change it to override
10998 * alc880_auto_create_extra_out and alc880_auto_create_multi_out_ctls */
10999 static int alc861vd_parse_auto_config(struct hda_codec *codec)
11001 struct alc_spec *spec = codec->spec;
11003 static hda_nid_t alc861vd_ignore[] = { 0x1d, 0 };
11005 err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
11009 if (!spec->autocfg.line_outs)
11010 return 0; /* can't find valid BIOS pin config */
11012 err = alc880_auto_fill_dac_nids(spec, &spec->autocfg);
11015 err = alc861vd_auto_create_multi_out_ctls(spec, &spec->autocfg);
11018 err = alc861vd_auto_create_extra_out(spec,
11019 spec->autocfg.speaker_pins[0],
11023 err = alc861vd_auto_create_extra_out(spec,
11024 spec->autocfg.hp_pins[0],
11028 err = alc880_auto_create_analog_input_ctls(spec, &spec->autocfg);
11032 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
11034 if (spec->autocfg.dig_out_pin)
11035 spec->multiout.dig_out_nid = ALC861VD_DIGOUT_NID;
11037 if (spec->kctl_alloc)
11038 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
11040 spec->init_verbs[spec->num_init_verbs++]
11041 = alc861vd_volume_init_verbs;
11043 spec->num_mux_defs = 1;
11044 spec->input_mux = &spec->private_imux;
11049 /* additional initialization for auto-configuration model */
11050 static void alc861vd_auto_init(struct hda_codec *codec)
11052 alc861vd_auto_init_multi_out(codec);
11053 alc861vd_auto_init_hp_out(codec);
11054 alc861vd_auto_init_analog_input(codec);
11057 static int patch_alc861vd(struct hda_codec *codec)
11059 struct alc_spec *spec;
11060 int err, board_config;
11062 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
11066 codec->spec = spec;
11068 board_config = snd_hda_check_board_config(codec, ALC861VD_MODEL_LAST,
11072 if (board_config < 0 || board_config >= ALC861VD_MODEL_LAST) {
11073 printk(KERN_INFO "hda_codec: Unknown model for ALC660VD/"
11074 "ALC861VD, trying auto-probe from BIOS...\n");
11075 board_config = ALC861VD_AUTO;
11078 if (board_config == ALC861VD_AUTO) {
11079 /* automatic parse from the BIOS config */
11080 err = alc861vd_parse_auto_config(codec);
11086 "hda_codec: Cannot set up configuration "
11087 "from BIOS. Using base mode...\n");
11088 board_config = ALC861VD_3ST;
11092 if (board_config != ALC861VD_AUTO)
11093 setup_preset(spec, &alc861vd_presets[board_config]);
11095 spec->stream_name_analog = "ALC861VD Analog";
11096 spec->stream_analog_playback = &alc861vd_pcm_analog_playback;
11097 spec->stream_analog_capture = &alc861vd_pcm_analog_capture;
11099 spec->stream_name_digital = "ALC861VD Digital";
11100 spec->stream_digital_playback = &alc861vd_pcm_digital_playback;
11101 spec->stream_digital_capture = &alc861vd_pcm_digital_capture;
11103 spec->adc_nids = alc861vd_adc_nids;
11104 spec->num_adc_nids = ARRAY_SIZE(alc861vd_adc_nids);
11106 spec->mixers[spec->num_mixers] = alc861vd_capture_mixer;
11107 spec->num_mixers++;
11109 codec->patch_ops = alc_patch_ops;
11111 if (board_config == ALC861VD_AUTO)
11112 spec->init_hook = alc861vd_auto_init;
11113 #ifdef CONFIG_SND_HDA_POWER_SAVE
11114 if (!spec->loopback.amplist)
11115 spec->loopback.amplist = alc861vd_loopbacks;
11124 * ALC662 is almost identical with ALC880 but has cleaner and more flexible
11125 * configuration. Each pin widget can choose any input DACs and a mixer.
11126 * Each ADC is connected from a mixer of all inputs. This makes possible
11127 * 6-channel independent captures.
11129 * In addition, an independent DAC for the multi-playback (not used in this
11132 #define ALC662_DIGOUT_NID 0x06
11133 #define ALC662_DIGIN_NID 0x0a
11135 static hda_nid_t alc662_dac_nids[4] = {
11136 /* front, rear, clfe, rear_surr */
11140 static hda_nid_t alc662_adc_nids[1] = {
11145 /* FIXME: should be a matrix-type input source selection */
11147 static struct hda_input_mux alc662_capture_source = {
11151 { "Front Mic", 0x1 },
11157 static struct hda_input_mux alc662_lenovo_101e_capture_source = {
11164 #define alc662_mux_enum_info alc_mux_enum_info
11165 #define alc662_mux_enum_get alc_mux_enum_get
11167 static int alc662_mux_enum_put(struct snd_kcontrol *kcontrol,
11168 struct snd_ctl_elem_value *ucontrol)
11170 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
11171 struct alc_spec *spec = codec->spec;
11172 const struct hda_input_mux *imux = spec->input_mux;
11173 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
11174 static hda_nid_t capture_mixers[2] = { 0x23, 0x22 };
11175 hda_nid_t nid = capture_mixers[adc_idx];
11176 unsigned int *cur_val = &spec->cur_mux[adc_idx];
11177 unsigned int i, idx;
11179 idx = ucontrol->value.enumerated.item[0];
11180 if (idx >= imux->num_items)
11181 idx = imux->num_items - 1;
11182 if (*cur_val == idx)
11184 for (i = 0; i < imux->num_items; i++) {
11185 unsigned int v = (i == idx) ? 0 : HDA_AMP_MUTE;
11186 snd_hda_codec_amp_stereo(codec, nid, HDA_INPUT,
11187 imux->items[i].index,
11196 static struct hda_channel_mode alc662_3ST_2ch_modes[1] = {
11203 static struct hda_verb alc662_3ST_ch2_init[] = {
11204 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
11205 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
11206 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
11207 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
11214 static struct hda_verb alc662_3ST_ch6_init[] = {
11215 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
11216 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
11217 { 0x18, AC_VERB_SET_CONNECT_SEL, 0x02 },
11218 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
11219 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
11220 { 0x1a, AC_VERB_SET_CONNECT_SEL, 0x01 },
11224 static struct hda_channel_mode alc662_3ST_6ch_modes[2] = {
11225 { 2, alc662_3ST_ch2_init },
11226 { 6, alc662_3ST_ch6_init },
11232 static struct hda_verb alc662_sixstack_ch6_init[] = {
11233 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
11234 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
11235 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
11242 static struct hda_verb alc662_sixstack_ch8_init[] = {
11243 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
11244 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
11245 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
11249 static struct hda_channel_mode alc662_5stack_modes[2] = {
11250 { 2, alc662_sixstack_ch6_init },
11251 { 6, alc662_sixstack_ch8_init },
11254 /* Pin assignment: Front=0x14, Rear=0x15, CLFE=0x16, Side=0x17
11255 * Mic=0x18, Front Mic=0x19, Line-In=0x1a, HP=0x1b
11258 static struct snd_kcontrol_new alc662_base_mixer[] = {
11259 /* output mixer control */
11260 HDA_CODEC_VOLUME("Front Playback Volume", 0x2, 0x0, HDA_OUTPUT),
11261 HDA_CODEC_MUTE("Front Playback Switch", 0x02, 0x0, HDA_OUTPUT),
11262 HDA_CODEC_VOLUME("Surround Playback Volume", 0x3, 0x0, HDA_OUTPUT),
11263 HDA_CODEC_MUTE("Surround Playback Switch", 0x03, 0x0, HDA_OUTPUT),
11264 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x04, 1, 0x0, HDA_OUTPUT),
11265 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x04, 2, 0x0, HDA_OUTPUT),
11266 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x04, 1, 2, HDA_INPUT),
11267 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x04, 2, 2, HDA_INPUT),
11268 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
11270 /*Input mixer control */
11271 HDA_CODEC_VOLUME("CD Playback Volume", 0xb, 0x4, HDA_INPUT),
11272 HDA_CODEC_MUTE("CD Playback Switch", 0xb, 0x4, HDA_INPUT),
11273 HDA_CODEC_VOLUME("Line Playback Volume", 0xb, 0x02, HDA_INPUT),
11274 HDA_CODEC_MUTE("Line Playback Switch", 0xb, 0x02, HDA_INPUT),
11275 HDA_CODEC_VOLUME("Mic Playback Volume", 0xb, 0x0, HDA_INPUT),
11276 HDA_CODEC_MUTE("Mic Playback Switch", 0xb, 0x0, HDA_INPUT),
11277 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0xb, 0x01, HDA_INPUT),
11278 HDA_CODEC_MUTE("Front Mic Playback Switch", 0xb, 0x01, HDA_INPUT),
11280 /* Capture mixer control */
11281 HDA_CODEC_VOLUME("Capture Volume", 0x09, 0x0, HDA_INPUT),
11282 HDA_CODEC_MUTE("Capture Switch", 0x09, 0x0, HDA_INPUT),
11284 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
11285 .name = "Capture Source",
11287 .info = alc_mux_enum_info,
11288 .get = alc_mux_enum_get,
11289 .put = alc_mux_enum_put,
11294 static struct snd_kcontrol_new alc662_3ST_2ch_mixer[] = {
11295 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT),
11296 HDA_BIND_MUTE("Front Playback Switch", 0x02, 2, HDA_INPUT),
11297 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
11298 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
11299 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
11300 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
11301 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
11302 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
11303 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
11304 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
11305 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
11306 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
11307 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
11308 HDA_CODEC_VOLUME("Capture Volume", 0x09, 0x0, HDA_INPUT),
11309 HDA_CODEC_MUTE("Capture Switch", 0x09, 0x0, HDA_INPUT),
11311 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
11312 /* .name = "Capture Source", */
11313 .name = "Input Source",
11315 .info = alc662_mux_enum_info,
11316 .get = alc662_mux_enum_get,
11317 .put = alc662_mux_enum_put,
11322 static struct snd_kcontrol_new alc662_3ST_6ch_mixer[] = {
11323 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT),
11324 HDA_BIND_MUTE("Front Playback Switch", 0x02, 2, HDA_INPUT),
11325 HDA_CODEC_VOLUME("Surround Playback Volume", 0x03, 0x0, HDA_OUTPUT),
11326 HDA_BIND_MUTE("Surround Playback Switch", 0x03, 2, HDA_INPUT),
11327 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x04, 1, 0x0, HDA_OUTPUT),
11328 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x04, 2, 0x0, HDA_OUTPUT),
11329 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x04, 1, 2, HDA_INPUT),
11330 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x04, 2, 2, HDA_INPUT),
11331 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
11332 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
11333 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
11334 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
11335 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
11336 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
11337 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
11338 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
11339 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
11340 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
11341 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
11342 HDA_CODEC_VOLUME("Capture Volume", 0x09, 0x0, HDA_INPUT),
11343 HDA_CODEC_MUTE("Capture Switch", 0x09, 0x0, HDA_INPUT),
11345 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
11346 /* .name = "Capture Source", */
11347 .name = "Input Source",
11349 .info = alc662_mux_enum_info,
11350 .get = alc662_mux_enum_get,
11351 .put = alc662_mux_enum_put,
11356 static struct snd_kcontrol_new alc662_lenovo_101e_mixer[] = {
11357 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT),
11358 HDA_BIND_MUTE("Front Playback Switch", 0x02, 2, HDA_INPUT),
11359 HDA_CODEC_VOLUME("iSpeaker Playback Volume", 0x03, 0x0, HDA_OUTPUT),
11360 HDA_BIND_MUTE("iSpeaker Playback Switch", 0x03, 2, HDA_INPUT),
11361 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
11362 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
11363 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
11364 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
11365 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
11366 HDA_CODEC_VOLUME("Capture Volume", 0x09, 0x0, HDA_INPUT),
11367 HDA_CODEC_MUTE("Capture Switch", 0x09, 0x0, HDA_INPUT),
11369 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
11370 /* .name = "Capture Source", */
11371 .name = "Input Source",
11373 .info = alc662_mux_enum_info,
11374 .get = alc662_mux_enum_get,
11375 .put = alc662_mux_enum_put,
11380 static struct snd_kcontrol_new alc662_chmode_mixer[] = {
11382 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
11383 .name = "Channel Mode",
11384 .info = alc_ch_mode_info,
11385 .get = alc_ch_mode_get,
11386 .put = alc_ch_mode_put,
11391 static struct hda_verb alc662_init_verbs[] = {
11392 /* ADC: mute amp left and right */
11393 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
11394 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
11395 /* Front mixer: unmute input/output amp left and right (volume = 0) */
11397 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
11398 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
11399 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
11400 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
11401 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
11403 {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
11404 {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
11405 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
11406 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
11407 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
11408 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
11410 /* Front Pin: output 0 (0x0c) */
11411 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
11412 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
11414 /* Rear Pin: output 1 (0x0d) */
11415 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
11416 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
11418 /* CLFE Pin: output 2 (0x0e) */
11419 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
11420 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
11422 /* Mic (rear) pin: input vref at 80% */
11423 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
11424 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
11425 /* Front Mic pin: input vref at 80% */
11426 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
11427 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
11428 /* Line In pin: input */
11429 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
11430 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
11431 /* Line-2 In: Headphone output (output 0 - 0x0c) */
11432 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
11433 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
11434 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
11435 /* CD pin widget for input */
11436 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
11438 /* FIXME: use matrix-type input source selection */
11439 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
11441 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
11442 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
11443 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
11444 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
11448 static struct hda_verb alc662_sue_init_verbs[] = {
11449 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|ALC880_FRONT_EVENT},
11450 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|ALC880_HP_EVENT},
11455 * generic initialization of ADC, input mixers and output mixers
11457 static struct hda_verb alc662_auto_init_verbs[] = {
11459 * Unmute ADC and set the default input to mic-in
11461 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
11462 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
11464 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
11466 * Note: PASD motherboards uses the Line In 2 as the input for front
11467 * panel mic (mic 2)
11469 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
11470 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
11471 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
11472 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
11473 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
11474 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
11477 * Set up output mixers (0x0c - 0x0f)
11479 /* set vol=0 to output mixers */
11480 {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
11481 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
11482 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
11484 /* set up input amps for analog loopback */
11485 /* Amp Indices: DAC = 0, mixer = 1 */
11486 {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
11487 {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
11488 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
11489 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
11490 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
11491 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
11494 /* FIXME: use matrix-type input source selection */
11495 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
11497 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
11498 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
11502 /* capture mixer elements */
11503 static struct snd_kcontrol_new alc662_capture_mixer[] = {
11504 HDA_CODEC_VOLUME("Capture Volume", 0x09, 0x0, HDA_INPUT),
11505 HDA_CODEC_MUTE("Capture Switch", 0x09, 0x0, HDA_INPUT),
11507 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
11508 /* The multiple "Capture Source" controls confuse alsamixer
11509 * So call somewhat different..
11510 * FIXME: the controls appear in the "playback" view!
11512 /* .name = "Capture Source", */
11513 .name = "Input Source",
11515 .info = alc882_mux_enum_info,
11516 .get = alc882_mux_enum_get,
11517 .put = alc882_mux_enum_put,
11522 static void alc662_lenovo_101e_ispeaker_automute(struct hda_codec *codec)
11524 unsigned int present;
11525 unsigned char bits;
11527 present = snd_hda_codec_read(codec, 0x14, 0,
11528 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
11529 bits = present ? HDA_AMP_MUTE : 0;
11530 snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0,
11531 HDA_AMP_MUTE, bits);
11534 static void alc662_lenovo_101e_all_automute(struct hda_codec *codec)
11536 unsigned int present;
11537 unsigned char bits;
11539 present = snd_hda_codec_read(codec, 0x1b, 0,
11540 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
11541 bits = present ? HDA_AMP_MUTE : 0;
11542 snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0,
11543 HDA_AMP_MUTE, bits);
11544 snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0,
11545 HDA_AMP_MUTE, bits);
11548 static void alc662_lenovo_101e_unsol_event(struct hda_codec *codec,
11551 if ((res >> 26) == ALC880_HP_EVENT)
11552 alc662_lenovo_101e_all_automute(codec);
11553 if ((res >> 26) == ALC880_FRONT_EVENT)
11554 alc662_lenovo_101e_ispeaker_automute(codec);
11557 #ifdef CONFIG_SND_HDA_POWER_SAVE
11558 #define alc662_loopbacks alc880_loopbacks
11562 /* pcm configuration: identiacal with ALC880 */
11563 #define alc662_pcm_analog_playback alc880_pcm_analog_playback
11564 #define alc662_pcm_analog_capture alc880_pcm_analog_capture
11565 #define alc662_pcm_digital_playback alc880_pcm_digital_playback
11566 #define alc662_pcm_digital_capture alc880_pcm_digital_capture
11569 * configuration and preset
11571 static const char *alc662_models[ALC662_MODEL_LAST] = {
11572 [ALC662_3ST_2ch_DIG] = "3stack-dig",
11573 [ALC662_3ST_6ch_DIG] = "3stack-6ch-dig",
11574 [ALC662_3ST_6ch] = "3stack-6ch",
11575 [ALC662_5ST_DIG] = "6stack-dig",
11576 [ALC662_LENOVO_101E] = "lenovo-101e",
11577 [ALC662_AUTO] = "auto",
11580 static struct snd_pci_quirk alc662_cfg_tbl[] = {
11581 SND_PCI_QUIRK(0x17aa, 0x101e, "Lenovo", ALC662_LENOVO_101E),
11585 static struct alc_config_preset alc662_presets[] = {
11586 [ALC662_3ST_2ch_DIG] = {
11587 .mixers = { alc662_3ST_2ch_mixer },
11588 .init_verbs = { alc662_init_verbs },
11589 .num_dacs = ARRAY_SIZE(alc662_dac_nids),
11590 .dac_nids = alc662_dac_nids,
11591 .dig_out_nid = ALC662_DIGOUT_NID,
11592 .num_adc_nids = ARRAY_SIZE(alc662_adc_nids),
11593 .adc_nids = alc662_adc_nids,
11594 .dig_in_nid = ALC662_DIGIN_NID,
11595 .num_channel_mode = ARRAY_SIZE(alc662_3ST_2ch_modes),
11596 .channel_mode = alc662_3ST_2ch_modes,
11597 .input_mux = &alc662_capture_source,
11599 [ALC662_3ST_6ch_DIG] = {
11600 .mixers = { alc662_3ST_6ch_mixer, alc662_chmode_mixer },
11601 .init_verbs = { alc662_init_verbs },
11602 .num_dacs = ARRAY_SIZE(alc662_dac_nids),
11603 .dac_nids = alc662_dac_nids,
11604 .dig_out_nid = ALC662_DIGOUT_NID,
11605 .num_adc_nids = ARRAY_SIZE(alc662_adc_nids),
11606 .adc_nids = alc662_adc_nids,
11607 .dig_in_nid = ALC662_DIGIN_NID,
11608 .num_channel_mode = ARRAY_SIZE(alc662_3ST_6ch_modes),
11609 .channel_mode = alc662_3ST_6ch_modes,
11611 .input_mux = &alc662_capture_source,
11613 [ALC662_3ST_6ch] = {
11614 .mixers = { alc662_3ST_6ch_mixer, alc662_chmode_mixer },
11615 .init_verbs = { alc662_init_verbs },
11616 .num_dacs = ARRAY_SIZE(alc662_dac_nids),
11617 .dac_nids = alc662_dac_nids,
11618 .num_adc_nids = ARRAY_SIZE(alc662_adc_nids),
11619 .adc_nids = alc662_adc_nids,
11620 .num_channel_mode = ARRAY_SIZE(alc662_3ST_6ch_modes),
11621 .channel_mode = alc662_3ST_6ch_modes,
11623 .input_mux = &alc662_capture_source,
11625 [ALC662_5ST_DIG] = {
11626 .mixers = { alc662_base_mixer, alc662_chmode_mixer },
11627 .init_verbs = { alc662_init_verbs },
11628 .num_dacs = ARRAY_SIZE(alc662_dac_nids),
11629 .dac_nids = alc662_dac_nids,
11630 .dig_out_nid = ALC662_DIGOUT_NID,
11631 .num_adc_nids = ARRAY_SIZE(alc662_adc_nids),
11632 .adc_nids = alc662_adc_nids,
11633 .dig_in_nid = ALC662_DIGIN_NID,
11634 .num_channel_mode = ARRAY_SIZE(alc662_5stack_modes),
11635 .channel_mode = alc662_5stack_modes,
11636 .input_mux = &alc662_capture_source,
11638 [ALC662_LENOVO_101E] = {
11639 .mixers = { alc662_lenovo_101e_mixer },
11640 .init_verbs = { alc662_init_verbs, alc662_sue_init_verbs },
11641 .num_dacs = ARRAY_SIZE(alc662_dac_nids),
11642 .dac_nids = alc662_dac_nids,
11643 .num_adc_nids = ARRAY_SIZE(alc662_adc_nids),
11644 .adc_nids = alc662_adc_nids,
11645 .num_channel_mode = ARRAY_SIZE(alc662_3ST_2ch_modes),
11646 .channel_mode = alc662_3ST_2ch_modes,
11647 .input_mux = &alc662_lenovo_101e_capture_source,
11648 .unsol_event = alc662_lenovo_101e_unsol_event,
11649 .init_hook = alc662_lenovo_101e_all_automute,
11656 * BIOS auto configuration
11659 /* add playback controls from the parsed DAC table */
11660 static int alc662_auto_create_multi_out_ctls(struct alc_spec *spec,
11661 const struct auto_pin_cfg *cfg)
11664 static const char *chname[4] = {
11665 "Front", "Surround", NULL /*CLFE*/, "Side"
11670 for (i = 0; i < cfg->line_outs; i++) {
11671 if (!spec->multiout.dac_nids[i])
11673 nid = alc880_idx_to_mixer(i);
11676 err = add_control(spec, ALC_CTL_WIDGET_VOL,
11677 "Center Playback Volume",
11678 HDA_COMPOSE_AMP_VAL(nid, 1, 0,
11682 err = add_control(spec, ALC_CTL_WIDGET_VOL,
11683 "LFE Playback Volume",
11684 HDA_COMPOSE_AMP_VAL(nid, 2, 0,
11688 err = add_control(spec, ALC_CTL_BIND_MUTE,
11689 "Center Playback Switch",
11690 HDA_COMPOSE_AMP_VAL(nid, 1, 2,
11694 err = add_control(spec, ALC_CTL_BIND_MUTE,
11695 "LFE Playback Switch",
11696 HDA_COMPOSE_AMP_VAL(nid, 2, 2,
11701 sprintf(name, "%s Playback Volume", chname[i]);
11702 err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
11703 HDA_COMPOSE_AMP_VAL(nid, 3, 0,
11707 sprintf(name, "%s Playback Switch", chname[i]);
11708 err = add_control(spec, ALC_CTL_BIND_MUTE, name,
11709 HDA_COMPOSE_AMP_VAL(nid, 3, 2,
11718 /* add playback controls for speaker and HP outputs */
11719 static int alc662_auto_create_extra_out(struct alc_spec *spec, hda_nid_t pin,
11729 if (alc880_is_fixed_pin(pin)) {
11730 nid = alc880_idx_to_dac(alc880_fixed_pin_idx(pin));
11731 /* printk("DAC nid=%x\n",nid); */
11732 /* specify the DAC as the extra output */
11733 if (!spec->multiout.hp_nid)
11734 spec->multiout.hp_nid = nid;
11736 spec->multiout.extra_out_nid[0] = nid;
11737 /* control HP volume/switch on the output mixer amp */
11738 nid = alc880_idx_to_dac(alc880_fixed_pin_idx(pin));
11739 sprintf(name, "%s Playback Volume", pfx);
11740 err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
11741 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT));
11744 sprintf(name, "%s Playback Switch", pfx);
11745 err = add_control(spec, ALC_CTL_BIND_MUTE, name,
11746 HDA_COMPOSE_AMP_VAL(nid, 3, 2, HDA_INPUT));
11749 } else if (alc880_is_multi_pin(pin)) {
11750 /* set manual connection */
11751 /* we have only a switch on HP-out PIN */
11752 sprintf(name, "%s Playback Switch", pfx);
11753 err = add_control(spec, ALC_CTL_WIDGET_MUTE, name,
11754 HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_OUTPUT));
11761 /* create playback/capture controls for input pins */
11762 static int alc662_auto_create_analog_input_ctls(struct alc_spec *spec,
11763 const struct auto_pin_cfg *cfg)
11765 struct hda_input_mux *imux = &spec->private_imux;
11768 for (i = 0; i < AUTO_PIN_LAST; i++) {
11769 if (alc880_is_input_pin(cfg->input_pins[i])) {
11770 idx = alc880_input_pin_idx(cfg->input_pins[i]);
11771 err = new_analog_input(spec, cfg->input_pins[i],
11772 auto_pin_cfg_labels[i],
11776 imux->items[imux->num_items].label =
11777 auto_pin_cfg_labels[i];
11778 imux->items[imux->num_items].index =
11779 alc880_input_pin_idx(cfg->input_pins[i]);
11786 static void alc662_auto_set_output_and_unmute(struct hda_codec *codec,
11787 hda_nid_t nid, int pin_type,
11790 /* set as output */
11791 snd_hda_codec_write(codec, nid, 0,
11792 AC_VERB_SET_PIN_WIDGET_CONTROL, pin_type);
11793 snd_hda_codec_write(codec, nid, 0,
11794 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
11795 /* need the manual connection? */
11796 if (alc880_is_multi_pin(nid)) {
11797 struct alc_spec *spec = codec->spec;
11798 int idx = alc880_multi_pin_idx(nid);
11799 snd_hda_codec_write(codec, alc880_idx_to_selector(idx), 0,
11800 AC_VERB_SET_CONNECT_SEL,
11801 alc880_dac_to_idx(spec->multiout.dac_nids[dac_idx]));
11805 static void alc662_auto_init_multi_out(struct hda_codec *codec)
11807 struct alc_spec *spec = codec->spec;
11810 for (i = 0; i <= HDA_SIDE; i++) {
11811 hda_nid_t nid = spec->autocfg.line_out_pins[i];
11812 int pin_type = get_pin_type(spec->autocfg.line_out_type);
11814 alc662_auto_set_output_and_unmute(codec, nid, pin_type,
11819 static void alc662_auto_init_hp_out(struct hda_codec *codec)
11821 struct alc_spec *spec = codec->spec;
11824 pin = spec->autocfg.hp_pins[0];
11825 if (pin) /* connect to front */
11827 alc662_auto_set_output_and_unmute(codec, pin, PIN_HP, 0);
11830 #define alc662_is_input_pin(nid) alc880_is_input_pin(nid)
11831 #define ALC662_PIN_CD_NID ALC880_PIN_CD_NID
11833 static void alc662_auto_init_analog_input(struct hda_codec *codec)
11835 struct alc_spec *spec = codec->spec;
11838 for (i = 0; i < AUTO_PIN_LAST; i++) {
11839 hda_nid_t nid = spec->autocfg.input_pins[i];
11840 if (alc662_is_input_pin(nid)) {
11841 snd_hda_codec_write(codec, nid, 0,
11842 AC_VERB_SET_PIN_WIDGET_CONTROL,
11843 (i <= AUTO_PIN_FRONT_MIC ?
11844 PIN_VREF80 : PIN_IN));
11845 if (nid != ALC662_PIN_CD_NID)
11846 snd_hda_codec_write(codec, nid, 0,
11847 AC_VERB_SET_AMP_GAIN_MUTE,
11853 static int alc662_parse_auto_config(struct hda_codec *codec)
11855 struct alc_spec *spec = codec->spec;
11857 static hda_nid_t alc662_ignore[] = { 0x1d, 0 };
11859 err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
11863 if (!spec->autocfg.line_outs)
11864 return 0; /* can't find valid BIOS pin config */
11866 err = alc880_auto_fill_dac_nids(spec, &spec->autocfg);
11869 err = alc662_auto_create_multi_out_ctls(spec, &spec->autocfg);
11872 err = alc662_auto_create_extra_out(spec,
11873 spec->autocfg.speaker_pins[0],
11877 err = alc662_auto_create_extra_out(spec, spec->autocfg.hp_pins[0],
11881 err = alc662_auto_create_analog_input_ctls(spec, &spec->autocfg);
11885 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
11887 if (spec->autocfg.dig_out_pin)
11888 spec->multiout.dig_out_nid = ALC880_DIGOUT_NID;
11890 if (spec->kctl_alloc)
11891 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
11893 spec->num_mux_defs = 1;
11894 spec->input_mux = &spec->private_imux;
11896 spec->init_verbs[spec->num_init_verbs++] = alc662_auto_init_verbs;
11897 spec->mixers[spec->num_mixers] = alc662_capture_mixer;
11898 spec->num_mixers++;
11902 /* additional initialization for auto-configuration model */
11903 static void alc662_auto_init(struct hda_codec *codec)
11905 alc662_auto_init_multi_out(codec);
11906 alc662_auto_init_hp_out(codec);
11907 alc662_auto_init_analog_input(codec);
11910 static int patch_alc662(struct hda_codec *codec)
11912 struct alc_spec *spec;
11913 int err, board_config;
11915 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
11919 codec->spec = spec;
11921 board_config = snd_hda_check_board_config(codec, ALC662_MODEL_LAST,
11924 if (board_config < 0) {
11925 printk(KERN_INFO "hda_codec: Unknown model for ALC662, "
11926 "trying auto-probe from BIOS...\n");
11927 board_config = ALC662_AUTO;
11930 if (board_config == ALC662_AUTO) {
11931 /* automatic parse from the BIOS config */
11932 err = alc662_parse_auto_config(codec);
11938 "hda_codec: Cannot set up configuration "
11939 "from BIOS. Using base mode...\n");
11940 board_config = ALC662_3ST_2ch_DIG;
11944 if (board_config != ALC662_AUTO)
11945 setup_preset(spec, &alc662_presets[board_config]);
11947 spec->stream_name_analog = "ALC662 Analog";
11948 spec->stream_analog_playback = &alc662_pcm_analog_playback;
11949 spec->stream_analog_capture = &alc662_pcm_analog_capture;
11951 spec->stream_name_digital = "ALC662 Digital";
11952 spec->stream_digital_playback = &alc662_pcm_digital_playback;
11953 spec->stream_digital_capture = &alc662_pcm_digital_capture;
11955 if (!spec->adc_nids && spec->input_mux) {
11956 spec->adc_nids = alc662_adc_nids;
11957 spec->num_adc_nids = ARRAY_SIZE(alc662_adc_nids);
11960 codec->patch_ops = alc_patch_ops;
11961 if (board_config == ALC662_AUTO)
11962 spec->init_hook = alc662_auto_init;
11963 #ifdef CONFIG_SND_HDA_POWER_SAVE
11964 if (!spec->loopback.amplist)
11965 spec->loopback.amplist = alc662_loopbacks;
11974 struct hda_codec_preset snd_hda_preset_realtek[] = {
11975 { .id = 0x10ec0260, .name = "ALC260", .patch = patch_alc260 },
11976 { .id = 0x10ec0262, .name = "ALC262", .patch = patch_alc262 },
11977 { .id = 0x10ec0268, .name = "ALC268", .patch = patch_alc268 },
11978 { .id = 0x10ec0861, .rev = 0x100340, .name = "ALC660",
11979 .patch = patch_alc861 },
11980 { .id = 0x10ec0660, .name = "ALC660-VD", .patch = patch_alc861vd },
11981 { .id = 0x10ec0861, .name = "ALC861", .patch = patch_alc861 },
11982 { .id = 0x10ec0862, .name = "ALC861-VD", .patch = patch_alc861vd },
11983 { .id = 0x10ec0662, .rev = 0x100002, .name = "ALC662 rev2",
11984 .patch = patch_alc883 },
11985 { .id = 0x10ec0662, .rev = 0x100101, .name = "ALC662 rev1",
11986 .patch = patch_alc662 },
11987 { .id = 0x10ec0880, .name = "ALC880", .patch = patch_alc880 },
11988 { .id = 0x10ec0882, .name = "ALC882", .patch = patch_alc882 },
11989 { .id = 0x10ec0883, .name = "ALC883", .patch = patch_alc883 },
11990 { .id = 0x10ec0885, .name = "ALC885", .patch = patch_alc882 },
11991 { .id = 0x10ec0888, .name = "ALC888", .patch = patch_alc883 },
11992 {} /* terminator */