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 */
173 ALC883_TARGA_2ch_DIG,
179 ALC883_LENOVO_101E_2ch,
180 ALC883_LENOVO_NB0763,
181 ALC888_LENOVO_MS7195_DIG,
190 #define GPIO_MASK 0x03
193 /* codec parameterization */
194 struct snd_kcontrol_new *mixers[5]; /* mixer arrays */
195 unsigned int num_mixers;
197 const struct hda_verb *init_verbs[5]; /* initialization verbs
201 unsigned int num_init_verbs;
203 char *stream_name_analog; /* analog PCM stream */
204 struct hda_pcm_stream *stream_analog_playback;
205 struct hda_pcm_stream *stream_analog_capture;
207 char *stream_name_digital; /* digital PCM stream */
208 struct hda_pcm_stream *stream_digital_playback;
209 struct hda_pcm_stream *stream_digital_capture;
212 struct hda_multi_out multiout; /* playback set-up
213 * max_channels, dacs must be set
214 * dig_out_nid and hp_nid are optional
218 unsigned int num_adc_nids;
220 hda_nid_t dig_in_nid; /* digital-in NID; optional */
223 unsigned int num_mux_defs;
224 const struct hda_input_mux *input_mux;
225 unsigned int cur_mux[3];
228 const struct hda_channel_mode *channel_mode;
229 int num_channel_mode;
232 /* PCM information */
233 struct hda_pcm pcm_rec[3]; /* used in alc_build_pcms() */
235 /* dynamic controls, init_verbs and input_mux */
236 struct auto_pin_cfg autocfg;
237 unsigned int num_kctl_alloc, num_kctl_used;
238 struct snd_kcontrol_new *kctl_alloc;
239 struct hda_input_mux private_imux;
240 hda_nid_t private_dac_nids[5];
243 void (*init_hook)(struct hda_codec *codec);
244 void (*unsol_event)(struct hda_codec *codec, unsigned int res);
246 /* for pin sensing */
247 unsigned int sense_updated: 1;
248 unsigned int jack_present: 1;
250 #ifdef CONFIG_SND_HDA_POWER_SAVE
251 struct hda_loopback_check loopback;
256 * configuration template - to be copied to the spec instance
258 struct alc_config_preset {
259 struct snd_kcontrol_new *mixers[5]; /* should be identical size
262 const struct hda_verb *init_verbs[5];
263 unsigned int num_dacs;
265 hda_nid_t dig_out_nid; /* optional */
266 hda_nid_t hp_nid; /* optional */
267 unsigned int num_adc_nids;
269 hda_nid_t dig_in_nid;
270 unsigned int num_channel_mode;
271 const struct hda_channel_mode *channel_mode;
273 unsigned int num_mux_defs;
274 const struct hda_input_mux *input_mux;
275 void (*unsol_event)(struct hda_codec *, unsigned int);
276 void (*init_hook)(struct hda_codec *);
277 #ifdef CONFIG_SND_HDA_POWER_SAVE
278 struct hda_amp_list *loopbacks;
286 static int alc_mux_enum_info(struct snd_kcontrol *kcontrol,
287 struct snd_ctl_elem_info *uinfo)
289 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
290 struct alc_spec *spec = codec->spec;
291 unsigned int mux_idx = snd_ctl_get_ioffidx(kcontrol, &uinfo->id);
292 if (mux_idx >= spec->num_mux_defs)
294 return snd_hda_input_mux_info(&spec->input_mux[mux_idx], uinfo);
297 static int alc_mux_enum_get(struct snd_kcontrol *kcontrol,
298 struct snd_ctl_elem_value *ucontrol)
300 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
301 struct alc_spec *spec = codec->spec;
302 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
304 ucontrol->value.enumerated.item[0] = spec->cur_mux[adc_idx];
308 static int alc_mux_enum_put(struct snd_kcontrol *kcontrol,
309 struct snd_ctl_elem_value *ucontrol)
311 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
312 struct alc_spec *spec = codec->spec;
313 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
314 unsigned int mux_idx = adc_idx >= spec->num_mux_defs ? 0 : adc_idx;
315 return snd_hda_input_mux_put(codec, &spec->input_mux[mux_idx], ucontrol,
316 spec->adc_nids[adc_idx],
317 &spec->cur_mux[adc_idx]);
322 * channel mode setting
324 static int alc_ch_mode_info(struct snd_kcontrol *kcontrol,
325 struct snd_ctl_elem_info *uinfo)
327 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
328 struct alc_spec *spec = codec->spec;
329 return snd_hda_ch_mode_info(codec, uinfo, spec->channel_mode,
330 spec->num_channel_mode);
333 static int alc_ch_mode_get(struct snd_kcontrol *kcontrol,
334 struct snd_ctl_elem_value *ucontrol)
336 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
337 struct alc_spec *spec = codec->spec;
338 return snd_hda_ch_mode_get(codec, ucontrol, spec->channel_mode,
339 spec->num_channel_mode,
340 spec->multiout.max_channels);
343 static int alc_ch_mode_put(struct snd_kcontrol *kcontrol,
344 struct snd_ctl_elem_value *ucontrol)
346 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
347 struct alc_spec *spec = codec->spec;
348 int err = snd_hda_ch_mode_put(codec, ucontrol, spec->channel_mode,
349 spec->num_channel_mode,
350 &spec->multiout.max_channels);
351 if (err >= 0 && spec->need_dac_fix)
352 spec->multiout.num_dacs = spec->multiout.max_channels / 2;
357 * Control the mode of pin widget settings via the mixer. "pc" is used
358 * instead of "%" to avoid consequences of accidently treating the % as
359 * being part of a format specifier. Maximum allowed length of a value is
360 * 63 characters plus NULL terminator.
362 * Note: some retasking pin complexes seem to ignore requests for input
363 * states other than HiZ (eg: PIN_VREFxx) and revert to HiZ if any of these
364 * are requested. Therefore order this list so that this behaviour will not
365 * cause problems when mixer clients move through the enum sequentially.
366 * NIDs 0x0f and 0x10 have been observed to have this behaviour as of
369 static char *alc_pin_mode_names[] = {
370 "Mic 50pc bias", "Mic 80pc bias",
371 "Line in", "Line out", "Headphone out",
373 static unsigned char alc_pin_mode_values[] = {
374 PIN_VREF50, PIN_VREF80, PIN_IN, PIN_OUT, PIN_HP,
376 /* The control can present all 5 options, or it can limit the options based
377 * in the pin being assumed to be exclusively an input or an output pin. In
378 * addition, "input" pins may or may not process the mic bias option
379 * depending on actual widget capability (NIDs 0x0f and 0x10 don't seem to
380 * accept requests for bias as of chip versions up to March 2006) and/or
381 * wiring in the computer.
383 #define ALC_PIN_DIR_IN 0x00
384 #define ALC_PIN_DIR_OUT 0x01
385 #define ALC_PIN_DIR_INOUT 0x02
386 #define ALC_PIN_DIR_IN_NOMICBIAS 0x03
387 #define ALC_PIN_DIR_INOUT_NOMICBIAS 0x04
389 /* Info about the pin modes supported by the different pin direction modes.
390 * For each direction the minimum and maximum values are given.
392 static signed char alc_pin_mode_dir_info[5][2] = {
393 { 0, 2 }, /* ALC_PIN_DIR_IN */
394 { 3, 4 }, /* ALC_PIN_DIR_OUT */
395 { 0, 4 }, /* ALC_PIN_DIR_INOUT */
396 { 2, 2 }, /* ALC_PIN_DIR_IN_NOMICBIAS */
397 { 2, 4 }, /* ALC_PIN_DIR_INOUT_NOMICBIAS */
399 #define alc_pin_mode_min(_dir) (alc_pin_mode_dir_info[_dir][0])
400 #define alc_pin_mode_max(_dir) (alc_pin_mode_dir_info[_dir][1])
401 #define alc_pin_mode_n_items(_dir) \
402 (alc_pin_mode_max(_dir)-alc_pin_mode_min(_dir)+1)
404 static int alc_pin_mode_info(struct snd_kcontrol *kcontrol,
405 struct snd_ctl_elem_info *uinfo)
407 unsigned int item_num = uinfo->value.enumerated.item;
408 unsigned char dir = (kcontrol->private_value >> 16) & 0xff;
410 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
412 uinfo->value.enumerated.items = alc_pin_mode_n_items(dir);
414 if (item_num<alc_pin_mode_min(dir) || item_num>alc_pin_mode_max(dir))
415 item_num = alc_pin_mode_min(dir);
416 strcpy(uinfo->value.enumerated.name, alc_pin_mode_names[item_num]);
420 static int alc_pin_mode_get(struct snd_kcontrol *kcontrol,
421 struct snd_ctl_elem_value *ucontrol)
424 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
425 hda_nid_t nid = kcontrol->private_value & 0xffff;
426 unsigned char dir = (kcontrol->private_value >> 16) & 0xff;
427 long *valp = ucontrol->value.integer.value;
428 unsigned int pinctl = snd_hda_codec_read(codec, nid, 0,
429 AC_VERB_GET_PIN_WIDGET_CONTROL,
432 /* Find enumerated value for current pinctl setting */
433 i = alc_pin_mode_min(dir);
434 while (alc_pin_mode_values[i] != pinctl && i <= alc_pin_mode_max(dir))
436 *valp = i <= alc_pin_mode_max(dir) ? i: alc_pin_mode_min(dir);
440 static int alc_pin_mode_put(struct snd_kcontrol *kcontrol,
441 struct snd_ctl_elem_value *ucontrol)
444 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
445 hda_nid_t nid = kcontrol->private_value & 0xffff;
446 unsigned char dir = (kcontrol->private_value >> 16) & 0xff;
447 long val = *ucontrol->value.integer.value;
448 unsigned int pinctl = snd_hda_codec_read(codec, nid, 0,
449 AC_VERB_GET_PIN_WIDGET_CONTROL,
452 if (val < alc_pin_mode_min(dir) || val > alc_pin_mode_max(dir))
453 val = alc_pin_mode_min(dir);
455 change = pinctl != alc_pin_mode_values[val];
457 /* Set pin mode to that requested */
458 snd_hda_codec_write_cache(codec, nid, 0,
459 AC_VERB_SET_PIN_WIDGET_CONTROL,
460 alc_pin_mode_values[val]);
462 /* Also enable the retasking pin's input/output as required
463 * for the requested pin mode. Enum values of 2 or less are
466 * Dynamically switching the input/output buffers probably
467 * reduces noise slightly (particularly on input) so we'll
468 * do it. However, having both input and output buffers
469 * enabled simultaneously doesn't seem to be problematic if
470 * this turns out to be necessary in the future.
473 snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
474 HDA_AMP_MUTE, HDA_AMP_MUTE);
475 snd_hda_codec_amp_stereo(codec, nid, HDA_INPUT, 0,
478 snd_hda_codec_amp_stereo(codec, nid, HDA_INPUT, 0,
479 HDA_AMP_MUTE, HDA_AMP_MUTE);
480 snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
487 #define ALC_PIN_MODE(xname, nid, dir) \
488 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0, \
489 .info = alc_pin_mode_info, \
490 .get = alc_pin_mode_get, \
491 .put = alc_pin_mode_put, \
492 .private_value = nid | (dir<<16) }
494 /* A switch control for ALC260 GPIO pins. Multiple GPIOs can be ganged
495 * together using a mask with more than one bit set. This control is
496 * currently used only by the ALC260 test model. At this stage they are not
497 * needed for any "production" models.
499 #ifdef CONFIG_SND_DEBUG
500 #define alc_gpio_data_info snd_ctl_boolean_mono_info
502 static int alc_gpio_data_get(struct snd_kcontrol *kcontrol,
503 struct snd_ctl_elem_value *ucontrol)
505 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
506 hda_nid_t nid = kcontrol->private_value & 0xffff;
507 unsigned char mask = (kcontrol->private_value >> 16) & 0xff;
508 long *valp = ucontrol->value.integer.value;
509 unsigned int val = snd_hda_codec_read(codec, nid, 0,
510 AC_VERB_GET_GPIO_DATA, 0x00);
512 *valp = (val & mask) != 0;
515 static int alc_gpio_data_put(struct snd_kcontrol *kcontrol,
516 struct snd_ctl_elem_value *ucontrol)
519 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
520 hda_nid_t nid = kcontrol->private_value & 0xffff;
521 unsigned char mask = (kcontrol->private_value >> 16) & 0xff;
522 long val = *ucontrol->value.integer.value;
523 unsigned int gpio_data = snd_hda_codec_read(codec, nid, 0,
524 AC_VERB_GET_GPIO_DATA,
527 /* Set/unset the masked GPIO bit(s) as needed */
528 change = (val == 0 ? 0 : mask) != (gpio_data & mask);
533 snd_hda_codec_write_cache(codec, nid, 0,
534 AC_VERB_SET_GPIO_DATA, gpio_data);
538 #define ALC_GPIO_DATA_SWITCH(xname, nid, mask) \
539 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0, \
540 .info = alc_gpio_data_info, \
541 .get = alc_gpio_data_get, \
542 .put = alc_gpio_data_put, \
543 .private_value = nid | (mask<<16) }
544 #endif /* CONFIG_SND_DEBUG */
546 /* A switch control to allow the enabling of the digital IO pins on the
547 * ALC260. This is incredibly simplistic; the intention of this control is
548 * to provide something in the test model allowing digital outputs to be
549 * identified if present. If models are found which can utilise these
550 * outputs a more complete mixer control can be devised for those models if
553 #ifdef CONFIG_SND_DEBUG
554 #define alc_spdif_ctrl_info snd_ctl_boolean_mono_info
556 static int alc_spdif_ctrl_get(struct snd_kcontrol *kcontrol,
557 struct snd_ctl_elem_value *ucontrol)
559 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
560 hda_nid_t nid = kcontrol->private_value & 0xffff;
561 unsigned char mask = (kcontrol->private_value >> 16) & 0xff;
562 long *valp = ucontrol->value.integer.value;
563 unsigned int val = snd_hda_codec_read(codec, nid, 0,
564 AC_VERB_GET_DIGI_CONVERT, 0x00);
566 *valp = (val & mask) != 0;
569 static int alc_spdif_ctrl_put(struct snd_kcontrol *kcontrol,
570 struct snd_ctl_elem_value *ucontrol)
573 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
574 hda_nid_t nid = kcontrol->private_value & 0xffff;
575 unsigned char mask = (kcontrol->private_value >> 16) & 0xff;
576 long val = *ucontrol->value.integer.value;
577 unsigned int ctrl_data = snd_hda_codec_read(codec, nid, 0,
578 AC_VERB_GET_DIGI_CONVERT,
581 /* Set/unset the masked control bit(s) as needed */
582 change = (val == 0 ? 0 : mask) != (ctrl_data & mask);
587 snd_hda_codec_write_cache(codec, nid, 0, AC_VERB_SET_DIGI_CONVERT_1,
592 #define ALC_SPDIF_CTRL_SWITCH(xname, nid, mask) \
593 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = 0, \
594 .info = alc_spdif_ctrl_info, \
595 .get = alc_spdif_ctrl_get, \
596 .put = alc_spdif_ctrl_put, \
597 .private_value = nid | (mask<<16) }
598 #endif /* CONFIG_SND_DEBUG */
601 * set up from the preset table
603 static void setup_preset(struct alc_spec *spec,
604 const struct alc_config_preset *preset)
608 for (i = 0; i < ARRAY_SIZE(preset->mixers) && preset->mixers[i]; i++)
609 spec->mixers[spec->num_mixers++] = preset->mixers[i];
610 for (i = 0; i < ARRAY_SIZE(preset->init_verbs) && preset->init_verbs[i];
612 spec->init_verbs[spec->num_init_verbs++] =
613 preset->init_verbs[i];
615 spec->channel_mode = preset->channel_mode;
616 spec->num_channel_mode = preset->num_channel_mode;
617 spec->need_dac_fix = preset->need_dac_fix;
619 spec->multiout.max_channels = spec->channel_mode[0].channels;
621 spec->multiout.num_dacs = preset->num_dacs;
622 spec->multiout.dac_nids = preset->dac_nids;
623 spec->multiout.dig_out_nid = preset->dig_out_nid;
624 spec->multiout.hp_nid = preset->hp_nid;
626 spec->num_mux_defs = preset->num_mux_defs;
627 if (!spec->num_mux_defs)
628 spec->num_mux_defs = 1;
629 spec->input_mux = preset->input_mux;
631 spec->num_adc_nids = preset->num_adc_nids;
632 spec->adc_nids = preset->adc_nids;
633 spec->dig_in_nid = preset->dig_in_nid;
635 spec->unsol_event = preset->unsol_event;
636 spec->init_hook = preset->init_hook;
637 #ifdef CONFIG_SND_HDA_POWER_SAVE
638 spec->loopback.amplist = preset->loopbacks;
642 /* Enable GPIO mask and set output */
643 static struct hda_verb alc_gpio1_init_verbs[] = {
644 {0x01, AC_VERB_SET_GPIO_MASK, 0x01},
645 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
646 {0x01, AC_VERB_SET_GPIO_DATA, 0x01},
650 static struct hda_verb alc_gpio2_init_verbs[] = {
651 {0x01, AC_VERB_SET_GPIO_MASK, 0x02},
652 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x02},
653 {0x01, AC_VERB_SET_GPIO_DATA, 0x02},
657 static struct hda_verb alc_gpio3_init_verbs[] = {
658 {0x01, AC_VERB_SET_GPIO_MASK, 0x03},
659 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x03},
660 {0x01, AC_VERB_SET_GPIO_DATA, 0x03},
664 /* 32-bit subsystem ID for BIOS loading in HD Audio codec.
665 * 31 ~ 16 : Manufacture ID
667 * 7 ~ 0 : Assembly ID
668 * port-A --> pin 39/41, port-E --> pin 14/15, port-D --> pin 35/36
670 static void alc_subsystem_id(struct hda_codec *codec,
671 unsigned int porta, unsigned int porte,
674 unsigned int ass, tmp;
676 ass = codec->subsystem_id;
681 tmp = (ass & 0x38) >> 3; /* external Amp control */
684 snd_hda_sequence_write(codec, alc_gpio1_init_verbs);
687 snd_hda_sequence_write(codec, alc_gpio2_init_verbs);
690 snd_hda_sequence_write(codec, alc_gpio3_init_verbs);
693 switch (codec->vendor_id) {
699 snd_hda_codec_write(codec, 0x14, 0,
700 AC_VERB_SET_EAPD_BTLENABLE, 2);
701 snd_hda_codec_write(codec, 0x15, 0,
702 AC_VERB_SET_EAPD_BTLENABLE, 2);
706 if (ass & 4) { /* bit 2 : 0 = Desktop, 1 = Laptop */
708 tmp = (ass & 0x1800) >> 11;
710 case 0: port = porta; break;
711 case 1: port = porte; break;
712 case 2: port = portd; break;
715 snd_hda_codec_write(codec, port, 0,
716 AC_VERB_SET_EAPD_BTLENABLE,
719 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_COEF_INDEX, 7);
720 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_PROC_COEF,
721 (tmp == 5 ? 0x3040 : 0x3050));
727 * Fix-up pin default configurations
735 static void alc_fix_pincfg(struct hda_codec *codec,
736 const struct snd_pci_quirk *quirk,
737 const struct alc_pincfg **pinfix)
739 const struct alc_pincfg *cfg;
741 quirk = snd_pci_quirk_lookup(codec->bus->pci, quirk);
745 cfg = pinfix[quirk->value];
746 for (; cfg->nid; cfg++) {
749 for (i = 0; i < 4; i++) {
750 snd_hda_codec_write(codec, cfg->nid, 0,
751 AC_VERB_SET_CONFIG_DEFAULT_BYTES_0 + i,
759 * ALC880 3-stack model
761 * DAC: Front = 0x02 (0x0c), Surr = 0x05 (0x0f), CLFE = 0x04 (0x0e)
762 * Pin assignment: Front = 0x14, Line-In/Surr = 0x1a, Mic/CLFE = 0x18,
763 * F-Mic = 0x1b, HP = 0x19
766 static hda_nid_t alc880_dac_nids[4] = {
767 /* front, rear, clfe, rear_surr */
768 0x02, 0x05, 0x04, 0x03
771 static hda_nid_t alc880_adc_nids[3] = {
776 /* The datasheet says the node 0x07 is connected from inputs,
777 * but it shows zero connection in the real implementation on some devices.
778 * Note: this is a 915GAV bug, fixed on 915GLV
780 static hda_nid_t alc880_adc_nids_alt[2] = {
785 #define ALC880_DIGOUT_NID 0x06
786 #define ALC880_DIGIN_NID 0x0a
788 static struct hda_input_mux alc880_capture_source = {
792 { "Front Mic", 0x3 },
798 /* channel source setting (2/6 channel selection for 3-stack) */
800 static struct hda_verb alc880_threestack_ch2_init[] = {
801 /* set line-in to input, mute it */
802 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
803 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
804 /* set mic-in to input vref 80%, mute it */
805 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
806 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
811 static struct hda_verb alc880_threestack_ch6_init[] = {
812 /* set line-in to output, unmute it */
813 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
814 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
815 /* set mic-in to output, unmute it */
816 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
817 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
821 static struct hda_channel_mode alc880_threestack_modes[2] = {
822 { 2, alc880_threestack_ch2_init },
823 { 6, alc880_threestack_ch6_init },
826 static struct snd_kcontrol_new alc880_three_stack_mixer[] = {
827 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
828 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
829 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
830 HDA_BIND_MUTE("Surround Playback Switch", 0x0f, 2, HDA_INPUT),
831 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
832 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
833 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
834 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
835 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
836 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
837 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
838 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
839 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
840 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
841 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x3, HDA_INPUT),
842 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x3, HDA_INPUT),
843 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
844 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
845 HDA_CODEC_MUTE("Headphone Playback Switch", 0x19, 0x0, HDA_OUTPUT),
847 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
848 .name = "Channel Mode",
849 .info = alc_ch_mode_info,
850 .get = alc_ch_mode_get,
851 .put = alc_ch_mode_put,
856 /* capture mixer elements */
857 static struct snd_kcontrol_new alc880_capture_mixer[] = {
858 HDA_CODEC_VOLUME("Capture Volume", 0x07, 0x0, HDA_INPUT),
859 HDA_CODEC_MUTE("Capture Switch", 0x07, 0x0, HDA_INPUT),
860 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x08, 0x0, HDA_INPUT),
861 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x08, 0x0, HDA_INPUT),
862 HDA_CODEC_VOLUME_IDX("Capture Volume", 2, 0x09, 0x0, HDA_INPUT),
863 HDA_CODEC_MUTE_IDX("Capture Switch", 2, 0x09, 0x0, HDA_INPUT),
865 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
866 /* The multiple "Capture Source" controls confuse alsamixer
867 * So call somewhat different..
868 * FIXME: the controls appear in the "playback" view!
870 /* .name = "Capture Source", */
871 .name = "Input Source",
873 .info = alc_mux_enum_info,
874 .get = alc_mux_enum_get,
875 .put = alc_mux_enum_put,
880 /* capture mixer elements (in case NID 0x07 not available) */
881 static struct snd_kcontrol_new alc880_capture_alt_mixer[] = {
882 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
883 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
884 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
885 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
887 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
888 /* The multiple "Capture Source" controls confuse alsamixer
889 * So call somewhat different..
890 * FIXME: the controls appear in the "playback" view!
892 /* .name = "Capture Source", */
893 .name = "Input Source",
895 .info = alc_mux_enum_info,
896 .get = alc_mux_enum_get,
897 .put = alc_mux_enum_put,
905 * ALC880 5-stack model
907 * DAC: Front = 0x02 (0x0c), Surr = 0x05 (0x0f), CLFE = 0x04 (0x0d),
909 * Pin assignment: Front = 0x14, Surr = 0x17, CLFE = 0x16
910 * Line-In/Side = 0x1a, Mic = 0x18, F-Mic = 0x1b, HP = 0x19
913 /* additional mixers to alc880_three_stack_mixer */
914 static struct snd_kcontrol_new alc880_five_stack_mixer[] = {
915 HDA_CODEC_VOLUME("Side Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
916 HDA_BIND_MUTE("Side Playback Switch", 0x0d, 2, HDA_INPUT),
920 /* channel source setting (6/8 channel selection for 5-stack) */
922 static struct hda_verb alc880_fivestack_ch6_init[] = {
923 /* set line-in to input, mute it */
924 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
925 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
930 static struct hda_verb alc880_fivestack_ch8_init[] = {
931 /* set line-in to output, unmute it */
932 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
933 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
937 static struct hda_channel_mode alc880_fivestack_modes[2] = {
938 { 6, alc880_fivestack_ch6_init },
939 { 8, alc880_fivestack_ch8_init },
944 * ALC880 6-stack model
946 * DAC: Front = 0x02 (0x0c), Surr = 0x03 (0x0d), CLFE = 0x04 (0x0e),
948 * Pin assignment: Front = 0x14, Surr = 0x15, CLFE = 0x16, Side = 0x17,
949 * Mic = 0x18, F-Mic = 0x19, Line = 0x1a, HP = 0x1b
952 static hda_nid_t alc880_6st_dac_nids[4] = {
953 /* front, rear, clfe, rear_surr */
954 0x02, 0x03, 0x04, 0x05
957 static struct hda_input_mux alc880_6stack_capture_source = {
961 { "Front Mic", 0x1 },
967 /* fixed 8-channels */
968 static struct hda_channel_mode alc880_sixstack_modes[1] = {
972 static struct snd_kcontrol_new alc880_six_stack_mixer[] = {
973 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
974 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
975 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
976 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
977 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
978 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
979 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
980 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
981 HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
982 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT),
983 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
984 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
985 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
986 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
987 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
988 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
989 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
990 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
991 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
992 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
994 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
995 .name = "Channel Mode",
996 .info = alc_ch_mode_info,
997 .get = alc_ch_mode_get,
998 .put = alc_ch_mode_put,
1007 * W810 has rear IO for:
1010 * Center/LFE (DAC 04)
1013 * The system also has a pair of internal speakers, and a headphone jack.
1014 * These are both connected to Line2 on the codec, hence to DAC 02.
1016 * There is a variable resistor to control the speaker or headphone
1017 * volume. This is a hardware-only device without a software API.
1019 * Plugging headphones in will disable the internal speakers. This is
1020 * implemented in hardware, not via the driver using jack sense. In
1021 * a similar fashion, plugging into the rear socket marked "front" will
1022 * disable both the speakers and headphones.
1024 * For input, there's a microphone jack, and an "audio in" jack.
1025 * These may not do anything useful with this driver yet, because I
1026 * haven't setup any initialization verbs for these yet...
1029 static hda_nid_t alc880_w810_dac_nids[3] = {
1030 /* front, rear/surround, clfe */
1034 /* fixed 6 channels */
1035 static struct hda_channel_mode alc880_w810_modes[1] = {
1039 /* Pin assignment: Front = 0x14, Surr = 0x15, CLFE = 0x16, HP = 0x1b */
1040 static struct snd_kcontrol_new alc880_w810_base_mixer[] = {
1041 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1042 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
1043 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
1044 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
1045 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
1046 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
1047 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
1048 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
1049 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
1057 * DAC: Front = 0x02 (0x0c), HP = 0x03 (0x0d)
1058 * Pin assignment: Front = 0x14, HP = 0x15, Mic = 0x18, Mic2 = 0x19(?),
1062 static hda_nid_t alc880_z71v_dac_nids[1] = {
1065 #define ALC880_Z71V_HP_DAC 0x03
1067 /* fixed 2 channels */
1068 static struct hda_channel_mode alc880_2_jack_modes[1] = {
1072 static struct snd_kcontrol_new alc880_z71v_mixer[] = {
1073 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1074 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
1075 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
1076 HDA_BIND_MUTE("Headphone Playback Switch", 0x0d, 2, HDA_INPUT),
1077 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
1078 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
1079 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1080 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
1087 * ALC880 F1734 model
1089 * DAC: HP = 0x02 (0x0c), Front = 0x03 (0x0d)
1090 * Pin assignment: HP = 0x14, Front = 0x15, Mic = 0x18
1093 static hda_nid_t alc880_f1734_dac_nids[1] = {
1096 #define ALC880_F1734_HP_DAC 0x02
1098 static struct snd_kcontrol_new alc880_f1734_mixer[] = {
1099 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1100 HDA_BIND_MUTE("Headphone Playback Switch", 0x0c, 2, HDA_INPUT),
1101 HDA_CODEC_VOLUME("Internal Speaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
1102 HDA_BIND_MUTE("Internal Speaker Playback Switch", 0x0d, 2, HDA_INPUT),
1103 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
1104 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
1105 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1106 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
1115 * DAC: HP/Front = 0x02 (0x0c), Surr = 0x03 (0x0d), CLFE = 0x04 (0x0e)
1116 * Pin assignment: HP/Front = 0x14, Surr = 0x15, CLFE = 0x16,
1117 * Mic = 0x18, Line = 0x1a
1120 #define alc880_asus_dac_nids alc880_w810_dac_nids /* identical with w810 */
1121 #define alc880_asus_modes alc880_threestack_modes /* 2/6 channel mode */
1123 static struct snd_kcontrol_new alc880_asus_mixer[] = {
1124 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1125 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
1126 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
1127 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
1128 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
1129 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
1130 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
1131 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
1132 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
1133 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
1134 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
1135 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
1136 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1137 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
1139 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1140 .name = "Channel Mode",
1141 .info = alc_ch_mode_info,
1142 .get = alc_ch_mode_get,
1143 .put = alc_ch_mode_put,
1150 * ALC880 ASUS W1V model
1152 * DAC: HP/Front = 0x02 (0x0c), Surr = 0x03 (0x0d), CLFE = 0x04 (0x0e)
1153 * Pin assignment: HP/Front = 0x14, Surr = 0x15, CLFE = 0x16,
1154 * Mic = 0x18, Line = 0x1a, Line2 = 0x1b
1157 /* additional mixers to alc880_asus_mixer */
1158 static struct snd_kcontrol_new alc880_asus_w1v_mixer[] = {
1159 HDA_CODEC_VOLUME("Line2 Playback Volume", 0x0b, 0x03, HDA_INPUT),
1160 HDA_CODEC_MUTE("Line2 Playback Switch", 0x0b, 0x03, HDA_INPUT),
1164 /* additional mixers to alc880_asus_mixer */
1165 static struct snd_kcontrol_new alc880_pcbeep_mixer[] = {
1166 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
1167 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
1172 static struct snd_kcontrol_new alc880_tcl_s700_mixer[] = {
1173 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1174 HDA_CODEC_MUTE("Front Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
1175 HDA_CODEC_MUTE("Headphone Playback Switch", 0x14, 0x0, HDA_OUTPUT),
1176 HDA_CODEC_VOLUME("CD Playback Volume", 0x0B, 0x04, HDA_INPUT),
1177 HDA_CODEC_MUTE("CD Playback Switch", 0x0B, 0x04, HDA_INPUT),
1178 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0B, 0x0, HDA_INPUT),
1179 HDA_CODEC_MUTE("Mic Playback Switch", 0x0B, 0x0, HDA_INPUT),
1180 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
1181 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
1183 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1184 /* The multiple "Capture Source" controls confuse alsamixer
1185 * So call somewhat different..
1186 * FIXME: the controls appear in the "playback" view!
1188 /* .name = "Capture Source", */
1189 .name = "Input Source",
1191 .info = alc_mux_enum_info,
1192 .get = alc_mux_enum_get,
1193 .put = alc_mux_enum_put,
1199 static struct snd_kcontrol_new alc880_uniwill_mixer[] = {
1200 HDA_CODEC_VOLUME("HPhone Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1201 HDA_BIND_MUTE("HPhone Playback Switch", 0x0c, 2, HDA_INPUT),
1202 HDA_CODEC_VOLUME("iSpeaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
1203 HDA_BIND_MUTE("iSpeaker Playback Switch", 0x0d, 2, HDA_INPUT),
1204 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
1205 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
1206 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
1207 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
1208 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
1209 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
1210 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
1211 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
1212 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1213 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
1214 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
1215 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
1216 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
1217 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
1219 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1220 .name = "Channel Mode",
1221 .info = alc_ch_mode_info,
1222 .get = alc_ch_mode_get,
1223 .put = alc_ch_mode_put,
1228 static struct snd_kcontrol_new alc880_fujitsu_mixer[] = {
1229 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1230 HDA_BIND_MUTE("Headphone Playback Switch", 0x0c, 2, HDA_INPUT),
1231 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
1232 HDA_BIND_MUTE("Speaker Playback Switch", 0x0d, 2, HDA_INPUT),
1233 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
1234 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
1235 HDA_CODEC_VOLUME("Ext Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1236 HDA_CODEC_MUTE("Ext Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
1237 HDA_CODEC_VOLUME("Int Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
1238 HDA_CODEC_MUTE("Int Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
1242 static struct snd_kcontrol_new alc880_uniwill_p53_mixer[] = {
1243 HDA_CODEC_VOLUME("HPhone Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1244 HDA_BIND_MUTE("HPhone Playback Switch", 0x0c, 2, HDA_INPUT),
1245 HDA_CODEC_VOLUME("iSpeaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
1246 HDA_BIND_MUTE("iSpeaker Playback Switch", 0x0d, 2, HDA_INPUT),
1247 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1248 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
1253 * build control elements
1255 static int alc_build_controls(struct hda_codec *codec)
1257 struct alc_spec *spec = codec->spec;
1261 for (i = 0; i < spec->num_mixers; i++) {
1262 err = snd_hda_add_new_ctls(codec, spec->mixers[i]);
1267 if (spec->multiout.dig_out_nid) {
1268 err = snd_hda_create_spdif_out_ctls(codec,
1269 spec->multiout.dig_out_nid);
1273 if (spec->dig_in_nid) {
1274 err = snd_hda_create_spdif_in_ctls(codec, spec->dig_in_nid);
1283 * initialize the codec volumes, etc
1287 * generic initialization of ADC, input mixers and output mixers
1289 static struct hda_verb alc880_volume_init_verbs[] = {
1291 * Unmute ADC0-2 and set the default input to mic-in
1293 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
1294 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1295 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
1296 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1297 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
1298 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1300 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
1302 * Note: PASD motherboards uses the Line In 2 as the input for front
1305 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
1306 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1307 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1308 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
1309 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
1310 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
1311 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)},
1312 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)},
1315 * Set up output mixers (0x0c - 0x0f)
1317 /* set vol=0 to output mixers */
1318 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1319 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1320 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1321 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
1322 /* set up input amps for analog loopback */
1323 /* Amp Indices: DAC = 0, mixer = 1 */
1324 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1325 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1326 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1327 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1328 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1329 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1330 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
1331 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
1337 * 3-stack pin configuration:
1338 * front = 0x14, mic/clfe = 0x18, HP = 0x19, line/surr = 0x1a, f-mic = 0x1b
1340 static struct hda_verb alc880_pin_3stack_init_verbs[] = {
1342 * preset connection lists of input pins
1343 * 0 = front, 1 = rear_surr, 2 = CLFE, 3 = surround
1345 {0x10, AC_VERB_SET_CONNECT_SEL, 0x02}, /* mic/clfe */
1346 {0x11, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
1347 {0x12, AC_VERB_SET_CONNECT_SEL, 0x03}, /* line/surround */
1350 * Set pin mode and muting
1352 /* set front pin widgets 0x14 for output */
1353 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1354 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1355 /* Mic1 (rear panel) pin widget for input and vref at 80% */
1356 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1357 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1358 /* Mic2 (as headphone out) for HP output */
1359 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1360 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1361 /* Line In pin widget for input */
1362 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1363 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1364 /* Line2 (as front mic) pin widget for input and vref at 80% */
1365 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1366 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1367 /* CD pin widget for input */
1368 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1374 * 5-stack pin configuration:
1375 * front = 0x14, surround = 0x17, clfe = 0x16, mic = 0x18, HP = 0x19,
1376 * line-in/side = 0x1a, f-mic = 0x1b
1378 static struct hda_verb alc880_pin_5stack_init_verbs[] = {
1380 * preset connection lists of input pins
1381 * 0 = front, 1 = rear_surr, 2 = CLFE, 3 = surround
1383 {0x11, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
1384 {0x12, AC_VERB_SET_CONNECT_SEL, 0x01}, /* line/side */
1387 * Set pin mode and muting
1389 /* set pin widgets 0x14-0x17 for output */
1390 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1391 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1392 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1393 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1394 /* unmute pins for output (no gain on this amp) */
1395 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1396 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1397 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1398 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1400 /* Mic1 (rear panel) pin widget for input and vref at 80% */
1401 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1402 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1403 /* Mic2 (as headphone out) for HP output */
1404 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1405 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1406 /* Line In pin widget for input */
1407 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1408 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1409 /* Line2 (as front mic) pin widget for input and vref at 80% */
1410 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1411 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1412 /* CD pin widget for input */
1413 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1419 * W810 pin configuration:
1420 * front = 0x14, surround = 0x15, clfe = 0x16, HP = 0x1b
1422 static struct hda_verb alc880_pin_w810_init_verbs[] = {
1423 /* hphone/speaker input selector: front DAC */
1424 {0x13, AC_VERB_SET_CONNECT_SEL, 0x0},
1426 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1427 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1428 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1429 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1430 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1431 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1433 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1434 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1440 * Z71V pin configuration:
1441 * Speaker-out = 0x14, HP = 0x15, Mic = 0x18, Line-in = 0x1a, Mic2 = 0x1b (?)
1443 static struct hda_verb alc880_pin_z71v_init_verbs[] = {
1444 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1445 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1446 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1447 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1449 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1450 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1451 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1452 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1458 * 6-stack pin configuration:
1459 * front = 0x14, surr = 0x15, clfe = 0x16, side = 0x17, mic = 0x18,
1460 * f-mic = 0x19, line = 0x1a, HP = 0x1b
1462 static struct hda_verb alc880_pin_6stack_init_verbs[] = {
1463 {0x13, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
1465 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1466 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1467 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1468 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1469 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1470 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1471 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1472 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1474 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1475 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1476 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1477 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1478 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1479 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1480 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1481 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1482 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1488 * Uniwill pin configuration:
1489 * HP = 0x14, InternalSpeaker = 0x15, mic = 0x18, internal mic = 0x19,
1492 static struct hda_verb alc880_uniwill_init_verbs[] = {
1493 {0x13, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
1495 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1496 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1497 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1498 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1499 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1500 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1501 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1502 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1503 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
1504 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
1505 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
1506 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
1507 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
1508 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
1510 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1511 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1512 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1513 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1514 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1515 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1516 /* {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP}, */
1517 /* {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE}, */
1518 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1520 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
1521 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_MIC_EVENT},
1528 * HP = 0x14, InternalSpeaker = 0x15, mic = 0x19,
1530 static struct hda_verb alc880_uniwill_p53_init_verbs[] = {
1531 {0x13, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
1533 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1534 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1535 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1536 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1537 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1538 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1539 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
1540 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
1541 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
1542 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
1543 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
1544 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
1546 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1547 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1548 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1549 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1550 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1551 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1553 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
1554 {0x21, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_DCVOL_EVENT},
1559 static struct hda_verb alc880_beep_init_verbs[] = {
1560 { 0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(5) },
1564 /* toggle speaker-output according to the hp-jack state */
1565 static void alc880_uniwill_hp_automute(struct hda_codec *codec)
1567 unsigned int present;
1570 present = snd_hda_codec_read(codec, 0x14, 0,
1571 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
1572 bits = present ? HDA_AMP_MUTE : 0;
1573 snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0,
1574 HDA_AMP_MUTE, bits);
1575 snd_hda_codec_amp_stereo(codec, 0x16, HDA_OUTPUT, 0,
1576 HDA_AMP_MUTE, bits);
1579 /* auto-toggle front mic */
1580 static void alc880_uniwill_mic_automute(struct hda_codec *codec)
1582 unsigned int present;
1585 present = snd_hda_codec_read(codec, 0x18, 0,
1586 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
1587 bits = present ? HDA_AMP_MUTE : 0;
1588 snd_hda_codec_amp_stereo(codec, 0x0b, HDA_INPUT, 1, HDA_AMP_MUTE, bits);
1591 static void alc880_uniwill_automute(struct hda_codec *codec)
1593 alc880_uniwill_hp_automute(codec);
1594 alc880_uniwill_mic_automute(codec);
1597 static void alc880_uniwill_unsol_event(struct hda_codec *codec,
1600 /* Looks like the unsol event is incompatible with the standard
1601 * definition. 4bit tag is placed at 28 bit!
1603 switch (res >> 28) {
1604 case ALC880_HP_EVENT:
1605 alc880_uniwill_hp_automute(codec);
1607 case ALC880_MIC_EVENT:
1608 alc880_uniwill_mic_automute(codec);
1613 static void alc880_uniwill_p53_hp_automute(struct hda_codec *codec)
1615 unsigned int present;
1618 present = snd_hda_codec_read(codec, 0x14, 0,
1619 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
1620 bits = present ? HDA_AMP_MUTE : 0;
1621 snd_hda_codec_amp_stereo(codec, 0x15, HDA_INPUT, 0, HDA_AMP_MUTE, bits);
1624 static void alc880_uniwill_p53_dcvol_automute(struct hda_codec *codec)
1626 unsigned int present;
1628 present = snd_hda_codec_read(codec, 0x21, 0,
1629 AC_VERB_GET_VOLUME_KNOB_CONTROL, 0);
1630 present &= HDA_AMP_VOLMASK;
1631 snd_hda_codec_amp_stereo(codec, 0x0c, HDA_OUTPUT, 0,
1632 HDA_AMP_VOLMASK, present);
1633 snd_hda_codec_amp_stereo(codec, 0x0d, HDA_OUTPUT, 0,
1634 HDA_AMP_VOLMASK, present);
1637 static void alc880_uniwill_p53_unsol_event(struct hda_codec *codec,
1640 /* Looks like the unsol event is incompatible with the standard
1641 * definition. 4bit tag is placed at 28 bit!
1643 if ((res >> 28) == ALC880_HP_EVENT)
1644 alc880_uniwill_p53_hp_automute(codec);
1645 if ((res >> 28) == ALC880_DCVOL_EVENT)
1646 alc880_uniwill_p53_dcvol_automute(codec);
1651 * F1734 pin configuration:
1652 * HP = 0x14, speaker-out = 0x15, mic = 0x18
1654 static struct hda_verb alc880_pin_f1734_init_verbs[] = {
1655 {0x10, AC_VERB_SET_CONNECT_SEL, 0x02},
1656 {0x11, AC_VERB_SET_CONNECT_SEL, 0x00},
1657 {0x12, AC_VERB_SET_CONNECT_SEL, 0x01},
1658 {0x13, AC_VERB_SET_CONNECT_SEL, 0x00},
1660 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1661 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1662 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1663 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1665 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1666 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1667 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1668 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1669 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1670 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1671 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1672 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1673 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1680 * ASUS pin configuration:
1681 * HP/front = 0x14, surr = 0x15, clfe = 0x16, mic = 0x18, line = 0x1a
1683 static struct hda_verb alc880_pin_asus_init_verbs[] = {
1684 {0x10, AC_VERB_SET_CONNECT_SEL, 0x02},
1685 {0x11, AC_VERB_SET_CONNECT_SEL, 0x00},
1686 {0x12, AC_VERB_SET_CONNECT_SEL, 0x01},
1687 {0x13, AC_VERB_SET_CONNECT_SEL, 0x00},
1689 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1690 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1691 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1692 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1693 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1694 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1695 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1696 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1698 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1699 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1700 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1701 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1702 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1703 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
1704 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1705 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1706 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1711 /* Enable GPIO mask and set output */
1712 #define alc880_gpio1_init_verbs alc_gpio1_init_verbs
1713 #define alc880_gpio2_init_verbs alc_gpio2_init_verbs
1715 /* Clevo m520g init */
1716 static struct hda_verb alc880_pin_clevo_init_verbs[] = {
1717 /* headphone output */
1718 {0x11, AC_VERB_SET_CONNECT_SEL, 0x01},
1720 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1721 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1723 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1724 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1726 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1727 {0x1c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1728 /* Mic1 (rear panel) */
1729 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1730 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1731 /* Mic2 (front panel) */
1732 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1733 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1735 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1736 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1737 /* change to EAPD mode */
1738 {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
1739 {0x20, AC_VERB_SET_PROC_COEF, 0x3060},
1744 static struct hda_verb alc880_pin_tcl_S700_init_verbs[] = {
1745 /* change to EAPD mode */
1746 {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
1747 {0x20, AC_VERB_SET_PROC_COEF, 0x3060},
1749 /* Headphone output */
1750 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1752 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
1753 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
1755 /* Line In pin widget for input */
1756 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1757 /* CD pin widget for input */
1758 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1759 /* Mic1 (rear panel) pin widget for input and vref at 80% */
1760 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1762 /* change to EAPD mode */
1763 {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
1764 {0x20, AC_VERB_SET_PROC_COEF, 0x3070},
1770 * LG m1 express dual
1773 * Rear Line-In/Out (blue): 0x14
1774 * Build-in Mic-In: 0x15
1776 * HP-Out (green): 0x1b
1777 * Mic-In/Out (red): 0x19
1781 /* To make 5.1 output working (green=Front, blue=Surr, red=CLFE) */
1782 static hda_nid_t alc880_lg_dac_nids[3] = {
1786 /* seems analog CD is not working */
1787 static struct hda_input_mux alc880_lg_capture_source = {
1792 { "Internal Mic", 0x6 },
1796 /* 2,4,6 channel modes */
1797 static struct hda_verb alc880_lg_ch2_init[] = {
1798 /* set line-in and mic-in to input */
1799 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
1800 { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
1804 static struct hda_verb alc880_lg_ch4_init[] = {
1805 /* set line-in to out and mic-in to input */
1806 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
1807 { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
1811 static struct hda_verb alc880_lg_ch6_init[] = {
1812 /* set line-in and mic-in to output */
1813 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
1814 { 0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP },
1818 static struct hda_channel_mode alc880_lg_ch_modes[3] = {
1819 { 2, alc880_lg_ch2_init },
1820 { 4, alc880_lg_ch4_init },
1821 { 6, alc880_lg_ch6_init },
1824 static struct snd_kcontrol_new alc880_lg_mixer[] = {
1825 /* FIXME: it's not really "master" but front channels */
1826 HDA_CODEC_VOLUME("Master Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
1827 HDA_BIND_MUTE("Master Playback Switch", 0x0f, 2, HDA_INPUT),
1828 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1829 HDA_BIND_MUTE("Surround Playback Switch", 0x0c, 2, HDA_INPUT),
1830 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0d, 1, 0x0, HDA_OUTPUT),
1831 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0d, 2, 0x0, HDA_OUTPUT),
1832 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0d, 1, 2, HDA_INPUT),
1833 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0d, 2, 2, HDA_INPUT),
1834 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
1835 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
1836 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x06, HDA_INPUT),
1837 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x06, HDA_INPUT),
1838 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x0b, 0x07, HDA_INPUT),
1839 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x0b, 0x07, HDA_INPUT),
1841 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1842 .name = "Channel Mode",
1843 .info = alc_ch_mode_info,
1844 .get = alc_ch_mode_get,
1845 .put = alc_ch_mode_put,
1850 static struct hda_verb alc880_lg_init_verbs[] = {
1851 /* set capture source to mic-in */
1852 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
1853 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
1854 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
1855 /* mute all amp mixer inputs */
1856 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(5)},
1857 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)},
1858 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)},
1859 /* line-in to input */
1860 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
1861 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1863 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1864 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1866 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1867 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1868 /* mic-in to input */
1869 {0x11, AC_VERB_SET_CONNECT_SEL, 0x01},
1870 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1871 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1873 {0x13, AC_VERB_SET_CONNECT_SEL, 0x03},
1874 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1875 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1877 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | 0x1},
1881 /* toggle speaker-output according to the hp-jack state */
1882 static void alc880_lg_automute(struct hda_codec *codec)
1884 unsigned int present;
1887 present = snd_hda_codec_read(codec, 0x1b, 0,
1888 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
1889 bits = present ? HDA_AMP_MUTE : 0;
1890 snd_hda_codec_amp_stereo(codec, 0x17, HDA_OUTPUT, 0,
1891 HDA_AMP_MUTE, bits);
1894 static void alc880_lg_unsol_event(struct hda_codec *codec, unsigned int res)
1896 /* Looks like the unsol event is incompatible with the standard
1897 * definition. 4bit tag is placed at 28 bit!
1899 if ((res >> 28) == 0x01)
1900 alc880_lg_automute(codec);
1909 * Built-in Mic-In: 0x19
1915 static struct hda_input_mux alc880_lg_lw_capture_source = {
1919 { "Internal Mic", 0x1 },
1924 #define alc880_lg_lw_modes alc880_threestack_modes
1926 static struct snd_kcontrol_new alc880_lg_lw_mixer[] = {
1927 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
1928 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
1929 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
1930 HDA_BIND_MUTE("Surround Playback Switch", 0x0f, 2, HDA_INPUT),
1931 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
1932 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
1933 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
1934 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
1935 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
1936 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
1937 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
1938 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
1939 HDA_CODEC_VOLUME("Internal Mic Playback Volume", 0x0b, 0x01, HDA_INPUT),
1940 HDA_CODEC_MUTE("Internal Mic Playback Switch", 0x0b, 0x01, HDA_INPUT),
1942 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1943 .name = "Channel Mode",
1944 .info = alc_ch_mode_info,
1945 .get = alc_ch_mode_get,
1946 .put = alc_ch_mode_put,
1951 static struct hda_verb alc880_lg_lw_init_verbs[] = {
1952 {0x13, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
1953 {0x10, AC_VERB_SET_CONNECT_SEL, 0x02}, /* mic/clfe */
1954 {0x12, AC_VERB_SET_CONNECT_SEL, 0x03}, /* line/surround */
1956 /* set capture source to mic-in */
1957 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1958 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1959 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
1960 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)},
1962 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1963 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1965 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
1966 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1967 /* mic-in to input */
1968 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1969 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1971 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
1972 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
1974 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | 0x1},
1978 /* toggle speaker-output according to the hp-jack state */
1979 static void alc880_lg_lw_automute(struct hda_codec *codec)
1981 unsigned int present;
1984 present = snd_hda_codec_read(codec, 0x1b, 0,
1985 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
1986 bits = present ? HDA_AMP_MUTE : 0;
1987 snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0,
1988 HDA_AMP_MUTE, bits);
1991 static void alc880_lg_lw_unsol_event(struct hda_codec *codec, unsigned int res)
1993 /* Looks like the unsol event is incompatible with the standard
1994 * definition. 4bit tag is placed at 28 bit!
1996 if ((res >> 28) == 0x01)
1997 alc880_lg_lw_automute(codec);
2000 #ifdef CONFIG_SND_HDA_POWER_SAVE
2001 static struct hda_amp_list alc880_loopbacks[] = {
2002 { 0x0b, HDA_INPUT, 0 },
2003 { 0x0b, HDA_INPUT, 1 },
2004 { 0x0b, HDA_INPUT, 2 },
2005 { 0x0b, HDA_INPUT, 3 },
2006 { 0x0b, HDA_INPUT, 4 },
2010 static struct hda_amp_list alc880_lg_loopbacks[] = {
2011 { 0x0b, HDA_INPUT, 1 },
2012 { 0x0b, HDA_INPUT, 6 },
2013 { 0x0b, HDA_INPUT, 7 },
2022 static int alc_init(struct hda_codec *codec)
2024 struct alc_spec *spec = codec->spec;
2027 for (i = 0; i < spec->num_init_verbs; i++)
2028 snd_hda_sequence_write(codec, spec->init_verbs[i]);
2030 if (spec->init_hook)
2031 spec->init_hook(codec);
2036 static void alc_unsol_event(struct hda_codec *codec, unsigned int res)
2038 struct alc_spec *spec = codec->spec;
2040 if (spec->unsol_event)
2041 spec->unsol_event(codec, res);
2044 #ifdef CONFIG_SND_HDA_POWER_SAVE
2045 static int alc_check_power_status(struct hda_codec *codec, hda_nid_t nid)
2047 struct alc_spec *spec = codec->spec;
2048 return snd_hda_check_amp_list_power(codec, &spec->loopback, nid);
2053 * Analog playback callbacks
2055 static int alc880_playback_pcm_open(struct hda_pcm_stream *hinfo,
2056 struct hda_codec *codec,
2057 struct snd_pcm_substream *substream)
2059 struct alc_spec *spec = codec->spec;
2060 return snd_hda_multi_out_analog_open(codec, &spec->multiout, substream);
2063 static int alc880_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
2064 struct hda_codec *codec,
2065 unsigned int stream_tag,
2066 unsigned int format,
2067 struct snd_pcm_substream *substream)
2069 struct alc_spec *spec = codec->spec;
2070 return snd_hda_multi_out_analog_prepare(codec, &spec->multiout,
2071 stream_tag, format, substream);
2074 static int alc880_playback_pcm_cleanup(struct hda_pcm_stream *hinfo,
2075 struct hda_codec *codec,
2076 struct snd_pcm_substream *substream)
2078 struct alc_spec *spec = codec->spec;
2079 return snd_hda_multi_out_analog_cleanup(codec, &spec->multiout);
2085 static int alc880_dig_playback_pcm_open(struct hda_pcm_stream *hinfo,
2086 struct hda_codec *codec,
2087 struct snd_pcm_substream *substream)
2089 struct alc_spec *spec = codec->spec;
2090 return snd_hda_multi_out_dig_open(codec, &spec->multiout);
2093 static int alc880_dig_playback_pcm_prepare(struct hda_pcm_stream *hinfo,
2094 struct hda_codec *codec,
2095 unsigned int stream_tag,
2096 unsigned int format,
2097 struct snd_pcm_substream *substream)
2099 struct alc_spec *spec = codec->spec;
2100 return snd_hda_multi_out_dig_prepare(codec, &spec->multiout,
2101 stream_tag, format, substream);
2104 static int alc880_dig_playback_pcm_close(struct hda_pcm_stream *hinfo,
2105 struct hda_codec *codec,
2106 struct snd_pcm_substream *substream)
2108 struct alc_spec *spec = codec->spec;
2109 return snd_hda_multi_out_dig_close(codec, &spec->multiout);
2115 static int alc880_capture_pcm_prepare(struct hda_pcm_stream *hinfo,
2116 struct hda_codec *codec,
2117 unsigned int stream_tag,
2118 unsigned int format,
2119 struct snd_pcm_substream *substream)
2121 struct alc_spec *spec = codec->spec;
2123 snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number],
2124 stream_tag, 0, format);
2128 static int alc880_capture_pcm_cleanup(struct hda_pcm_stream *hinfo,
2129 struct hda_codec *codec,
2130 struct snd_pcm_substream *substream)
2132 struct alc_spec *spec = codec->spec;
2134 snd_hda_codec_setup_stream(codec, spec->adc_nids[substream->number],
2142 static struct hda_pcm_stream alc880_pcm_analog_playback = {
2146 /* NID is set in alc_build_pcms */
2148 .open = alc880_playback_pcm_open,
2149 .prepare = alc880_playback_pcm_prepare,
2150 .cleanup = alc880_playback_pcm_cleanup
2154 static struct hda_pcm_stream alc880_pcm_analog_capture = {
2158 /* NID is set in alc_build_pcms */
2160 .prepare = alc880_capture_pcm_prepare,
2161 .cleanup = alc880_capture_pcm_cleanup
2165 static struct hda_pcm_stream alc880_pcm_digital_playback = {
2169 /* NID is set in alc_build_pcms */
2171 .open = alc880_dig_playback_pcm_open,
2172 .close = alc880_dig_playback_pcm_close,
2173 .prepare = alc880_dig_playback_pcm_prepare
2177 static struct hda_pcm_stream alc880_pcm_digital_capture = {
2181 /* NID is set in alc_build_pcms */
2184 /* Used by alc_build_pcms to flag that a PCM has no playback stream */
2185 static struct hda_pcm_stream alc_pcm_null_playback = {
2191 static int alc_build_pcms(struct hda_codec *codec)
2193 struct alc_spec *spec = codec->spec;
2194 struct hda_pcm *info = spec->pcm_rec;
2197 codec->num_pcms = 1;
2198 codec->pcm_info = info;
2200 info->name = spec->stream_name_analog;
2201 if (spec->stream_analog_playback) {
2202 snd_assert(spec->multiout.dac_nids, return -EINVAL);
2203 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = *(spec->stream_analog_playback);
2204 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dac_nids[0];
2206 if (spec->stream_analog_capture) {
2207 snd_assert(spec->adc_nids, return -EINVAL);
2208 info->stream[SNDRV_PCM_STREAM_CAPTURE] = *(spec->stream_analog_capture);
2209 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[0];
2212 if (spec->channel_mode) {
2213 info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max = 0;
2214 for (i = 0; i < spec->num_channel_mode; i++) {
2215 if (spec->channel_mode[i].channels > info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max) {
2216 info->stream[SNDRV_PCM_STREAM_PLAYBACK].channels_max = spec->channel_mode[i].channels;
2221 /* SPDIF for stream index #1 */
2222 if (spec->multiout.dig_out_nid || spec->dig_in_nid) {
2223 codec->num_pcms = 2;
2224 info = spec->pcm_rec + 1;
2225 info->name = spec->stream_name_digital;
2226 if (spec->multiout.dig_out_nid &&
2227 spec->stream_digital_playback) {
2228 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = *(spec->stream_digital_playback);
2229 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = spec->multiout.dig_out_nid;
2231 if (spec->dig_in_nid &&
2232 spec->stream_digital_capture) {
2233 info->stream[SNDRV_PCM_STREAM_CAPTURE] = *(spec->stream_digital_capture);
2234 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->dig_in_nid;
2238 /* If the use of more than one ADC is requested for the current
2239 * model, configure a second analog capture-only PCM.
2241 /* Additional Analaog capture for index #2 */
2242 if (spec->num_adc_nids > 1 && spec->stream_analog_capture &&
2244 codec->num_pcms = 3;
2245 info = spec->pcm_rec + 2;
2246 info->name = spec->stream_name_analog;
2247 /* No playback stream for second PCM */
2248 info->stream[SNDRV_PCM_STREAM_PLAYBACK] = alc_pcm_null_playback;
2249 info->stream[SNDRV_PCM_STREAM_PLAYBACK].nid = 0;
2250 if (spec->stream_analog_capture) {
2251 info->stream[SNDRV_PCM_STREAM_CAPTURE] = *(spec->stream_analog_capture);
2252 info->stream[SNDRV_PCM_STREAM_CAPTURE].nid = spec->adc_nids[1];
2259 static void alc_free(struct hda_codec *codec)
2261 struct alc_spec *spec = codec->spec;
2267 if (spec->kctl_alloc) {
2268 for (i = 0; i < spec->num_kctl_used; i++)
2269 kfree(spec->kctl_alloc[i].name);
2270 kfree(spec->kctl_alloc);
2277 static struct hda_codec_ops alc_patch_ops = {
2278 .build_controls = alc_build_controls,
2279 .build_pcms = alc_build_pcms,
2282 .unsol_event = alc_unsol_event,
2283 #ifdef CONFIG_SND_HDA_POWER_SAVE
2284 .check_power_status = alc_check_power_status,
2290 * Test configuration for debugging
2292 * Almost all inputs/outputs are enabled. I/O pins can be configured via
2295 #ifdef CONFIG_SND_DEBUG
2296 static hda_nid_t alc880_test_dac_nids[4] = {
2297 0x02, 0x03, 0x04, 0x05
2300 static struct hda_input_mux alc880_test_capture_source = {
2309 { "Surround", 0x6 },
2313 static struct hda_channel_mode alc880_test_modes[4] = {
2320 static int alc_test_pin_ctl_info(struct snd_kcontrol *kcontrol,
2321 struct snd_ctl_elem_info *uinfo)
2323 static char *texts[] = {
2324 "N/A", "Line Out", "HP Out",
2325 "In Hi-Z", "In 50%", "In Grd", "In 80%", "In 100%"
2327 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2329 uinfo->value.enumerated.items = 8;
2330 if (uinfo->value.enumerated.item >= 8)
2331 uinfo->value.enumerated.item = 7;
2332 strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);
2336 static int alc_test_pin_ctl_get(struct snd_kcontrol *kcontrol,
2337 struct snd_ctl_elem_value *ucontrol)
2339 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2340 hda_nid_t nid = (hda_nid_t)kcontrol->private_value;
2341 unsigned int pin_ctl, item = 0;
2343 pin_ctl = snd_hda_codec_read(codec, nid, 0,
2344 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
2345 if (pin_ctl & AC_PINCTL_OUT_EN) {
2346 if (pin_ctl & AC_PINCTL_HP_EN)
2350 } else if (pin_ctl & AC_PINCTL_IN_EN) {
2351 switch (pin_ctl & AC_PINCTL_VREFEN) {
2352 case AC_PINCTL_VREF_HIZ: item = 3; break;
2353 case AC_PINCTL_VREF_50: item = 4; break;
2354 case AC_PINCTL_VREF_GRD: item = 5; break;
2355 case AC_PINCTL_VREF_80: item = 6; break;
2356 case AC_PINCTL_VREF_100: item = 7; break;
2359 ucontrol->value.enumerated.item[0] = item;
2363 static int alc_test_pin_ctl_put(struct snd_kcontrol *kcontrol,
2364 struct snd_ctl_elem_value *ucontrol)
2366 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2367 hda_nid_t nid = (hda_nid_t)kcontrol->private_value;
2368 static unsigned int ctls[] = {
2369 0, AC_PINCTL_OUT_EN, AC_PINCTL_OUT_EN | AC_PINCTL_HP_EN,
2370 AC_PINCTL_IN_EN | AC_PINCTL_VREF_HIZ,
2371 AC_PINCTL_IN_EN | AC_PINCTL_VREF_50,
2372 AC_PINCTL_IN_EN | AC_PINCTL_VREF_GRD,
2373 AC_PINCTL_IN_EN | AC_PINCTL_VREF_80,
2374 AC_PINCTL_IN_EN | AC_PINCTL_VREF_100,
2376 unsigned int old_ctl, new_ctl;
2378 old_ctl = snd_hda_codec_read(codec, nid, 0,
2379 AC_VERB_GET_PIN_WIDGET_CONTROL, 0);
2380 new_ctl = ctls[ucontrol->value.enumerated.item[0]];
2381 if (old_ctl != new_ctl) {
2383 snd_hda_codec_write_cache(codec, nid, 0,
2384 AC_VERB_SET_PIN_WIDGET_CONTROL,
2386 val = ucontrol->value.enumerated.item[0] >= 3 ?
2388 snd_hda_codec_amp_stereo(codec, nid, HDA_OUTPUT, 0,
2395 static int alc_test_pin_src_info(struct snd_kcontrol *kcontrol,
2396 struct snd_ctl_elem_info *uinfo)
2398 static char *texts[] = {
2399 "Front", "Surround", "CLFE", "Side"
2401 uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED;
2403 uinfo->value.enumerated.items = 4;
2404 if (uinfo->value.enumerated.item >= 4)
2405 uinfo->value.enumerated.item = 3;
2406 strcpy(uinfo->value.enumerated.name, texts[uinfo->value.enumerated.item]);
2410 static int alc_test_pin_src_get(struct snd_kcontrol *kcontrol,
2411 struct snd_ctl_elem_value *ucontrol)
2413 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2414 hda_nid_t nid = (hda_nid_t)kcontrol->private_value;
2417 sel = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_CONNECT_SEL, 0);
2418 ucontrol->value.enumerated.item[0] = sel & 3;
2422 static int alc_test_pin_src_put(struct snd_kcontrol *kcontrol,
2423 struct snd_ctl_elem_value *ucontrol)
2425 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
2426 hda_nid_t nid = (hda_nid_t)kcontrol->private_value;
2429 sel = snd_hda_codec_read(codec, nid, 0, AC_VERB_GET_CONNECT_SEL, 0) & 3;
2430 if (ucontrol->value.enumerated.item[0] != sel) {
2431 sel = ucontrol->value.enumerated.item[0] & 3;
2432 snd_hda_codec_write_cache(codec, nid, 0,
2433 AC_VERB_SET_CONNECT_SEL, sel);
2439 #define PIN_CTL_TEST(xname,nid) { \
2440 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2442 .info = alc_test_pin_ctl_info, \
2443 .get = alc_test_pin_ctl_get, \
2444 .put = alc_test_pin_ctl_put, \
2445 .private_value = nid \
2448 #define PIN_SRC_TEST(xname,nid) { \
2449 .iface = SNDRV_CTL_ELEM_IFACE_MIXER, \
2451 .info = alc_test_pin_src_info, \
2452 .get = alc_test_pin_src_get, \
2453 .put = alc_test_pin_src_put, \
2454 .private_value = nid \
2457 static struct snd_kcontrol_new alc880_test_mixer[] = {
2458 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
2459 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
2460 HDA_CODEC_VOLUME("CLFE Playback Volume", 0x0e, 0x0, HDA_OUTPUT),
2461 HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
2462 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
2463 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
2464 HDA_BIND_MUTE("CLFE Playback Switch", 0x0e, 2, HDA_INPUT),
2465 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT),
2466 PIN_CTL_TEST("Front Pin Mode", 0x14),
2467 PIN_CTL_TEST("Surround Pin Mode", 0x15),
2468 PIN_CTL_TEST("CLFE Pin Mode", 0x16),
2469 PIN_CTL_TEST("Side Pin Mode", 0x17),
2470 PIN_CTL_TEST("In-1 Pin Mode", 0x18),
2471 PIN_CTL_TEST("In-2 Pin Mode", 0x19),
2472 PIN_CTL_TEST("In-3 Pin Mode", 0x1a),
2473 PIN_CTL_TEST("In-4 Pin Mode", 0x1b),
2474 PIN_SRC_TEST("In-1 Pin Source", 0x18),
2475 PIN_SRC_TEST("In-2 Pin Source", 0x19),
2476 PIN_SRC_TEST("In-3 Pin Source", 0x1a),
2477 PIN_SRC_TEST("In-4 Pin Source", 0x1b),
2478 HDA_CODEC_VOLUME("In-1 Playback Volume", 0x0b, 0x0, HDA_INPUT),
2479 HDA_CODEC_MUTE("In-1 Playback Switch", 0x0b, 0x0, HDA_INPUT),
2480 HDA_CODEC_VOLUME("In-2 Playback Volume", 0x0b, 0x1, HDA_INPUT),
2481 HDA_CODEC_MUTE("In-2 Playback Switch", 0x0b, 0x1, HDA_INPUT),
2482 HDA_CODEC_VOLUME("In-3 Playback Volume", 0x0b, 0x2, HDA_INPUT),
2483 HDA_CODEC_MUTE("In-3 Playback Switch", 0x0b, 0x2, HDA_INPUT),
2484 HDA_CODEC_VOLUME("In-4 Playback Volume", 0x0b, 0x3, HDA_INPUT),
2485 HDA_CODEC_MUTE("In-4 Playback Switch", 0x0b, 0x3, HDA_INPUT),
2486 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x4, HDA_INPUT),
2487 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x4, HDA_INPUT),
2489 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
2490 .name = "Channel Mode",
2491 .info = alc_ch_mode_info,
2492 .get = alc_ch_mode_get,
2493 .put = alc_ch_mode_put,
2498 static struct hda_verb alc880_test_init_verbs[] = {
2499 /* Unmute inputs of 0x0c - 0x0f */
2500 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2501 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
2502 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2503 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
2504 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2505 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
2506 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
2507 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
2508 /* Vol output for 0x0c-0x0f */
2509 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2510 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2511 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2512 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
2513 /* Set output pins 0x14-0x17 */
2514 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2515 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2516 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2517 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
2518 /* Unmute output pins 0x14-0x17 */
2519 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2520 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2521 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2522 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
2523 /* Set input pins 0x18-0x1c */
2524 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
2525 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
2526 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
2527 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
2528 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
2529 /* Mute input pins 0x18-0x1b */
2530 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2531 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2532 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2533 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
2535 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2536 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
2537 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2538 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
2539 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2540 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
2541 /* Analog input/passthru */
2542 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
2543 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
2544 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
2545 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
2546 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
2554 static const char *alc880_models[ALC880_MODEL_LAST] = {
2555 [ALC880_3ST] = "3stack",
2556 [ALC880_TCL_S700] = "tcl",
2557 [ALC880_3ST_DIG] = "3stack-digout",
2558 [ALC880_CLEVO] = "clevo",
2559 [ALC880_5ST] = "5stack",
2560 [ALC880_5ST_DIG] = "5stack-digout",
2561 [ALC880_W810] = "w810",
2562 [ALC880_Z71V] = "z71v",
2563 [ALC880_6ST] = "6stack",
2564 [ALC880_6ST_DIG] = "6stack-digout",
2565 [ALC880_ASUS] = "asus",
2566 [ALC880_ASUS_W1V] = "asus-w1v",
2567 [ALC880_ASUS_DIG] = "asus-dig",
2568 [ALC880_ASUS_DIG2] = "asus-dig2",
2569 [ALC880_UNIWILL_DIG] = "uniwill",
2570 [ALC880_UNIWILL_P53] = "uniwill-p53",
2571 [ALC880_FUJITSU] = "fujitsu",
2572 [ALC880_F1734] = "F1734",
2574 [ALC880_LG_LW] = "lg-lw",
2575 #ifdef CONFIG_SND_DEBUG
2576 [ALC880_TEST] = "test",
2578 [ALC880_AUTO] = "auto",
2581 static struct snd_pci_quirk alc880_cfg_tbl[] = {
2582 /* Broken BIOS configuration */
2583 SND_PCI_QUIRK(0x2668, 0x8086, NULL, ALC880_6ST_DIG),
2584 SND_PCI_QUIRK(0x8086, 0x2668, NULL, ALC880_6ST_DIG),
2586 SND_PCI_QUIRK(0x1019, 0xa880, "ECS", ALC880_5ST_DIG),
2587 SND_PCI_QUIRK(0x1019, 0xa884, "Acer APFV", ALC880_6ST),
2588 SND_PCI_QUIRK(0x1019, 0x0f69, "Coeus G610P", ALC880_W810),
2589 SND_PCI_QUIRK(0x1025, 0x0070, "ULI", ALC880_3ST_DIG),
2590 SND_PCI_QUIRK(0x1025, 0x0077, "ULI", ALC880_6ST_DIG),
2591 SND_PCI_QUIRK(0x1025, 0x0078, "ULI", ALC880_6ST_DIG),
2592 SND_PCI_QUIRK(0x1025, 0x0087, "ULI", ALC880_6ST_DIG),
2593 SND_PCI_QUIRK(0x1025, 0xe309, "ULI", ALC880_3ST_DIG),
2594 SND_PCI_QUIRK(0x1025, 0xe310, "ULI", ALC880_3ST),
2596 SND_PCI_QUIRK(0x1039, 0x1234, NULL, ALC880_6ST_DIG),
2597 SND_PCI_QUIRK(0x103c, 0x2a09, "HP", ALC880_5ST),
2599 SND_PCI_QUIRK(0x1043, 0x10b3, "ASUS W1V", ALC880_ASUS_W1V),
2600 SND_PCI_QUIRK(0x1043, 0x10c2, "ASUS W6A", ALC880_ASUS_DIG),
2601 SND_PCI_QUIRK(0x1043, 0x10c3, "ASUS Wxx", ALC880_ASUS_DIG),
2602 SND_PCI_QUIRK(0x1043, 0x1113, "ASUS", ALC880_ASUS_DIG),
2603 SND_PCI_QUIRK(0x1043, 0x1123, "ASUS", ALC880_ASUS_DIG),
2604 SND_PCI_QUIRK(0x1043, 0x1173, "ASUS", ALC880_ASUS_DIG),
2605 SND_PCI_QUIRK(0x1043, 0x1964, "ASUS Z71V", ALC880_Z71V),
2606 /* SND_PCI_QUIRK(0x1043, 0x1964, "ASUS", ALC880_ASUS_DIG), */
2607 SND_PCI_QUIRK(0x1043, 0x1973, "ASUS", ALC880_ASUS_DIG),
2608 SND_PCI_QUIRK(0x1043, 0x19b3, "ASUS", ALC880_ASUS_DIG),
2609 SND_PCI_QUIRK(0x1043, 0x814e, "ASUS", ALC880_ASUS),
2610 SND_PCI_QUIRK(0x1043, 0x8181, "ASUS P4GPL", ALC880_ASUS_DIG),
2611 SND_PCI_QUIRK(0x1043, 0x8196, "ASUS P5GD1", ALC880_6ST),
2612 SND_PCI_QUIRK(0x1043, 0x81b4, "ASUS", ALC880_6ST),
2613 SND_PCI_QUIRK(0x1043, 0, "ASUS", ALC880_ASUS),
2615 SND_PCI_QUIRK(0x104d, 0x81d6, "Sony", ALC880_3ST),
2616 SND_PCI_QUIRK(0x104d, 0x81a0, "Sony", ALC880_3ST),
2617 SND_PCI_QUIRK(0x107b, 0x3033, "Gateway", ALC880_5ST),
2618 SND_PCI_QUIRK(0x107b, 0x4039, "Gateway", ALC880_5ST),
2619 SND_PCI_QUIRK(0x107b, 0x3032, "Gateway", ALC880_5ST),
2620 SND_PCI_QUIRK(0x1558, 0x0520, "Clevo m520G", ALC880_CLEVO),
2621 SND_PCI_QUIRK(0x1558, 0x0660, "Clevo m655n", ALC880_CLEVO),
2622 SND_PCI_QUIRK(0x1565, 0x8202, "Biostar", ALC880_5ST_DIG),
2623 SND_PCI_QUIRK(0x161f, 0x203d, "W810", ALC880_W810),
2624 SND_PCI_QUIRK(0x1695, 0x400d, "EPoX", ALC880_5ST_DIG),
2625 SND_PCI_QUIRK(0x19db, 0x4188, "TCL S700", ALC880_TCL_S700),
2626 SND_PCI_QUIRK(0xa0a0, 0x0560, "AOpen i915GMm-HFS", ALC880_5ST_DIG),
2627 SND_PCI_QUIRK(0xe803, 0x1019, NULL, ALC880_6ST_DIG),
2628 SND_PCI_QUIRK(0x1297, 0xc790, "Shuttle ST20G5", ALC880_6ST_DIG),
2629 SND_PCI_QUIRK(0x1458, 0xa102, "Gigabyte K8", ALC880_6ST_DIG),
2630 SND_PCI_QUIRK(0x1462, 0x1150, "MSI", ALC880_6ST_DIG),
2631 SND_PCI_QUIRK(0x1509, 0x925d, "FIC P4M", ALC880_6ST_DIG),
2632 SND_PCI_QUIRK(0x1558, 0x5401, "ASUS", ALC880_ASUS_DIG2),
2634 SND_PCI_QUIRK(0x1584, 0x9050, "Uniwill", ALC880_UNIWILL_DIG),
2635 SND_PCI_QUIRK(0x1584, 0x9070, "Uniwill", ALC880_UNIWILL),
2636 SND_PCI_QUIRK(0x1584, 0x9077, "Uniwill P53", ALC880_UNIWILL_P53),
2637 SND_PCI_QUIRK(0x1584, 0x9054, "Uniwlll", ALC880_F1734),
2639 SND_PCI_QUIRK(0x1695, 0x4012, "EPox EP-5LDA", ALC880_5ST_DIG),
2640 SND_PCI_QUIRK(0x1734, 0x10ac, "FSC", ALC880_UNIWILL),
2641 SND_PCI_QUIRK(0x1734, 0x107c, "FSC F1734", ALC880_F1734),
2642 SND_PCI_QUIRK(0x1734, 0x10b0, "Fujitsu", ALC880_FUJITSU),
2644 SND_PCI_QUIRK(0x1854, 0x003b, "LG", ALC880_LG),
2645 SND_PCI_QUIRK(0x1854, 0x0068, "LG w1", ALC880_LG),
2646 SND_PCI_QUIRK(0x1854, 0x0018, "LG LW20", ALC880_LG_LW),
2647 SND_PCI_QUIRK(0x1854, 0x0077, "LG LW25", ALC880_LG_LW),
2649 SND_PCI_QUIRK(0x8086, 0xe308, "Intel mobo", ALC880_3ST_DIG),
2650 SND_PCI_QUIRK(0x8086, 0xe305, "Intel mobo", ALC880_3ST_DIG),
2651 SND_PCI_QUIRK(0x8086, 0xd402, "Intel mobo", ALC880_3ST_DIG),
2652 SND_PCI_QUIRK(0x8086, 0xd400, "Intel mobo", ALC880_5ST_DIG),
2653 SND_PCI_QUIRK(0x8086, 0xd401, "Intel mobo", ALC880_5ST_DIG),
2654 SND_PCI_QUIRK(0x8086, 0xe224, "Intel mobo", ALC880_5ST_DIG),
2655 SND_PCI_QUIRK(0x8086, 0xe400, "Intel mobo", ALC880_5ST_DIG),
2656 SND_PCI_QUIRK(0x8086, 0xe401, "Intel mobo", ALC880_5ST_DIG),
2657 SND_PCI_QUIRK(0x8086, 0xe402, "Intel mobo", ALC880_5ST_DIG),
2658 SND_PCI_QUIRK(0x8086, 0xa100, "Intel mobo", ALC880_5ST_DIG),
2659 SND_PCI_QUIRK(0x8086, 0, "Intel mobo", ALC880_3ST),
2665 * ALC880 codec presets
2667 static struct alc_config_preset alc880_presets[] = {
2669 .mixers = { alc880_three_stack_mixer },
2670 .init_verbs = { alc880_volume_init_verbs,
2671 alc880_pin_3stack_init_verbs },
2672 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2673 .dac_nids = alc880_dac_nids,
2674 .num_channel_mode = ARRAY_SIZE(alc880_threestack_modes),
2675 .channel_mode = alc880_threestack_modes,
2677 .input_mux = &alc880_capture_source,
2679 [ALC880_3ST_DIG] = {
2680 .mixers = { alc880_three_stack_mixer },
2681 .init_verbs = { alc880_volume_init_verbs,
2682 alc880_pin_3stack_init_verbs },
2683 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2684 .dac_nids = alc880_dac_nids,
2685 .dig_out_nid = ALC880_DIGOUT_NID,
2686 .num_channel_mode = ARRAY_SIZE(alc880_threestack_modes),
2687 .channel_mode = alc880_threestack_modes,
2689 .input_mux = &alc880_capture_source,
2691 [ALC880_TCL_S700] = {
2692 .mixers = { alc880_tcl_s700_mixer },
2693 .init_verbs = { alc880_volume_init_verbs,
2694 alc880_pin_tcl_S700_init_verbs,
2695 alc880_gpio2_init_verbs },
2696 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2697 .dac_nids = alc880_dac_nids,
2699 .num_channel_mode = ARRAY_SIZE(alc880_2_jack_modes),
2700 .channel_mode = alc880_2_jack_modes,
2701 .input_mux = &alc880_capture_source,
2704 .mixers = { alc880_three_stack_mixer,
2705 alc880_five_stack_mixer},
2706 .init_verbs = { alc880_volume_init_verbs,
2707 alc880_pin_5stack_init_verbs },
2708 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2709 .dac_nids = alc880_dac_nids,
2710 .num_channel_mode = ARRAY_SIZE(alc880_fivestack_modes),
2711 .channel_mode = alc880_fivestack_modes,
2712 .input_mux = &alc880_capture_source,
2714 [ALC880_5ST_DIG] = {
2715 .mixers = { alc880_three_stack_mixer,
2716 alc880_five_stack_mixer },
2717 .init_verbs = { alc880_volume_init_verbs,
2718 alc880_pin_5stack_init_verbs },
2719 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2720 .dac_nids = alc880_dac_nids,
2721 .dig_out_nid = ALC880_DIGOUT_NID,
2722 .num_channel_mode = ARRAY_SIZE(alc880_fivestack_modes),
2723 .channel_mode = alc880_fivestack_modes,
2724 .input_mux = &alc880_capture_source,
2727 .mixers = { alc880_six_stack_mixer },
2728 .init_verbs = { alc880_volume_init_verbs,
2729 alc880_pin_6stack_init_verbs },
2730 .num_dacs = ARRAY_SIZE(alc880_6st_dac_nids),
2731 .dac_nids = alc880_6st_dac_nids,
2732 .num_channel_mode = ARRAY_SIZE(alc880_sixstack_modes),
2733 .channel_mode = alc880_sixstack_modes,
2734 .input_mux = &alc880_6stack_capture_source,
2736 [ALC880_6ST_DIG] = {
2737 .mixers = { alc880_six_stack_mixer },
2738 .init_verbs = { alc880_volume_init_verbs,
2739 alc880_pin_6stack_init_verbs },
2740 .num_dacs = ARRAY_SIZE(alc880_6st_dac_nids),
2741 .dac_nids = alc880_6st_dac_nids,
2742 .dig_out_nid = ALC880_DIGOUT_NID,
2743 .num_channel_mode = ARRAY_SIZE(alc880_sixstack_modes),
2744 .channel_mode = alc880_sixstack_modes,
2745 .input_mux = &alc880_6stack_capture_source,
2748 .mixers = { alc880_w810_base_mixer },
2749 .init_verbs = { alc880_volume_init_verbs,
2750 alc880_pin_w810_init_verbs,
2751 alc880_gpio2_init_verbs },
2752 .num_dacs = ARRAY_SIZE(alc880_w810_dac_nids),
2753 .dac_nids = alc880_w810_dac_nids,
2754 .dig_out_nid = ALC880_DIGOUT_NID,
2755 .num_channel_mode = ARRAY_SIZE(alc880_w810_modes),
2756 .channel_mode = alc880_w810_modes,
2757 .input_mux = &alc880_capture_source,
2760 .mixers = { alc880_z71v_mixer },
2761 .init_verbs = { alc880_volume_init_verbs,
2762 alc880_pin_z71v_init_verbs },
2763 .num_dacs = ARRAY_SIZE(alc880_z71v_dac_nids),
2764 .dac_nids = alc880_z71v_dac_nids,
2765 .dig_out_nid = ALC880_DIGOUT_NID,
2767 .num_channel_mode = ARRAY_SIZE(alc880_2_jack_modes),
2768 .channel_mode = alc880_2_jack_modes,
2769 .input_mux = &alc880_capture_source,
2772 .mixers = { alc880_f1734_mixer },
2773 .init_verbs = { alc880_volume_init_verbs,
2774 alc880_pin_f1734_init_verbs },
2775 .num_dacs = ARRAY_SIZE(alc880_f1734_dac_nids),
2776 .dac_nids = alc880_f1734_dac_nids,
2778 .num_channel_mode = ARRAY_SIZE(alc880_2_jack_modes),
2779 .channel_mode = alc880_2_jack_modes,
2780 .input_mux = &alc880_capture_source,
2783 .mixers = { alc880_asus_mixer },
2784 .init_verbs = { alc880_volume_init_verbs,
2785 alc880_pin_asus_init_verbs,
2786 alc880_gpio1_init_verbs },
2787 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2788 .dac_nids = alc880_asus_dac_nids,
2789 .num_channel_mode = ARRAY_SIZE(alc880_asus_modes),
2790 .channel_mode = alc880_asus_modes,
2792 .input_mux = &alc880_capture_source,
2794 [ALC880_ASUS_DIG] = {
2795 .mixers = { alc880_asus_mixer },
2796 .init_verbs = { alc880_volume_init_verbs,
2797 alc880_pin_asus_init_verbs,
2798 alc880_gpio1_init_verbs },
2799 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2800 .dac_nids = alc880_asus_dac_nids,
2801 .dig_out_nid = ALC880_DIGOUT_NID,
2802 .num_channel_mode = ARRAY_SIZE(alc880_asus_modes),
2803 .channel_mode = alc880_asus_modes,
2805 .input_mux = &alc880_capture_source,
2807 [ALC880_ASUS_DIG2] = {
2808 .mixers = { alc880_asus_mixer },
2809 .init_verbs = { alc880_volume_init_verbs,
2810 alc880_pin_asus_init_verbs,
2811 alc880_gpio2_init_verbs }, /* use GPIO2 */
2812 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2813 .dac_nids = alc880_asus_dac_nids,
2814 .dig_out_nid = ALC880_DIGOUT_NID,
2815 .num_channel_mode = ARRAY_SIZE(alc880_asus_modes),
2816 .channel_mode = alc880_asus_modes,
2818 .input_mux = &alc880_capture_source,
2820 [ALC880_ASUS_W1V] = {
2821 .mixers = { alc880_asus_mixer, alc880_asus_w1v_mixer },
2822 .init_verbs = { alc880_volume_init_verbs,
2823 alc880_pin_asus_init_verbs,
2824 alc880_gpio1_init_verbs },
2825 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2826 .dac_nids = alc880_asus_dac_nids,
2827 .dig_out_nid = ALC880_DIGOUT_NID,
2828 .num_channel_mode = ARRAY_SIZE(alc880_asus_modes),
2829 .channel_mode = alc880_asus_modes,
2831 .input_mux = &alc880_capture_source,
2833 [ALC880_UNIWILL_DIG] = {
2834 .mixers = { alc880_asus_mixer, alc880_pcbeep_mixer },
2835 .init_verbs = { alc880_volume_init_verbs,
2836 alc880_pin_asus_init_verbs },
2837 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2838 .dac_nids = alc880_asus_dac_nids,
2839 .dig_out_nid = ALC880_DIGOUT_NID,
2840 .num_channel_mode = ARRAY_SIZE(alc880_asus_modes),
2841 .channel_mode = alc880_asus_modes,
2843 .input_mux = &alc880_capture_source,
2845 [ALC880_UNIWILL] = {
2846 .mixers = { alc880_uniwill_mixer },
2847 .init_verbs = { alc880_volume_init_verbs,
2848 alc880_uniwill_init_verbs },
2849 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2850 .dac_nids = alc880_asus_dac_nids,
2851 .dig_out_nid = ALC880_DIGOUT_NID,
2852 .num_channel_mode = ARRAY_SIZE(alc880_threestack_modes),
2853 .channel_mode = alc880_threestack_modes,
2855 .input_mux = &alc880_capture_source,
2856 .unsol_event = alc880_uniwill_unsol_event,
2857 .init_hook = alc880_uniwill_automute,
2859 [ALC880_UNIWILL_P53] = {
2860 .mixers = { alc880_uniwill_p53_mixer },
2861 .init_verbs = { alc880_volume_init_verbs,
2862 alc880_uniwill_p53_init_verbs },
2863 .num_dacs = ARRAY_SIZE(alc880_asus_dac_nids),
2864 .dac_nids = alc880_asus_dac_nids,
2865 .num_channel_mode = ARRAY_SIZE(alc880_w810_modes),
2866 .channel_mode = alc880_threestack_modes,
2867 .input_mux = &alc880_capture_source,
2868 .unsol_event = alc880_uniwill_p53_unsol_event,
2869 .init_hook = alc880_uniwill_p53_hp_automute,
2871 [ALC880_FUJITSU] = {
2872 .mixers = { alc880_fujitsu_mixer,
2873 alc880_pcbeep_mixer, },
2874 .init_verbs = { alc880_volume_init_verbs,
2875 alc880_uniwill_p53_init_verbs,
2876 alc880_beep_init_verbs },
2877 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2878 .dac_nids = alc880_dac_nids,
2879 .dig_out_nid = ALC880_DIGOUT_NID,
2880 .num_channel_mode = ARRAY_SIZE(alc880_2_jack_modes),
2881 .channel_mode = alc880_2_jack_modes,
2882 .input_mux = &alc880_capture_source,
2883 .unsol_event = alc880_uniwill_p53_unsol_event,
2884 .init_hook = alc880_uniwill_p53_hp_automute,
2887 .mixers = { alc880_three_stack_mixer },
2888 .init_verbs = { alc880_volume_init_verbs,
2889 alc880_pin_clevo_init_verbs },
2890 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2891 .dac_nids = alc880_dac_nids,
2893 .num_channel_mode = ARRAY_SIZE(alc880_threestack_modes),
2894 .channel_mode = alc880_threestack_modes,
2896 .input_mux = &alc880_capture_source,
2899 .mixers = { alc880_lg_mixer },
2900 .init_verbs = { alc880_volume_init_verbs,
2901 alc880_lg_init_verbs },
2902 .num_dacs = ARRAY_SIZE(alc880_lg_dac_nids),
2903 .dac_nids = alc880_lg_dac_nids,
2904 .dig_out_nid = ALC880_DIGOUT_NID,
2905 .num_channel_mode = ARRAY_SIZE(alc880_lg_ch_modes),
2906 .channel_mode = alc880_lg_ch_modes,
2908 .input_mux = &alc880_lg_capture_source,
2909 .unsol_event = alc880_lg_unsol_event,
2910 .init_hook = alc880_lg_automute,
2911 #ifdef CONFIG_SND_HDA_POWER_SAVE
2912 .loopbacks = alc880_lg_loopbacks,
2916 .mixers = { alc880_lg_lw_mixer },
2917 .init_verbs = { alc880_volume_init_verbs,
2918 alc880_lg_lw_init_verbs },
2919 .num_dacs = ARRAY_SIZE(alc880_dac_nids),
2920 .dac_nids = alc880_dac_nids,
2921 .dig_out_nid = ALC880_DIGOUT_NID,
2922 .num_channel_mode = ARRAY_SIZE(alc880_lg_lw_modes),
2923 .channel_mode = alc880_lg_lw_modes,
2924 .input_mux = &alc880_lg_lw_capture_source,
2925 .unsol_event = alc880_lg_lw_unsol_event,
2926 .init_hook = alc880_lg_lw_automute,
2928 #ifdef CONFIG_SND_DEBUG
2930 .mixers = { alc880_test_mixer },
2931 .init_verbs = { alc880_test_init_verbs },
2932 .num_dacs = ARRAY_SIZE(alc880_test_dac_nids),
2933 .dac_nids = alc880_test_dac_nids,
2934 .dig_out_nid = ALC880_DIGOUT_NID,
2935 .num_channel_mode = ARRAY_SIZE(alc880_test_modes),
2936 .channel_mode = alc880_test_modes,
2937 .input_mux = &alc880_test_capture_source,
2943 * Automatic parse of I/O pins from the BIOS configuration
2946 #define NUM_CONTROL_ALLOC 32
2947 #define NUM_VERB_ALLOC 32
2951 ALC_CTL_WIDGET_MUTE,
2954 static struct snd_kcontrol_new alc880_control_templates[] = {
2955 HDA_CODEC_VOLUME(NULL, 0, 0, 0),
2956 HDA_CODEC_MUTE(NULL, 0, 0, 0),
2957 HDA_BIND_MUTE(NULL, 0, 0, 0),
2960 /* add dynamic controls */
2961 static int add_control(struct alc_spec *spec, int type, const char *name,
2964 struct snd_kcontrol_new *knew;
2966 if (spec->num_kctl_used >= spec->num_kctl_alloc) {
2967 int num = spec->num_kctl_alloc + NUM_CONTROL_ALLOC;
2969 /* array + terminator */
2970 knew = kcalloc(num + 1, sizeof(*knew), GFP_KERNEL);
2973 if (spec->kctl_alloc) {
2974 memcpy(knew, spec->kctl_alloc,
2975 sizeof(*knew) * spec->num_kctl_alloc);
2976 kfree(spec->kctl_alloc);
2978 spec->kctl_alloc = knew;
2979 spec->num_kctl_alloc = num;
2982 knew = &spec->kctl_alloc[spec->num_kctl_used];
2983 *knew = alc880_control_templates[type];
2984 knew->name = kstrdup(name, GFP_KERNEL);
2987 knew->private_value = val;
2988 spec->num_kctl_used++;
2992 #define alc880_is_fixed_pin(nid) ((nid) >= 0x14 && (nid) <= 0x17)
2993 #define alc880_fixed_pin_idx(nid) ((nid) - 0x14)
2994 #define alc880_is_multi_pin(nid) ((nid) >= 0x18)
2995 #define alc880_multi_pin_idx(nid) ((nid) - 0x18)
2996 #define alc880_is_input_pin(nid) ((nid) >= 0x18)
2997 #define alc880_input_pin_idx(nid) ((nid) - 0x18)
2998 #define alc880_idx_to_dac(nid) ((nid) + 0x02)
2999 #define alc880_dac_to_idx(nid) ((nid) - 0x02)
3000 #define alc880_idx_to_mixer(nid) ((nid) + 0x0c)
3001 #define alc880_idx_to_selector(nid) ((nid) + 0x10)
3002 #define ALC880_PIN_CD_NID 0x1c
3004 /* fill in the dac_nids table from the parsed pin configuration */
3005 static int alc880_auto_fill_dac_nids(struct alc_spec *spec,
3006 const struct auto_pin_cfg *cfg)
3012 memset(assigned, 0, sizeof(assigned));
3013 spec->multiout.dac_nids = spec->private_dac_nids;
3015 /* check the pins hardwired to audio widget */
3016 for (i = 0; i < cfg->line_outs; i++) {
3017 nid = cfg->line_out_pins[i];
3018 if (alc880_is_fixed_pin(nid)) {
3019 int idx = alc880_fixed_pin_idx(nid);
3020 spec->multiout.dac_nids[i] = alc880_idx_to_dac(idx);
3024 /* left pins can be connect to any audio widget */
3025 for (i = 0; i < cfg->line_outs; i++) {
3026 nid = cfg->line_out_pins[i];
3027 if (alc880_is_fixed_pin(nid))
3029 /* search for an empty channel */
3030 for (j = 0; j < cfg->line_outs; j++) {
3032 spec->multiout.dac_nids[i] =
3033 alc880_idx_to_dac(j);
3039 spec->multiout.num_dacs = cfg->line_outs;
3043 /* add playback controls from the parsed DAC table */
3044 static int alc880_auto_create_multi_out_ctls(struct alc_spec *spec,
3045 const struct auto_pin_cfg *cfg)
3048 static const char *chname[4] = {
3049 "Front", "Surround", NULL /*CLFE*/, "Side"
3054 for (i = 0; i < cfg->line_outs; i++) {
3055 if (!spec->multiout.dac_nids[i])
3057 nid = alc880_idx_to_mixer(alc880_dac_to_idx(spec->multiout.dac_nids[i]));
3060 err = add_control(spec, ALC_CTL_WIDGET_VOL,
3061 "Center Playback Volume",
3062 HDA_COMPOSE_AMP_VAL(nid, 1, 0,
3066 err = add_control(spec, ALC_CTL_WIDGET_VOL,
3067 "LFE Playback Volume",
3068 HDA_COMPOSE_AMP_VAL(nid, 2, 0,
3072 err = add_control(spec, ALC_CTL_BIND_MUTE,
3073 "Center Playback Switch",
3074 HDA_COMPOSE_AMP_VAL(nid, 1, 2,
3078 err = add_control(spec, ALC_CTL_BIND_MUTE,
3079 "LFE Playback Switch",
3080 HDA_COMPOSE_AMP_VAL(nid, 2, 2,
3085 sprintf(name, "%s Playback Volume", chname[i]);
3086 err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
3087 HDA_COMPOSE_AMP_VAL(nid, 3, 0,
3091 sprintf(name, "%s Playback Switch", chname[i]);
3092 err = add_control(spec, ALC_CTL_BIND_MUTE, name,
3093 HDA_COMPOSE_AMP_VAL(nid, 3, 2,
3102 /* add playback controls for speaker and HP outputs */
3103 static int alc880_auto_create_extra_out(struct alc_spec *spec, hda_nid_t pin,
3113 if (alc880_is_fixed_pin(pin)) {
3114 nid = alc880_idx_to_dac(alc880_fixed_pin_idx(pin));
3115 /* specify the DAC as the extra output */
3116 if (!spec->multiout.hp_nid)
3117 spec->multiout.hp_nid = nid;
3119 spec->multiout.extra_out_nid[0] = nid;
3120 /* control HP volume/switch on the output mixer amp */
3121 nid = alc880_idx_to_mixer(alc880_fixed_pin_idx(pin));
3122 sprintf(name, "%s Playback Volume", pfx);
3123 err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
3124 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT));
3127 sprintf(name, "%s Playback Switch", pfx);
3128 err = add_control(spec, ALC_CTL_BIND_MUTE, name,
3129 HDA_COMPOSE_AMP_VAL(nid, 3, 2, HDA_INPUT));
3132 } else if (alc880_is_multi_pin(pin)) {
3133 /* set manual connection */
3134 /* we have only a switch on HP-out PIN */
3135 sprintf(name, "%s Playback Switch", pfx);
3136 err = add_control(spec, ALC_CTL_WIDGET_MUTE, name,
3137 HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_OUTPUT));
3144 /* create input playback/capture controls for the given pin */
3145 static int new_analog_input(struct alc_spec *spec, hda_nid_t pin,
3146 const char *ctlname,
3147 int idx, hda_nid_t mix_nid)
3152 sprintf(name, "%s Playback Volume", ctlname);
3153 err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
3154 HDA_COMPOSE_AMP_VAL(mix_nid, 3, idx, HDA_INPUT));
3157 sprintf(name, "%s Playback Switch", ctlname);
3158 err = add_control(spec, ALC_CTL_WIDGET_MUTE, name,
3159 HDA_COMPOSE_AMP_VAL(mix_nid, 3, idx, HDA_INPUT));
3165 /* create playback/capture controls for input pins */
3166 static int alc880_auto_create_analog_input_ctls(struct alc_spec *spec,
3167 const struct auto_pin_cfg *cfg)
3169 struct hda_input_mux *imux = &spec->private_imux;
3172 for (i = 0; i < AUTO_PIN_LAST; i++) {
3173 if (alc880_is_input_pin(cfg->input_pins[i])) {
3174 idx = alc880_input_pin_idx(cfg->input_pins[i]);
3175 err = new_analog_input(spec, cfg->input_pins[i],
3176 auto_pin_cfg_labels[i],
3180 imux->items[imux->num_items].label =
3181 auto_pin_cfg_labels[i];
3182 imux->items[imux->num_items].index =
3183 alc880_input_pin_idx(cfg->input_pins[i]);
3190 static void alc880_auto_set_output_and_unmute(struct hda_codec *codec,
3191 hda_nid_t nid, int pin_type,
3195 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
3197 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
3199 /* need the manual connection? */
3200 if (alc880_is_multi_pin(nid)) {
3201 struct alc_spec *spec = codec->spec;
3202 int idx = alc880_multi_pin_idx(nid);
3203 snd_hda_codec_write(codec, alc880_idx_to_selector(idx), 0,
3204 AC_VERB_SET_CONNECT_SEL,
3205 alc880_dac_to_idx(spec->multiout.dac_nids[dac_idx]));
3209 static int get_pin_type(int line_out_type)
3211 if (line_out_type == AUTO_PIN_HP_OUT)
3217 static void alc880_auto_init_multi_out(struct hda_codec *codec)
3219 struct alc_spec *spec = codec->spec;
3222 alc_subsystem_id(codec, 0x15, 0x1b, 0x14);
3223 for (i = 0; i < spec->autocfg.line_outs; i++) {
3224 hda_nid_t nid = spec->autocfg.line_out_pins[i];
3225 int pin_type = get_pin_type(spec->autocfg.line_out_type);
3226 alc880_auto_set_output_and_unmute(codec, nid, pin_type, i);
3230 static void alc880_auto_init_extra_out(struct hda_codec *codec)
3232 struct alc_spec *spec = codec->spec;
3235 pin = spec->autocfg.speaker_pins[0];
3236 if (pin) /* connect to front */
3237 alc880_auto_set_output_and_unmute(codec, pin, PIN_OUT, 0);
3238 pin = spec->autocfg.hp_pins[0];
3239 if (pin) /* connect to front */
3240 alc880_auto_set_output_and_unmute(codec, pin, PIN_HP, 0);
3243 static void alc880_auto_init_analog_input(struct hda_codec *codec)
3245 struct alc_spec *spec = codec->spec;
3248 for (i = 0; i < AUTO_PIN_LAST; i++) {
3249 hda_nid_t nid = spec->autocfg.input_pins[i];
3250 if (alc880_is_input_pin(nid)) {
3251 snd_hda_codec_write(codec, nid, 0,
3252 AC_VERB_SET_PIN_WIDGET_CONTROL,
3253 i <= AUTO_PIN_FRONT_MIC ?
3254 PIN_VREF80 : PIN_IN);
3255 if (nid != ALC880_PIN_CD_NID)
3256 snd_hda_codec_write(codec, nid, 0,
3257 AC_VERB_SET_AMP_GAIN_MUTE,
3263 /* parse the BIOS configuration and set up the alc_spec */
3264 /* return 1 if successful, 0 if the proper config is not found,
3265 * or a negative error code
3267 static int alc880_parse_auto_config(struct hda_codec *codec)
3269 struct alc_spec *spec = codec->spec;
3271 static hda_nid_t alc880_ignore[] = { 0x1d, 0 };
3273 err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
3277 if (!spec->autocfg.line_outs)
3278 return 0; /* can't find valid BIOS pin config */
3280 err = alc880_auto_fill_dac_nids(spec, &spec->autocfg);
3283 err = alc880_auto_create_multi_out_ctls(spec, &spec->autocfg);
3286 err = alc880_auto_create_extra_out(spec,
3287 spec->autocfg.speaker_pins[0],
3291 err = alc880_auto_create_extra_out(spec, spec->autocfg.hp_pins[0],
3295 err = alc880_auto_create_analog_input_ctls(spec, &spec->autocfg);
3299 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
3301 if (spec->autocfg.dig_out_pin)
3302 spec->multiout.dig_out_nid = ALC880_DIGOUT_NID;
3303 if (spec->autocfg.dig_in_pin)
3304 spec->dig_in_nid = ALC880_DIGIN_NID;
3306 if (spec->kctl_alloc)
3307 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
3309 spec->init_verbs[spec->num_init_verbs++] = alc880_volume_init_verbs;
3311 spec->num_mux_defs = 1;
3312 spec->input_mux = &spec->private_imux;
3317 /* additional initialization for auto-configuration model */
3318 static void alc880_auto_init(struct hda_codec *codec)
3320 alc880_auto_init_multi_out(codec);
3321 alc880_auto_init_extra_out(codec);
3322 alc880_auto_init_analog_input(codec);
3326 * OK, here we have finally the patch for ALC880
3329 static int patch_alc880(struct hda_codec *codec)
3331 struct alc_spec *spec;
3335 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
3341 board_config = snd_hda_check_board_config(codec, ALC880_MODEL_LAST,
3344 if (board_config < 0) {
3345 printk(KERN_INFO "hda_codec: Unknown model for ALC880, "
3346 "trying auto-probe from BIOS...\n");
3347 board_config = ALC880_AUTO;
3350 if (board_config == ALC880_AUTO) {
3351 /* automatic parse from the BIOS config */
3352 err = alc880_parse_auto_config(codec);
3358 "hda_codec: Cannot set up configuration "
3359 "from BIOS. Using 3-stack mode...\n");
3360 board_config = ALC880_3ST;
3364 if (board_config != ALC880_AUTO)
3365 setup_preset(spec, &alc880_presets[board_config]);
3367 spec->stream_name_analog = "ALC880 Analog";
3368 spec->stream_analog_playback = &alc880_pcm_analog_playback;
3369 spec->stream_analog_capture = &alc880_pcm_analog_capture;
3371 spec->stream_name_digital = "ALC880 Digital";
3372 spec->stream_digital_playback = &alc880_pcm_digital_playback;
3373 spec->stream_digital_capture = &alc880_pcm_digital_capture;
3375 if (!spec->adc_nids && spec->input_mux) {
3376 /* check whether NID 0x07 is valid */
3377 unsigned int wcap = get_wcaps(codec, alc880_adc_nids[0]);
3379 wcap = (wcap & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT;
3380 if (wcap != AC_WID_AUD_IN) {
3381 spec->adc_nids = alc880_adc_nids_alt;
3382 spec->num_adc_nids = ARRAY_SIZE(alc880_adc_nids_alt);
3383 spec->mixers[spec->num_mixers] =
3384 alc880_capture_alt_mixer;
3387 spec->adc_nids = alc880_adc_nids;
3388 spec->num_adc_nids = ARRAY_SIZE(alc880_adc_nids);
3389 spec->mixers[spec->num_mixers] = alc880_capture_mixer;
3394 codec->patch_ops = alc_patch_ops;
3395 if (board_config == ALC880_AUTO)
3396 spec->init_hook = alc880_auto_init;
3397 #ifdef CONFIG_SND_HDA_POWER_SAVE
3398 if (!spec->loopback.amplist)
3399 spec->loopback.amplist = alc880_loopbacks;
3410 static hda_nid_t alc260_dac_nids[1] = {
3415 static hda_nid_t alc260_adc_nids[1] = {
3420 static hda_nid_t alc260_adc_nids_alt[1] = {
3425 static hda_nid_t alc260_hp_adc_nids[2] = {
3430 /* NIDs used when simultaneous access to both ADCs makes sense. Note that
3431 * alc260_capture_mixer assumes ADC0 (nid 0x04) is the first ADC.
3433 static hda_nid_t alc260_dual_adc_nids[2] = {
3438 #define ALC260_DIGOUT_NID 0x03
3439 #define ALC260_DIGIN_NID 0x06
3441 static struct hda_input_mux alc260_capture_source = {
3445 { "Front Mic", 0x1 },
3451 /* On Fujitsu S702x laptops capture only makes sense from Mic/LineIn jack,
3452 * headphone jack and the internal CD lines since these are the only pins at
3453 * which audio can appear. For flexibility, also allow the option of
3454 * recording the mixer output on the second ADC (ADC0 doesn't have a
3455 * connection to the mixer output).
3457 static struct hda_input_mux alc260_fujitsu_capture_sources[2] = {
3461 { "Mic/Line", 0x0 },
3463 { "Headphone", 0x2 },
3469 { "Mic/Line", 0x0 },
3471 { "Headphone", 0x2 },
3478 /* Acer TravelMate(/Extensa/Aspire) notebooks have similar configuration to
3479 * the Fujitsu S702x, but jacks are marked differently.
3481 static struct hda_input_mux alc260_acer_capture_sources[2] = {
3488 { "Headphone", 0x5 },
3497 { "Headphone", 0x6 },
3503 * This is just place-holder, so there's something for alc_build_pcms to look
3504 * at when it calculates the maximum number of channels. ALC260 has no mixer
3505 * element which allows changing the channel mode, so the verb list is
3508 static struct hda_channel_mode alc260_modes[1] = {
3513 /* Mixer combinations
3515 * basic: base_output + input + pc_beep + capture
3516 * HP: base_output + input + capture_alt
3517 * HP_3013: hp_3013 + input + capture
3518 * fujitsu: fujitsu + capture
3519 * acer: acer + capture
3522 static struct snd_kcontrol_new alc260_base_output_mixer[] = {
3523 HDA_CODEC_VOLUME("Front Playback Volume", 0x08, 0x0, HDA_OUTPUT),
3524 HDA_BIND_MUTE("Front Playback Switch", 0x08, 2, HDA_INPUT),
3525 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x09, 0x0, HDA_OUTPUT),
3526 HDA_BIND_MUTE("Headphone Playback Switch", 0x09, 2, HDA_INPUT),
3527 HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x0a, 1, 0x0, HDA_OUTPUT),
3528 HDA_BIND_MUTE_MONO("Mono Playback Switch", 0x0a, 1, 2, HDA_INPUT),
3532 static struct snd_kcontrol_new alc260_input_mixer[] = {
3533 HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT),
3534 HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT),
3535 HDA_CODEC_VOLUME("Line Playback Volume", 0x07, 0x02, HDA_INPUT),
3536 HDA_CODEC_MUTE("Line Playback Switch", 0x07, 0x02, HDA_INPUT),
3537 HDA_CODEC_VOLUME("Mic Playback Volume", 0x07, 0x0, HDA_INPUT),
3538 HDA_CODEC_MUTE("Mic Playback Switch", 0x07, 0x0, HDA_INPUT),
3539 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x07, 0x01, HDA_INPUT),
3540 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x07, 0x01, HDA_INPUT),
3544 static struct snd_kcontrol_new alc260_pc_beep_mixer[] = {
3545 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x07, 0x05, HDA_INPUT),
3546 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x07, 0x05, HDA_INPUT),
3550 static struct snd_kcontrol_new alc260_hp_3013_mixer[] = {
3551 HDA_CODEC_VOLUME("Front Playback Volume", 0x09, 0x0, HDA_OUTPUT),
3552 HDA_CODEC_MUTE("Front Playback Switch", 0x10, 0x0, HDA_OUTPUT),
3553 HDA_CODEC_VOLUME("Aux-In Playback Volume", 0x07, 0x06, HDA_INPUT),
3554 HDA_CODEC_MUTE("Aux-In Playback Switch", 0x07, 0x06, HDA_INPUT),
3555 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x08, 0x0, HDA_OUTPUT),
3556 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT),
3557 HDA_CODEC_VOLUME_MONO("iSpeaker Playback Volume", 0x0a, 1, 0x0, HDA_OUTPUT),
3558 HDA_CODEC_MUTE_MONO("iSpeaker Playback Switch", 0x11, 1, 0x0, HDA_OUTPUT),
3562 /* Fujitsu S702x series laptops. ALC260 pin usage: Mic/Line jack = 0x12,
3563 * HP jack = 0x14, CD audio = 0x16, internal speaker = 0x10.
3565 static struct snd_kcontrol_new alc260_fujitsu_mixer[] = {
3566 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x08, 0x0, HDA_OUTPUT),
3567 HDA_BIND_MUTE("Headphone Playback Switch", 0x08, 2, HDA_INPUT),
3568 ALC_PIN_MODE("Headphone Jack Mode", 0x14, ALC_PIN_DIR_INOUT),
3569 HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT),
3570 HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT),
3571 HDA_CODEC_VOLUME("Mic/Line Playback Volume", 0x07, 0x0, HDA_INPUT),
3572 HDA_CODEC_MUTE("Mic/Line Playback Switch", 0x07, 0x0, HDA_INPUT),
3573 ALC_PIN_MODE("Mic/Line Jack Mode", 0x12, ALC_PIN_DIR_IN),
3574 HDA_CODEC_VOLUME("Beep Playback Volume", 0x07, 0x05, HDA_INPUT),
3575 HDA_CODEC_MUTE("Beep Playback Switch", 0x07, 0x05, HDA_INPUT),
3576 HDA_CODEC_VOLUME("Internal Speaker Playback Volume", 0x09, 0x0, HDA_OUTPUT),
3577 HDA_BIND_MUTE("Internal Speaker Playback Switch", 0x09, 2, HDA_INPUT),
3581 /* Mixer for Acer TravelMate(/Extensa/Aspire) notebooks. Note that current
3582 * versions of the ALC260 don't act on requests to enable mic bias from NID
3583 * 0x0f (used to drive the headphone jack in these laptops). The ALC260
3584 * datasheet doesn't mention this restriction. At this stage it's not clear
3585 * whether this behaviour is intentional or is a hardware bug in chip
3586 * revisions available in early 2006. Therefore for now allow the
3587 * "Headphone Jack Mode" control to span all choices, but if it turns out
3588 * that the lack of mic bias for this NID is intentional we could change the
3589 * mode from ALC_PIN_DIR_INOUT to ALC_PIN_DIR_INOUT_NOMICBIAS.
3591 * In addition, Acer TravelMate(/Extensa/Aspire) notebooks in early 2006
3592 * don't appear to make the mic bias available from the "line" jack, even
3593 * though the NID used for this jack (0x14) can supply it. The theory is
3594 * that perhaps Acer have included blocking capacitors between the ALC260
3595 * and the output jack. If this turns out to be the case for all such
3596 * models the "Line Jack Mode" mode could be changed from ALC_PIN_DIR_INOUT
3597 * to ALC_PIN_DIR_INOUT_NOMICBIAS.
3599 * The C20x Tablet series have a mono internal speaker which is controlled
3600 * via the chip's Mono sum widget and pin complex, so include the necessary
3601 * controls for such models. On models without a "mono speaker" the control
3602 * won't do anything.
3604 static struct snd_kcontrol_new alc260_acer_mixer[] = {
3605 HDA_CODEC_VOLUME("Master Playback Volume", 0x08, 0x0, HDA_OUTPUT),
3606 HDA_BIND_MUTE("Master Playback Switch", 0x08, 2, HDA_INPUT),
3607 ALC_PIN_MODE("Headphone Jack Mode", 0x0f, ALC_PIN_DIR_INOUT),
3608 HDA_CODEC_VOLUME_MONO("Mono Speaker Playback Volume", 0x0a, 1, 0x0,
3610 HDA_BIND_MUTE_MONO("Mono Speaker Playback Switch", 0x0a, 1, 2,
3612 HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT),
3613 HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT),
3614 HDA_CODEC_VOLUME("Mic Playback Volume", 0x07, 0x0, HDA_INPUT),
3615 HDA_CODEC_MUTE("Mic Playback Switch", 0x07, 0x0, HDA_INPUT),
3616 ALC_PIN_MODE("Mic Jack Mode", 0x12, ALC_PIN_DIR_IN),
3617 HDA_CODEC_VOLUME("Line Playback Volume", 0x07, 0x02, HDA_INPUT),
3618 HDA_CODEC_MUTE("Line Playback Switch", 0x07, 0x02, HDA_INPUT),
3619 ALC_PIN_MODE("Line Jack Mode", 0x14, ALC_PIN_DIR_INOUT),
3620 HDA_CODEC_VOLUME("Beep Playback Volume", 0x07, 0x05, HDA_INPUT),
3621 HDA_CODEC_MUTE("Beep Playback Switch", 0x07, 0x05, HDA_INPUT),
3625 /* Packard bell V7900 ALC260 pin usage: HP = 0x0f, Mic jack = 0x12,
3626 * Line In jack = 0x14, CD audio = 0x16, pc beep = 0x17.
3628 static struct snd_kcontrol_new alc260_will_mixer[] = {
3629 HDA_CODEC_VOLUME("Master Playback Volume", 0x08, 0x0, HDA_OUTPUT),
3630 HDA_BIND_MUTE("Master Playback Switch", 0x08, 0x2, HDA_INPUT),
3631 HDA_CODEC_VOLUME("Mic Playback Volume", 0x07, 0x0, HDA_INPUT),
3632 HDA_CODEC_MUTE("Mic Playback Switch", 0x07, 0x0, HDA_INPUT),
3633 ALC_PIN_MODE("Mic Jack Mode", 0x12, ALC_PIN_DIR_IN),
3634 HDA_CODEC_VOLUME("Line Playback Volume", 0x07, 0x02, HDA_INPUT),
3635 HDA_CODEC_MUTE("Line Playback Switch", 0x07, 0x02, HDA_INPUT),
3636 ALC_PIN_MODE("Line Jack Mode", 0x14, ALC_PIN_DIR_INOUT),
3637 HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT),
3638 HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT),
3639 HDA_CODEC_VOLUME("Beep Playback Volume", 0x07, 0x05, HDA_INPUT),
3640 HDA_CODEC_MUTE("Beep Playback Switch", 0x07, 0x05, HDA_INPUT),
3644 /* Replacer 672V ALC260 pin usage: Mic jack = 0x12,
3645 * Line In jack = 0x14, ATAPI Mic = 0x13, speaker = 0x0f.
3647 static struct snd_kcontrol_new alc260_replacer_672v_mixer[] = {
3648 HDA_CODEC_VOLUME("Master Playback Volume", 0x08, 0x0, HDA_OUTPUT),
3649 HDA_BIND_MUTE("Master Playback Switch", 0x08, 0x2, HDA_INPUT),
3650 HDA_CODEC_VOLUME("Mic Playback Volume", 0x07, 0x0, HDA_INPUT),
3651 HDA_CODEC_MUTE("Mic Playback Switch", 0x07, 0x0, HDA_INPUT),
3652 ALC_PIN_MODE("Mic Jack Mode", 0x12, ALC_PIN_DIR_IN),
3653 HDA_CODEC_VOLUME("ATAPI Mic Playback Volume", 0x07, 0x1, HDA_INPUT),
3654 HDA_CODEC_MUTE("ATATI Mic Playback Switch", 0x07, 0x1, HDA_INPUT),
3655 HDA_CODEC_VOLUME("Line Playback Volume", 0x07, 0x02, HDA_INPUT),
3656 HDA_CODEC_MUTE("Line Playback Switch", 0x07, 0x02, HDA_INPUT),
3657 ALC_PIN_MODE("Line Jack Mode", 0x14, ALC_PIN_DIR_INOUT),
3661 /* capture mixer elements */
3662 static struct snd_kcontrol_new alc260_capture_mixer[] = {
3663 HDA_CODEC_VOLUME("Capture Volume", 0x04, 0x0, HDA_INPUT),
3664 HDA_CODEC_MUTE("Capture Switch", 0x04, 0x0, HDA_INPUT),
3665 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x05, 0x0, HDA_INPUT),
3666 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x05, 0x0, HDA_INPUT),
3668 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
3669 /* The multiple "Capture Source" controls confuse alsamixer
3670 * So call somewhat different..
3671 * FIXME: the controls appear in the "playback" view!
3673 /* .name = "Capture Source", */
3674 .name = "Input Source",
3676 .info = alc_mux_enum_info,
3677 .get = alc_mux_enum_get,
3678 .put = alc_mux_enum_put,
3683 static struct snd_kcontrol_new alc260_capture_alt_mixer[] = {
3684 HDA_CODEC_VOLUME("Capture Volume", 0x05, 0x0, HDA_INPUT),
3685 HDA_CODEC_MUTE("Capture Switch", 0x05, 0x0, HDA_INPUT),
3687 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
3688 /* The multiple "Capture Source" controls confuse alsamixer
3689 * So call somewhat different..
3690 * FIXME: the controls appear in the "playback" view!
3692 /* .name = "Capture Source", */
3693 .name = "Input Source",
3695 .info = alc_mux_enum_info,
3696 .get = alc_mux_enum_get,
3697 .put = alc_mux_enum_put,
3703 * initialization verbs
3705 static struct hda_verb alc260_init_verbs[] = {
3706 /* Line In pin widget for input */
3707 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
3708 /* CD pin widget for input */
3709 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
3710 /* Mic1 (rear panel) pin widget for input and vref at 80% */
3711 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
3712 /* Mic2 (front panel) pin widget for input and vref at 80% */
3713 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
3714 /* LINE-2 is used for line-out in rear */
3715 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
3716 /* select line-out */
3717 {0x0e, AC_VERB_SET_CONNECT_SEL, 0x00},
3719 {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
3721 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
3723 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
3724 /* mute capture amp left and right */
3725 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3726 /* set connection select to line in (default select for this ADC) */
3727 {0x04, AC_VERB_SET_CONNECT_SEL, 0x02},
3728 /* mute capture amp left and right */
3729 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3730 /* set connection select to line in (default select for this ADC) */
3731 {0x05, AC_VERB_SET_CONNECT_SEL, 0x02},
3732 /* set vol=0 Line-Out mixer amp left and right */
3733 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3734 /* unmute pin widget amp left and right (no gain on this amp) */
3735 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3736 /* set vol=0 HP mixer amp left and right */
3737 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3738 /* unmute pin widget amp left and right (no gain on this amp) */
3739 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3740 /* set vol=0 Mono mixer amp left and right */
3741 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3742 /* unmute pin widget amp left and right (no gain on this amp) */
3743 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3744 /* unmute LINE-2 out pin */
3745 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3746 /* Amp Indexes: CD = 0x04, Line In 1 = 0x02, Mic 1 = 0x00 &
3749 /* mute analog inputs */
3750 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3751 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3752 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
3753 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
3754 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
3755 /* Amp Indexes: DAC = 0x01 & mixer = 0x00 */
3756 /* mute Front out path */
3757 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3758 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3759 /* mute Headphone out path */
3760 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3761 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3762 /* mute Mono out path */
3763 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3764 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3768 #if 0 /* should be identical with alc260_init_verbs? */
3769 static struct hda_verb alc260_hp_init_verbs[] = {
3770 /* Headphone and output */
3771 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0},
3773 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
3774 /* Mic1 (rear panel) pin widget for input and vref at 80% */
3775 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
3776 /* Mic2 (front panel) pin widget for input and vref at 80% */
3777 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
3778 /* Line In pin widget for input */
3779 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
3780 /* Line-2 pin widget for output */
3781 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
3782 /* CD pin widget for input */
3783 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
3784 /* unmute amp left and right */
3785 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000},
3786 /* set connection select to line in (default select for this ADC) */
3787 {0x04, AC_VERB_SET_CONNECT_SEL, 0x02},
3788 /* unmute Line-Out mixer amp left and right (volume = 0) */
3789 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
3790 /* mute pin widget amp left and right (no gain on this amp) */
3791 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
3792 /* unmute HP mixer amp left and right (volume = 0) */
3793 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
3794 /* mute pin widget amp left and right (no gain on this amp) */
3795 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
3796 /* Amp Indexes: CD = 0x04, Line In 1 = 0x02, Mic 1 = 0x00 &
3799 /* mute analog inputs */
3800 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3801 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3802 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
3803 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
3804 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
3805 /* Amp Indexes: DAC = 0x01 & mixer = 0x00 */
3806 /* Unmute Front out path */
3807 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
3808 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
3809 /* Unmute Headphone out path */
3810 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
3811 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
3812 /* Unmute Mono out path */
3813 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
3814 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
3819 static struct hda_verb alc260_hp_3013_init_verbs[] = {
3820 /* Line out and output */
3821 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
3823 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
3824 /* Mic1 (rear panel) pin widget for input and vref at 80% */
3825 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
3826 /* Mic2 (front panel) pin widget for input and vref at 80% */
3827 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
3828 /* Line In pin widget for input */
3829 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
3830 /* Headphone pin widget for output */
3831 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0},
3832 /* CD pin widget for input */
3833 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
3834 /* unmute amp left and right */
3835 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000},
3836 /* set connection select to line in (default select for this ADC) */
3837 {0x04, AC_VERB_SET_CONNECT_SEL, 0x02},
3838 /* unmute Line-Out mixer amp left and right (volume = 0) */
3839 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
3840 /* mute pin widget amp left and right (no gain on this amp) */
3841 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
3842 /* unmute HP mixer amp left and right (volume = 0) */
3843 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, 0xb000},
3844 /* mute pin widget amp left and right (no gain on this amp) */
3845 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
3846 /* Amp Indexes: CD = 0x04, Line In 1 = 0x02, Mic 1 = 0x00 &
3849 /* mute analog inputs */
3850 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3851 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3852 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
3853 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
3854 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
3855 /* Amp Indexes: DAC = 0x01 & mixer = 0x00 */
3856 /* Unmute Front out path */
3857 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
3858 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
3859 /* Unmute Headphone out path */
3860 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
3861 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
3862 /* Unmute Mono out path */
3863 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
3864 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
3868 /* Initialisation sequence for ALC260 as configured in Fujitsu S702x
3869 * laptops. ALC260 pin usage: Mic/Line jack = 0x12, HP jack = 0x14, CD
3870 * audio = 0x16, internal speaker = 0x10.
3872 static struct hda_verb alc260_fujitsu_init_verbs[] = {
3873 /* Disable all GPIOs */
3874 {0x01, AC_VERB_SET_GPIO_MASK, 0},
3875 /* Internal speaker is connected to headphone pin */
3876 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
3877 /* Headphone/Line-out jack connects to Line1 pin; make it an output */
3878 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
3879 /* Mic/Line-in jack is connected to mic1 pin, so make it an input */
3880 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
3881 /* Ensure all other unused pins are disabled and muted. */
3882 {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3883 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3884 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3885 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3886 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3887 {0x13, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3888 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3889 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3891 /* Disable digital (SPDIF) pins */
3892 {0x03, AC_VERB_SET_DIGI_CONVERT_1, 0},
3893 {0x06, AC_VERB_SET_DIGI_CONVERT_1, 0},
3895 /* Ensure Line1 pin widget takes its input from the OUT1 sum bus
3896 * when acting as an output.
3898 {0x0d, AC_VERB_SET_CONNECT_SEL, 0},
3900 /* Start with output sum widgets muted and their output gains at min */
3901 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3902 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3903 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3904 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3905 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3906 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3907 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3908 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3909 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3911 /* Unmute HP pin widget amp left and right (no equiv mixer ctrl) */
3912 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3913 /* Unmute Line1 pin widget output buffer since it starts as an output.
3914 * If the pin mode is changed by the user the pin mode control will
3915 * take care of enabling the pin's input/output buffers as needed.
3916 * Therefore there's no need to enable the input buffer at this
3919 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
3920 /* Unmute input buffer of pin widget used for Line-in (no equiv
3923 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
3925 /* Mute capture amp left and right */
3926 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3927 /* Set ADC connection select to match default mixer setting - line
3930 {0x04, AC_VERB_SET_CONNECT_SEL, 0x00},
3932 /* Do the same for the second ADC: mute capture input amp and
3933 * set ADC connection to line in (on mic1 pin)
3935 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3936 {0x05, AC_VERB_SET_CONNECT_SEL, 0x00},
3938 /* Mute all inputs to mixer widget (even unconnected ones) */
3939 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* mic1 pin */
3940 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, /* mic2 pin */
3941 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, /* line1 pin */
3942 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, /* line2 pin */
3943 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, /* CD pin */
3944 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)}, /* Beep-gen pin */
3945 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)}, /* Line-out pin */
3946 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)}, /* HP-pin pin */
3951 /* Initialisation sequence for ALC260 as configured in Acer TravelMate and
3952 * similar laptops (adapted from Fujitsu init verbs).
3954 static struct hda_verb alc260_acer_init_verbs[] = {
3955 /* On TravelMate laptops, GPIO 0 enables the internal speaker and
3956 * the headphone jack. Turn this on and rely on the standard mute
3957 * methods whenever the user wants to turn these outputs off.
3959 {0x01, AC_VERB_SET_GPIO_MASK, 0x01},
3960 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
3961 {0x01, AC_VERB_SET_GPIO_DATA, 0x01},
3962 /* Internal speaker/Headphone jack is connected to Line-out pin */
3963 {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
3964 /* Internal microphone/Mic jack is connected to Mic1 pin */
3965 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF50},
3966 /* Line In jack is connected to Line1 pin */
3967 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
3968 /* Some Acers (eg: C20x Tablets) use Mono pin for internal speaker */
3969 {0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
3970 /* Ensure all other unused pins are disabled and muted. */
3971 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3972 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3973 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3974 {0x13, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3975 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0},
3976 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3977 /* Disable digital (SPDIF) pins */
3978 {0x03, AC_VERB_SET_DIGI_CONVERT_1, 0},
3979 {0x06, AC_VERB_SET_DIGI_CONVERT_1, 0},
3981 /* Ensure Mic1 and Line1 pin widgets take input from the OUT1 sum
3982 * bus when acting as outputs.
3984 {0x0b, AC_VERB_SET_CONNECT_SEL, 0},
3985 {0x0d, AC_VERB_SET_CONNECT_SEL, 0},
3987 /* Start with output sum widgets muted and their output gains at min */
3988 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3989 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3990 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3991 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3992 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3993 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3994 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
3995 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
3996 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
3998 /* Unmute Line-out pin widget amp left and right
3999 * (no equiv mixer ctrl)
4001 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4002 /* Unmute mono pin widget amp output (no equiv mixer ctrl) */
4003 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4004 /* Unmute Mic1 and Line1 pin widget input buffers since they start as
4005 * inputs. If the pin mode is changed by the user the pin mode control
4006 * will take care of enabling the pin's input/output buffers as needed.
4007 * Therefore there's no need to enable the input buffer at this
4010 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4011 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4013 /* Mute capture amp left and right */
4014 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4015 /* Set ADC connection select to match default mixer setting - mic
4018 {0x04, AC_VERB_SET_CONNECT_SEL, 0x00},
4020 /* Do similar with the second ADC: mute capture input amp and
4021 * set ADC connection to mic to match ALSA's default state.
4023 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4024 {0x05, AC_VERB_SET_CONNECT_SEL, 0x00},
4026 /* Mute all inputs to mixer widget (even unconnected ones) */
4027 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* mic1 pin */
4028 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, /* mic2 pin */
4029 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, /* line1 pin */
4030 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, /* line2 pin */
4031 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, /* CD pin */
4032 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)}, /* Beep-gen pin */
4033 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)}, /* Line-out pin */
4034 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)}, /* HP-pin pin */
4039 static struct hda_verb alc260_will_verbs[] = {
4040 {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
4041 {0x0b, AC_VERB_SET_CONNECT_SEL, 0x00},
4042 {0x0d, AC_VERB_SET_CONNECT_SEL, 0x00},
4043 {0x0f, AC_VERB_SET_EAPD_BTLENABLE, 0x02},
4044 {0x1a, AC_VERB_SET_COEF_INDEX, 0x07},
4045 {0x1a, AC_VERB_SET_PROC_COEF, 0x3040},
4049 static struct hda_verb alc260_replacer_672v_verbs[] = {
4050 {0x0f, AC_VERB_SET_EAPD_BTLENABLE, 0x02},
4051 {0x1a, AC_VERB_SET_COEF_INDEX, 0x07},
4052 {0x1a, AC_VERB_SET_PROC_COEF, 0x3050},
4054 {0x01, AC_VERB_SET_GPIO_MASK, 0x01},
4055 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x01},
4056 {0x01, AC_VERB_SET_GPIO_DATA, 0x00},
4058 {0x0f, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
4062 /* toggle speaker-output according to the hp-jack state */
4063 static void alc260_replacer_672v_automute(struct hda_codec *codec)
4065 unsigned int present;
4067 /* speaker --> GPIO Data 0, hp or spdif --> GPIO data 1 */
4068 present = snd_hda_codec_read(codec, 0x0f, 0,
4069 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
4071 snd_hda_codec_write_cache(codec, 0x01, 0,
4072 AC_VERB_SET_GPIO_DATA, 1);
4073 snd_hda_codec_write_cache(codec, 0x0f, 0,
4074 AC_VERB_SET_PIN_WIDGET_CONTROL,
4077 snd_hda_codec_write_cache(codec, 0x01, 0,
4078 AC_VERB_SET_GPIO_DATA, 0);
4079 snd_hda_codec_write_cache(codec, 0x0f, 0,
4080 AC_VERB_SET_PIN_WIDGET_CONTROL,
4085 static void alc260_replacer_672v_unsol_event(struct hda_codec *codec,
4088 if ((res >> 26) == ALC880_HP_EVENT)
4089 alc260_replacer_672v_automute(codec);
4092 /* Test configuration for debugging, modelled after the ALC880 test
4095 #ifdef CONFIG_SND_DEBUG
4096 static hda_nid_t alc260_test_dac_nids[1] = {
4099 static hda_nid_t alc260_test_adc_nids[2] = {
4102 /* For testing the ALC260, each input MUX needs its own definition since
4103 * the signal assignments are different. This assumes that the first ADC
4106 static struct hda_input_mux alc260_test_capture_sources[2] = {
4110 { "MIC1 pin", 0x0 },
4111 { "MIC2 pin", 0x1 },
4112 { "LINE1 pin", 0x2 },
4113 { "LINE2 pin", 0x3 },
4115 { "LINE-OUT pin", 0x5 },
4116 { "HP-OUT pin", 0x6 },
4122 { "MIC1 pin", 0x0 },
4123 { "MIC2 pin", 0x1 },
4124 { "LINE1 pin", 0x2 },
4125 { "LINE2 pin", 0x3 },
4128 { "LINE-OUT pin", 0x6 },
4129 { "HP-OUT pin", 0x7 },
4133 static struct snd_kcontrol_new alc260_test_mixer[] = {
4134 /* Output driver widgets */
4135 HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x0a, 1, 0x0, HDA_OUTPUT),
4136 HDA_BIND_MUTE_MONO("Mono Playback Switch", 0x0a, 1, 2, HDA_INPUT),
4137 HDA_CODEC_VOLUME("LOUT2 Playback Volume", 0x09, 0x0, HDA_OUTPUT),
4138 HDA_BIND_MUTE("LOUT2 Playback Switch", 0x09, 2, HDA_INPUT),
4139 HDA_CODEC_VOLUME("LOUT1 Playback Volume", 0x08, 0x0, HDA_OUTPUT),
4140 HDA_BIND_MUTE("LOUT1 Playback Switch", 0x08, 2, HDA_INPUT),
4142 /* Modes for retasking pin widgets
4143 * Note: the ALC260 doesn't seem to act on requests to enable mic
4144 * bias from NIDs 0x0f and 0x10. The ALC260 datasheet doesn't
4145 * mention this restriction. At this stage it's not clear whether
4146 * this behaviour is intentional or is a hardware bug in chip
4147 * revisions available at least up until early 2006. Therefore for
4148 * now allow the "HP-OUT" and "LINE-OUT" Mode controls to span all
4149 * choices, but if it turns out that the lack of mic bias for these
4150 * NIDs is intentional we could change their modes from
4151 * ALC_PIN_DIR_INOUT to ALC_PIN_DIR_INOUT_NOMICBIAS.
4153 ALC_PIN_MODE("HP-OUT pin mode", 0x10, ALC_PIN_DIR_INOUT),
4154 ALC_PIN_MODE("LINE-OUT pin mode", 0x0f, ALC_PIN_DIR_INOUT),
4155 ALC_PIN_MODE("LINE2 pin mode", 0x15, ALC_PIN_DIR_INOUT),
4156 ALC_PIN_MODE("LINE1 pin mode", 0x14, ALC_PIN_DIR_INOUT),
4157 ALC_PIN_MODE("MIC2 pin mode", 0x13, ALC_PIN_DIR_INOUT),
4158 ALC_PIN_MODE("MIC1 pin mode", 0x12, ALC_PIN_DIR_INOUT),
4160 /* Loopback mixer controls */
4161 HDA_CODEC_VOLUME("MIC1 Playback Volume", 0x07, 0x00, HDA_INPUT),
4162 HDA_CODEC_MUTE("MIC1 Playback Switch", 0x07, 0x00, HDA_INPUT),
4163 HDA_CODEC_VOLUME("MIC2 Playback Volume", 0x07, 0x01, HDA_INPUT),
4164 HDA_CODEC_MUTE("MIC2 Playback Switch", 0x07, 0x01, HDA_INPUT),
4165 HDA_CODEC_VOLUME("LINE1 Playback Volume", 0x07, 0x02, HDA_INPUT),
4166 HDA_CODEC_MUTE("LINE1 Playback Switch", 0x07, 0x02, HDA_INPUT),
4167 HDA_CODEC_VOLUME("LINE2 Playback Volume", 0x07, 0x03, HDA_INPUT),
4168 HDA_CODEC_MUTE("LINE2 Playback Switch", 0x07, 0x03, HDA_INPUT),
4169 HDA_CODEC_VOLUME("CD Playback Volume", 0x07, 0x04, HDA_INPUT),
4170 HDA_CODEC_MUTE("CD Playback Switch", 0x07, 0x04, HDA_INPUT),
4171 HDA_CODEC_VOLUME("Beep Playback Volume", 0x07, 0x05, HDA_INPUT),
4172 HDA_CODEC_MUTE("Beep Playback Switch", 0x07, 0x05, HDA_INPUT),
4173 HDA_CODEC_VOLUME("LINE-OUT loopback Playback Volume", 0x07, 0x06, HDA_INPUT),
4174 HDA_CODEC_MUTE("LINE-OUT loopback Playback Switch", 0x07, 0x06, HDA_INPUT),
4175 HDA_CODEC_VOLUME("HP-OUT loopback Playback Volume", 0x07, 0x7, HDA_INPUT),
4176 HDA_CODEC_MUTE("HP-OUT loopback Playback Switch", 0x07, 0x7, HDA_INPUT),
4178 /* Controls for GPIO pins, assuming they are configured as outputs */
4179 ALC_GPIO_DATA_SWITCH("GPIO pin 0", 0x01, 0x01),
4180 ALC_GPIO_DATA_SWITCH("GPIO pin 1", 0x01, 0x02),
4181 ALC_GPIO_DATA_SWITCH("GPIO pin 2", 0x01, 0x04),
4182 ALC_GPIO_DATA_SWITCH("GPIO pin 3", 0x01, 0x08),
4184 /* Switches to allow the digital IO pins to be enabled. The datasheet
4185 * is ambigious as to which NID is which; testing on laptops which
4186 * make this output available should provide clarification.
4188 ALC_SPDIF_CTRL_SWITCH("SPDIF Playback Switch", 0x03, 0x01),
4189 ALC_SPDIF_CTRL_SWITCH("SPDIF Capture Switch", 0x06, 0x01),
4193 static struct hda_verb alc260_test_init_verbs[] = {
4194 /* Enable all GPIOs as outputs with an initial value of 0 */
4195 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x0f},
4196 {0x01, AC_VERB_SET_GPIO_DATA, 0x00},
4197 {0x01, AC_VERB_SET_GPIO_MASK, 0x0f},
4199 /* Enable retasking pins as output, initially without power amp */
4200 {0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4201 {0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4202 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4203 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4204 {0x13, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4205 {0x12, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
4207 /* Disable digital (SPDIF) pins initially, but users can enable
4208 * them via a mixer switch. In the case of SPDIF-out, this initverb
4209 * payload also sets the generation to 0, output to be in "consumer"
4210 * PCM format, copyright asserted, no pre-emphasis and no validity
4213 {0x03, AC_VERB_SET_DIGI_CONVERT_1, 0},
4214 {0x06, AC_VERB_SET_DIGI_CONVERT_1, 0},
4216 /* Ensure mic1, mic2, line1 and line2 pin widgets take input from the
4217 * OUT1 sum bus when acting as an output.
4219 {0x0b, AC_VERB_SET_CONNECT_SEL, 0},
4220 {0x0c, AC_VERB_SET_CONNECT_SEL, 0},
4221 {0x0d, AC_VERB_SET_CONNECT_SEL, 0},
4222 {0x0e, AC_VERB_SET_CONNECT_SEL, 0},
4224 /* Start with output sum widgets muted and their output gains at min */
4225 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4226 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4227 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4228 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4229 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4230 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4231 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4232 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4233 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4235 /* Unmute retasking pin widget output buffers since the default
4236 * state appears to be output. As the pin mode is changed by the
4237 * user the pin mode control will take care of enabling the pin's
4238 * input/output buffers as needed.
4240 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4241 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4242 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4243 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4244 {0x13, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4245 {0x12, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4246 /* Also unmute the mono-out pin widget */
4247 {0x11, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4249 /* Mute capture amp left and right */
4250 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4251 /* Set ADC connection select to match default mixer setting (mic1
4254 {0x04, AC_VERB_SET_CONNECT_SEL, 0x00},
4256 /* Do the same for the second ADC: mute capture input amp and
4257 * set ADC connection to mic1 pin
4259 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4260 {0x05, AC_VERB_SET_CONNECT_SEL, 0x00},
4262 /* Mute all inputs to mixer widget (even unconnected ones) */
4263 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)}, /* mic1 pin */
4264 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)}, /* mic2 pin */
4265 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)}, /* line1 pin */
4266 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)}, /* line2 pin */
4267 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)}, /* CD pin */
4268 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)}, /* Beep-gen pin */
4269 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)}, /* Line-out pin */
4270 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)}, /* HP-pin pin */
4276 static struct hda_pcm_stream alc260_pcm_analog_playback = {
4282 static struct hda_pcm_stream alc260_pcm_analog_capture = {
4288 #define alc260_pcm_digital_playback alc880_pcm_digital_playback
4289 #define alc260_pcm_digital_capture alc880_pcm_digital_capture
4292 * for BIOS auto-configuration
4295 static int alc260_add_playback_controls(struct alc_spec *spec, hda_nid_t nid,
4299 unsigned long vol_val, sw_val;
4303 if (nid >= 0x0f && nid < 0x11) {
4304 nid_vol = nid - 0x7;
4305 vol_val = HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0, HDA_OUTPUT);
4306 sw_val = HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT);
4307 } else if (nid == 0x11) {
4308 nid_vol = nid - 0x7;
4309 vol_val = HDA_COMPOSE_AMP_VAL(nid_vol, 2, 0, HDA_OUTPUT);
4310 sw_val = HDA_COMPOSE_AMP_VAL(nid, 2, 0, HDA_OUTPUT);
4311 } else if (nid >= 0x12 && nid <= 0x15) {
4313 vol_val = HDA_COMPOSE_AMP_VAL(nid_vol, 3, 0, HDA_OUTPUT);
4314 sw_val = HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT);
4318 snprintf(name, sizeof(name), "%s Playback Volume", pfx);
4319 err = add_control(spec, ALC_CTL_WIDGET_VOL, name, vol_val);
4322 snprintf(name, sizeof(name), "%s Playback Switch", pfx);
4323 err = add_control(spec, ALC_CTL_WIDGET_MUTE, name, sw_val);
4329 /* add playback controls from the parsed DAC table */
4330 static int alc260_auto_create_multi_out_ctls(struct alc_spec *spec,
4331 const struct auto_pin_cfg *cfg)
4336 spec->multiout.num_dacs = 1;
4337 spec->multiout.dac_nids = spec->private_dac_nids;
4338 spec->multiout.dac_nids[0] = 0x02;
4340 nid = cfg->line_out_pins[0];
4342 err = alc260_add_playback_controls(spec, nid, "Front");
4347 nid = cfg->speaker_pins[0];
4349 err = alc260_add_playback_controls(spec, nid, "Speaker");
4354 nid = cfg->hp_pins[0];
4356 err = alc260_add_playback_controls(spec, nid, "Headphone");
4363 /* create playback/capture controls for input pins */
4364 static int alc260_auto_create_analog_input_ctls(struct alc_spec *spec,
4365 const struct auto_pin_cfg *cfg)
4367 struct hda_input_mux *imux = &spec->private_imux;
4370 for (i = 0; i < AUTO_PIN_LAST; i++) {
4371 if (cfg->input_pins[i] >= 0x12) {
4372 idx = cfg->input_pins[i] - 0x12;
4373 err = new_analog_input(spec, cfg->input_pins[i],
4374 auto_pin_cfg_labels[i], idx,
4378 imux->items[imux->num_items].label =
4379 auto_pin_cfg_labels[i];
4380 imux->items[imux->num_items].index = idx;
4383 if (cfg->input_pins[i] >= 0x0f && cfg->input_pins[i] <= 0x10){
4384 idx = cfg->input_pins[i] - 0x09;
4385 err = new_analog_input(spec, cfg->input_pins[i],
4386 auto_pin_cfg_labels[i], idx,
4390 imux->items[imux->num_items].label =
4391 auto_pin_cfg_labels[i];
4392 imux->items[imux->num_items].index = idx;
4399 static void alc260_auto_set_output_and_unmute(struct hda_codec *codec,
4400 hda_nid_t nid, int pin_type,
4404 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
4406 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
4408 /* need the manual connection? */
4410 int idx = nid - 0x12;
4411 snd_hda_codec_write(codec, idx + 0x0b, 0,
4412 AC_VERB_SET_CONNECT_SEL, sel_idx);
4416 static void alc260_auto_init_multi_out(struct hda_codec *codec)
4418 struct alc_spec *spec = codec->spec;
4421 alc_subsystem_id(codec, 0x10, 0x15, 0x0f);
4422 nid = spec->autocfg.line_out_pins[0];
4424 int pin_type = get_pin_type(spec->autocfg.line_out_type);
4425 alc260_auto_set_output_and_unmute(codec, nid, pin_type, 0);
4428 nid = spec->autocfg.speaker_pins[0];
4430 alc260_auto_set_output_and_unmute(codec, nid, PIN_OUT, 0);
4432 nid = spec->autocfg.hp_pins[0];
4434 alc260_auto_set_output_and_unmute(codec, nid, PIN_HP, 0);
4437 #define ALC260_PIN_CD_NID 0x16
4438 static void alc260_auto_init_analog_input(struct hda_codec *codec)
4440 struct alc_spec *spec = codec->spec;
4443 for (i = 0; i < AUTO_PIN_LAST; i++) {
4444 hda_nid_t nid = spec->autocfg.input_pins[i];
4446 snd_hda_codec_write(codec, nid, 0,
4447 AC_VERB_SET_PIN_WIDGET_CONTROL,
4448 i <= AUTO_PIN_FRONT_MIC ?
4449 PIN_VREF80 : PIN_IN);
4450 if (nid != ALC260_PIN_CD_NID)
4451 snd_hda_codec_write(codec, nid, 0,
4452 AC_VERB_SET_AMP_GAIN_MUTE,
4459 * generic initialization of ADC, input mixers and output mixers
4461 static struct hda_verb alc260_volume_init_verbs[] = {
4463 * Unmute ADC0-1 and set the default input to mic-in
4465 {0x04, AC_VERB_SET_CONNECT_SEL, 0x00},
4466 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4467 {0x05, AC_VERB_SET_CONNECT_SEL, 0x00},
4468 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4470 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
4472 * Note: PASD motherboards uses the Line In 2 as the input for
4473 * front panel mic (mic 2)
4475 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
4476 /* mute analog inputs */
4477 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4478 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4479 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
4480 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
4481 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
4484 * Set up output mixers (0x08 - 0x0a)
4486 /* set vol=0 to output mixers */
4487 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4488 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4489 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
4490 /* set up input amps for analog loopback */
4491 /* Amp Indices: DAC = 0, mixer = 1 */
4492 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4493 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4494 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4495 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4496 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4497 {0x0a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4502 static int alc260_parse_auto_config(struct hda_codec *codec)
4504 struct alc_spec *spec = codec->spec;
4507 static hda_nid_t alc260_ignore[] = { 0x17, 0 };
4509 err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
4513 err = alc260_auto_create_multi_out_ctls(spec, &spec->autocfg);
4516 if (!spec->kctl_alloc)
4517 return 0; /* can't find valid BIOS pin config */
4518 err = alc260_auto_create_analog_input_ctls(spec, &spec->autocfg);
4522 spec->multiout.max_channels = 2;
4524 if (spec->autocfg.dig_out_pin)
4525 spec->multiout.dig_out_nid = ALC260_DIGOUT_NID;
4526 if (spec->kctl_alloc)
4527 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
4529 spec->init_verbs[spec->num_init_verbs++] = alc260_volume_init_verbs;
4531 spec->num_mux_defs = 1;
4532 spec->input_mux = &spec->private_imux;
4534 /* check whether NID 0x04 is valid */
4535 wcap = get_wcaps(codec, 0x04);
4536 wcap = (wcap & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT; /* get type */
4537 if (wcap != AC_WID_AUD_IN) {
4538 spec->adc_nids = alc260_adc_nids_alt;
4539 spec->num_adc_nids = ARRAY_SIZE(alc260_adc_nids_alt);
4540 spec->mixers[spec->num_mixers] = alc260_capture_alt_mixer;
4542 spec->adc_nids = alc260_adc_nids;
4543 spec->num_adc_nids = ARRAY_SIZE(alc260_adc_nids);
4544 spec->mixers[spec->num_mixers] = alc260_capture_mixer;
4551 /* additional initialization for auto-configuration model */
4552 static void alc260_auto_init(struct hda_codec *codec)
4554 alc260_auto_init_multi_out(codec);
4555 alc260_auto_init_analog_input(codec);
4558 #ifdef CONFIG_SND_HDA_POWER_SAVE
4559 static struct hda_amp_list alc260_loopbacks[] = {
4560 { 0x07, HDA_INPUT, 0 },
4561 { 0x07, HDA_INPUT, 1 },
4562 { 0x07, HDA_INPUT, 2 },
4563 { 0x07, HDA_INPUT, 3 },
4564 { 0x07, HDA_INPUT, 4 },
4570 * ALC260 configurations
4572 static const char *alc260_models[ALC260_MODEL_LAST] = {
4573 [ALC260_BASIC] = "basic",
4575 [ALC260_HP_3013] = "hp-3013",
4576 [ALC260_FUJITSU_S702X] = "fujitsu",
4577 [ALC260_ACER] = "acer",
4578 [ALC260_WILL] = "will",
4579 [ALC260_REPLACER_672V] = "replacer",
4580 #ifdef CONFIG_SND_DEBUG
4581 [ALC260_TEST] = "test",
4583 [ALC260_AUTO] = "auto",
4586 static struct snd_pci_quirk alc260_cfg_tbl[] = {
4587 SND_PCI_QUIRK(0x1025, 0x007b, "Acer C20x", ALC260_ACER),
4588 SND_PCI_QUIRK(0x1025, 0x008f, "Acer", ALC260_ACER),
4589 SND_PCI_QUIRK(0x103c, 0x2808, "HP d5700", ALC260_HP_3013),
4590 SND_PCI_QUIRK(0x103c, 0x280a, "HP d5750", ALC260_HP_3013),
4591 SND_PCI_QUIRK(0x103c, 0x3010, "HP", ALC260_HP_3013),
4592 SND_PCI_QUIRK(0x103c, 0x3011, "HP", ALC260_HP),
4593 SND_PCI_QUIRK(0x103c, 0x3012, "HP", ALC260_HP_3013),
4594 SND_PCI_QUIRK(0x103c, 0x3013, "HP", ALC260_HP_3013),
4595 SND_PCI_QUIRK(0x103c, 0x3014, "HP", ALC260_HP),
4596 SND_PCI_QUIRK(0x103c, 0x3015, "HP", ALC260_HP),
4597 SND_PCI_QUIRK(0x103c, 0x3016, "HP", ALC260_HP),
4598 SND_PCI_QUIRK(0x104d, 0x81bb, "Sony VAIO", ALC260_BASIC),
4599 SND_PCI_QUIRK(0x104d, 0x81cc, "Sony VAIO", ALC260_BASIC),
4600 SND_PCI_QUIRK(0x104d, 0x81cd, "Sony VAIO", ALC260_BASIC),
4601 SND_PCI_QUIRK(0x10cf, 0x1326, "Fujitsu S702X", ALC260_FUJITSU_S702X),
4602 SND_PCI_QUIRK(0x152d, 0x0729, "CTL U553W", ALC260_BASIC),
4603 SND_PCI_QUIRK(0x1631, 0xc017, "PB V7900", ALC260_WILL),
4604 SND_PCI_QUIRK(0x161f, 0x2057, "Replacer 672V", ALC260_REPLACER_672V),
4608 static struct alc_config_preset alc260_presets[] = {
4610 .mixers = { alc260_base_output_mixer,
4612 alc260_pc_beep_mixer,
4613 alc260_capture_mixer },
4614 .init_verbs = { alc260_init_verbs },
4615 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
4616 .dac_nids = alc260_dac_nids,
4617 .num_adc_nids = ARRAY_SIZE(alc260_adc_nids),
4618 .adc_nids = alc260_adc_nids,
4619 .num_channel_mode = ARRAY_SIZE(alc260_modes),
4620 .channel_mode = alc260_modes,
4621 .input_mux = &alc260_capture_source,
4624 .mixers = { alc260_base_output_mixer,
4626 alc260_capture_alt_mixer },
4627 .init_verbs = { alc260_init_verbs },
4628 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
4629 .dac_nids = alc260_dac_nids,
4630 .num_adc_nids = ARRAY_SIZE(alc260_hp_adc_nids),
4631 .adc_nids = alc260_hp_adc_nids,
4632 .num_channel_mode = ARRAY_SIZE(alc260_modes),
4633 .channel_mode = alc260_modes,
4634 .input_mux = &alc260_capture_source,
4636 [ALC260_HP_3013] = {
4637 .mixers = { alc260_hp_3013_mixer,
4639 alc260_capture_alt_mixer },
4640 .init_verbs = { alc260_hp_3013_init_verbs },
4641 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
4642 .dac_nids = alc260_dac_nids,
4643 .num_adc_nids = ARRAY_SIZE(alc260_hp_adc_nids),
4644 .adc_nids = alc260_hp_adc_nids,
4645 .num_channel_mode = ARRAY_SIZE(alc260_modes),
4646 .channel_mode = alc260_modes,
4647 .input_mux = &alc260_capture_source,
4649 [ALC260_FUJITSU_S702X] = {
4650 .mixers = { alc260_fujitsu_mixer,
4651 alc260_capture_mixer },
4652 .init_verbs = { alc260_fujitsu_init_verbs },
4653 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
4654 .dac_nids = alc260_dac_nids,
4655 .num_adc_nids = ARRAY_SIZE(alc260_dual_adc_nids),
4656 .adc_nids = alc260_dual_adc_nids,
4657 .num_channel_mode = ARRAY_SIZE(alc260_modes),
4658 .channel_mode = alc260_modes,
4659 .num_mux_defs = ARRAY_SIZE(alc260_fujitsu_capture_sources),
4660 .input_mux = alc260_fujitsu_capture_sources,
4663 .mixers = { alc260_acer_mixer,
4664 alc260_capture_mixer },
4665 .init_verbs = { alc260_acer_init_verbs },
4666 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
4667 .dac_nids = alc260_dac_nids,
4668 .num_adc_nids = ARRAY_SIZE(alc260_dual_adc_nids),
4669 .adc_nids = alc260_dual_adc_nids,
4670 .num_channel_mode = ARRAY_SIZE(alc260_modes),
4671 .channel_mode = alc260_modes,
4672 .num_mux_defs = ARRAY_SIZE(alc260_acer_capture_sources),
4673 .input_mux = alc260_acer_capture_sources,
4676 .mixers = { alc260_will_mixer,
4677 alc260_capture_mixer },
4678 .init_verbs = { alc260_init_verbs, alc260_will_verbs },
4679 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
4680 .dac_nids = alc260_dac_nids,
4681 .num_adc_nids = ARRAY_SIZE(alc260_adc_nids),
4682 .adc_nids = alc260_adc_nids,
4683 .dig_out_nid = ALC260_DIGOUT_NID,
4684 .num_channel_mode = ARRAY_SIZE(alc260_modes),
4685 .channel_mode = alc260_modes,
4686 .input_mux = &alc260_capture_source,
4688 [ALC260_REPLACER_672V] = {
4689 .mixers = { alc260_replacer_672v_mixer,
4690 alc260_capture_mixer },
4691 .init_verbs = { alc260_init_verbs, alc260_replacer_672v_verbs },
4692 .num_dacs = ARRAY_SIZE(alc260_dac_nids),
4693 .dac_nids = alc260_dac_nids,
4694 .num_adc_nids = ARRAY_SIZE(alc260_adc_nids),
4695 .adc_nids = alc260_adc_nids,
4696 .dig_out_nid = ALC260_DIGOUT_NID,
4697 .num_channel_mode = ARRAY_SIZE(alc260_modes),
4698 .channel_mode = alc260_modes,
4699 .input_mux = &alc260_capture_source,
4700 .unsol_event = alc260_replacer_672v_unsol_event,
4701 .init_hook = alc260_replacer_672v_automute,
4703 #ifdef CONFIG_SND_DEBUG
4705 .mixers = { alc260_test_mixer,
4706 alc260_capture_mixer },
4707 .init_verbs = { alc260_test_init_verbs },
4708 .num_dacs = ARRAY_SIZE(alc260_test_dac_nids),
4709 .dac_nids = alc260_test_dac_nids,
4710 .num_adc_nids = ARRAY_SIZE(alc260_test_adc_nids),
4711 .adc_nids = alc260_test_adc_nids,
4712 .num_channel_mode = ARRAY_SIZE(alc260_modes),
4713 .channel_mode = alc260_modes,
4714 .num_mux_defs = ARRAY_SIZE(alc260_test_capture_sources),
4715 .input_mux = alc260_test_capture_sources,
4720 static int patch_alc260(struct hda_codec *codec)
4722 struct alc_spec *spec;
4723 int err, board_config;
4725 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
4731 board_config = snd_hda_check_board_config(codec, ALC260_MODEL_LAST,
4734 if (board_config < 0) {
4735 snd_printd(KERN_INFO "hda_codec: Unknown model for ALC260, "
4736 "trying auto-probe from BIOS...\n");
4737 board_config = ALC260_AUTO;
4740 if (board_config == ALC260_AUTO) {
4741 /* automatic parse from the BIOS config */
4742 err = alc260_parse_auto_config(codec);
4748 "hda_codec: Cannot set up configuration "
4749 "from BIOS. Using base mode...\n");
4750 board_config = ALC260_BASIC;
4754 if (board_config != ALC260_AUTO)
4755 setup_preset(spec, &alc260_presets[board_config]);
4757 spec->stream_name_analog = "ALC260 Analog";
4758 spec->stream_analog_playback = &alc260_pcm_analog_playback;
4759 spec->stream_analog_capture = &alc260_pcm_analog_capture;
4761 spec->stream_name_digital = "ALC260 Digital";
4762 spec->stream_digital_playback = &alc260_pcm_digital_playback;
4763 spec->stream_digital_capture = &alc260_pcm_digital_capture;
4765 codec->patch_ops = alc_patch_ops;
4766 if (board_config == ALC260_AUTO)
4767 spec->init_hook = alc260_auto_init;
4768 #ifdef CONFIG_SND_HDA_POWER_SAVE
4769 if (!spec->loopback.amplist)
4770 spec->loopback.amplist = alc260_loopbacks;
4780 * ALC882 is almost identical with ALC880 but has cleaner and more flexible
4781 * configuration. Each pin widget can choose any input DACs and a mixer.
4782 * Each ADC is connected from a mixer of all inputs. This makes possible
4783 * 6-channel independent captures.
4785 * In addition, an independent DAC for the multi-playback (not used in this
4788 #define ALC882_DIGOUT_NID 0x06
4789 #define ALC882_DIGIN_NID 0x0a
4791 static struct hda_channel_mode alc882_ch_modes[1] = {
4795 static hda_nid_t alc882_dac_nids[4] = {
4796 /* front, rear, clfe, rear_surr */
4797 0x02, 0x03, 0x04, 0x05
4800 /* identical with ALC880 */
4801 #define alc882_adc_nids alc880_adc_nids
4802 #define alc882_adc_nids_alt alc880_adc_nids_alt
4805 /* FIXME: should be a matrix-type input source selection */
4807 static struct hda_input_mux alc882_capture_source = {
4811 { "Front Mic", 0x1 },
4816 #define alc882_mux_enum_info alc_mux_enum_info
4817 #define alc882_mux_enum_get alc_mux_enum_get
4819 static int alc882_mux_enum_put(struct snd_kcontrol *kcontrol,
4820 struct snd_ctl_elem_value *ucontrol)
4822 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
4823 struct alc_spec *spec = codec->spec;
4824 const struct hda_input_mux *imux = spec->input_mux;
4825 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
4826 static hda_nid_t capture_mixers[3] = { 0x24, 0x23, 0x22 };
4827 hda_nid_t nid = capture_mixers[adc_idx];
4828 unsigned int *cur_val = &spec->cur_mux[adc_idx];
4829 unsigned int i, idx;
4831 idx = ucontrol->value.enumerated.item[0];
4832 if (idx >= imux->num_items)
4833 idx = imux->num_items - 1;
4834 if (*cur_val == idx)
4836 for (i = 0; i < imux->num_items; i++) {
4837 unsigned int v = (i == idx) ? 0 : HDA_AMP_MUTE;
4838 snd_hda_codec_amp_stereo(codec, nid, HDA_INPUT,
4839 imux->items[i].index,
4849 static struct hda_verb alc882_3ST_ch2_init[] = {
4850 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
4851 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
4852 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
4853 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
4860 static struct hda_verb alc882_3ST_ch6_init[] = {
4861 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4862 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
4863 { 0x18, AC_VERB_SET_CONNECT_SEL, 0x02 },
4864 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4865 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
4866 { 0x1a, AC_VERB_SET_CONNECT_SEL, 0x01 },
4870 static struct hda_channel_mode alc882_3ST_6ch_modes[2] = {
4871 { 2, alc882_3ST_ch2_init },
4872 { 6, alc882_3ST_ch6_init },
4878 static struct hda_verb alc882_sixstack_ch6_init[] = {
4879 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
4880 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4881 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4882 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4889 static struct hda_verb alc882_sixstack_ch8_init[] = {
4890 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4891 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4892 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4893 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4897 static struct hda_channel_mode alc882_sixstack_modes[2] = {
4898 { 6, alc882_sixstack_ch6_init },
4899 { 8, alc882_sixstack_ch8_init },
4903 * macbook pro ALC885 can switch LineIn to LineOut without loosing Mic
4909 static struct hda_verb alc885_mbp_ch2_init[] = {
4910 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
4911 { 0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
4912 { 0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
4919 static struct hda_verb alc885_mbp_ch6_init[] = {
4920 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
4921 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
4922 { 0x1a, AC_VERB_SET_CONNECT_SEL, 0x01 },
4923 { 0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
4924 { 0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
4928 static struct hda_channel_mode alc885_mbp_6ch_modes[2] = {
4929 { 2, alc885_mbp_ch2_init },
4930 { 6, alc885_mbp_ch6_init },
4934 /* Pin assignment: Front=0x14, Rear=0x15, CLFE=0x16, Side=0x17
4935 * Mic=0x18, Front Mic=0x19, Line-In=0x1a, HP=0x1b
4937 static struct snd_kcontrol_new alc882_base_mixer[] = {
4938 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
4939 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
4940 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
4941 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
4942 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
4943 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
4944 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
4945 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
4946 HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
4947 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT),
4948 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
4949 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
4950 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
4951 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
4952 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
4953 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
4954 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
4955 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
4956 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
4957 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
4958 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
4959 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
4960 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
4964 static struct snd_kcontrol_new alc885_mbp3_mixer[] = {
4965 HDA_CODEC_VOLUME("Master Volume", 0x0c, 0x00, HDA_OUTPUT),
4966 HDA_BIND_MUTE ("Master Switch", 0x0c, 0x02, HDA_INPUT),
4967 HDA_CODEC_MUTE ("Speaker Switch", 0x14, 0x00, HDA_OUTPUT),
4968 HDA_CODEC_VOLUME("Line Out Volume", 0x0d,0x00, HDA_OUTPUT),
4969 HDA_CODEC_VOLUME("Line In Playback Volume", 0x0b, 0x02, HDA_INPUT),
4970 HDA_CODEC_MUTE ("Line In Playback Switch", 0x0b, 0x02, HDA_INPUT),
4971 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x00, HDA_INPUT),
4972 HDA_CODEC_MUTE ("Mic Playback Switch", 0x0b, 0x00, HDA_INPUT),
4973 HDA_CODEC_VOLUME("Line In Boost", 0x1a, 0x00, HDA_INPUT),
4974 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0x00, HDA_INPUT),
4977 static struct snd_kcontrol_new alc882_w2jc_mixer[] = {
4978 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
4979 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
4980 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
4981 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
4982 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
4983 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
4984 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
4985 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
4986 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
4987 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
4988 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
4992 static struct snd_kcontrol_new alc882_targa_mixer[] = {
4993 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
4994 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
4995 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
4996 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
4997 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
4998 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
4999 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
5000 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
5001 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
5002 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
5003 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
5004 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
5005 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
5009 /* Pin assignment: Front=0x14, HP = 0x15, Front = 0x16, ???
5010 * Front Mic=0x18, Line In = 0x1a, Line In = 0x1b, CD = 0x1c
5012 static struct snd_kcontrol_new alc882_asus_a7j_mixer[] = {
5013 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
5014 HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT),
5015 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT),
5016 HDA_CODEC_MUTE("Mobile Front Playback Switch", 0x16, 0x0, HDA_OUTPUT),
5017 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
5018 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
5019 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
5020 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
5021 HDA_CODEC_VOLUME("Mobile Line Playback Volume", 0x0b, 0x03, HDA_INPUT),
5022 HDA_CODEC_MUTE("Mobile Line Playback Switch", 0x0b, 0x03, HDA_INPUT),
5023 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
5024 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
5025 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
5029 static struct snd_kcontrol_new alc882_asus_a7m_mixer[] = {
5030 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
5031 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
5032 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT),
5033 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
5034 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
5035 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
5036 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
5037 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
5038 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
5039 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
5040 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
5041 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
5045 static struct snd_kcontrol_new alc882_chmode_mixer[] = {
5047 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
5048 .name = "Channel Mode",
5049 .info = alc_ch_mode_info,
5050 .get = alc_ch_mode_get,
5051 .put = alc_ch_mode_put,
5056 static struct hda_verb alc882_init_verbs[] = {
5057 /* Front mixer: unmute input/output amp left and right (volume = 0) */
5058 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5059 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5060 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5062 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5063 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5064 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5066 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5067 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5068 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5070 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5071 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5072 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5074 /* Front Pin: output 0 (0x0c) */
5075 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5076 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5077 {0x14, AC_VERB_SET_CONNECT_SEL, 0x00},
5078 /* Rear Pin: output 1 (0x0d) */
5079 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5080 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5081 {0x15, AC_VERB_SET_CONNECT_SEL, 0x01},
5082 /* CLFE Pin: output 2 (0x0e) */
5083 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5084 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5085 {0x16, AC_VERB_SET_CONNECT_SEL, 0x02},
5086 /* Side Pin: output 3 (0x0f) */
5087 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5088 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5089 {0x17, AC_VERB_SET_CONNECT_SEL, 0x03},
5090 /* Mic (rear) pin: input vref at 80% */
5091 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
5092 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5093 /* Front Mic pin: input vref at 80% */
5094 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
5095 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5096 /* Line In pin: input */
5097 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
5098 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5099 /* Line-2 In: Headphone output (output 0 - 0x0c) */
5100 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
5101 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5102 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
5103 /* CD pin widget for input */
5104 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
5106 /* FIXME: use matrix-type input source selection */
5107 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
5108 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
5109 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5110 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
5111 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
5112 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
5114 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5115 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
5116 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
5117 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
5119 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5120 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
5121 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
5122 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
5123 /* ADC1: mute amp left and right */
5124 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5125 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
5126 /* ADC2: mute amp left and right */
5127 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5128 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
5129 /* ADC3: mute amp left and right */
5130 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5131 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
5136 static struct hda_verb alc882_eapd_verbs[] = {
5137 /* change to EAPD mode */
5138 {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
5139 {0x20, AC_VERB_SET_PROC_COEF, 0x3060},
5144 static struct snd_kcontrol_new alc882_macpro_mixer[] = {
5145 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
5146 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
5147 HDA_CODEC_MUTE("Headphone Playback Switch", 0x18, 0x0, HDA_OUTPUT),
5148 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x01, HDA_INPUT),
5149 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x01, HDA_INPUT),
5150 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x02, HDA_INPUT),
5151 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x02, HDA_INPUT),
5155 static struct hda_verb alc882_macpro_init_verbs[] = {
5156 /* Front mixer: unmute input/output amp left and right (volume = 0) */
5157 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5158 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5159 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5160 /* Front Pin: output 0 (0x0c) */
5161 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5162 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5163 {0x15, AC_VERB_SET_CONNECT_SEL, 0x00},
5164 /* Front Mic pin: input vref at 80% */
5165 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
5166 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5167 /* Speaker: output */
5168 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5169 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5170 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x04},
5171 /* Headphone output (output 0 - 0x0c) */
5172 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
5173 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5174 {0x18, AC_VERB_SET_CONNECT_SEL, 0x00},
5176 /* FIXME: use matrix-type input source selection */
5177 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
5178 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
5179 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5180 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
5181 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
5182 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
5184 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5185 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
5186 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
5187 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
5189 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5190 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
5191 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
5192 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
5193 /* ADC1: mute amp left and right */
5194 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5195 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
5196 /* ADC2: mute amp left and right */
5197 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5198 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
5199 /* ADC3: mute amp left and right */
5200 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5201 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
5206 /* Macbook Pro rev3 */
5207 static struct hda_verb alc885_mbp3_init_verbs[] = {
5208 /* Front mixer: unmute input/output amp left and right (volume = 0) */
5209 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5210 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5211 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5213 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5214 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5215 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5216 /* Front Pin: output 0 (0x0c) */
5217 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5218 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5219 {0x14, AC_VERB_SET_CONNECT_SEL, 0x00},
5220 /* HP Pin: output 0 (0x0d) */
5221 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc4},
5222 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5223 {0x15, AC_VERB_SET_CONNECT_SEL, 0x00},
5224 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
5225 /* Mic (rear) pin: input vref at 80% */
5226 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
5227 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5228 /* Front Mic pin: input vref at 80% */
5229 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
5230 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5231 /* Line In pin: use output 1 when in LineOut mode */
5232 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
5233 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5234 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x01},
5236 /* FIXME: use matrix-type input source selection */
5237 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
5238 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
5239 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5240 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
5241 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
5242 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
5244 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5245 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
5246 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
5247 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
5249 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5250 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
5251 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
5252 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
5253 /* ADC1: mute amp left and right */
5254 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5255 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
5256 /* ADC2: mute amp left and right */
5257 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5258 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
5259 /* ADC3: mute amp left and right */
5260 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5261 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
5266 /* iMac 24 mixer. */
5267 static struct snd_kcontrol_new alc885_imac24_mixer[] = {
5268 HDA_CODEC_VOLUME("Master Playback Volume", 0x0c, 0x00, HDA_OUTPUT),
5269 HDA_CODEC_MUTE("Master Playback Switch", 0x0c, 0x00, HDA_INPUT),
5273 /* iMac 24 init verbs. */
5274 static struct hda_verb alc885_imac24_init_verbs[] = {
5275 /* Internal speakers: output 0 (0x0c) */
5276 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5277 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5278 {0x18, AC_VERB_SET_CONNECT_SEL, 0x00},
5279 /* Internal speakers: output 0 (0x0c) */
5280 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5281 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5282 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x00},
5283 /* Headphone: output 0 (0x0c) */
5284 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
5285 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
5286 {0x14, AC_VERB_SET_CONNECT_SEL, 0x00},
5287 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
5288 /* Front Mic: input vref at 80% */
5289 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
5290 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
5294 /* Toggle speaker-output according to the hp-jack state */
5295 static void alc885_imac24_automute(struct hda_codec *codec)
5297 unsigned int present;
5299 present = snd_hda_codec_read(codec, 0x14, 0,
5300 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
5301 snd_hda_codec_amp_stereo(codec, 0x18, HDA_OUTPUT, 0,
5302 HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0);
5303 snd_hda_codec_amp_stereo(codec, 0x1a, HDA_OUTPUT, 0,
5304 HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0);
5307 /* Processes unsolicited events. */
5308 static void alc885_imac24_unsol_event(struct hda_codec *codec,
5311 /* Headphone insertion or removal. */
5312 if ((res >> 26) == ALC880_HP_EVENT)
5313 alc885_imac24_automute(codec);
5316 static void alc885_mbp3_automute(struct hda_codec *codec)
5318 unsigned int present;
5320 present = snd_hda_codec_read(codec, 0x15, 0,
5321 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
5322 snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0,
5323 HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0);
5324 snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0,
5325 HDA_AMP_MUTE, present ? 0 : HDA_AMP_MUTE);
5328 static void alc885_mbp3_unsol_event(struct hda_codec *codec,
5331 /* Headphone insertion or removal. */
5332 if ((res >> 26) == ALC880_HP_EVENT)
5333 alc885_mbp3_automute(codec);
5337 static struct hda_verb alc882_targa_verbs[] = {
5338 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5339 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5341 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
5342 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5344 {0x18, AC_VERB_SET_CONNECT_SEL, 0x02}, /* mic/clfe */
5345 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x01}, /* line/surround */
5346 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
5348 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
5349 {0x01, AC_VERB_SET_GPIO_MASK, 0x03},
5350 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x03},
5351 {0x01, AC_VERB_SET_GPIO_DATA, 0x03},
5355 /* toggle speaker-output according to the hp-jack state */
5356 static void alc882_targa_automute(struct hda_codec *codec)
5358 unsigned int present;
5360 present = snd_hda_codec_read(codec, 0x14, 0,
5361 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
5362 snd_hda_codec_amp_stereo(codec, 0x1b, HDA_OUTPUT, 0,
5363 HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0);
5364 snd_hda_codec_write_cache(codec, 1, 0, AC_VERB_SET_GPIO_DATA,
5368 static void alc882_targa_unsol_event(struct hda_codec *codec, unsigned int res)
5370 /* Looks like the unsol event is incompatible with the standard
5371 * definition. 4bit tag is placed at 26 bit!
5373 if (((res >> 26) == ALC880_HP_EVENT)) {
5374 alc882_targa_automute(codec);
5378 static struct hda_verb alc882_asus_a7j_verbs[] = {
5379 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5380 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5382 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
5383 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5384 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5386 {0x14, AC_VERB_SET_CONNECT_SEL, 0x00}, /* Front */
5387 {0x15, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
5388 {0x16, AC_VERB_SET_CONNECT_SEL, 0x00}, /* Front */
5390 {0x18, AC_VERB_SET_CONNECT_SEL, 0x02}, /* mic/clfe */
5391 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x01}, /* line/surround */
5392 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
5396 static struct hda_verb alc882_asus_a7m_verbs[] = {
5397 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5398 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5400 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
5401 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5402 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
5404 {0x14, AC_VERB_SET_CONNECT_SEL, 0x00}, /* Front */
5405 {0x15, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
5406 {0x16, AC_VERB_SET_CONNECT_SEL, 0x00}, /* Front */
5408 {0x18, AC_VERB_SET_CONNECT_SEL, 0x02}, /* mic/clfe */
5409 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x01}, /* line/surround */
5410 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
5414 static void alc882_gpio_mute(struct hda_codec *codec, int pin, int muted)
5416 unsigned int gpiostate, gpiomask, gpiodir;
5418 gpiostate = snd_hda_codec_read(codec, codec->afg, 0,
5419 AC_VERB_GET_GPIO_DATA, 0);
5422 gpiostate |= (1 << pin);
5424 gpiostate &= ~(1 << pin);
5426 gpiomask = snd_hda_codec_read(codec, codec->afg, 0,
5427 AC_VERB_GET_GPIO_MASK, 0);
5428 gpiomask |= (1 << pin);
5430 gpiodir = snd_hda_codec_read(codec, codec->afg, 0,
5431 AC_VERB_GET_GPIO_DIRECTION, 0);
5432 gpiodir |= (1 << pin);
5435 snd_hda_codec_write(codec, codec->afg, 0,
5436 AC_VERB_SET_GPIO_MASK, gpiomask);
5437 snd_hda_codec_write(codec, codec->afg, 0,
5438 AC_VERB_SET_GPIO_DIRECTION, gpiodir);
5442 snd_hda_codec_write(codec, codec->afg, 0,
5443 AC_VERB_SET_GPIO_DATA, gpiostate);
5446 /* set up GPIO at initialization */
5447 static void alc885_macpro_init_hook(struct hda_codec *codec)
5449 alc882_gpio_mute(codec, 0, 0);
5450 alc882_gpio_mute(codec, 1, 0);
5453 /* set up GPIO and update auto-muting at initialization */
5454 static void alc885_imac24_init_hook(struct hda_codec *codec)
5456 alc885_macpro_init_hook(codec);
5457 alc885_imac24_automute(codec);
5461 * generic initialization of ADC, input mixers and output mixers
5463 static struct hda_verb alc882_auto_init_verbs[] = {
5465 * Unmute ADC0-2 and set the default input to mic-in
5467 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
5468 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5469 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
5470 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5471 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
5472 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5474 /* Mute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
5476 * Note: PASD motherboards uses the Line In 2 as the input for
5477 * front panel mic (mic 2)
5479 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
5480 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
5481 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
5482 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
5483 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
5484 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
5487 * Set up output mixers (0x0c - 0x0f)
5489 /* set vol=0 to output mixers */
5490 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5491 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5492 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5493 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
5494 /* set up input amps for analog loopback */
5495 /* Amp Indices: DAC = 0, mixer = 1 */
5496 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5497 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5498 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5499 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5500 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5501 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5502 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5503 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5504 {0x26, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
5505 {0x26, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
5507 /* FIXME: use matrix-type input source selection */
5508 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
5509 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
5510 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
5511 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
5512 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
5513 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
5515 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
5516 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
5517 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
5518 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
5520 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
5521 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
5522 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
5523 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
5528 /* capture mixer elements */
5529 static struct snd_kcontrol_new alc882_capture_alt_mixer[] = {
5530 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
5531 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
5532 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
5533 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
5535 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
5536 /* The multiple "Capture Source" controls confuse alsamixer
5537 * So call somewhat different..
5538 * FIXME: the controls appear in the "playback" view!
5540 /* .name = "Capture Source", */
5541 .name = "Input Source",
5543 .info = alc882_mux_enum_info,
5544 .get = alc882_mux_enum_get,
5545 .put = alc882_mux_enum_put,
5550 static struct snd_kcontrol_new alc882_capture_mixer[] = {
5551 HDA_CODEC_VOLUME("Capture Volume", 0x07, 0x0, HDA_INPUT),
5552 HDA_CODEC_MUTE("Capture Switch", 0x07, 0x0, HDA_INPUT),
5553 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x08, 0x0, HDA_INPUT),
5554 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x08, 0x0, HDA_INPUT),
5555 HDA_CODEC_VOLUME_IDX("Capture Volume", 2, 0x09, 0x0, HDA_INPUT),
5556 HDA_CODEC_MUTE_IDX("Capture Switch", 2, 0x09, 0x0, HDA_INPUT),
5558 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
5559 /* The multiple "Capture Source" controls confuse alsamixer
5560 * So call somewhat different..
5561 * FIXME: the controls appear in the "playback" view!
5563 /* .name = "Capture Source", */
5564 .name = "Input Source",
5566 .info = alc882_mux_enum_info,
5567 .get = alc882_mux_enum_get,
5568 .put = alc882_mux_enum_put,
5573 #ifdef CONFIG_SND_HDA_POWER_SAVE
5574 #define alc882_loopbacks alc880_loopbacks
5577 /* pcm configuration: identiacal with ALC880 */
5578 #define alc882_pcm_analog_playback alc880_pcm_analog_playback
5579 #define alc882_pcm_analog_capture alc880_pcm_analog_capture
5580 #define alc882_pcm_digital_playback alc880_pcm_digital_playback
5581 #define alc882_pcm_digital_capture alc880_pcm_digital_capture
5584 * configuration and preset
5586 static const char *alc882_models[ALC882_MODEL_LAST] = {
5587 [ALC882_3ST_DIG] = "3stack-dig",
5588 [ALC882_6ST_DIG] = "6stack-dig",
5589 [ALC882_ARIMA] = "arima",
5590 [ALC882_W2JC] = "w2jc",
5591 [ALC882_TARGA] = "targa",
5592 [ALC882_ASUS_A7J] = "asus-a7j",
5593 [ALC882_ASUS_A7M] = "asus-a7m",
5594 [ALC885_MACPRO] = "macpro",
5595 [ALC885_MBP3] = "mbp3",
5596 [ALC885_IMAC24] = "imac24",
5597 [ALC882_AUTO] = "auto",
5600 static struct snd_pci_quirk alc882_cfg_tbl[] = {
5601 SND_PCI_QUIRK(0x1019, 0x6668, "ECS", ALC882_6ST_DIG),
5602 SND_PCI_QUIRK(0x105b, 0x6668, "Foxconn", ALC882_6ST_DIG),
5603 SND_PCI_QUIRK(0x1462, 0x6668, "MSI", ALC882_6ST_DIG),
5604 SND_PCI_QUIRK(0x1462, 0x28fb, "Targa T8", ALC882_TARGA), /* MSI-1049 T8 */
5605 SND_PCI_QUIRK(0x161f, 0x2054, "Arima W820", ALC882_ARIMA),
5606 SND_PCI_QUIRK(0x1043, 0x060d, "Asus A7J", ALC882_ASUS_A7J),
5607 SND_PCI_QUIRK(0x1043, 0x13c2, "Asus A7M", ALC882_ASUS_A7M),
5608 SND_PCI_QUIRK(0x1043, 0x817f, "Asus P5LD2", ALC882_6ST_DIG),
5609 SND_PCI_QUIRK(0x1043, 0x81d8, "Asus P5WD", ALC882_6ST_DIG),
5610 SND_PCI_QUIRK(0x1043, 0x1971, "Asus W2JC", ALC882_W2JC),
5614 static struct alc_config_preset alc882_presets[] = {
5615 [ALC882_3ST_DIG] = {
5616 .mixers = { alc882_base_mixer },
5617 .init_verbs = { alc882_init_verbs },
5618 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
5619 .dac_nids = alc882_dac_nids,
5620 .dig_out_nid = ALC882_DIGOUT_NID,
5621 .dig_in_nid = ALC882_DIGIN_NID,
5622 .num_channel_mode = ARRAY_SIZE(alc882_ch_modes),
5623 .channel_mode = alc882_ch_modes,
5625 .input_mux = &alc882_capture_source,
5627 [ALC882_6ST_DIG] = {
5628 .mixers = { alc882_base_mixer, alc882_chmode_mixer },
5629 .init_verbs = { alc882_init_verbs },
5630 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
5631 .dac_nids = alc882_dac_nids,
5632 .dig_out_nid = ALC882_DIGOUT_NID,
5633 .dig_in_nid = ALC882_DIGIN_NID,
5634 .num_channel_mode = ARRAY_SIZE(alc882_sixstack_modes),
5635 .channel_mode = alc882_sixstack_modes,
5636 .input_mux = &alc882_capture_source,
5639 .mixers = { alc882_base_mixer, alc882_chmode_mixer },
5640 .init_verbs = { alc882_init_verbs, alc882_eapd_verbs },
5641 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
5642 .dac_nids = alc882_dac_nids,
5643 .num_channel_mode = ARRAY_SIZE(alc882_sixstack_modes),
5644 .channel_mode = alc882_sixstack_modes,
5645 .input_mux = &alc882_capture_source,
5648 .mixers = { alc882_w2jc_mixer, alc882_chmode_mixer },
5649 .init_verbs = { alc882_init_verbs, alc882_eapd_verbs,
5650 alc880_gpio1_init_verbs },
5651 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
5652 .dac_nids = alc882_dac_nids,
5653 .num_channel_mode = ARRAY_SIZE(alc880_threestack_modes),
5654 .channel_mode = alc880_threestack_modes,
5656 .input_mux = &alc882_capture_source,
5657 .dig_out_nid = ALC882_DIGOUT_NID,
5660 .mixers = { alc885_mbp3_mixer, alc882_chmode_mixer },
5661 .init_verbs = { alc885_mbp3_init_verbs,
5662 alc880_gpio1_init_verbs },
5663 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
5664 .dac_nids = alc882_dac_nids,
5665 .channel_mode = alc885_mbp_6ch_modes,
5666 .num_channel_mode = ARRAY_SIZE(alc885_mbp_6ch_modes),
5667 .input_mux = &alc882_capture_source,
5668 .dig_out_nid = ALC882_DIGOUT_NID,
5669 .dig_in_nid = ALC882_DIGIN_NID,
5670 .unsol_event = alc885_mbp3_unsol_event,
5671 .init_hook = alc885_mbp3_automute,
5674 .mixers = { alc882_macpro_mixer },
5675 .init_verbs = { alc882_macpro_init_verbs },
5676 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
5677 .dac_nids = alc882_dac_nids,
5678 .dig_out_nid = ALC882_DIGOUT_NID,
5679 .dig_in_nid = ALC882_DIGIN_NID,
5680 .num_channel_mode = ARRAY_SIZE(alc882_ch_modes),
5681 .channel_mode = alc882_ch_modes,
5682 .input_mux = &alc882_capture_source,
5683 .init_hook = alc885_macpro_init_hook,
5686 .mixers = { alc885_imac24_mixer },
5687 .init_verbs = { alc885_imac24_init_verbs },
5688 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
5689 .dac_nids = alc882_dac_nids,
5690 .dig_out_nid = ALC882_DIGOUT_NID,
5691 .dig_in_nid = ALC882_DIGIN_NID,
5692 .num_channel_mode = ARRAY_SIZE(alc882_ch_modes),
5693 .channel_mode = alc882_ch_modes,
5694 .input_mux = &alc882_capture_source,
5695 .unsol_event = alc885_imac24_unsol_event,
5696 .init_hook = alc885_imac24_init_hook,
5699 .mixers = { alc882_targa_mixer, alc882_chmode_mixer,
5700 alc882_capture_mixer },
5701 .init_verbs = { alc882_init_verbs, alc882_targa_verbs},
5702 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
5703 .dac_nids = alc882_dac_nids,
5704 .dig_out_nid = ALC882_DIGOUT_NID,
5705 .num_adc_nids = ARRAY_SIZE(alc882_adc_nids),
5706 .adc_nids = alc882_adc_nids,
5707 .num_channel_mode = ARRAY_SIZE(alc882_3ST_6ch_modes),
5708 .channel_mode = alc882_3ST_6ch_modes,
5710 .input_mux = &alc882_capture_source,
5711 .unsol_event = alc882_targa_unsol_event,
5712 .init_hook = alc882_targa_automute,
5714 [ALC882_ASUS_A7J] = {
5715 .mixers = { alc882_asus_a7j_mixer, alc882_chmode_mixer,
5716 alc882_capture_mixer },
5717 .init_verbs = { alc882_init_verbs, alc882_asus_a7j_verbs},
5718 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
5719 .dac_nids = alc882_dac_nids,
5720 .dig_out_nid = ALC882_DIGOUT_NID,
5721 .num_adc_nids = ARRAY_SIZE(alc882_adc_nids),
5722 .adc_nids = alc882_adc_nids,
5723 .num_channel_mode = ARRAY_SIZE(alc882_3ST_6ch_modes),
5724 .channel_mode = alc882_3ST_6ch_modes,
5726 .input_mux = &alc882_capture_source,
5728 [ALC882_ASUS_A7M] = {
5729 .mixers = { alc882_asus_a7m_mixer, alc882_chmode_mixer },
5730 .init_verbs = { alc882_init_verbs, alc882_eapd_verbs,
5731 alc880_gpio1_init_verbs,
5732 alc882_asus_a7m_verbs },
5733 .num_dacs = ARRAY_SIZE(alc882_dac_nids),
5734 .dac_nids = alc882_dac_nids,
5735 .dig_out_nid = ALC882_DIGOUT_NID,
5736 .num_channel_mode = ARRAY_SIZE(alc880_threestack_modes),
5737 .channel_mode = alc880_threestack_modes,
5739 .input_mux = &alc882_capture_source,
5748 PINFIX_ABIT_AW9D_MAX
5751 static struct alc_pincfg alc882_abit_aw9d_pinfix[] = {
5752 { 0x15, 0x01080104 }, /* side */
5753 { 0x16, 0x01011012 }, /* rear */
5754 { 0x17, 0x01016011 }, /* clfe */
5758 static const struct alc_pincfg *alc882_pin_fixes[] = {
5759 [PINFIX_ABIT_AW9D_MAX] = alc882_abit_aw9d_pinfix,
5762 static struct snd_pci_quirk alc882_pinfix_tbl[] = {
5763 SND_PCI_QUIRK(0x147b, 0x107a, "Abit AW9D-MAX", PINFIX_ABIT_AW9D_MAX),
5768 * BIOS auto configuration
5770 static void alc882_auto_set_output_and_unmute(struct hda_codec *codec,
5771 hda_nid_t nid, int pin_type,
5775 struct alc_spec *spec = codec->spec;
5778 if (spec->multiout.dac_nids[dac_idx] == 0x25)
5781 idx = spec->multiout.dac_nids[dac_idx] - 2;
5783 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
5785 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
5787 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CONNECT_SEL, idx);
5791 static void alc882_auto_init_multi_out(struct hda_codec *codec)
5793 struct alc_spec *spec = codec->spec;
5796 alc_subsystem_id(codec, 0x15, 0x1b, 0x14);
5797 for (i = 0; i <= HDA_SIDE; i++) {
5798 hda_nid_t nid = spec->autocfg.line_out_pins[i];
5799 int pin_type = get_pin_type(spec->autocfg.line_out_type);
5801 alc882_auto_set_output_and_unmute(codec, nid, pin_type,
5806 static void alc882_auto_init_hp_out(struct hda_codec *codec)
5808 struct alc_spec *spec = codec->spec;
5811 pin = spec->autocfg.hp_pins[0];
5812 if (pin) /* connect to front */
5814 alc882_auto_set_output_and_unmute(codec, pin, PIN_HP, 0);
5817 #define alc882_is_input_pin(nid) alc880_is_input_pin(nid)
5818 #define ALC882_PIN_CD_NID ALC880_PIN_CD_NID
5820 static void alc882_auto_init_analog_input(struct hda_codec *codec)
5822 struct alc_spec *spec = codec->spec;
5825 for (i = 0; i < AUTO_PIN_LAST; i++) {
5826 hda_nid_t nid = spec->autocfg.input_pins[i];
5827 if (alc882_is_input_pin(nid)) {
5828 snd_hda_codec_write(codec, nid, 0,
5829 AC_VERB_SET_PIN_WIDGET_CONTROL,
5830 i <= AUTO_PIN_FRONT_MIC ?
5831 PIN_VREF80 : PIN_IN);
5832 if (nid != ALC882_PIN_CD_NID)
5833 snd_hda_codec_write(codec, nid, 0,
5834 AC_VERB_SET_AMP_GAIN_MUTE,
5840 /* add mic boosts if needed */
5841 static int alc_auto_add_mic_boost(struct hda_codec *codec)
5843 struct alc_spec *spec = codec->spec;
5847 nid = spec->autocfg.input_pins[AUTO_PIN_MIC];
5849 err = add_control(spec, ALC_CTL_WIDGET_VOL,
5851 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_INPUT));
5855 nid = spec->autocfg.input_pins[AUTO_PIN_FRONT_MIC];
5857 err = add_control(spec, ALC_CTL_WIDGET_VOL,
5859 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_INPUT));
5866 /* almost identical with ALC880 parser... */
5867 static int alc882_parse_auto_config(struct hda_codec *codec)
5869 struct alc_spec *spec = codec->spec;
5870 int err = alc880_parse_auto_config(codec);
5875 return 0; /* no config found */
5877 err = alc_auto_add_mic_boost(codec);
5881 /* hack - override the init verbs */
5882 spec->init_verbs[0] = alc882_auto_init_verbs;
5884 return 1; /* config found */
5887 /* additional initialization for auto-configuration model */
5888 static void alc882_auto_init(struct hda_codec *codec)
5890 alc882_auto_init_multi_out(codec);
5891 alc882_auto_init_hp_out(codec);
5892 alc882_auto_init_analog_input(codec);
5895 static int patch_alc882(struct hda_codec *codec)
5897 struct alc_spec *spec;
5898 int err, board_config;
5900 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
5906 board_config = snd_hda_check_board_config(codec, ALC882_MODEL_LAST,
5910 if (board_config < 0 || board_config >= ALC882_MODEL_LAST) {
5911 /* Pick up systems that don't supply PCI SSID */
5912 switch (codec->subsystem_id) {
5913 case 0x106b0c00: /* Mac Pro */
5914 board_config = ALC885_MACPRO;
5916 case 0x106b1000: /* iMac 24 */
5917 board_config = ALC885_IMAC24;
5919 case 0x106b2c00: /* Macbook Pro rev3 */
5920 board_config = ALC885_MBP3;
5923 printk(KERN_INFO "hda_codec: Unknown model for ALC882, "
5924 "trying auto-probe from BIOS...\n");
5925 board_config = ALC882_AUTO;
5929 alc_fix_pincfg(codec, alc882_pinfix_tbl, alc882_pin_fixes);
5931 if (board_config == ALC882_AUTO) {
5932 /* automatic parse from the BIOS config */
5933 err = alc882_parse_auto_config(codec);
5939 "hda_codec: Cannot set up configuration "
5940 "from BIOS. Using base mode...\n");
5941 board_config = ALC882_3ST_DIG;
5945 if (board_config != ALC882_AUTO)
5946 setup_preset(spec, &alc882_presets[board_config]);
5948 spec->stream_name_analog = "ALC882 Analog";
5949 spec->stream_analog_playback = &alc882_pcm_analog_playback;
5950 spec->stream_analog_capture = &alc882_pcm_analog_capture;
5952 spec->stream_name_digital = "ALC882 Digital";
5953 spec->stream_digital_playback = &alc882_pcm_digital_playback;
5954 spec->stream_digital_capture = &alc882_pcm_digital_capture;
5956 if (!spec->adc_nids && spec->input_mux) {
5957 /* check whether NID 0x07 is valid */
5958 unsigned int wcap = get_wcaps(codec, 0x07);
5960 wcap = (wcap & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT;
5961 if (wcap != AC_WID_AUD_IN) {
5962 spec->adc_nids = alc882_adc_nids_alt;
5963 spec->num_adc_nids = ARRAY_SIZE(alc882_adc_nids_alt);
5964 spec->mixers[spec->num_mixers] =
5965 alc882_capture_alt_mixer;
5968 spec->adc_nids = alc882_adc_nids;
5969 spec->num_adc_nids = ARRAY_SIZE(alc882_adc_nids);
5970 spec->mixers[spec->num_mixers] = alc882_capture_mixer;
5975 codec->patch_ops = alc_patch_ops;
5976 if (board_config == ALC882_AUTO)
5977 spec->init_hook = alc882_auto_init;
5978 #ifdef CONFIG_SND_HDA_POWER_SAVE
5979 if (!spec->loopback.amplist)
5980 spec->loopback.amplist = alc882_loopbacks;
5989 * ALC883 is almost identical with ALC880 but has cleaner and more flexible
5990 * configuration. Each pin widget can choose any input DACs and a mixer.
5991 * Each ADC is connected from a mixer of all inputs. This makes possible
5992 * 6-channel independent captures.
5994 * In addition, an independent DAC for the multi-playback (not used in this
5997 #define ALC883_DIGOUT_NID 0x06
5998 #define ALC883_DIGIN_NID 0x0a
6000 static hda_nid_t alc883_dac_nids[4] = {
6001 /* front, rear, clfe, rear_surr */
6002 0x02, 0x04, 0x03, 0x05
6005 static hda_nid_t alc883_adc_nids[2] = {
6011 /* FIXME: should be a matrix-type input source selection */
6013 static struct hda_input_mux alc883_capture_source = {
6017 { "Front Mic", 0x1 },
6023 static struct hda_input_mux alc883_lenovo_101e_capture_source = {
6031 static struct hda_input_mux alc883_lenovo_nb0763_capture_source = {
6041 #define alc883_mux_enum_info alc_mux_enum_info
6042 #define alc883_mux_enum_get alc_mux_enum_get
6044 static int alc883_mux_enum_put(struct snd_kcontrol *kcontrol,
6045 struct snd_ctl_elem_value *ucontrol)
6047 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
6048 struct alc_spec *spec = codec->spec;
6049 const struct hda_input_mux *imux = spec->input_mux;
6050 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
6051 static hda_nid_t capture_mixers[3] = { 0x24, 0x23, 0x22 };
6052 hda_nid_t nid = capture_mixers[adc_idx];
6053 unsigned int *cur_val = &spec->cur_mux[adc_idx];
6054 unsigned int i, idx;
6056 idx = ucontrol->value.enumerated.item[0];
6057 if (idx >= imux->num_items)
6058 idx = imux->num_items - 1;
6059 if (*cur_val == idx)
6061 for (i = 0; i < imux->num_items; i++) {
6062 unsigned int v = (i == idx) ? 0 : HDA_AMP_MUTE;
6063 snd_hda_codec_amp_stereo(codec, nid, HDA_INPUT,
6064 imux->items[i].index,
6074 static struct hda_channel_mode alc883_3ST_2ch_modes[1] = {
6081 static struct hda_verb alc883_3ST_ch2_init[] = {
6082 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
6083 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
6084 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
6085 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
6092 static struct hda_verb alc883_3ST_ch6_init[] = {
6093 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
6094 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
6095 { 0x18, AC_VERB_SET_CONNECT_SEL, 0x02 },
6096 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
6097 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
6098 { 0x1a, AC_VERB_SET_CONNECT_SEL, 0x01 },
6102 static struct hda_channel_mode alc883_3ST_6ch_modes[2] = {
6103 { 2, alc883_3ST_ch2_init },
6104 { 6, alc883_3ST_ch6_init },
6110 static struct hda_verb alc883_sixstack_ch6_init[] = {
6111 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
6112 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
6113 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
6114 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
6121 static struct hda_verb alc883_sixstack_ch8_init[] = {
6122 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
6123 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
6124 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
6125 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
6129 static struct hda_channel_mode alc883_sixstack_modes[2] = {
6130 { 6, alc883_sixstack_ch6_init },
6131 { 8, alc883_sixstack_ch8_init },
6134 static struct hda_verb alc883_medion_eapd_verbs[] = {
6135 /* eanable EAPD on medion laptop */
6136 {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
6137 {0x20, AC_VERB_SET_PROC_COEF, 0x3070},
6141 /* Pin assignment: Front=0x14, Rear=0x15, CLFE=0x16, Side=0x17
6142 * Mic=0x18, Front Mic=0x19, Line-In=0x1a, HP=0x1b
6145 static struct snd_kcontrol_new alc883_base_mixer[] = {
6146 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
6147 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
6148 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
6149 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
6150 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
6151 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
6152 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
6153 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
6154 HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
6155 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT),
6156 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
6157 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
6158 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
6159 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
6160 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
6161 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
6162 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
6163 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
6164 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
6165 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
6166 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
6167 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
6168 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
6169 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
6170 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
6171 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
6172 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
6174 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
6175 /* .name = "Capture Source", */
6176 .name = "Input Source",
6178 .info = alc883_mux_enum_info,
6179 .get = alc883_mux_enum_get,
6180 .put = alc883_mux_enum_put,
6185 static struct snd_kcontrol_new alc883_3ST_2ch_mixer[] = {
6186 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
6187 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
6188 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
6189 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
6190 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
6191 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
6192 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
6193 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
6194 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
6195 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
6196 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
6197 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
6198 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
6199 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
6200 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
6201 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
6202 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
6203 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
6204 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
6206 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
6207 /* .name = "Capture Source", */
6208 .name = "Input Source",
6210 .info = alc883_mux_enum_info,
6211 .get = alc883_mux_enum_get,
6212 .put = alc883_mux_enum_put,
6217 static struct snd_kcontrol_new alc883_3ST_6ch_mixer[] = {
6218 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
6219 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
6220 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
6221 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
6222 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
6223 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
6224 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
6225 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
6226 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
6227 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
6228 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
6229 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
6230 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
6231 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
6232 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
6233 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
6234 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
6235 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
6236 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
6237 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
6238 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
6239 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
6240 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
6241 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
6242 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
6244 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
6245 /* .name = "Capture Source", */
6246 .name = "Input Source",
6248 .info = alc883_mux_enum_info,
6249 .get = alc883_mux_enum_get,
6250 .put = alc883_mux_enum_put,
6255 static struct snd_kcontrol_new alc883_fivestack_mixer[] = {
6256 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
6257 HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT),
6258 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
6259 HDA_CODEC_MUTE("Surround Playback Switch", 0x15, 0x0, HDA_OUTPUT),
6260 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
6261 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
6262 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x16, 1, 0x0, HDA_OUTPUT),
6263 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x16, 2, 0x0, HDA_OUTPUT),
6264 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
6265 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
6266 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
6267 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
6268 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
6269 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
6270 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
6271 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
6272 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
6273 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
6274 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
6275 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
6276 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
6277 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
6278 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
6281 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
6282 /* .name = "Capture Source", */
6283 .name = "Input Source",
6285 .info = alc883_mux_enum_info,
6286 .get = alc883_mux_enum_get,
6287 .put = alc883_mux_enum_put,
6292 static struct snd_kcontrol_new alc883_tagra_mixer[] = {
6293 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
6294 HDA_CODEC_MUTE("Headphone Playback Switch", 0x14, 0x0, HDA_OUTPUT),
6295 HDA_CODEC_MUTE("Front Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
6296 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
6297 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
6298 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0e, 1, 0x0, HDA_OUTPUT),
6299 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
6300 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
6301 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
6302 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
6303 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
6304 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
6305 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
6306 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
6307 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
6308 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
6309 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
6310 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
6311 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
6312 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
6314 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
6315 /* .name = "Capture Source", */
6316 .name = "Input Source",
6318 .info = alc883_mux_enum_info,
6319 .get = alc883_mux_enum_get,
6320 .put = alc883_mux_enum_put,
6325 static struct snd_kcontrol_new alc883_tagra_2ch_mixer[] = {
6326 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
6327 HDA_CODEC_MUTE("Headphone Playback Switch", 0x14, 0x0, HDA_OUTPUT),
6328 HDA_CODEC_MUTE("Front Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
6329 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
6330 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
6331 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
6332 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
6333 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
6334 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
6335 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
6336 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
6337 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
6339 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
6340 /* .name = "Capture Source", */
6341 .name = "Input Source",
6343 .info = alc883_mux_enum_info,
6344 .get = alc883_mux_enum_get,
6345 .put = alc883_mux_enum_put,
6350 static struct snd_kcontrol_new alc883_lenovo_101e_2ch_mixer[] = {
6351 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
6352 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
6353 HDA_CODEC_VOLUME("iSpeaker Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
6354 HDA_BIND_MUTE("iSpeaker Playback Switch", 0x0d, 2, HDA_INPUT),
6355 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
6356 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
6357 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
6358 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
6359 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
6360 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
6362 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
6363 /* .name = "Capture Source", */
6364 .name = "Input Source",
6366 .info = alc883_mux_enum_info,
6367 .get = alc883_mux_enum_get,
6368 .put = alc883_mux_enum_put,
6373 static struct snd_kcontrol_new alc883_lenovo_nb0763_mixer[] = {
6374 HDA_CODEC_VOLUME("Speaker Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
6375 HDA_BIND_MUTE("Speaker Playback Switch", 0x0c, 2, HDA_INPUT),
6376 HDA_CODEC_MUTE("Headphone Playback Switch", 0x14, 0x0, HDA_OUTPUT),
6377 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
6378 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
6379 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
6380 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
6381 HDA_CODEC_VOLUME("iMic Playback Volume", 0x0b, 0x1, HDA_INPUT),
6382 HDA_CODEC_MUTE("iMic Playback Switch", 0x0b, 0x1, HDA_INPUT),
6383 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
6384 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
6385 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
6386 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
6388 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
6389 /* .name = "Capture Source", */
6390 .name = "Input Source",
6392 .info = alc883_mux_enum_info,
6393 .get = alc883_mux_enum_get,
6394 .put = alc883_mux_enum_put,
6399 static struct snd_kcontrol_new alc883_medion_md2_mixer[] = {
6400 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
6401 HDA_CODEC_MUTE("Headphone Playback Switch", 0x14, 0x0, HDA_OUTPUT),
6402 HDA_CODEC_MUTE("Front Playback Switch", 0x15, 0x0, HDA_OUTPUT),
6403 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
6404 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
6405 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
6406 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
6407 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
6408 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
6409 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
6410 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
6411 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
6412 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
6414 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
6415 /* .name = "Capture Source", */
6416 .name = "Input Source",
6418 .info = alc883_mux_enum_info,
6419 .get = alc883_mux_enum_get,
6420 .put = alc883_mux_enum_put,
6425 static struct snd_kcontrol_new alc888_6st_hp_mixer[] = {
6426 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
6427 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
6428 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0e, 0x0, HDA_OUTPUT),
6429 HDA_BIND_MUTE("Surround Playback Switch", 0x0e, 2, HDA_INPUT),
6430 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0d, 1, 0x0, HDA_OUTPUT),
6431 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0d, 2, 0x0, HDA_OUTPUT),
6432 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0d, 1, 2, HDA_INPUT),
6433 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0d, 2, 2, HDA_INPUT),
6434 HDA_CODEC_VOLUME("Side Playback Volume", 0x0f, 0x0, HDA_OUTPUT),
6435 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT),
6436 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
6437 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
6438 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
6439 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
6440 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
6441 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
6442 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
6443 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
6444 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
6445 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
6446 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
6447 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
6448 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
6449 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
6450 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
6451 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
6452 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
6454 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
6455 /* .name = "Capture Source", */
6456 .name = "Input Source",
6458 .info = alc883_mux_enum_info,
6459 .get = alc883_mux_enum_get,
6460 .put = alc883_mux_enum_put,
6465 static struct snd_kcontrol_new alc888_3st_hp_mixer[] = {
6466 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
6467 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
6468 HDA_CODEC_VOLUME("Surround Playback Volume", 0x0e, 0x0, HDA_OUTPUT),
6469 HDA_BIND_MUTE("Surround Playback Switch", 0x0e, 2, HDA_INPUT),
6470 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x0d, 1, 0x0, HDA_OUTPUT),
6471 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x0d, 2, 0x0, HDA_OUTPUT),
6472 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0d, 1, 2, HDA_INPUT),
6473 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0d, 2, 2, HDA_INPUT),
6474 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
6475 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
6476 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
6477 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
6478 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
6479 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
6480 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
6481 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
6482 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
6483 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
6484 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
6485 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
6486 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
6487 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
6488 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
6489 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
6490 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
6492 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
6493 /* .name = "Capture Source", */
6494 .name = "Input Source",
6496 .info = alc883_mux_enum_info,
6497 .get = alc883_mux_enum_get,
6498 .put = alc883_mux_enum_put,
6503 static struct snd_kcontrol_new alc883_acer_aspire_mixer[] = {
6504 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
6505 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
6506 HDA_CODEC_MUTE("Headphone Playback Switch", 0x14, 0x0, HDA_OUTPUT),
6507 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
6508 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
6509 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
6510 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
6511 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
6512 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
6513 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
6514 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
6515 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
6517 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
6518 /* .name = "Capture Source", */
6519 .name = "Input Source",
6521 .info = alc883_mux_enum_info,
6522 .get = alc883_mux_enum_get,
6523 .put = alc883_mux_enum_put,
6528 static struct snd_kcontrol_new alc883_chmode_mixer[] = {
6530 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
6531 .name = "Channel Mode",
6532 .info = alc_ch_mode_info,
6533 .get = alc_ch_mode_get,
6534 .put = alc_ch_mode_put,
6539 static struct hda_verb alc883_init_verbs[] = {
6540 /* ADC1: mute amp left and right */
6541 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
6542 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
6543 /* ADC2: mute amp left and right */
6544 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
6545 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
6546 /* Front mixer: unmute input/output amp left and right (volume = 0) */
6547 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6548 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
6549 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
6551 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6552 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
6553 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
6555 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6556 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
6557 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
6559 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6560 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
6561 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
6563 /* mute analog input loopbacks */
6564 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
6565 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
6566 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
6567 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
6568 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
6570 /* Front Pin: output 0 (0x0c) */
6571 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
6572 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
6573 {0x14, AC_VERB_SET_CONNECT_SEL, 0x00},
6574 /* Rear Pin: output 1 (0x0d) */
6575 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
6576 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
6577 {0x15, AC_VERB_SET_CONNECT_SEL, 0x01},
6578 /* CLFE Pin: output 2 (0x0e) */
6579 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
6580 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
6581 {0x16, AC_VERB_SET_CONNECT_SEL, 0x02},
6582 /* Side Pin: output 3 (0x0f) */
6583 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
6584 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
6585 {0x17, AC_VERB_SET_CONNECT_SEL, 0x03},
6586 /* Mic (rear) pin: input vref at 80% */
6587 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
6588 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
6589 /* Front Mic pin: input vref at 80% */
6590 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
6591 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
6592 /* Line In pin: input */
6593 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
6594 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
6595 /* Line-2 In: Headphone output (output 0 - 0x0c) */
6596 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
6597 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
6598 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
6599 /* CD pin widget for input */
6600 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
6602 /* FIXME: use matrix-type input source selection */
6603 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
6605 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6606 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6607 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
6608 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
6610 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6611 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6612 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
6613 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
6617 static struct hda_verb alc883_tagra_verbs[] = {
6618 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6619 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6621 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
6622 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
6624 {0x18, AC_VERB_SET_CONNECT_SEL, 0x02}, /* mic/clfe */
6625 {0x1a, AC_VERB_SET_CONNECT_SEL, 0x01}, /* line/surround */
6626 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00}, /* HP */
6628 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
6629 {0x01, AC_VERB_SET_GPIO_MASK, 0x03},
6630 {0x01, AC_VERB_SET_GPIO_DIRECTION, 0x03},
6631 {0x01, AC_VERB_SET_GPIO_DATA, 0x03},
6636 static struct hda_verb alc883_lenovo_101e_verbs[] = {
6637 {0x15, AC_VERB_SET_CONNECT_SEL, 0x00},
6638 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_FRONT_EVENT|AC_USRSP_EN},
6639 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT|AC_USRSP_EN},
6643 static struct hda_verb alc883_lenovo_nb0763_verbs[] = {
6644 {0x15, AC_VERB_SET_CONNECT_SEL, 0x00},
6645 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
6646 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
6647 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
6651 static struct hda_verb alc888_lenovo_ms7195_verbs[] = {
6652 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6653 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6654 {0x15, AC_VERB_SET_CONNECT_SEL, 0x00},
6655 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_FRONT_EVENT | AC_USRSP_EN},
6656 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
6660 static struct hda_verb alc883_haier_w66_verbs[] = {
6661 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6662 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6664 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
6666 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
6667 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
6668 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
6669 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
6673 static struct hda_verb alc888_6st_hp_verbs[] = {
6674 {0x14, AC_VERB_SET_CONNECT_SEL, 0x00}, /* Front: output 0 (0x0c) */
6675 {0x15, AC_VERB_SET_CONNECT_SEL, 0x02}, /* Rear : output 2 (0x0e) */
6676 {0x16, AC_VERB_SET_CONNECT_SEL, 0x01}, /* CLFE : output 1 (0x0d) */
6677 {0x17, AC_VERB_SET_CONNECT_SEL, 0x03}, /* Side : output 3 (0x0f) */
6681 static struct hda_verb alc888_3st_hp_verbs[] = {
6682 {0x14, AC_VERB_SET_CONNECT_SEL, 0x00}, /* Front: output 0 (0x0c) */
6683 {0x18, AC_VERB_SET_CONNECT_SEL, 0x01}, /* Rear : output 1 (0x0d) */
6684 {0x16, AC_VERB_SET_CONNECT_SEL, 0x02}, /* CLFE : output 2 (0x0e) */
6688 static struct hda_verb alc888_3st_hp_2ch_init[] = {
6689 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
6690 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
6691 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
6692 { 0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
6696 static struct hda_verb alc888_3st_hp_6ch_init[] = {
6697 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
6698 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
6699 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
6700 { 0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
6704 static struct hda_channel_mode alc888_3st_hp_modes[2] = {
6705 { 2, alc888_3st_hp_2ch_init },
6706 { 6, alc888_3st_hp_6ch_init },
6709 /* toggle front-jack and RCA according to the hp-jack state */
6710 static void alc888_lenovo_ms7195_front_automute(struct hda_codec *codec)
6712 unsigned int present;
6714 present = snd_hda_codec_read(codec, 0x1b, 0,
6715 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
6716 snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0,
6717 HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0);
6718 snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0,
6719 HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0);
6722 /* toggle RCA according to the front-jack state */
6723 static void alc888_lenovo_ms7195_rca_automute(struct hda_codec *codec)
6725 unsigned int present;
6727 present = snd_hda_codec_read(codec, 0x14, 0,
6728 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
6729 snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0,
6730 HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0);
6733 static void alc883_lenovo_ms7195_unsol_event(struct hda_codec *codec,
6736 if ((res >> 26) == ALC880_HP_EVENT)
6737 alc888_lenovo_ms7195_front_automute(codec);
6738 if ((res >> 26) == ALC880_FRONT_EVENT)
6739 alc888_lenovo_ms7195_rca_automute(codec);
6742 static struct hda_verb alc883_medion_md2_verbs[] = {
6743 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6744 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6746 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
6748 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
6752 /* toggle speaker-output according to the hp-jack state */
6753 static void alc883_medion_md2_automute(struct hda_codec *codec)
6755 unsigned int present;
6757 present = snd_hda_codec_read(codec, 0x14, 0,
6758 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
6759 snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0,
6760 HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0);
6763 static void alc883_medion_md2_unsol_event(struct hda_codec *codec,
6766 if ((res >> 26) == ALC880_HP_EVENT)
6767 alc883_medion_md2_automute(codec);
6770 /* toggle speaker-output according to the hp-jack state */
6771 static void alc883_tagra_automute(struct hda_codec *codec)
6773 unsigned int present;
6776 present = snd_hda_codec_read(codec, 0x14, 0,
6777 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
6778 bits = present ? HDA_AMP_MUTE : 0;
6779 snd_hda_codec_amp_stereo(codec, 0x1b, HDA_OUTPUT, 0,
6780 HDA_AMP_MUTE, bits);
6781 snd_hda_codec_write_cache(codec, 1, 0, AC_VERB_SET_GPIO_DATA,
6785 static void alc883_tagra_unsol_event(struct hda_codec *codec, unsigned int res)
6787 if ((res >> 26) == ALC880_HP_EVENT)
6788 alc883_tagra_automute(codec);
6791 static void alc883_haier_w66_automute(struct hda_codec *codec)
6793 unsigned int present;
6796 present = snd_hda_codec_read(codec, 0x1b, 0,
6797 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
6798 bits = present ? 0x80 : 0;
6799 snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0,
6803 static void alc883_haier_w66_unsol_event(struct hda_codec *codec,
6806 if ((res >> 26) == ALC880_HP_EVENT)
6807 alc883_haier_w66_automute(codec);
6810 static void alc883_lenovo_101e_ispeaker_automute(struct hda_codec *codec)
6812 unsigned int present;
6815 present = snd_hda_codec_read(codec, 0x14, 0,
6816 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
6817 bits = present ? HDA_AMP_MUTE : 0;
6818 snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0,
6819 HDA_AMP_MUTE, bits);
6822 static void alc883_lenovo_101e_all_automute(struct hda_codec *codec)
6824 unsigned int present;
6827 present = snd_hda_codec_read(codec, 0x1b, 0,
6828 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
6829 bits = present ? HDA_AMP_MUTE : 0;
6830 snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0,
6831 HDA_AMP_MUTE, bits);
6832 snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0,
6833 HDA_AMP_MUTE, bits);
6836 static void alc883_lenovo_101e_unsol_event(struct hda_codec *codec,
6839 if ((res >> 26) == ALC880_HP_EVENT)
6840 alc883_lenovo_101e_all_automute(codec);
6841 if ((res >> 26) == ALC880_FRONT_EVENT)
6842 alc883_lenovo_101e_ispeaker_automute(codec);
6845 /* toggle speaker-output according to the hp-jack state */
6846 static void alc883_acer_aspire_automute(struct hda_codec *codec)
6848 unsigned int present;
6850 present = snd_hda_codec_read(codec, 0x14, 0,
6851 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
6852 snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0,
6853 HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0);
6854 snd_hda_codec_amp_stereo(codec, 0x16, HDA_OUTPUT, 0,
6855 HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0);
6858 static void alc883_acer_aspire_unsol_event(struct hda_codec *codec,
6861 if ((res >> 26) == ALC880_HP_EVENT)
6862 alc883_acer_aspire_automute(codec);
6865 static struct hda_verb alc883_acer_eapd_verbs[] = {
6866 /* HP Pin: output 0 (0x0c) */
6867 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
6868 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
6869 {0x14, AC_VERB_SET_CONNECT_SEL, 0x00},
6870 /* Front Pin: output 0 (0x0c) */
6871 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
6872 {0x15, AC_VERB_SET_CONNECT_SEL, 0x00},
6873 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
6874 {0x16, AC_VERB_SET_CONNECT_SEL, 0x00},
6875 /* eanable EAPD on medion laptop */
6876 {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
6877 {0x20, AC_VERB_SET_PROC_COEF, 0x3050},
6878 /* enable unsolicited event */
6879 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
6884 * generic initialization of ADC, input mixers and output mixers
6886 static struct hda_verb alc883_auto_init_verbs[] = {
6888 * Unmute ADC0-2 and set the default input to mic-in
6890 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
6891 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6892 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
6893 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6895 /* Mute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
6897 * Note: PASD motherboards uses the Line In 2 as the input for
6898 * front panel mic (mic 2)
6900 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
6901 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
6902 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
6903 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
6904 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
6905 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
6908 * Set up output mixers (0x0c - 0x0f)
6910 /* set vol=0 to output mixers */
6911 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6912 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6913 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6914 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
6915 /* set up input amps for analog loopback */
6916 /* Amp Indices: DAC = 0, mixer = 1 */
6917 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6918 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6919 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6920 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6921 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6922 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6923 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6924 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6925 {0x26, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6926 {0x26, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6928 /* FIXME: use matrix-type input source selection */
6929 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
6931 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6932 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6933 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
6934 /* {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)}, */
6935 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
6937 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
6938 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
6939 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
6940 /* {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)}, */
6941 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
6946 /* capture mixer elements */
6947 static struct snd_kcontrol_new alc883_capture_mixer[] = {
6948 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
6949 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
6950 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x09, 0x0, HDA_INPUT),
6951 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x09, 0x0, HDA_INPUT),
6953 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
6954 /* The multiple "Capture Source" controls confuse alsamixer
6955 * So call somewhat different..
6956 * FIXME: the controls appear in the "playback" view!
6958 /* .name = "Capture Source", */
6959 .name = "Input Source",
6961 .info = alc882_mux_enum_info,
6962 .get = alc882_mux_enum_get,
6963 .put = alc882_mux_enum_put,
6968 #ifdef CONFIG_SND_HDA_POWER_SAVE
6969 #define alc883_loopbacks alc880_loopbacks
6972 /* pcm configuration: identiacal with ALC880 */
6973 #define alc883_pcm_analog_playback alc880_pcm_analog_playback
6974 #define alc883_pcm_analog_capture alc880_pcm_analog_capture
6975 #define alc883_pcm_digital_playback alc880_pcm_digital_playback
6976 #define alc883_pcm_digital_capture alc880_pcm_digital_capture
6979 * configuration and preset
6981 static const char *alc883_models[ALC883_MODEL_LAST] = {
6982 [ALC883_3ST_2ch_DIG] = "3stack-dig",
6983 [ALC883_3ST_6ch_DIG] = "3stack-6ch-dig",
6984 [ALC883_3ST_6ch] = "3stack-6ch",
6985 [ALC883_6ST_DIG] = "6stack-dig",
6986 [ALC883_TARGA_DIG] = "targa-dig",
6987 [ALC883_TARGA_2ch_DIG] = "targa-2ch-dig",
6988 [ALC883_ACER] = "acer",
6989 [ALC883_ACER_ASPIRE] = "acer-aspire",
6990 [ALC883_MEDION] = "medion",
6991 [ALC883_MEDION_MD2] = "medion-md2",
6992 [ALC883_LAPTOP_EAPD] = "laptop-eapd",
6993 [ALC883_LENOVO_101E_2ch] = "lenovo-101e",
6994 [ALC883_LENOVO_NB0763] = "lenovo-nb0763",
6995 [ALC888_LENOVO_MS7195_DIG] = "lenovo-ms7195-dig",
6996 [ALC883_HAIER_W66] = "haier-w66",
6997 [ALC888_6ST_HP] = "6stack-hp",
6998 [ALC888_3ST_HP] = "3stack-hp",
6999 [ALC883_AUTO] = "auto",
7002 static struct snd_pci_quirk alc883_cfg_tbl[] = {
7003 SND_PCI_QUIRK(0x1019, 0x6668, "ECS", ALC883_3ST_6ch_DIG),
7004 SND_PCI_QUIRK(0x103c, 0x2a3d, "HP Pavillion", ALC883_6ST_DIG),
7005 SND_PCI_QUIRK(0x108e, 0x534d, NULL, ALC883_3ST_6ch),
7006 SND_PCI_QUIRK(0x1558, 0, "Clevo laptop", ALC883_LAPTOP_EAPD),
7007 SND_PCI_QUIRK(0x105b, 0x6668, "Foxconn", ALC883_6ST_DIG),
7008 SND_PCI_QUIRK(0x1458, 0xa002, "MSI", ALC883_6ST_DIG),
7009 SND_PCI_QUIRK(0x1462, 0x6668, "MSI", ALC883_6ST_DIG),
7010 SND_PCI_QUIRK(0x1462, 0x7187, "MSI", ALC883_6ST_DIG),
7011 SND_PCI_QUIRK(0x1462, 0x7250, "MSI", ALC883_6ST_DIG),
7012 SND_PCI_QUIRK(0x1462, 0x7280, "MSI", ALC883_6ST_DIG),
7013 SND_PCI_QUIRK(0x1462, 0x7327, "MSI", ALC883_6ST_DIG),
7014 SND_PCI_QUIRK(0x1462, 0x0349, "MSI", ALC883_TARGA_2ch_DIG),
7015 SND_PCI_QUIRK(0x1462, 0x0579, "MSI", ALC883_TARGA_2ch_DIG),
7016 SND_PCI_QUIRK(0x1462, 0x3729, "MSI S420", ALC883_TARGA_DIG),
7017 SND_PCI_QUIRK(0x1462, 0x3ef9, "MSI", ALC883_TARGA_DIG),
7018 SND_PCI_QUIRK(0x1462, 0x3b7f, "MSI", ALC883_TARGA_2ch_DIG),
7019 SND_PCI_QUIRK(0x1462, 0x3fcc, "MSI", ALC883_TARGA_DIG),
7020 SND_PCI_QUIRK(0x1462, 0x3fc1, "MSI", ALC883_TARGA_DIG),
7021 SND_PCI_QUIRK(0x1462, 0x3fc3, "MSI", ALC883_TARGA_DIG),
7022 SND_PCI_QUIRK(0x1462, 0x3fdf, "MSI", ALC883_TARGA_DIG),
7023 SND_PCI_QUIRK(0x1462, 0x4314, "MSI", ALC883_TARGA_DIG),
7024 SND_PCI_QUIRK(0x1462, 0x4319, "MSI", ALC883_TARGA_DIG),
7025 SND_PCI_QUIRK(0x1462, 0x4324, "MSI", ALC883_TARGA_DIG),
7026 SND_PCI_QUIRK(0x1462, 0xa422, "MSI", ALC883_TARGA_2ch_DIG),
7027 SND_PCI_QUIRK(0x1025, 0x006c, "Acer Aspire 9810", ALC883_ACER_ASPIRE),
7028 SND_PCI_QUIRK(0x1025, 0x0110, "Acer Aspire", ALC883_ACER_ASPIRE),
7029 SND_PCI_QUIRK(0x1025, 0x0112, "Acer Aspire 9303", ALC883_ACER_ASPIRE),
7030 SND_PCI_QUIRK(0x1025, 0, "Acer laptop", ALC883_ACER),
7031 SND_PCI_QUIRK(0x15d9, 0x8780, "Supermicro PDSBA", ALC883_3ST_6ch),
7032 SND_PCI_QUIRK(0x161f, 0x2054, "Medion laptop", ALC883_MEDION),
7033 SND_PCI_QUIRK(0x1071, 0x8258, "Evesham Voyaeger", ALC883_LAPTOP_EAPD),
7034 SND_PCI_QUIRK(0x8086, 0xd601, "D102GGC", ALC883_3ST_6ch),
7035 SND_PCI_QUIRK(0x17aa, 0x101e, "Lenovo 101e", ALC883_LENOVO_101E_2ch),
7036 SND_PCI_QUIRK(0x17aa, 0x3bfd, "Lenovo NB0763", ALC883_LENOVO_NB0763),
7037 SND_PCI_QUIRK(0x17aa, 0x2085, "Lenovo NB0763", ALC883_LENOVO_NB0763),
7038 SND_PCI_QUIRK(0x103c, 0x2a61, "HP Nettle", ALC888_6ST_HP),
7039 SND_PCI_QUIRK(0x103c, 0x2a60, "HP Lucknow", ALC888_3ST_HP),
7040 SND_PCI_QUIRK(0x103c, 0x2a4f, "HP Samba", ALC888_3ST_HP),
7041 SND_PCI_QUIRK(0x17c0, 0x4071, "MEDION MD2", ALC883_MEDION_MD2),
7042 SND_PCI_QUIRK(0x1991, 0x5625, "Haier W66", ALC883_HAIER_W66),
7043 SND_PCI_QUIRK(0x17aa, 0x3bfc, "Lenovo NB0763", ALC883_LENOVO_NB0763),
7047 static struct alc_config_preset alc883_presets[] = {
7048 [ALC883_3ST_2ch_DIG] = {
7049 .mixers = { alc883_3ST_2ch_mixer },
7050 .init_verbs = { alc883_init_verbs },
7051 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
7052 .dac_nids = alc883_dac_nids,
7053 .dig_out_nid = ALC883_DIGOUT_NID,
7054 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
7055 .adc_nids = alc883_adc_nids,
7056 .dig_in_nid = ALC883_DIGIN_NID,
7057 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
7058 .channel_mode = alc883_3ST_2ch_modes,
7059 .input_mux = &alc883_capture_source,
7061 [ALC883_3ST_6ch_DIG] = {
7062 .mixers = { alc883_3ST_6ch_mixer, alc883_chmode_mixer },
7063 .init_verbs = { alc883_init_verbs },
7064 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
7065 .dac_nids = alc883_dac_nids,
7066 .dig_out_nid = ALC883_DIGOUT_NID,
7067 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
7068 .adc_nids = alc883_adc_nids,
7069 .dig_in_nid = ALC883_DIGIN_NID,
7070 .num_channel_mode = ARRAY_SIZE(alc883_3ST_6ch_modes),
7071 .channel_mode = alc883_3ST_6ch_modes,
7073 .input_mux = &alc883_capture_source,
7075 [ALC883_3ST_6ch] = {
7076 .mixers = { alc883_3ST_6ch_mixer, alc883_chmode_mixer },
7077 .init_verbs = { alc883_init_verbs },
7078 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
7079 .dac_nids = alc883_dac_nids,
7080 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
7081 .adc_nids = alc883_adc_nids,
7082 .num_channel_mode = ARRAY_SIZE(alc883_3ST_6ch_modes),
7083 .channel_mode = alc883_3ST_6ch_modes,
7085 .input_mux = &alc883_capture_source,
7087 [ALC883_6ST_DIG] = {
7088 .mixers = { alc883_base_mixer, alc883_chmode_mixer },
7089 .init_verbs = { alc883_init_verbs },
7090 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
7091 .dac_nids = alc883_dac_nids,
7092 .dig_out_nid = ALC883_DIGOUT_NID,
7093 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
7094 .adc_nids = alc883_adc_nids,
7095 .dig_in_nid = ALC883_DIGIN_NID,
7096 .num_channel_mode = ARRAY_SIZE(alc883_sixstack_modes),
7097 .channel_mode = alc883_sixstack_modes,
7098 .input_mux = &alc883_capture_source,
7100 [ALC883_TARGA_DIG] = {
7101 .mixers = { alc883_tagra_mixer, alc883_chmode_mixer },
7102 .init_verbs = { alc883_init_verbs, alc883_tagra_verbs},
7103 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
7104 .dac_nids = alc883_dac_nids,
7105 .dig_out_nid = ALC883_DIGOUT_NID,
7106 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
7107 .adc_nids = alc883_adc_nids,
7108 .num_channel_mode = ARRAY_SIZE(alc883_3ST_6ch_modes),
7109 .channel_mode = alc883_3ST_6ch_modes,
7111 .input_mux = &alc883_capture_source,
7112 .unsol_event = alc883_tagra_unsol_event,
7113 .init_hook = alc883_tagra_automute,
7115 [ALC883_TARGA_2ch_DIG] = {
7116 .mixers = { alc883_tagra_2ch_mixer},
7117 .init_verbs = { alc883_init_verbs, alc883_tagra_verbs},
7118 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
7119 .dac_nids = alc883_dac_nids,
7120 .dig_out_nid = ALC883_DIGOUT_NID,
7121 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
7122 .adc_nids = alc883_adc_nids,
7123 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
7124 .channel_mode = alc883_3ST_2ch_modes,
7125 .input_mux = &alc883_capture_source,
7126 .unsol_event = alc883_tagra_unsol_event,
7127 .init_hook = alc883_tagra_automute,
7130 .mixers = { alc883_base_mixer },
7131 /* On TravelMate laptops, GPIO 0 enables the internal speaker
7132 * and the headphone jack. Turn this on and rely on the
7133 * standard mute methods whenever the user wants to turn
7134 * these outputs off.
7136 .init_verbs = { alc883_init_verbs, alc880_gpio1_init_verbs },
7137 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
7138 .dac_nids = alc883_dac_nids,
7139 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
7140 .adc_nids = alc883_adc_nids,
7141 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
7142 .channel_mode = alc883_3ST_2ch_modes,
7143 .input_mux = &alc883_capture_source,
7145 [ALC883_ACER_ASPIRE] = {
7146 .mixers = { alc883_acer_aspire_mixer },
7147 .init_verbs = { alc883_init_verbs, alc883_acer_eapd_verbs },
7148 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
7149 .dac_nids = alc883_dac_nids,
7150 .dig_out_nid = ALC883_DIGOUT_NID,
7151 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
7152 .adc_nids = alc883_adc_nids,
7153 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
7154 .channel_mode = alc883_3ST_2ch_modes,
7155 .input_mux = &alc883_capture_source,
7156 .unsol_event = alc883_acer_aspire_unsol_event,
7157 .init_hook = alc883_acer_aspire_automute,
7160 .mixers = { alc883_fivestack_mixer,
7161 alc883_chmode_mixer },
7162 .init_verbs = { alc883_init_verbs,
7163 alc883_medion_eapd_verbs },
7164 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
7165 .dac_nids = alc883_dac_nids,
7166 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
7167 .adc_nids = alc883_adc_nids,
7168 .num_channel_mode = ARRAY_SIZE(alc883_sixstack_modes),
7169 .channel_mode = alc883_sixstack_modes,
7170 .input_mux = &alc883_capture_source,
7172 [ALC883_MEDION_MD2] = {
7173 .mixers = { alc883_medion_md2_mixer},
7174 .init_verbs = { alc883_init_verbs, alc883_medion_md2_verbs},
7175 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
7176 .dac_nids = alc883_dac_nids,
7177 .dig_out_nid = ALC883_DIGOUT_NID,
7178 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
7179 .adc_nids = alc883_adc_nids,
7180 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
7181 .channel_mode = alc883_3ST_2ch_modes,
7182 .input_mux = &alc883_capture_source,
7183 .unsol_event = alc883_medion_md2_unsol_event,
7184 .init_hook = alc883_medion_md2_automute,
7186 [ALC883_LAPTOP_EAPD] = {
7187 .mixers = { alc883_base_mixer },
7188 .init_verbs = { alc883_init_verbs, alc882_eapd_verbs },
7189 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
7190 .dac_nids = alc883_dac_nids,
7191 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
7192 .adc_nids = alc883_adc_nids,
7193 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
7194 .channel_mode = alc883_3ST_2ch_modes,
7195 .input_mux = &alc883_capture_source,
7197 [ALC883_LENOVO_101E_2ch] = {
7198 .mixers = { alc883_lenovo_101e_2ch_mixer},
7199 .init_verbs = { alc883_init_verbs, alc883_lenovo_101e_verbs},
7200 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
7201 .dac_nids = alc883_dac_nids,
7202 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
7203 .adc_nids = alc883_adc_nids,
7204 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
7205 .channel_mode = alc883_3ST_2ch_modes,
7206 .input_mux = &alc883_lenovo_101e_capture_source,
7207 .unsol_event = alc883_lenovo_101e_unsol_event,
7208 .init_hook = alc883_lenovo_101e_all_automute,
7210 [ALC883_LENOVO_NB0763] = {
7211 .mixers = { alc883_lenovo_nb0763_mixer },
7212 .init_verbs = { alc883_init_verbs, alc883_lenovo_nb0763_verbs},
7213 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
7214 .dac_nids = alc883_dac_nids,
7215 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
7216 .adc_nids = alc883_adc_nids,
7217 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
7218 .channel_mode = alc883_3ST_2ch_modes,
7220 .input_mux = &alc883_lenovo_nb0763_capture_source,
7221 .unsol_event = alc883_medion_md2_unsol_event,
7222 .init_hook = alc883_medion_md2_automute,
7224 [ALC888_LENOVO_MS7195_DIG] = {
7225 .mixers = { alc883_3ST_6ch_mixer, alc883_chmode_mixer },
7226 .init_verbs = { alc883_init_verbs, alc888_lenovo_ms7195_verbs},
7227 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
7228 .dac_nids = alc883_dac_nids,
7229 .dig_out_nid = ALC883_DIGOUT_NID,
7230 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
7231 .adc_nids = alc883_adc_nids,
7232 .num_channel_mode = ARRAY_SIZE(alc883_3ST_6ch_modes),
7233 .channel_mode = alc883_3ST_6ch_modes,
7235 .input_mux = &alc883_capture_source,
7236 .unsol_event = alc883_lenovo_ms7195_unsol_event,
7237 .init_hook = alc888_lenovo_ms7195_front_automute,
7239 [ALC883_HAIER_W66] = {
7240 .mixers = { alc883_tagra_2ch_mixer},
7241 .init_verbs = { alc883_init_verbs, alc883_haier_w66_verbs},
7242 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
7243 .dac_nids = alc883_dac_nids,
7244 .dig_out_nid = ALC883_DIGOUT_NID,
7245 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
7246 .adc_nids = alc883_adc_nids,
7247 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
7248 .channel_mode = alc883_3ST_2ch_modes,
7249 .input_mux = &alc883_capture_source,
7250 .unsol_event = alc883_haier_w66_unsol_event,
7251 .init_hook = alc883_haier_w66_automute,
7254 .mixers = { alc888_6st_hp_mixer, alc883_chmode_mixer },
7255 .init_verbs = { alc883_init_verbs, alc888_6st_hp_verbs },
7256 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
7257 .dac_nids = alc883_dac_nids,
7258 .dig_out_nid = ALC883_DIGOUT_NID,
7259 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
7260 .adc_nids = alc883_adc_nids,
7261 .dig_in_nid = ALC883_DIGIN_NID,
7262 .num_channel_mode = ARRAY_SIZE(alc883_sixstack_modes),
7263 .channel_mode = alc883_sixstack_modes,
7264 .input_mux = &alc883_capture_source,
7267 .mixers = { alc888_3st_hp_mixer, alc883_chmode_mixer },
7268 .init_verbs = { alc883_init_verbs, alc888_3st_hp_verbs },
7269 .num_dacs = ARRAY_SIZE(alc883_dac_nids),
7270 .dac_nids = alc883_dac_nids,
7271 .num_adc_nids = ARRAY_SIZE(alc883_adc_nids),
7272 .adc_nids = alc883_adc_nids,
7273 .num_channel_mode = ARRAY_SIZE(alc888_3st_hp_modes),
7274 .channel_mode = alc888_3st_hp_modes,
7276 .input_mux = &alc883_capture_source,
7282 * BIOS auto configuration
7284 static void alc883_auto_set_output_and_unmute(struct hda_codec *codec,
7285 hda_nid_t nid, int pin_type,
7289 struct alc_spec *spec = codec->spec;
7292 if (spec->multiout.dac_nids[dac_idx] == 0x25)
7295 idx = spec->multiout.dac_nids[dac_idx] - 2;
7297 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
7299 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_AMP_GAIN_MUTE,
7301 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_CONNECT_SEL, idx);
7305 static void alc883_auto_init_multi_out(struct hda_codec *codec)
7307 struct alc_spec *spec = codec->spec;
7310 alc_subsystem_id(codec, 0x15, 0x1b, 0x14);
7311 for (i = 0; i <= HDA_SIDE; i++) {
7312 hda_nid_t nid = spec->autocfg.line_out_pins[i];
7313 int pin_type = get_pin_type(spec->autocfg.line_out_type);
7315 alc883_auto_set_output_and_unmute(codec, nid, pin_type,
7320 static void alc883_auto_init_hp_out(struct hda_codec *codec)
7322 struct alc_spec *spec = codec->spec;
7325 pin = spec->autocfg.hp_pins[0];
7326 if (pin) /* connect to front */
7328 alc883_auto_set_output_and_unmute(codec, pin, PIN_HP, 0);
7331 #define alc883_is_input_pin(nid) alc880_is_input_pin(nid)
7332 #define ALC883_PIN_CD_NID ALC880_PIN_CD_NID
7334 static void alc883_auto_init_analog_input(struct hda_codec *codec)
7336 struct alc_spec *spec = codec->spec;
7339 for (i = 0; i < AUTO_PIN_LAST; i++) {
7340 hda_nid_t nid = spec->autocfg.input_pins[i];
7341 if (alc883_is_input_pin(nid)) {
7342 snd_hda_codec_write(codec, nid, 0,
7343 AC_VERB_SET_PIN_WIDGET_CONTROL,
7344 (i <= AUTO_PIN_FRONT_MIC ?
7345 PIN_VREF80 : PIN_IN));
7346 if (nid != ALC883_PIN_CD_NID)
7347 snd_hda_codec_write(codec, nid, 0,
7348 AC_VERB_SET_AMP_GAIN_MUTE,
7354 /* almost identical with ALC880 parser... */
7355 static int alc883_parse_auto_config(struct hda_codec *codec)
7357 struct alc_spec *spec = codec->spec;
7358 int err = alc880_parse_auto_config(codec);
7363 return 0; /* no config found */
7365 err = alc_auto_add_mic_boost(codec);
7369 /* hack - override the init verbs */
7370 spec->init_verbs[0] = alc883_auto_init_verbs;
7371 spec->mixers[spec->num_mixers] = alc883_capture_mixer;
7374 return 1; /* config found */
7377 /* additional initialization for auto-configuration model */
7378 static void alc883_auto_init(struct hda_codec *codec)
7380 alc883_auto_init_multi_out(codec);
7381 alc883_auto_init_hp_out(codec);
7382 alc883_auto_init_analog_input(codec);
7385 static int patch_alc883(struct hda_codec *codec)
7387 struct alc_spec *spec;
7388 int err, board_config;
7390 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
7396 board_config = snd_hda_check_board_config(codec, ALC883_MODEL_LAST,
7399 if (board_config < 0) {
7400 printk(KERN_INFO "hda_codec: Unknown model for ALC883, "
7401 "trying auto-probe from BIOS...\n");
7402 board_config = ALC883_AUTO;
7405 if (board_config == ALC883_AUTO) {
7406 /* automatic parse from the BIOS config */
7407 err = alc883_parse_auto_config(codec);
7413 "hda_codec: Cannot set up configuration "
7414 "from BIOS. Using base mode...\n");
7415 board_config = ALC883_3ST_2ch_DIG;
7419 if (board_config != ALC883_AUTO)
7420 setup_preset(spec, &alc883_presets[board_config]);
7422 spec->stream_name_analog = "ALC883 Analog";
7423 spec->stream_analog_playback = &alc883_pcm_analog_playback;
7424 spec->stream_analog_capture = &alc883_pcm_analog_capture;
7426 spec->stream_name_digital = "ALC883 Digital";
7427 spec->stream_digital_playback = &alc883_pcm_digital_playback;
7428 spec->stream_digital_capture = &alc883_pcm_digital_capture;
7430 if (!spec->adc_nids && spec->input_mux) {
7431 spec->adc_nids = alc883_adc_nids;
7432 spec->num_adc_nids = ARRAY_SIZE(alc883_adc_nids);
7435 codec->patch_ops = alc_patch_ops;
7436 if (board_config == ALC883_AUTO)
7437 spec->init_hook = alc883_auto_init;
7438 #ifdef CONFIG_SND_HDA_POWER_SAVE
7439 if (!spec->loopback.amplist)
7440 spec->loopback.amplist = alc883_loopbacks;
7450 #define ALC262_DIGOUT_NID ALC880_DIGOUT_NID
7451 #define ALC262_DIGIN_NID ALC880_DIGIN_NID
7453 #define alc262_dac_nids alc260_dac_nids
7454 #define alc262_adc_nids alc882_adc_nids
7455 #define alc262_adc_nids_alt alc882_adc_nids_alt
7457 #define alc262_modes alc260_modes
7458 #define alc262_capture_source alc882_capture_source
7460 static struct snd_kcontrol_new alc262_base_mixer[] = {
7461 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
7462 HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT),
7463 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
7464 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
7465 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
7466 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
7467 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
7468 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
7469 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
7470 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x01, HDA_INPUT),
7471 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x01, HDA_INPUT),
7472 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
7473 /* HDA_CODEC_VOLUME("PC Beep Playback Volume", 0x0b, 0x05, HDA_INPUT),
7474 HDA_CODEC_MUTE("PC Beelp Playback Switch", 0x0b, 0x05, HDA_INPUT), */
7475 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0D, 0x0, HDA_OUTPUT),
7476 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT),
7477 HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
7478 HDA_CODEC_MUTE_MONO("Mono Playback Switch", 0x16, 2, 0x0, HDA_OUTPUT),
7482 static struct snd_kcontrol_new alc262_hippo1_mixer[] = {
7483 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
7484 HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT),
7485 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
7486 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
7487 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
7488 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
7489 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
7490 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
7491 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
7492 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x01, HDA_INPUT),
7493 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x01, HDA_INPUT),
7494 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
7495 /* HDA_CODEC_VOLUME("PC Beep Playback Volume", 0x0b, 0x05, HDA_INPUT),
7496 HDA_CODEC_MUTE("PC Beelp Playback Switch", 0x0b, 0x05, HDA_INPUT), */
7497 /*HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0D, 0x0, HDA_OUTPUT),*/
7498 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
7502 static struct snd_kcontrol_new alc262_HP_BPC_mixer[] = {
7503 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
7504 HDA_CODEC_MUTE("Front Playback Switch", 0x15, 0x0, HDA_OUTPUT),
7505 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
7506 HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
7507 HDA_CODEC_MUTE_MONO("Mono Playback Switch", 0x16, 2, 0x0, HDA_OUTPUT),
7509 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
7510 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
7511 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
7512 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x01, HDA_INPUT),
7513 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x01, HDA_INPUT),
7514 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
7515 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
7516 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
7517 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
7518 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
7519 HDA_CODEC_VOLUME("PC Beep Playback Volume", 0x0b, 0x05, HDA_INPUT),
7520 HDA_CODEC_MUTE("PC Beep Playback Switch", 0x0b, 0x05, HDA_INPUT),
7521 HDA_CODEC_VOLUME("AUX IN Playback Volume", 0x0b, 0x06, HDA_INPUT),
7522 HDA_CODEC_MUTE("AUX IN Playback Switch", 0x0b, 0x06, HDA_INPUT),
7526 static struct snd_kcontrol_new alc262_HP_BPC_WildWest_mixer[] = {
7527 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
7528 HDA_CODEC_MUTE("Front Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
7529 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x0d, 0x0, HDA_OUTPUT),
7530 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT),
7531 HDA_CODEC_VOLUME_MONO("Mono Playback Volume", 0x0e, 2, 0x0, HDA_OUTPUT),
7532 HDA_CODEC_MUTE_MONO("Mono Playback Switch", 0x16, 2, 0x0, HDA_OUTPUT),
7533 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x02, HDA_INPUT),
7534 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x02, HDA_INPUT),
7535 HDA_CODEC_VOLUME("Front Mic Boost", 0x1a, 0, HDA_INPUT),
7536 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x01, HDA_INPUT),
7537 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x01, HDA_INPUT),
7538 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
7539 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
7540 HDA_CODEC_VOLUME("PC Beep Playback Volume", 0x0b, 0x05, HDA_INPUT),
7541 HDA_CODEC_MUTE("PC Beep Playback Switch", 0x0b, 0x05, HDA_INPUT),
7545 static struct snd_kcontrol_new alc262_HP_BPC_WildWest_option_mixer[] = {
7546 HDA_CODEC_VOLUME("Rear Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
7547 HDA_CODEC_MUTE("Rear Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
7548 HDA_CODEC_VOLUME("Rear Mic Boost", 0x18, 0, HDA_INPUT),
7552 /* bind hp and internal speaker mute (with plug check) */
7553 static int alc262_sony_master_sw_put(struct snd_kcontrol *kcontrol,
7554 struct snd_ctl_elem_value *ucontrol)
7556 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
7557 long *valp = ucontrol->value.integer.value;
7560 /* change hp mute */
7561 change = snd_hda_codec_amp_update(codec, 0x15, 0, HDA_OUTPUT, 0,
7563 valp[0] ? 0 : HDA_AMP_MUTE);
7564 change |= snd_hda_codec_amp_update(codec, 0x15, 1, HDA_OUTPUT, 0,
7566 valp[1] ? 0 : HDA_AMP_MUTE);
7568 /* change speaker according to HP jack state */
7569 struct alc_spec *spec = codec->spec;
7571 if (spec->jack_present)
7572 mute = HDA_AMP_MUTE;
7574 mute = snd_hda_codec_amp_read(codec, 0x15, 0,
7576 snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0,
7577 HDA_AMP_MUTE, mute);
7582 static struct snd_kcontrol_new alc262_sony_mixer[] = {
7583 HDA_CODEC_VOLUME("Master Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
7585 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
7586 .name = "Master Playback Switch",
7587 .info = snd_hda_mixer_amp_switch_info,
7588 .get = snd_hda_mixer_amp_switch_get,
7589 .put = alc262_sony_master_sw_put,
7590 .private_value = HDA_COMPOSE_AMP_VAL(0x15, 3, 0, HDA_OUTPUT),
7592 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
7593 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
7594 HDA_CODEC_VOLUME("ATAPI Mic Playback Volume", 0x0b, 0x01, HDA_INPUT),
7595 HDA_CODEC_MUTE("ATAPI Mic Playback Switch", 0x0b, 0x01, HDA_INPUT),
7599 static struct snd_kcontrol_new alc262_benq_t31_mixer[] = {
7600 HDA_CODEC_VOLUME("Front Playback Volume", 0x0c, 0x0, HDA_OUTPUT),
7601 HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT),
7602 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT),
7603 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
7604 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
7605 HDA_CODEC_VOLUME("ATAPI Mic Playback Volume", 0x0b, 0x01, HDA_INPUT),
7606 HDA_CODEC_MUTE("ATAPI Mic Playback Switch", 0x0b, 0x01, HDA_INPUT),
7610 #define alc262_capture_mixer alc882_capture_mixer
7611 #define alc262_capture_alt_mixer alc882_capture_alt_mixer
7614 * generic initialization of ADC, input mixers and output mixers
7616 static struct hda_verb alc262_init_verbs[] = {
7618 * Unmute ADC0-2 and set the default input to mic-in
7620 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
7621 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7622 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
7623 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7624 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
7625 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7627 /* Mute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
7629 * Note: PASD motherboards uses the Line In 2 as the input for
7630 * front panel mic (mic 2)
7632 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
7633 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
7634 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
7635 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
7636 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
7637 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
7640 * Set up output mixers (0x0c - 0x0e)
7642 /* set vol=0 to output mixers */
7643 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
7644 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
7645 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
7646 /* set up input amps for analog loopback */
7647 /* Amp Indices: DAC = 0, mixer = 1 */
7648 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7649 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7650 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7651 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7652 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
7653 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
7655 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
7656 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0},
7657 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
7658 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
7659 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
7660 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
7662 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
7663 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
7664 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
7665 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
7666 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
7668 {0x14, AC_VERB_SET_CONNECT_SEL, 0x00},
7669 {0x15, AC_VERB_SET_CONNECT_SEL, 0x01},
7671 /* FIXME: use matrix-type input source selection */
7672 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
7673 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
7674 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
7675 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
7676 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
7677 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
7679 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
7680 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
7681 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
7682 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
7684 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
7685 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
7686 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
7687 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
7692 static struct hda_verb alc262_hippo_unsol_verbs[] = {
7693 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
7694 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
7698 static struct hda_verb alc262_hippo1_unsol_verbs[] = {
7699 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0},
7700 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
7701 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, 0x0000},
7703 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
7704 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
7708 static struct hda_verb alc262_sony_unsol_verbs[] = {
7709 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0},
7710 {0x15, AC_VERB_SET_CONNECT_SEL, 0x00},
7711 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24}, // Front Mic
7713 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
7714 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
7717 /* mute/unmute internal speaker according to the hp jack and mute state */
7718 static void alc262_hippo_automute(struct hda_codec *codec)
7720 struct alc_spec *spec = codec->spec;
7722 unsigned int present;
7724 /* need to execute and sync at first */
7725 snd_hda_codec_read(codec, 0x15, 0, AC_VERB_SET_PIN_SENSE, 0);
7726 present = snd_hda_codec_read(codec, 0x15, 0,
7727 AC_VERB_GET_PIN_SENSE, 0);
7728 spec->jack_present = (present & 0x80000000) != 0;
7729 if (spec->jack_present) {
7730 /* mute internal speaker */
7731 snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0,
7732 HDA_AMP_MUTE, HDA_AMP_MUTE);
7734 /* unmute internal speaker if necessary */
7735 mute = snd_hda_codec_amp_read(codec, 0x15, 0, HDA_OUTPUT, 0);
7736 snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0,
7737 HDA_AMP_MUTE, mute);
7741 /* unsolicited event for HP jack sensing */
7742 static void alc262_hippo_unsol_event(struct hda_codec *codec,
7745 if ((res >> 26) != ALC880_HP_EVENT)
7747 alc262_hippo_automute(codec);
7750 static void alc262_hippo1_automute(struct hda_codec *codec)
7753 unsigned int present;
7755 snd_hda_codec_read(codec, 0x1b, 0, AC_VERB_SET_PIN_SENSE, 0);
7756 present = snd_hda_codec_read(codec, 0x1b, 0,
7757 AC_VERB_GET_PIN_SENSE, 0);
7758 present = (present & 0x80000000) != 0;
7760 /* mute internal speaker */
7761 snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0,
7762 HDA_AMP_MUTE, HDA_AMP_MUTE);
7764 /* unmute internal speaker if necessary */
7765 mute = snd_hda_codec_amp_read(codec, 0x1b, 0, HDA_OUTPUT, 0);
7766 snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0,
7767 HDA_AMP_MUTE, mute);
7771 /* unsolicited event for HP jack sensing */
7772 static void alc262_hippo1_unsol_event(struct hda_codec *codec,
7775 if ((res >> 26) != ALC880_HP_EVENT)
7777 alc262_hippo1_automute(codec);
7782 * 0x14 = headphone/spdif-out, 0x15 = internal speaker
7785 #define ALC_HP_EVENT 0x37
7787 static struct hda_verb alc262_fujitsu_unsol_verbs[] = {
7788 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC_HP_EVENT},
7789 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
7793 static struct hda_input_mux alc262_fujitsu_capture_source = {
7801 static struct hda_input_mux alc262_HP_capture_source = {
7805 { "Front Mic", 0x1 },
7812 static struct hda_input_mux alc262_HP_D7000_capture_source = {
7816 { "Front Mic", 0x2 },
7822 /* mute/unmute internal speaker according to the hp jack and mute state */
7823 static void alc262_fujitsu_automute(struct hda_codec *codec, int force)
7825 struct alc_spec *spec = codec->spec;
7828 if (force || !spec->sense_updated) {
7829 unsigned int present;
7830 /* need to execute and sync at first */
7831 snd_hda_codec_read(codec, 0x14, 0, AC_VERB_SET_PIN_SENSE, 0);
7832 present = snd_hda_codec_read(codec, 0x14, 0,
7833 AC_VERB_GET_PIN_SENSE, 0);
7834 spec->jack_present = (present & 0x80000000) != 0;
7835 spec->sense_updated = 1;
7837 if (spec->jack_present) {
7838 /* mute internal speaker */
7839 snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0,
7840 HDA_AMP_MUTE, HDA_AMP_MUTE);
7842 /* unmute internal speaker if necessary */
7843 mute = snd_hda_codec_amp_read(codec, 0x14, 0, HDA_OUTPUT, 0);
7844 snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0,
7845 HDA_AMP_MUTE, mute);
7849 /* unsolicited event for HP jack sensing */
7850 static void alc262_fujitsu_unsol_event(struct hda_codec *codec,
7853 if ((res >> 26) != ALC_HP_EVENT)
7855 alc262_fujitsu_automute(codec, 1);
7858 /* bind volumes of both NID 0x0c and 0x0d */
7859 static struct hda_bind_ctls alc262_fujitsu_bind_master_vol = {
7860 .ops = &snd_hda_bind_vol,
7862 HDA_COMPOSE_AMP_VAL(0x0c, 3, 0, HDA_OUTPUT),
7863 HDA_COMPOSE_AMP_VAL(0x0d, 3, 0, HDA_OUTPUT),
7868 /* bind hp and internal speaker mute (with plug check) */
7869 static int alc262_fujitsu_master_sw_put(struct snd_kcontrol *kcontrol,
7870 struct snd_ctl_elem_value *ucontrol)
7872 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
7873 long *valp = ucontrol->value.integer.value;
7876 change = snd_hda_codec_amp_update(codec, 0x14, 0, HDA_OUTPUT, 0,
7878 valp[0] ? 0 : HDA_AMP_MUTE);
7879 change |= snd_hda_codec_amp_update(codec, 0x14, 1, HDA_OUTPUT, 0,
7881 valp[1] ? 0 : HDA_AMP_MUTE);
7883 alc262_fujitsu_automute(codec, 0);
7887 static struct snd_kcontrol_new alc262_fujitsu_mixer[] = {
7888 HDA_BIND_VOL("Master Playback Volume", &alc262_fujitsu_bind_master_vol),
7890 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
7891 .name = "Master Playback Switch",
7892 .info = snd_hda_mixer_amp_switch_info,
7893 .get = snd_hda_mixer_amp_switch_get,
7894 .put = alc262_fujitsu_master_sw_put,
7895 .private_value = HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT),
7897 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
7898 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
7899 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
7900 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
7901 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
7905 /* additional init verbs for Benq laptops */
7906 static struct hda_verb alc262_EAPD_verbs[] = {
7907 {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
7908 {0x20, AC_VERB_SET_PROC_COEF, 0x3070},
7912 static struct hda_verb alc262_benq_t31_EAPD_verbs[] = {
7913 {0x15, AC_VERB_SET_CONNECT_SEL, 0x00},
7914 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
7916 {0x20, AC_VERB_SET_COEF_INDEX, 0x07},
7917 {0x20, AC_VERB_SET_PROC_COEF, 0x3050},
7921 /* add playback controls from the parsed DAC table */
7922 static int alc262_auto_create_multi_out_ctls(struct alc_spec *spec,
7923 const struct auto_pin_cfg *cfg)
7928 spec->multiout.num_dacs = 1; /* only use one dac */
7929 spec->multiout.dac_nids = spec->private_dac_nids;
7930 spec->multiout.dac_nids[0] = 2;
7932 nid = cfg->line_out_pins[0];
7934 err = add_control(spec, ALC_CTL_WIDGET_VOL,
7935 "Front Playback Volume",
7936 HDA_COMPOSE_AMP_VAL(0x0c, 3, 0, HDA_OUTPUT));
7939 err = add_control(spec, ALC_CTL_WIDGET_MUTE,
7940 "Front Playback Switch",
7941 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT));
7946 nid = cfg->speaker_pins[0];
7949 err = add_control(spec, ALC_CTL_WIDGET_VOL,
7950 "Speaker Playback Volume",
7951 HDA_COMPOSE_AMP_VAL(0x0e, 2, 0,
7955 err = add_control(spec, ALC_CTL_WIDGET_MUTE,
7956 "Speaker Playback Switch",
7957 HDA_COMPOSE_AMP_VAL(nid, 2, 0,
7962 err = add_control(spec, ALC_CTL_WIDGET_MUTE,
7963 "Speaker Playback Switch",
7964 HDA_COMPOSE_AMP_VAL(nid, 3, 0,
7970 nid = cfg->hp_pins[0];
7972 /* spec->multiout.hp_nid = 2; */
7974 err = add_control(spec, ALC_CTL_WIDGET_VOL,
7975 "Headphone Playback Volume",
7976 HDA_COMPOSE_AMP_VAL(0x0e, 2, 0,
7980 err = add_control(spec, ALC_CTL_WIDGET_MUTE,
7981 "Headphone Playback Switch",
7982 HDA_COMPOSE_AMP_VAL(nid, 2, 0,
7987 err = add_control(spec, ALC_CTL_WIDGET_MUTE,
7988 "Headphone Playback Switch",
7989 HDA_COMPOSE_AMP_VAL(nid, 3, 0,
7998 /* identical with ALC880 */
7999 #define alc262_auto_create_analog_input_ctls \
8000 alc880_auto_create_analog_input_ctls
8003 * generic initialization of ADC, input mixers and output mixers
8005 static struct hda_verb alc262_volume_init_verbs[] = {
8007 * Unmute ADC0-2 and set the default input to mic-in
8009 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
8010 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8011 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
8012 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8013 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
8014 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8016 /* Mute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
8018 * Note: PASD motherboards uses the Line In 2 as the input for
8019 * front panel mic (mic 2)
8021 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
8022 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
8023 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
8024 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
8025 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
8026 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
8029 * Set up output mixers (0x0c - 0x0f)
8031 /* set vol=0 to output mixers */
8032 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
8033 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
8034 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
8036 /* set up input amps for analog loopback */
8037 /* Amp Indices: DAC = 0, mixer = 1 */
8038 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8039 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8040 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8041 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8042 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8043 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8045 /* FIXME: use matrix-type input source selection */
8046 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
8047 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
8048 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
8049 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
8050 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
8051 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
8053 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
8054 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
8055 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
8056 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
8058 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
8059 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x03 << 8))},
8060 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8))},
8061 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x04 << 8))},
8066 static struct hda_verb alc262_HP_BPC_init_verbs[] = {
8068 * Unmute ADC0-2 and set the default input to mic-in
8070 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
8071 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8072 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
8073 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8074 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
8075 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8077 /* Mute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
8079 * Note: PASD motherboards uses the Line In 2 as the input for
8080 * front panel mic (mic 2)
8082 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
8083 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
8084 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
8085 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
8086 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
8087 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
8088 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)},
8089 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)},
8092 * Set up output mixers (0x0c - 0x0e)
8094 /* set vol=0 to output mixers */
8095 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
8096 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
8097 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
8099 /* set up input amps for analog loopback */
8100 /* Amp Indices: DAC = 0, mixer = 1 */
8101 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8102 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8103 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8104 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8105 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8106 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8108 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0},
8109 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
8110 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
8112 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
8113 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
8115 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
8116 {0x15, AC_VERB_SET_CONNECT_SEL, 0x00},
8118 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
8119 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
8120 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
8121 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
8122 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
8124 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, 0x7023 },
8125 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000 },
8126 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000 },
8127 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, 0x7023 },
8128 {0x1c, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000 },
8129 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000 },
8132 /* FIXME: use matrix-type input source selection */
8133 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
8134 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
8135 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
8136 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x03 << 8))},
8137 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))},
8138 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x04 << 8))},
8140 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
8141 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x03 << 8))},
8142 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))},
8143 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x04 << 8))},
8145 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
8146 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x03 << 8))},
8147 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))},
8148 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x04 << 8))},
8153 static struct hda_verb alc262_HP_BPC_WildWest_init_verbs[] = {
8155 * Unmute ADC0-2 and set the default input to mic-in
8157 {0x07, AC_VERB_SET_CONNECT_SEL, 0x00},
8158 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8159 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
8160 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8161 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
8162 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8164 /* Mute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
8166 * Note: PASD motherboards uses the Line In 2 as the input for front
8169 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
8170 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
8171 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
8172 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
8173 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
8174 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
8175 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)},
8176 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(6)},
8177 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(7)},
8179 * Set up output mixers (0x0c - 0x0e)
8181 /* set vol=0 to output mixers */
8182 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
8183 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
8184 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
8186 /* set up input amps for analog loopback */
8187 /* Amp Indices: DAC = 0, mixer = 1 */
8188 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8189 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8190 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8191 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8192 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8193 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8196 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP }, /* HP */
8197 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT }, /* Mono */
8198 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 }, /* rear MIC */
8199 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN }, /* Line in */
8200 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 }, /* Front MIC */
8201 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT }, /* Line out */
8202 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN }, /* CD in */
8204 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
8205 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
8207 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
8208 {0x15, AC_VERB_SET_CONNECT_SEL, 0x01},
8210 /* {0x14, AC_VERB_SET_AMP_GAIN_MUTE, 0x7023 }, */
8211 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000 },
8212 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000 },
8213 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, 0x7023 },
8214 {0x1c, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000 },
8215 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, 0x7000 },
8217 /* FIXME: use matrix-type input source selection */
8218 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
8219 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
8220 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))}, /*rear MIC*/
8221 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))}, /*Line in*/
8222 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))}, /*F MIC*/
8223 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x03 << 8))}, /*Front*/
8224 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x04 << 8))}, /*CD*/
8225 /* {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x06 << 8))}, */
8226 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x07 << 8))}, /*HP*/
8228 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
8229 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
8230 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))},
8231 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x03 << 8))},
8232 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x04 << 8))},
8233 /* {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x06 << 8))}, */
8234 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x07 << 8))},
8236 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
8237 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
8238 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))},
8239 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x03 << 8))},
8240 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x04 << 8))},
8241 /* {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x06 << 8))}, */
8242 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x07 << 8))},
8247 #ifdef CONFIG_SND_HDA_POWER_SAVE
8248 #define alc262_loopbacks alc880_loopbacks
8251 /* pcm configuration: identiacal with ALC880 */
8252 #define alc262_pcm_analog_playback alc880_pcm_analog_playback
8253 #define alc262_pcm_analog_capture alc880_pcm_analog_capture
8254 #define alc262_pcm_digital_playback alc880_pcm_digital_playback
8255 #define alc262_pcm_digital_capture alc880_pcm_digital_capture
8258 * BIOS auto configuration
8260 static int alc262_parse_auto_config(struct hda_codec *codec)
8262 struct alc_spec *spec = codec->spec;
8264 static hda_nid_t alc262_ignore[] = { 0x1d, 0 };
8266 err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
8270 if (!spec->autocfg.line_outs)
8271 return 0; /* can't find valid BIOS pin config */
8272 err = alc262_auto_create_multi_out_ctls(spec, &spec->autocfg);
8275 err = alc262_auto_create_analog_input_ctls(spec, &spec->autocfg);
8279 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
8281 if (spec->autocfg.dig_out_pin)
8282 spec->multiout.dig_out_nid = ALC262_DIGOUT_NID;
8283 if (spec->autocfg.dig_in_pin)
8284 spec->dig_in_nid = ALC262_DIGIN_NID;
8286 if (spec->kctl_alloc)
8287 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
8289 spec->init_verbs[spec->num_init_verbs++] = alc262_volume_init_verbs;
8290 spec->num_mux_defs = 1;
8291 spec->input_mux = &spec->private_imux;
8293 err = alc_auto_add_mic_boost(codec);
8300 #define alc262_auto_init_multi_out alc882_auto_init_multi_out
8301 #define alc262_auto_init_hp_out alc882_auto_init_hp_out
8302 #define alc262_auto_init_analog_input alc882_auto_init_analog_input
8305 /* init callback for auto-configuration model -- overriding the default init */
8306 static void alc262_auto_init(struct hda_codec *codec)
8308 alc262_auto_init_multi_out(codec);
8309 alc262_auto_init_hp_out(codec);
8310 alc262_auto_init_analog_input(codec);
8314 * configuration and preset
8316 static const char *alc262_models[ALC262_MODEL_LAST] = {
8317 [ALC262_BASIC] = "basic",
8318 [ALC262_HIPPO] = "hippo",
8319 [ALC262_HIPPO_1] = "hippo_1",
8320 [ALC262_FUJITSU] = "fujitsu",
8321 [ALC262_HP_BPC] = "hp-bpc",
8322 [ALC262_HP_BPC_D7000_WL]= "hp-bpc-d7000",
8323 [ALC262_BENQ_ED8] = "benq",
8324 [ALC262_BENQ_T31] = "benq-t31",
8325 [ALC262_SONY_ASSAMD] = "sony-assamd",
8326 [ALC262_AUTO] = "auto",
8329 static struct snd_pci_quirk alc262_cfg_tbl[] = {
8330 SND_PCI_QUIRK(0x1002, 0x437b, "Hippo", ALC262_HIPPO),
8331 SND_PCI_QUIRK(0x103c, 0x12fe, "HP xw9400", ALC262_HP_BPC),
8332 SND_PCI_QUIRK(0x103c, 0x280c, "HP xw4400", ALC262_HP_BPC),
8333 SND_PCI_QUIRK(0x103c, 0x12ff, "HP xw4550", ALC262_HP_BPC),
8334 SND_PCI_QUIRK(0x103c, 0x1308, "HP xw4600", ALC262_HP_BPC),
8335 SND_PCI_QUIRK(0x103c, 0x3014, "HP xw6400", ALC262_HP_BPC),
8336 SND_PCI_QUIRK(0x103c, 0x1307, "HP xw6600", ALC262_HP_BPC),
8337 SND_PCI_QUIRK(0x103c, 0x3015, "HP xw8400", ALC262_HP_BPC),
8338 SND_PCI_QUIRK(0x103c, 0x1306, "HP xw8600", ALC262_HP_BPC),
8339 SND_PCI_QUIRK(0x103c, 0x2800, "HP D7000", ALC262_HP_BPC_D7000_WL),
8340 SND_PCI_QUIRK(0x103c, 0x2802, "HP D7000", ALC262_HP_BPC_D7000_WL),
8341 SND_PCI_QUIRK(0x103c, 0x2804, "HP D7000", ALC262_HP_BPC_D7000_WL),
8342 SND_PCI_QUIRK(0x103c, 0x2806, "HP D7000", ALC262_HP_BPC_D7000_WL),
8343 SND_PCI_QUIRK(0x103c, 0x2801, "HP D7000", ALC262_HP_BPC_D7000_WF),
8344 SND_PCI_QUIRK(0x103c, 0x2803, "HP D7000", ALC262_HP_BPC_D7000_WF),
8345 SND_PCI_QUIRK(0x103c, 0x2805, "HP D7000", ALC262_HP_BPC_D7000_WF),
8346 SND_PCI_QUIRK(0x103c, 0x2807, "HP D7000", ALC262_HP_BPC_D7000_WF),
8347 SND_PCI_QUIRK(0x104d, 0x8203, "Sony UX-90", ALC262_HIPPO),
8348 SND_PCI_QUIRK(0x10cf, 0x1397, "Fujitsu", ALC262_FUJITSU),
8349 SND_PCI_QUIRK(0x17ff, 0x058f, "Benq Hippo", ALC262_HIPPO_1),
8350 SND_PCI_QUIRK(0x17ff, 0x0560, "Benq ED8", ALC262_BENQ_ED8),
8351 SND_PCI_QUIRK(0x17ff, 0x058d, "Benq T31-16", ALC262_BENQ_T31),
8352 SND_PCI_QUIRK(0x104d, 0x820f, "Sony ASSAMD", ALC262_SONY_ASSAMD),
8353 SND_PCI_QUIRK(0x104d, 0x9015, "Sony 0x9015", ALC262_SONY_ASSAMD),
8354 SND_PCI_QUIRK(0x104d, 0x900e, "Sony ASSAMD", ALC262_SONY_ASSAMD),
8355 SND_PCI_QUIRK(0x104d, 0x1f00, "Sony ASSAMD", ALC262_SONY_ASSAMD),
8359 static struct alc_config_preset alc262_presets[] = {
8361 .mixers = { alc262_base_mixer },
8362 .init_verbs = { alc262_init_verbs },
8363 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
8364 .dac_nids = alc262_dac_nids,
8366 .num_channel_mode = ARRAY_SIZE(alc262_modes),
8367 .channel_mode = alc262_modes,
8368 .input_mux = &alc262_capture_source,
8371 .mixers = { alc262_base_mixer },
8372 .init_verbs = { alc262_init_verbs, alc262_hippo_unsol_verbs},
8373 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
8374 .dac_nids = alc262_dac_nids,
8376 .dig_out_nid = ALC262_DIGOUT_NID,
8377 .num_channel_mode = ARRAY_SIZE(alc262_modes),
8378 .channel_mode = alc262_modes,
8379 .input_mux = &alc262_capture_source,
8380 .unsol_event = alc262_hippo_unsol_event,
8381 .init_hook = alc262_hippo_automute,
8383 [ALC262_HIPPO_1] = {
8384 .mixers = { alc262_hippo1_mixer },
8385 .init_verbs = { alc262_init_verbs, alc262_hippo1_unsol_verbs},
8386 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
8387 .dac_nids = alc262_dac_nids,
8389 .dig_out_nid = ALC262_DIGOUT_NID,
8390 .num_channel_mode = ARRAY_SIZE(alc262_modes),
8391 .channel_mode = alc262_modes,
8392 .input_mux = &alc262_capture_source,
8393 .unsol_event = alc262_hippo1_unsol_event,
8394 .init_hook = alc262_hippo1_automute,
8396 [ALC262_FUJITSU] = {
8397 .mixers = { alc262_fujitsu_mixer },
8398 .init_verbs = { alc262_init_verbs, alc262_fujitsu_unsol_verbs },
8399 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
8400 .dac_nids = alc262_dac_nids,
8402 .dig_out_nid = ALC262_DIGOUT_NID,
8403 .num_channel_mode = ARRAY_SIZE(alc262_modes),
8404 .channel_mode = alc262_modes,
8405 .input_mux = &alc262_fujitsu_capture_source,
8406 .unsol_event = alc262_fujitsu_unsol_event,
8409 .mixers = { alc262_HP_BPC_mixer },
8410 .init_verbs = { alc262_HP_BPC_init_verbs },
8411 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
8412 .dac_nids = alc262_dac_nids,
8414 .num_channel_mode = ARRAY_SIZE(alc262_modes),
8415 .channel_mode = alc262_modes,
8416 .input_mux = &alc262_HP_capture_source,
8418 [ALC262_HP_BPC_D7000_WF] = {
8419 .mixers = { alc262_HP_BPC_WildWest_mixer },
8420 .init_verbs = { alc262_HP_BPC_WildWest_init_verbs },
8421 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
8422 .dac_nids = alc262_dac_nids,
8424 .num_channel_mode = ARRAY_SIZE(alc262_modes),
8425 .channel_mode = alc262_modes,
8426 .input_mux = &alc262_HP_D7000_capture_source,
8428 [ALC262_HP_BPC_D7000_WL] = {
8429 .mixers = { alc262_HP_BPC_WildWest_mixer,
8430 alc262_HP_BPC_WildWest_option_mixer },
8431 .init_verbs = { alc262_HP_BPC_WildWest_init_verbs },
8432 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
8433 .dac_nids = alc262_dac_nids,
8435 .num_channel_mode = ARRAY_SIZE(alc262_modes),
8436 .channel_mode = alc262_modes,
8437 .input_mux = &alc262_HP_D7000_capture_source,
8439 [ALC262_BENQ_ED8] = {
8440 .mixers = { alc262_base_mixer },
8441 .init_verbs = { alc262_init_verbs, alc262_EAPD_verbs },
8442 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
8443 .dac_nids = alc262_dac_nids,
8445 .num_channel_mode = ARRAY_SIZE(alc262_modes),
8446 .channel_mode = alc262_modes,
8447 .input_mux = &alc262_capture_source,
8449 [ALC262_SONY_ASSAMD] = {
8450 .mixers = { alc262_sony_mixer },
8451 .init_verbs = { alc262_init_verbs, alc262_sony_unsol_verbs},
8452 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
8453 .dac_nids = alc262_dac_nids,
8455 .num_channel_mode = ARRAY_SIZE(alc262_modes),
8456 .channel_mode = alc262_modes,
8457 .input_mux = &alc262_capture_source,
8458 .unsol_event = alc262_hippo_unsol_event,
8459 .init_hook = alc262_hippo_automute,
8461 [ALC262_BENQ_T31] = {
8462 .mixers = { alc262_benq_t31_mixer },
8463 .init_verbs = { alc262_init_verbs, alc262_benq_t31_EAPD_verbs, alc262_hippo_unsol_verbs },
8464 .num_dacs = ARRAY_SIZE(alc262_dac_nids),
8465 .dac_nids = alc262_dac_nids,
8467 .num_channel_mode = ARRAY_SIZE(alc262_modes),
8468 .channel_mode = alc262_modes,
8469 .input_mux = &alc262_capture_source,
8470 .unsol_event = alc262_hippo_unsol_event,
8471 .init_hook = alc262_hippo_automute,
8475 static int patch_alc262(struct hda_codec *codec)
8477 struct alc_spec *spec;
8481 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
8487 /* pshou 07/11/05 set a zero PCM sample to DAC when FIFO is
8492 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_COEF_INDEX, 7);
8493 tmp = snd_hda_codec_read(codec, 0x20, 0, AC_VERB_GET_PROC_COEF, 0);
8494 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_COEF_INDEX, 7);
8495 snd_hda_codec_write(codec, 0x1a, 0, AC_VERB_SET_PROC_COEF, tmp | 0x80);
8499 board_config = snd_hda_check_board_config(codec, ALC262_MODEL_LAST,
8503 if (board_config < 0) {
8504 printk(KERN_INFO "hda_codec: Unknown model for ALC262, "
8505 "trying auto-probe from BIOS...\n");
8506 board_config = ALC262_AUTO;
8509 if (board_config == ALC262_AUTO) {
8510 /* automatic parse from the BIOS config */
8511 err = alc262_parse_auto_config(codec);
8517 "hda_codec: Cannot set up configuration "
8518 "from BIOS. Using base mode...\n");
8519 board_config = ALC262_BASIC;
8523 if (board_config != ALC262_AUTO)
8524 setup_preset(spec, &alc262_presets[board_config]);
8526 spec->stream_name_analog = "ALC262 Analog";
8527 spec->stream_analog_playback = &alc262_pcm_analog_playback;
8528 spec->stream_analog_capture = &alc262_pcm_analog_capture;
8530 spec->stream_name_digital = "ALC262 Digital";
8531 spec->stream_digital_playback = &alc262_pcm_digital_playback;
8532 spec->stream_digital_capture = &alc262_pcm_digital_capture;
8534 if (!spec->adc_nids && spec->input_mux) {
8535 /* check whether NID 0x07 is valid */
8536 unsigned int wcap = get_wcaps(codec, 0x07);
8539 wcap = (wcap & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT;
8540 if (wcap != AC_WID_AUD_IN) {
8541 spec->adc_nids = alc262_adc_nids_alt;
8542 spec->num_adc_nids = ARRAY_SIZE(alc262_adc_nids_alt);
8543 spec->mixers[spec->num_mixers] =
8544 alc262_capture_alt_mixer;
8547 spec->adc_nids = alc262_adc_nids;
8548 spec->num_adc_nids = ARRAY_SIZE(alc262_adc_nids);
8549 spec->mixers[spec->num_mixers] = alc262_capture_mixer;
8554 codec->patch_ops = alc_patch_ops;
8555 if (board_config == ALC262_AUTO)
8556 spec->init_hook = alc262_auto_init;
8557 #ifdef CONFIG_SND_HDA_POWER_SAVE
8558 if (!spec->loopback.amplist)
8559 spec->loopback.amplist = alc262_loopbacks;
8566 * ALC268 channel source setting (2 channel)
8568 #define ALC268_DIGOUT_NID ALC880_DIGOUT_NID
8569 #define alc268_modes alc260_modes
8571 static hda_nid_t alc268_dac_nids[2] = {
8576 static hda_nid_t alc268_adc_nids[2] = {
8581 static hda_nid_t alc268_adc_nids_alt[1] = {
8586 static struct snd_kcontrol_new alc268_base_mixer[] = {
8587 /* output mixer control */
8588 HDA_CODEC_VOLUME("Front Playback Volume", 0x2, 0x0, HDA_OUTPUT),
8589 HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT),
8590 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x3, 0x0, HDA_OUTPUT),
8591 HDA_CODEC_MUTE("Headphone Playback Switch", 0x15, 0x0, HDA_OUTPUT),
8592 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
8593 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
8594 HDA_CODEC_VOLUME("Line In Boost", 0x1a, 0, HDA_INPUT),
8598 static struct hda_verb alc268_eapd_verbs[] = {
8599 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 2},
8600 {0x15, AC_VERB_SET_EAPD_BTLENABLE, 2},
8604 /* Toshiba specific */
8605 #define alc268_toshiba_automute alc262_hippo_automute
8607 static struct hda_verb alc268_toshiba_verbs[] = {
8608 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
8613 /* bind volumes of both NID 0x02 and 0x03 */
8614 static struct hda_bind_ctls alc268_acer_bind_master_vol = {
8615 .ops = &snd_hda_bind_vol,
8617 HDA_COMPOSE_AMP_VAL(0x02, 3, 0, HDA_OUTPUT),
8618 HDA_COMPOSE_AMP_VAL(0x03, 3, 0, HDA_OUTPUT),
8623 /* mute/unmute internal speaker according to the hp jack and mute state */
8624 static void alc268_acer_automute(struct hda_codec *codec, int force)
8626 struct alc_spec *spec = codec->spec;
8629 if (force || !spec->sense_updated) {
8630 unsigned int present;
8631 present = snd_hda_codec_read(codec, 0x14, 0,
8632 AC_VERB_GET_PIN_SENSE, 0);
8633 spec->jack_present = (present & 0x80000000) != 0;
8634 spec->sense_updated = 1;
8636 if (spec->jack_present)
8637 mute = HDA_AMP_MUTE; /* mute internal speaker */
8638 else /* unmute internal speaker if necessary */
8639 mute = snd_hda_codec_amp_read(codec, 0x14, 0, HDA_OUTPUT, 0);
8640 snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0,
8641 HDA_AMP_MUTE, mute);
8645 /* bind hp and internal speaker mute (with plug check) */
8646 static int alc268_acer_master_sw_put(struct snd_kcontrol *kcontrol,
8647 struct snd_ctl_elem_value *ucontrol)
8649 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
8650 long *valp = ucontrol->value.integer.value;
8653 change = snd_hda_codec_amp_update(codec, 0x14, 0, HDA_OUTPUT, 0,
8655 valp[0] ? 0 : HDA_AMP_MUTE);
8656 change |= snd_hda_codec_amp_update(codec, 0x14, 1, HDA_OUTPUT, 0,
8658 valp[1] ? 0 : HDA_AMP_MUTE);
8660 alc268_acer_automute(codec, 0);
8664 static struct snd_kcontrol_new alc268_acer_mixer[] = {
8665 /* output mixer control */
8666 HDA_BIND_VOL("Master Playback Volume", &alc268_acer_bind_master_vol),
8668 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
8669 .name = "Master Playback Switch",
8670 .info = snd_hda_mixer_amp_switch_info,
8671 .get = snd_hda_mixer_amp_switch_get,
8672 .put = alc268_acer_master_sw_put,
8673 .private_value = HDA_COMPOSE_AMP_VAL(0x14, 3, 0, HDA_OUTPUT),
8675 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
8676 HDA_CODEC_VOLUME("Internal Mic Boost", 0x19, 0, HDA_INPUT),
8677 HDA_CODEC_VOLUME("Line In Boost", 0x1a, 0, HDA_INPUT),
8681 static struct hda_verb alc268_acer_verbs[] = {
8682 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
8683 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
8685 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, ALC880_HP_EVENT | AC_USRSP_EN},
8689 /* unsolicited event for HP jack sensing */
8690 static void alc268_toshiba_unsol_event(struct hda_codec *codec,
8693 if ((res >> 26) != ALC880_HP_EVENT)
8695 alc268_toshiba_automute(codec);
8698 static void alc268_acer_unsol_event(struct hda_codec *codec,
8701 if ((res >> 26) != ALC880_HP_EVENT)
8703 alc268_acer_automute(codec, 1);
8706 static void alc268_acer_init_hook(struct hda_codec *codec)
8708 alc268_acer_automute(codec, 1);
8712 * generic initialization of ADC, input mixers and output mixers
8714 static struct hda_verb alc268_base_init_verbs[] = {
8715 /* Unmute DAC0-1 and set vol = 0 */
8716 {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
8717 {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8718 {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8719 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
8720 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8721 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8724 * Set up output mixers (0x0c - 0x0e)
8726 /* set vol=0 to output mixers */
8727 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8728 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8729 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
8730 {0x0e, AC_VERB_SET_CONNECT_SEL, 0x00},
8732 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8733 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8735 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
8736 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0},
8737 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40},
8738 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
8739 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
8740 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
8741 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
8742 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
8744 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
8745 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
8746 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
8747 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
8748 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
8749 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
8750 {0x1c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
8751 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
8753 /* FIXME: use matrix-type input source selection */
8754 /* Mixer elements: 0x18, 19, 1a, 1c, 14, 15, 0b */
8755 /* Input mixer1: unmute Mic, F-Mic, Line, CD inputs */
8757 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
8758 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
8759 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))},
8760 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x03 << 8))},
8762 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x00 << 8))},
8763 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8))},
8764 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8))},
8765 {0x24, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x03 << 8))},
8770 * generic initialization of ADC, input mixers and output mixers
8772 static struct hda_verb alc268_volume_init_verbs[] = {
8773 /* set output DAC */
8774 {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8775 {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8776 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8777 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8779 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
8780 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24},
8781 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
8782 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
8783 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20},
8785 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
8786 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8787 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
8788 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8789 {0x10, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
8791 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
8792 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
8793 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
8794 {0x1c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
8796 /* set PCBEEP vol = 0 */
8797 {0x1d, AC_VERB_SET_AMP_GAIN_MUTE, (0xb000 | (0x00 << 8))},
8802 #define alc268_mux_enum_info alc_mux_enum_info
8803 #define alc268_mux_enum_get alc_mux_enum_get
8805 static int alc268_mux_enum_put(struct snd_kcontrol *kcontrol,
8806 struct snd_ctl_elem_value *ucontrol)
8808 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
8809 struct alc_spec *spec = codec->spec;
8810 const struct hda_input_mux *imux = spec->input_mux;
8811 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
8812 static hda_nid_t capture_mixers[3] = { 0x23, 0x24 };
8813 hda_nid_t nid = capture_mixers[adc_idx];
8814 unsigned int *cur_val = &spec->cur_mux[adc_idx];
8815 unsigned int i, idx;
8817 idx = ucontrol->value.enumerated.item[0];
8818 if (idx >= imux->num_items)
8819 idx = imux->num_items - 1;
8820 if (*cur_val == idx)
8822 for (i = 0; i < imux->num_items; i++) {
8823 unsigned int v = (i == idx) ? 0 : HDA_AMP_MUTE;
8824 snd_hda_codec_amp_stereo(codec, nid, HDA_INPUT,
8825 imux->items[i].index,
8827 snd_hda_codec_write_cache(codec, nid, 0,
8828 AC_VERB_SET_CONNECT_SEL,
8835 static struct snd_kcontrol_new alc268_capture_alt_mixer[] = {
8836 HDA_CODEC_VOLUME("Capture Volume", 0x23, 0x0, HDA_OUTPUT),
8837 HDA_CODEC_MUTE("Capture Switch", 0x23, 0x0, HDA_OUTPUT),
8839 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
8840 /* The multiple "Capture Source" controls confuse alsamixer
8841 * So call somewhat different..
8842 * FIXME: the controls appear in the "playback" view!
8844 /* .name = "Capture Source", */
8845 .name = "Input Source",
8847 .info = alc268_mux_enum_info,
8848 .get = alc268_mux_enum_get,
8849 .put = alc268_mux_enum_put,
8854 static struct snd_kcontrol_new alc268_capture_mixer[] = {
8855 HDA_CODEC_VOLUME("Capture Volume", 0x23, 0x0, HDA_OUTPUT),
8856 HDA_CODEC_MUTE("Capture Switch", 0x23, 0x0, HDA_OUTPUT),
8857 HDA_CODEC_VOLUME_IDX("Capture Volume", 1, 0x24, 0x0, HDA_OUTPUT),
8858 HDA_CODEC_MUTE_IDX("Capture Switch", 1, 0x24, 0x0, HDA_OUTPUT),
8860 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
8861 /* The multiple "Capture Source" controls confuse alsamixer
8862 * So call somewhat different..
8863 * FIXME: the controls appear in the "playback" view!
8865 /* .name = "Capture Source", */
8866 .name = "Input Source",
8868 .info = alc268_mux_enum_info,
8869 .get = alc268_mux_enum_get,
8870 .put = alc268_mux_enum_put,
8875 static struct hda_input_mux alc268_capture_source = {
8879 { "Front Mic", 0x1 },
8885 /* create input playback/capture controls for the given pin */
8886 static int alc268_new_analog_output(struct alc_spec *spec, hda_nid_t nid,
8887 const char *ctlname, int idx)
8892 sprintf(name, "%s Playback Volume", ctlname);
8894 err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
8895 HDA_COMPOSE_AMP_VAL(0x02, 3, idx,
8899 } else if (nid == 0x15) {
8900 err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
8901 HDA_COMPOSE_AMP_VAL(0x03, 3, idx,
8907 sprintf(name, "%s Playback Switch", ctlname);
8908 err = add_control(spec, ALC_CTL_WIDGET_MUTE, name,
8909 HDA_COMPOSE_AMP_VAL(nid, 3, idx, HDA_OUTPUT));
8915 /* add playback controls from the parsed DAC table */
8916 static int alc268_auto_create_multi_out_ctls(struct alc_spec *spec,
8917 const struct auto_pin_cfg *cfg)
8922 spec->multiout.num_dacs = 2; /* only use one dac */
8923 spec->multiout.dac_nids = spec->private_dac_nids;
8924 spec->multiout.dac_nids[0] = 2;
8925 spec->multiout.dac_nids[1] = 3;
8927 nid = cfg->line_out_pins[0];
8929 alc268_new_analog_output(spec, nid, "Front", 0);
8931 nid = cfg->speaker_pins[0];
8933 err = add_control(spec, ALC_CTL_WIDGET_VOL,
8934 "Speaker Playback Volume",
8935 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_INPUT));
8939 nid = cfg->hp_pins[0];
8941 alc268_new_analog_output(spec, nid, "Headphone", 0);
8943 nid = cfg->line_out_pins[1] | cfg->line_out_pins[2];
8945 err = add_control(spec, ALC_CTL_WIDGET_MUTE,
8946 "Mono Playback Switch",
8947 HDA_COMPOSE_AMP_VAL(nid, 2, 0, HDA_INPUT));
8954 /* create playback/capture controls for input pins */
8955 static int alc268_auto_create_analog_input_ctls(struct alc_spec *spec,
8956 const struct auto_pin_cfg *cfg)
8958 struct hda_input_mux *imux = &spec->private_imux;
8961 for (i = 0; i < AUTO_PIN_LAST; i++) {
8962 switch(cfg->input_pins[i]) {
8964 idx1 = 0; /* Mic 1 */
8967 idx1 = 1; /* Mic 2 */
8970 idx1 = 2; /* Line In */
8978 imux->items[imux->num_items].label = auto_pin_cfg_labels[i];
8979 imux->items[imux->num_items].index = idx1;
8985 static void alc268_auto_init_mono_speaker_out(struct hda_codec *codec)
8987 struct alc_spec *spec = codec->spec;
8988 hda_nid_t speaker_nid = spec->autocfg.speaker_pins[0];
8989 hda_nid_t hp_nid = spec->autocfg.hp_pins[0];
8990 hda_nid_t line_nid = spec->autocfg.line_out_pins[0];
8991 unsigned int dac_vol1, dac_vol2;
8994 snd_hda_codec_write(codec, speaker_nid, 0,
8995 AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT);
8996 snd_hda_codec_write(codec, 0x0f, 0,
8997 AC_VERB_SET_AMP_GAIN_MUTE,
8999 snd_hda_codec_write(codec, 0x10, 0,
9000 AC_VERB_SET_AMP_GAIN_MUTE,
9003 snd_hda_codec_write(codec, 0x0f, 0,
9004 AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1));
9005 snd_hda_codec_write(codec, 0x10, 0,
9006 AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1));
9009 dac_vol1 = dac_vol2 = 0xb000 | 0x40; /* set max volume */
9010 if (line_nid == 0x14)
9011 dac_vol2 = AMP_OUT_ZERO;
9012 else if (line_nid == 0x15)
9013 dac_vol1 = AMP_OUT_ZERO;
9015 dac_vol2 = AMP_OUT_ZERO;
9016 else if (hp_nid == 0x15)
9017 dac_vol1 = AMP_OUT_ZERO;
9018 if (line_nid != 0x16 || hp_nid != 0x16 ||
9019 spec->autocfg.line_out_pins[1] != 0x16 ||
9020 spec->autocfg.line_out_pins[2] != 0x16)
9021 dac_vol1 = dac_vol2 = AMP_OUT_ZERO;
9023 snd_hda_codec_write(codec, 0x02, 0,
9024 AC_VERB_SET_AMP_GAIN_MUTE, dac_vol1);
9025 snd_hda_codec_write(codec, 0x03, 0,
9026 AC_VERB_SET_AMP_GAIN_MUTE, dac_vol2);
9029 /* pcm configuration: identiacal with ALC880 */
9030 #define alc268_pcm_analog_playback alc880_pcm_analog_playback
9031 #define alc268_pcm_analog_capture alc880_pcm_analog_capture
9032 #define alc268_pcm_digital_playback alc880_pcm_digital_playback
9035 * BIOS auto configuration
9037 static int alc268_parse_auto_config(struct hda_codec *codec)
9039 struct alc_spec *spec = codec->spec;
9041 static hda_nid_t alc268_ignore[] = { 0 };
9043 err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
9047 if (!spec->autocfg.line_outs)
9048 return 0; /* can't find valid BIOS pin config */
9050 err = alc268_auto_create_multi_out_ctls(spec, &spec->autocfg);
9053 err = alc268_auto_create_analog_input_ctls(spec, &spec->autocfg);
9057 spec->multiout.max_channels = 2;
9059 /* digital only support output */
9060 if (spec->autocfg.dig_out_pin)
9061 spec->multiout.dig_out_nid = ALC268_DIGOUT_NID;
9063 if (spec->kctl_alloc)
9064 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
9066 spec->init_verbs[spec->num_init_verbs++] = alc268_volume_init_verbs;
9067 spec->num_mux_defs = 1;
9068 spec->input_mux = &spec->private_imux;
9070 err = alc_auto_add_mic_boost(codec);
9077 #define alc268_auto_init_multi_out alc882_auto_init_multi_out
9078 #define alc268_auto_init_hp_out alc882_auto_init_hp_out
9079 #define alc268_auto_init_analog_input alc882_auto_init_analog_input
9081 /* init callback for auto-configuration model -- overriding the default init */
9082 static void alc268_auto_init(struct hda_codec *codec)
9084 alc268_auto_init_multi_out(codec);
9085 alc268_auto_init_hp_out(codec);
9086 alc268_auto_init_mono_speaker_out(codec);
9087 alc268_auto_init_analog_input(codec);
9091 * configuration and preset
9093 static const char *alc268_models[ALC268_MODEL_LAST] = {
9094 [ALC268_3ST] = "3stack",
9095 [ALC268_TOSHIBA] = "toshiba",
9096 [ALC268_ACER] = "acer",
9097 [ALC268_AUTO] = "auto",
9100 static struct snd_pci_quirk alc268_cfg_tbl[] = {
9101 SND_PCI_QUIRK(0x1043, 0x1205, "ASUS W7J", ALC268_3ST),
9102 SND_PCI_QUIRK(0x1179, 0xff10, "TOSHIBA A205", ALC268_TOSHIBA),
9103 SND_PCI_QUIRK(0x1179, 0xff50, "TOSHIBA A305", ALC268_TOSHIBA),
9104 SND_PCI_QUIRK(0x103c, 0x30cc, "TOSHIBA", ALC268_TOSHIBA),
9105 SND_PCI_QUIRK(0x1025, 0x0126, "Acer", ALC268_ACER),
9106 SND_PCI_QUIRK(0x1025, 0x0130, "Acer Extensa 5210", ALC268_ACER),
9107 SND_PCI_QUIRK(0x152d, 0x0763, "Diverse (CPR2000)", ALC268_ACER),
9111 static struct alc_config_preset alc268_presets[] = {
9113 .mixers = { alc268_base_mixer, alc268_capture_alt_mixer },
9114 .init_verbs = { alc268_base_init_verbs },
9115 .num_dacs = ARRAY_SIZE(alc268_dac_nids),
9116 .dac_nids = alc268_dac_nids,
9117 .num_adc_nids = ARRAY_SIZE(alc268_adc_nids_alt),
9118 .adc_nids = alc268_adc_nids_alt,
9120 .dig_out_nid = ALC268_DIGOUT_NID,
9121 .num_channel_mode = ARRAY_SIZE(alc268_modes),
9122 .channel_mode = alc268_modes,
9123 .input_mux = &alc268_capture_source,
9125 [ALC268_TOSHIBA] = {
9126 .mixers = { alc268_base_mixer, alc268_capture_alt_mixer },
9127 .init_verbs = { alc268_base_init_verbs, alc268_eapd_verbs,
9128 alc268_toshiba_verbs },
9129 .num_dacs = ARRAY_SIZE(alc268_dac_nids),
9130 .dac_nids = alc268_dac_nids,
9131 .num_adc_nids = ARRAY_SIZE(alc268_adc_nids_alt),
9132 .adc_nids = alc268_adc_nids_alt,
9134 .num_channel_mode = ARRAY_SIZE(alc268_modes),
9135 .channel_mode = alc268_modes,
9136 .input_mux = &alc268_capture_source,
9137 .input_mux = &alc268_capture_source,
9138 .unsol_event = alc268_toshiba_unsol_event,
9139 .init_hook = alc268_toshiba_automute,
9142 .mixers = { alc268_acer_mixer, alc268_capture_alt_mixer },
9143 .init_verbs = { alc268_base_init_verbs, alc268_eapd_verbs,
9144 alc268_acer_verbs },
9145 .num_dacs = ARRAY_SIZE(alc268_dac_nids),
9146 .dac_nids = alc268_dac_nids,
9147 .num_adc_nids = ARRAY_SIZE(alc268_adc_nids_alt),
9148 .adc_nids = alc268_adc_nids_alt,
9150 .num_channel_mode = ARRAY_SIZE(alc268_modes),
9151 .channel_mode = alc268_modes,
9152 .input_mux = &alc268_capture_source,
9153 .unsol_event = alc268_acer_unsol_event,
9154 .init_hook = alc268_acer_init_hook,
9158 static int patch_alc268(struct hda_codec *codec)
9160 struct alc_spec *spec;
9164 spec = kcalloc(1, sizeof(*spec), GFP_KERNEL);
9170 board_config = snd_hda_check_board_config(codec, ALC268_MODEL_LAST,
9174 if (board_config < 0 || board_config >= ALC268_MODEL_LAST) {
9175 printk(KERN_INFO "hda_codec: Unknown model for ALC268, "
9176 "trying auto-probe from BIOS...\n");
9177 board_config = ALC268_AUTO;
9180 if (board_config == ALC268_AUTO) {
9181 /* automatic parse from the BIOS config */
9182 err = alc268_parse_auto_config(codec);
9188 "hda_codec: Cannot set up configuration "
9189 "from BIOS. Using base mode...\n");
9190 board_config = ALC268_3ST;
9194 if (board_config != ALC268_AUTO)
9195 setup_preset(spec, &alc268_presets[board_config]);
9197 spec->stream_name_analog = "ALC268 Analog";
9198 spec->stream_analog_playback = &alc268_pcm_analog_playback;
9199 spec->stream_analog_capture = &alc268_pcm_analog_capture;
9201 spec->stream_name_digital = "ALC268 Digital";
9202 spec->stream_digital_playback = &alc268_pcm_digital_playback;
9204 if (board_config == ALC268_AUTO) {
9205 if (!spec->adc_nids && spec->input_mux) {
9206 /* check whether NID 0x07 is valid */
9207 unsigned int wcap = get_wcaps(codec, 0x07);
9210 wcap = (wcap & AC_WCAP_TYPE) >> AC_WCAP_TYPE_SHIFT;
9211 if (wcap != AC_WID_AUD_IN) {
9212 spec->adc_nids = alc268_adc_nids_alt;
9213 spec->num_adc_nids =
9214 ARRAY_SIZE(alc268_adc_nids_alt);
9215 spec->mixers[spec->num_mixers] =
9216 alc268_capture_alt_mixer;
9219 spec->adc_nids = alc268_adc_nids;
9220 spec->num_adc_nids =
9221 ARRAY_SIZE(alc268_adc_nids);
9222 spec->mixers[spec->num_mixers] =
9223 alc268_capture_mixer;
9228 codec->patch_ops = alc_patch_ops;
9229 if (board_config == ALC268_AUTO)
9230 spec->init_hook = alc268_auto_init;
9236 * ALC861 channel source setting (2/6 channel selection for 3-stack)
9240 * set the path ways for 2 channel output
9241 * need to set the codec line out and mic 1 pin widgets to inputs
9243 static struct hda_verb alc861_threestack_ch2_init[] = {
9244 /* set pin widget 1Ah (line in) for input */
9245 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
9246 /* set pin widget 18h (mic1/2) for input, for mic also enable
9249 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
9251 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c },
9253 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8)) }, /*mic*/
9254 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8)) }, /*line-in*/
9260 * need to set the codec line out and mic 1 pin widgets to outputs
9262 static struct hda_verb alc861_threestack_ch6_init[] = {
9263 /* set pin widget 1Ah (line in) for output (Back Surround)*/
9264 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
9265 /* set pin widget 18h (mic1) for output (CLFE)*/
9266 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
9268 { 0x0c, AC_VERB_SET_CONNECT_SEL, 0x00 },
9269 { 0x0d, AC_VERB_SET_CONNECT_SEL, 0x00 },
9271 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080 },
9273 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x01 << 8)) }, /*mic*/
9274 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8)) }, /*line in*/
9279 static struct hda_channel_mode alc861_threestack_modes[2] = {
9280 { 2, alc861_threestack_ch2_init },
9281 { 6, alc861_threestack_ch6_init },
9283 /* Set mic1 as input and unmute the mixer */
9284 static struct hda_verb alc861_uniwill_m31_ch2_init[] = {
9285 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
9286 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x01 << 8)) }, /*mic*/
9289 /* Set mic1 as output and mute mixer */
9290 static struct hda_verb alc861_uniwill_m31_ch4_init[] = {
9291 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
9292 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8)) }, /*mic*/
9296 static struct hda_channel_mode alc861_uniwill_m31_modes[2] = {
9297 { 2, alc861_uniwill_m31_ch2_init },
9298 { 4, alc861_uniwill_m31_ch4_init },
9301 /* Set mic1 and line-in as input and unmute the mixer */
9302 static struct hda_verb alc861_asus_ch2_init[] = {
9303 /* set pin widget 1Ah (line in) for input */
9304 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
9305 /* set pin widget 18h (mic1/2) for input, for mic also enable
9308 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
9310 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c },
9312 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x01 << 8)) }, /*mic*/
9313 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7000 | (0x02 << 8)) }, /*line-in*/
9317 /* Set mic1 nad line-in as output and mute mixer */
9318 static struct hda_verb alc861_asus_ch6_init[] = {
9319 /* set pin widget 1Ah (line in) for output (Back Surround)*/
9320 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
9321 /* { 0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE }, */
9322 /* set pin widget 18h (mic1) for output (CLFE)*/
9323 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
9324 /* { 0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE }, */
9325 { 0x0c, AC_VERB_SET_CONNECT_SEL, 0x00 },
9326 { 0x0d, AC_VERB_SET_CONNECT_SEL, 0x00 },
9328 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb080 },
9330 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x01 << 8)) }, /*mic*/
9331 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, (0x7080 | (0x02 << 8)) }, /*line in*/
9336 static struct hda_channel_mode alc861_asus_modes[2] = {
9337 { 2, alc861_asus_ch2_init },
9338 { 6, alc861_asus_ch6_init },
9343 static struct snd_kcontrol_new alc861_base_mixer[] = {
9344 /* output mixer control */
9345 HDA_CODEC_MUTE("Front Playback Switch", 0x03, 0x0, HDA_OUTPUT),
9346 HDA_CODEC_MUTE("Surround Playback Switch", 0x06, 0x0, HDA_OUTPUT),
9347 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x05, 1, 0x0, HDA_OUTPUT),
9348 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x05, 2, 0x0, HDA_OUTPUT),
9349 HDA_CODEC_MUTE("Side Playback Switch", 0x04, 0x0, HDA_OUTPUT),
9351 /*Input mixer control */
9352 /* HDA_CODEC_VOLUME("Input Playback Volume", 0x15, 0x0, HDA_OUTPUT),
9353 HDA_CODEC_MUTE("Input Playback Switch", 0x15, 0x0, HDA_OUTPUT), */
9354 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT),
9355 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT),
9356 HDA_CODEC_VOLUME("Line Playback Volume", 0x15, 0x02, HDA_INPUT),
9357 HDA_CODEC_MUTE("Line Playback Switch", 0x15, 0x02, HDA_INPUT),
9358 HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT),
9359 HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT),
9360 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x10, 0x01, HDA_OUTPUT),
9361 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x03, HDA_INPUT),
9363 /* Capture mixer control */
9364 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
9365 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
9367 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
9368 .name = "Capture Source",
9370 .info = alc_mux_enum_info,
9371 .get = alc_mux_enum_get,
9372 .put = alc_mux_enum_put,
9377 static struct snd_kcontrol_new alc861_3ST_mixer[] = {
9378 /* output mixer control */
9379 HDA_CODEC_MUTE("Front Playback Switch", 0x03, 0x0, HDA_OUTPUT),
9380 HDA_CODEC_MUTE("Surround Playback Switch", 0x06, 0x0, HDA_OUTPUT),
9381 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x05, 1, 0x0, HDA_OUTPUT),
9382 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x05, 2, 0x0, HDA_OUTPUT),
9383 /*HDA_CODEC_MUTE("Side Playback Switch", 0x04, 0x0, HDA_OUTPUT), */
9385 /* Input mixer control */
9386 /* HDA_CODEC_VOLUME("Input Playback Volume", 0x15, 0x0, HDA_OUTPUT),
9387 HDA_CODEC_MUTE("Input Playback Switch", 0x15, 0x0, HDA_OUTPUT), */
9388 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT),
9389 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT),
9390 HDA_CODEC_VOLUME("Line Playback Volume", 0x15, 0x02, HDA_INPUT),
9391 HDA_CODEC_MUTE("Line Playback Switch", 0x15, 0x02, HDA_INPUT),
9392 HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT),
9393 HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT),
9394 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x10, 0x01, HDA_OUTPUT),
9395 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x03, HDA_INPUT),
9397 /* Capture mixer control */
9398 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
9399 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
9401 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
9402 .name = "Capture Source",
9404 .info = alc_mux_enum_info,
9405 .get = alc_mux_enum_get,
9406 .put = alc_mux_enum_put,
9409 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
9410 .name = "Channel Mode",
9411 .info = alc_ch_mode_info,
9412 .get = alc_ch_mode_get,
9413 .put = alc_ch_mode_put,
9414 .private_value = ARRAY_SIZE(alc861_threestack_modes),
9419 static struct snd_kcontrol_new alc861_toshiba_mixer[] = {
9420 /* output mixer control */
9421 HDA_CODEC_MUTE("Master Playback Switch", 0x03, 0x0, HDA_OUTPUT),
9422 HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT),
9423 HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT),
9425 /*Capture mixer control */
9426 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
9427 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
9429 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
9430 .name = "Capture Source",
9432 .info = alc_mux_enum_info,
9433 .get = alc_mux_enum_get,
9434 .put = alc_mux_enum_put,
9440 static struct snd_kcontrol_new alc861_uniwill_m31_mixer[] = {
9441 /* output mixer control */
9442 HDA_CODEC_MUTE("Front Playback Switch", 0x03, 0x0, HDA_OUTPUT),
9443 HDA_CODEC_MUTE("Surround Playback Switch", 0x06, 0x0, HDA_OUTPUT),
9444 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x05, 1, 0x0, HDA_OUTPUT),
9445 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x05, 2, 0x0, HDA_OUTPUT),
9446 /*HDA_CODEC_MUTE("Side Playback Switch", 0x04, 0x0, HDA_OUTPUT), */
9448 /* Input mixer control */
9449 /* HDA_CODEC_VOLUME("Input Playback Volume", 0x15, 0x0, HDA_OUTPUT),
9450 HDA_CODEC_MUTE("Input Playback Switch", 0x15, 0x0, HDA_OUTPUT), */
9451 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT),
9452 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT),
9453 HDA_CODEC_VOLUME("Line Playback Volume", 0x15, 0x02, HDA_INPUT),
9454 HDA_CODEC_MUTE("Line Playback Switch", 0x15, 0x02, HDA_INPUT),
9455 HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT),
9456 HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT),
9457 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x10, 0x01, HDA_OUTPUT),
9458 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x03, HDA_INPUT),
9460 /* Capture mixer control */
9461 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
9462 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
9464 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
9465 .name = "Capture Source",
9467 .info = alc_mux_enum_info,
9468 .get = alc_mux_enum_get,
9469 .put = alc_mux_enum_put,
9472 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
9473 .name = "Channel Mode",
9474 .info = alc_ch_mode_info,
9475 .get = alc_ch_mode_get,
9476 .put = alc_ch_mode_put,
9477 .private_value = ARRAY_SIZE(alc861_uniwill_m31_modes),
9482 static struct snd_kcontrol_new alc861_asus_mixer[] = {
9483 /* output mixer control */
9484 HDA_CODEC_MUTE("Front Playback Switch", 0x03, 0x0, HDA_OUTPUT),
9485 HDA_CODEC_MUTE("Surround Playback Switch", 0x06, 0x0, HDA_OUTPUT),
9486 HDA_CODEC_MUTE_MONO("Center Playback Switch", 0x05, 1, 0x0, HDA_OUTPUT),
9487 HDA_CODEC_MUTE_MONO("LFE Playback Switch", 0x05, 2, 0x0, HDA_OUTPUT),
9488 HDA_CODEC_MUTE("Side Playback Switch", 0x04, 0x0, HDA_OUTPUT),
9490 /* Input mixer control */
9491 HDA_CODEC_VOLUME("Input Playback Volume", 0x15, 0x0, HDA_OUTPUT),
9492 HDA_CODEC_MUTE("Input Playback Switch", 0x15, 0x0, HDA_OUTPUT),
9493 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT),
9494 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT),
9495 HDA_CODEC_VOLUME("Line Playback Volume", 0x15, 0x02, HDA_INPUT),
9496 HDA_CODEC_MUTE("Line Playback Switch", 0x15, 0x02, HDA_INPUT),
9497 HDA_CODEC_VOLUME("Mic Playback Volume", 0x15, 0x01, HDA_INPUT),
9498 HDA_CODEC_MUTE("Mic Playback Switch", 0x15, 0x01, HDA_INPUT),
9499 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x10, 0x01, HDA_OUTPUT),
9500 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1a, 0x03, HDA_OUTPUT),
9502 /* Capture mixer control */
9503 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
9504 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
9506 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
9507 .name = "Capture Source",
9509 .info = alc_mux_enum_info,
9510 .get = alc_mux_enum_get,
9511 .put = alc_mux_enum_put,
9514 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
9515 .name = "Channel Mode",
9516 .info = alc_ch_mode_info,
9517 .get = alc_ch_mode_get,
9518 .put = alc_ch_mode_put,
9519 .private_value = ARRAY_SIZE(alc861_asus_modes),
9524 /* additional mixer */
9525 static struct snd_kcontrol_new alc861_asus_laptop_mixer[] = {
9526 HDA_CODEC_VOLUME("CD Playback Volume", 0x15, 0x0, HDA_INPUT),
9527 HDA_CODEC_MUTE("CD Playback Switch", 0x15, 0x0, HDA_INPUT),
9528 HDA_CODEC_VOLUME("PC Beep Playback Volume", 0x23, 0x0, HDA_OUTPUT),
9529 HDA_CODEC_MUTE("PC Beep Playback Switch", 0x23, 0x0, HDA_OUTPUT),
9534 * generic initialization of ADC, input mixers and output mixers
9536 static struct hda_verb alc861_base_init_verbs[] = {
9538 * Unmute ADC0 and set the default input to mic-in
9540 /* port-A for surround (rear panel) */
9541 { 0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
9542 { 0x0e, AC_VERB_SET_CONNECT_SEL, 0x00 },
9543 /* port-B for mic-in (rear panel) with vref */
9544 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
9545 /* port-C for line-in (rear panel) */
9546 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
9547 /* port-D for Front */
9548 { 0x0b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
9549 { 0x0b, AC_VERB_SET_CONNECT_SEL, 0x00 },
9550 /* port-E for HP out (front panel) */
9551 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0 },
9552 /* route front PCM to HP */
9553 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x00 },
9554 /* port-F for mic-in (front panel) with vref */
9555 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
9556 /* port-G for CLFE (rear panel) */
9557 { 0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
9558 { 0x1f, AC_VERB_SET_CONNECT_SEL, 0x00 },
9559 /* port-H for side (rear panel) */
9560 { 0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
9561 { 0x20, AC_VERB_SET_CONNECT_SEL, 0x00 },
9563 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
9564 /* route front mic to ADC1*/
9565 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
9566 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9568 /* Unmute DAC0~3 & spdif out*/
9569 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9570 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9571 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9572 {0x06, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9573 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9575 /* Unmute Mixer 14 (mic) 1c (Line in)*/
9576 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9577 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9578 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9579 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9581 /* Unmute Stereo Mixer 15 */
9582 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9583 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9584 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
9585 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c}, /* Output 0~12 step */
9587 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9588 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9589 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9590 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9591 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9592 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9593 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9594 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9595 /* hp used DAC 3 (Front) */
9596 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
9597 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
9602 static struct hda_verb alc861_threestack_init_verbs[] = {
9604 * Unmute ADC0 and set the default input to mic-in
9606 /* port-A for surround (rear panel) */
9607 { 0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
9608 /* port-B for mic-in (rear panel) with vref */
9609 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
9610 /* port-C for line-in (rear panel) */
9611 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
9612 /* port-D for Front */
9613 { 0x0b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
9614 { 0x0b, AC_VERB_SET_CONNECT_SEL, 0x00 },
9615 /* port-E for HP out (front panel) */
9616 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0 },
9617 /* route front PCM to HP */
9618 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x00 },
9619 /* port-F for mic-in (front panel) with vref */
9620 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
9621 /* port-G for CLFE (rear panel) */
9622 { 0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
9623 /* port-H for side (rear panel) */
9624 { 0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
9626 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
9627 /* route front mic to ADC1*/
9628 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
9629 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9630 /* Unmute DAC0~3 & spdif out*/
9631 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9632 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9633 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9634 {0x06, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9635 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9637 /* Unmute Mixer 14 (mic) 1c (Line in)*/
9638 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9639 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9640 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9641 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9643 /* Unmute Stereo Mixer 15 */
9644 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9645 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9646 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
9647 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c}, /* Output 0~12 step */
9649 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9650 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9651 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9652 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9653 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9654 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9655 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9656 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9657 /* hp used DAC 3 (Front) */
9658 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
9659 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
9663 static struct hda_verb alc861_uniwill_m31_init_verbs[] = {
9665 * Unmute ADC0 and set the default input to mic-in
9667 /* port-A for surround (rear panel) */
9668 { 0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
9669 /* port-B for mic-in (rear panel) with vref */
9670 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
9671 /* port-C for line-in (rear panel) */
9672 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
9673 /* port-D for Front */
9674 { 0x0b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
9675 { 0x0b, AC_VERB_SET_CONNECT_SEL, 0x00 },
9676 /* port-E for HP out (front panel) */
9677 /* this has to be set to VREF80 */
9678 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
9679 /* route front PCM to HP */
9680 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x00 },
9681 /* port-F for mic-in (front panel) with vref */
9682 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
9683 /* port-G for CLFE (rear panel) */
9684 { 0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
9685 /* port-H for side (rear panel) */
9686 { 0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
9688 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
9689 /* route front mic to ADC1*/
9690 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
9691 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9692 /* Unmute DAC0~3 & spdif out*/
9693 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9694 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9695 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9696 {0x06, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9697 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9699 /* Unmute Mixer 14 (mic) 1c (Line in)*/
9700 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9701 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9702 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9703 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9705 /* Unmute Stereo Mixer 15 */
9706 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9707 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9708 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
9709 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c}, /* Output 0~12 step */
9711 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9712 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9713 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9714 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9715 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9716 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9717 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9718 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9719 /* hp used DAC 3 (Front) */
9720 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
9721 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
9725 static struct hda_verb alc861_asus_init_verbs[] = {
9727 * Unmute ADC0 and set the default input to mic-in
9729 /* port-A for surround (rear panel)
9730 * according to codec#0 this is the HP jack
9732 { 0x0e, AC_VERB_SET_PIN_WIDGET_CONTROL, 0xc0 }, /* was 0x00 */
9733 /* route front PCM to HP */
9734 { 0x0e, AC_VERB_SET_CONNECT_SEL, 0x01 },
9735 /* port-B for mic-in (rear panel) with vref */
9736 { 0x0d, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
9737 /* port-C for line-in (rear panel) */
9738 { 0x0c, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
9739 /* port-D for Front */
9740 { 0x0b, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
9741 { 0x0b, AC_VERB_SET_CONNECT_SEL, 0x00 },
9742 /* port-E for HP out (front panel) */
9743 /* this has to be set to VREF80 */
9744 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
9745 /* route front PCM to HP */
9746 { 0x0f, AC_VERB_SET_CONNECT_SEL, 0x00 },
9747 /* port-F for mic-in (front panel) with vref */
9748 { 0x10, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x24 },
9749 /* port-G for CLFE (rear panel) */
9750 { 0x1f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
9751 /* port-H for side (rear panel) */
9752 { 0x20, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x40 },
9754 { 0x11, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x20 },
9755 /* route front mic to ADC1*/
9756 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00},
9757 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9758 /* Unmute DAC0~3 & spdif out*/
9759 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9760 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9761 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9762 {0x06, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9763 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9764 /* Unmute Mixer 14 (mic) 1c (Line in)*/
9765 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9766 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9767 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9768 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9770 /* Unmute Stereo Mixer 15 */
9771 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9772 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9773 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
9774 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c}, /* Output 0~12 step */
9776 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9777 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9778 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9779 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9780 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9781 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9782 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9783 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9784 /* hp used DAC 3 (Front) */
9785 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
9786 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
9790 /* additional init verbs for ASUS laptops */
9791 static struct hda_verb alc861_asus_laptop_init_verbs[] = {
9792 { 0x0f, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x45 }, /* HP-out */
9793 { 0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2) }, /* mute line-in */
9798 * generic initialization of ADC, input mixers and output mixers
9800 static struct hda_verb alc861_auto_init_verbs[] = {
9802 * Unmute ADC0 and set the default input to mic-in
9804 /* {0x08, AC_VERB_SET_CONNECT_SEL, 0x00}, */
9805 {0x08, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9807 /* Unmute DAC0~3 & spdif out*/
9808 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
9809 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
9810 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
9811 {0x06, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
9812 {0x07, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
9814 /* Unmute Mixer 14 (mic) 1c (Line in)*/
9815 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9816 {0x014, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9817 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9818 {0x01c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9820 /* Unmute Stereo Mixer 15 */
9821 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9822 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9823 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
9824 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, 0xb00c},
9826 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9827 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9828 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9829 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9830 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9831 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9832 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
9833 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
9835 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
9836 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
9837 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
9838 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
9839 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
9840 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
9841 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
9842 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(3)},
9844 {0x08, AC_VERB_SET_CONNECT_SEL, 0x00}, /* set Mic 1 */
9849 static struct hda_verb alc861_toshiba_init_verbs[] = {
9850 {0x0f, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
9855 /* toggle speaker-output according to the hp-jack state */
9856 static void alc861_toshiba_automute(struct hda_codec *codec)
9858 unsigned int present;
9860 present = snd_hda_codec_read(codec, 0x0f, 0,
9861 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
9862 snd_hda_codec_amp_stereo(codec, 0x16, HDA_INPUT, 0,
9863 HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0);
9864 snd_hda_codec_amp_stereo(codec, 0x1a, HDA_INPUT, 3,
9865 HDA_AMP_MUTE, present ? 0 : HDA_AMP_MUTE);
9868 static void alc861_toshiba_unsol_event(struct hda_codec *codec,
9871 if ((res >> 26) == ALC880_HP_EVENT)
9872 alc861_toshiba_automute(codec);
9875 /* pcm configuration: identiacal with ALC880 */
9876 #define alc861_pcm_analog_playback alc880_pcm_analog_playback
9877 #define alc861_pcm_analog_capture alc880_pcm_analog_capture
9878 #define alc861_pcm_digital_playback alc880_pcm_digital_playback
9879 #define alc861_pcm_digital_capture alc880_pcm_digital_capture
9882 #define ALC861_DIGOUT_NID 0x07
9884 static struct hda_channel_mode alc861_8ch_modes[1] = {
9888 static hda_nid_t alc861_dac_nids[4] = {
9889 /* front, surround, clfe, side */
9890 0x03, 0x06, 0x05, 0x04
9893 static hda_nid_t alc660_dac_nids[3] = {
9894 /* front, clfe, surround */
9898 static hda_nid_t alc861_adc_nids[1] = {
9903 static struct hda_input_mux alc861_capture_source = {
9907 { "Front Mic", 0x3 },
9914 /* fill in the dac_nids table from the parsed pin configuration */
9915 static int alc861_auto_fill_dac_nids(struct alc_spec *spec,
9916 const struct auto_pin_cfg *cfg)
9921 spec->multiout.dac_nids = spec->private_dac_nids;
9922 for (i = 0; i < cfg->line_outs; i++) {
9923 nid = cfg->line_out_pins[i];
9925 if (i >= ARRAY_SIZE(alc861_dac_nids))
9927 spec->multiout.dac_nids[i] = alc861_dac_nids[i];
9930 spec->multiout.num_dacs = cfg->line_outs;
9934 /* add playback controls from the parsed DAC table */
9935 static int alc861_auto_create_multi_out_ctls(struct alc_spec *spec,
9936 const struct auto_pin_cfg *cfg)
9939 static const char *chname[4] = {
9940 "Front", "Surround", NULL /*CLFE*/, "Side"
9945 for (i = 0; i < cfg->line_outs; i++) {
9946 nid = spec->multiout.dac_nids[i];
9951 err = add_control(spec, ALC_CTL_BIND_MUTE,
9952 "Center Playback Switch",
9953 HDA_COMPOSE_AMP_VAL(nid, 1, 0,
9957 err = add_control(spec, ALC_CTL_BIND_MUTE,
9958 "LFE Playback Switch",
9959 HDA_COMPOSE_AMP_VAL(nid, 2, 0,
9964 for (idx = 0; idx < ARRAY_SIZE(alc861_dac_nids) - 1;
9966 if (nid == alc861_dac_nids[idx])
9968 sprintf(name, "%s Playback Switch", chname[idx]);
9969 err = add_control(spec, ALC_CTL_BIND_MUTE, name,
9970 HDA_COMPOSE_AMP_VAL(nid, 3, 0,
9979 static int alc861_auto_create_hp_ctls(struct alc_spec *spec, hda_nid_t pin)
9987 if ((pin >= 0x0b && pin <= 0x10) || pin == 0x1f || pin == 0x20) {
9989 err = add_control(spec, ALC_CTL_WIDGET_MUTE,
9990 "Headphone Playback Switch",
9991 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT));
9994 spec->multiout.hp_nid = nid;
9999 /* create playback/capture controls for input pins */
10000 static int alc861_auto_create_analog_input_ctls(struct alc_spec *spec,
10001 const struct auto_pin_cfg *cfg)
10003 struct hda_input_mux *imux = &spec->private_imux;
10004 int i, err, idx, idx1;
10006 for (i = 0; i < AUTO_PIN_LAST; i++) {
10007 switch (cfg->input_pins[i]) {
10010 idx = 2; /* Line In */
10014 idx = 2; /* Line In */
10018 idx = 1; /* Mic In */
10022 idx = 1; /* Mic In */
10032 err = new_analog_input(spec, cfg->input_pins[i],
10033 auto_pin_cfg_labels[i], idx, 0x15);
10037 imux->items[imux->num_items].label = auto_pin_cfg_labels[i];
10038 imux->items[imux->num_items].index = idx1;
10044 static struct snd_kcontrol_new alc861_capture_mixer[] = {
10045 HDA_CODEC_VOLUME("Capture Volume", 0x08, 0x0, HDA_INPUT),
10046 HDA_CODEC_MUTE("Capture Switch", 0x08, 0x0, HDA_INPUT),
10049 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
10050 /* The multiple "Capture Source" controls confuse alsamixer
10051 * So call somewhat different..
10052 *FIXME: the controls appear in the "playback" view!
10054 /* .name = "Capture Source", */
10055 .name = "Input Source",
10057 .info = alc_mux_enum_info,
10058 .get = alc_mux_enum_get,
10059 .put = alc_mux_enum_put,
10064 static void alc861_auto_set_output_and_unmute(struct hda_codec *codec,
10066 int pin_type, int dac_idx)
10068 /* set as output */
10070 snd_hda_codec_write(codec, nid, 0, AC_VERB_SET_PIN_WIDGET_CONTROL,
10072 snd_hda_codec_write(codec, dac_idx, 0, AC_VERB_SET_AMP_GAIN_MUTE,
10077 static void alc861_auto_init_multi_out(struct hda_codec *codec)
10079 struct alc_spec *spec = codec->spec;
10082 alc_subsystem_id(codec, 0x0e, 0x0f, 0x0b);
10083 for (i = 0; i < spec->autocfg.line_outs; i++) {
10084 hda_nid_t nid = spec->autocfg.line_out_pins[i];
10085 int pin_type = get_pin_type(spec->autocfg.line_out_type);
10087 alc861_auto_set_output_and_unmute(codec, nid, pin_type,
10088 spec->multiout.dac_nids[i]);
10092 static void alc861_auto_init_hp_out(struct hda_codec *codec)
10094 struct alc_spec *spec = codec->spec;
10097 pin = spec->autocfg.hp_pins[0];
10098 if (pin) /* connect to front */
10099 alc861_auto_set_output_and_unmute(codec, pin, PIN_HP,
10100 spec->multiout.dac_nids[0]);
10103 static void alc861_auto_init_analog_input(struct hda_codec *codec)
10105 struct alc_spec *spec = codec->spec;
10108 for (i = 0; i < AUTO_PIN_LAST; i++) {
10109 hda_nid_t nid = spec->autocfg.input_pins[i];
10110 if (nid >= 0x0c && nid <= 0x11) {
10111 snd_hda_codec_write(codec, nid, 0,
10112 AC_VERB_SET_PIN_WIDGET_CONTROL,
10113 i <= AUTO_PIN_FRONT_MIC ?
10114 PIN_VREF80 : PIN_IN);
10119 /* parse the BIOS configuration and set up the alc_spec */
10120 /* return 1 if successful, 0 if the proper config is not found,
10121 * or a negative error code
10123 static int alc861_parse_auto_config(struct hda_codec *codec)
10125 struct alc_spec *spec = codec->spec;
10127 static hda_nid_t alc861_ignore[] = { 0x1d, 0 };
10129 err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
10133 if (!spec->autocfg.line_outs)
10134 return 0; /* can't find valid BIOS pin config */
10136 err = alc861_auto_fill_dac_nids(spec, &spec->autocfg);
10139 err = alc861_auto_create_multi_out_ctls(spec, &spec->autocfg);
10142 err = alc861_auto_create_hp_ctls(spec, spec->autocfg.hp_pins[0]);
10145 err = alc861_auto_create_analog_input_ctls(spec, &spec->autocfg);
10149 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
10151 if (spec->autocfg.dig_out_pin)
10152 spec->multiout.dig_out_nid = ALC861_DIGOUT_NID;
10154 if (spec->kctl_alloc)
10155 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
10157 spec->init_verbs[spec->num_init_verbs++] = alc861_auto_init_verbs;
10159 spec->num_mux_defs = 1;
10160 spec->input_mux = &spec->private_imux;
10162 spec->adc_nids = alc861_adc_nids;
10163 spec->num_adc_nids = ARRAY_SIZE(alc861_adc_nids);
10164 spec->mixers[spec->num_mixers] = alc861_capture_mixer;
10165 spec->num_mixers++;
10170 /* additional initialization for auto-configuration model */
10171 static void alc861_auto_init(struct hda_codec *codec)
10173 alc861_auto_init_multi_out(codec);
10174 alc861_auto_init_hp_out(codec);
10175 alc861_auto_init_analog_input(codec);
10178 #ifdef CONFIG_SND_HDA_POWER_SAVE
10179 static struct hda_amp_list alc861_loopbacks[] = {
10180 { 0x15, HDA_INPUT, 0 },
10181 { 0x15, HDA_INPUT, 1 },
10182 { 0x15, HDA_INPUT, 2 },
10183 { 0x15, HDA_INPUT, 3 },
10190 * configuration and preset
10192 static const char *alc861_models[ALC861_MODEL_LAST] = {
10193 [ALC861_3ST] = "3stack",
10194 [ALC660_3ST] = "3stack-660",
10195 [ALC861_3ST_DIG] = "3stack-dig",
10196 [ALC861_6ST_DIG] = "6stack-dig",
10197 [ALC861_UNIWILL_M31] = "uniwill-m31",
10198 [ALC861_TOSHIBA] = "toshiba",
10199 [ALC861_ASUS] = "asus",
10200 [ALC861_ASUS_LAPTOP] = "asus-laptop",
10201 [ALC861_AUTO] = "auto",
10204 static struct snd_pci_quirk alc861_cfg_tbl[] = {
10205 SND_PCI_QUIRK(0x1043, 0x1205, "ASUS W7J", ALC861_3ST),
10206 SND_PCI_QUIRK(0x1043, 0x1335, "ASUS F2/3", ALC861_ASUS_LAPTOP),
10207 SND_PCI_QUIRK(0x1043, 0x1338, "ASUS F2/3", ALC861_ASUS_LAPTOP),
10208 SND_PCI_QUIRK(0x1043, 0x13d7, "ASUS A9rp", ALC861_ASUS_LAPTOP),
10209 SND_PCI_QUIRK(0x1584, 0x9075, "Airis Praxis N1212", ALC861_ASUS_LAPTOP),
10210 SND_PCI_QUIRK(0x1043, 0x1393, "ASUS", ALC861_ASUS),
10211 SND_PCI_QUIRK(0x1043, 0x81cb, "ASUS P1-AH2", ALC861_3ST_DIG),
10212 SND_PCI_QUIRK(0x1179, 0xff00, "Toshiba", ALC861_TOSHIBA),
10213 /* FIXME: the entry below breaks Toshiba A100 (model=auto works!)
10214 * Any other models that need this preset?
10216 /* SND_PCI_QUIRK(0x1179, 0xff10, "Toshiba", ALC861_TOSHIBA), */
10217 SND_PCI_QUIRK(0x1584, 0x9072, "Uniwill m31", ALC861_UNIWILL_M31),
10218 SND_PCI_QUIRK(0x1584, 0x9075, "Uniwill", ALC861_UNIWILL_M31),
10219 SND_PCI_QUIRK(0x1584, 0x2b01, "Uniwill X40AIx", ALC861_UNIWILL_M31),
10220 SND_PCI_QUIRK(0x1849, 0x0660, "Asrock 939SLI32", ALC660_3ST),
10221 SND_PCI_QUIRK(0x8086, 0xd600, "Intel", ALC861_3ST),
10222 SND_PCI_QUIRK(0x1462, 0x7254, "HP dx2200 (MSI MS-7254)", ALC861_3ST),
10223 SND_PCI_QUIRK(0x1462, 0x7297, "HP dx2250 (MSI MS-7297)", ALC861_3ST),
10227 static struct alc_config_preset alc861_presets[] = {
10229 .mixers = { alc861_3ST_mixer },
10230 .init_verbs = { alc861_threestack_init_verbs },
10231 .num_dacs = ARRAY_SIZE(alc861_dac_nids),
10232 .dac_nids = alc861_dac_nids,
10233 .num_channel_mode = ARRAY_SIZE(alc861_threestack_modes),
10234 .channel_mode = alc861_threestack_modes,
10236 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
10237 .adc_nids = alc861_adc_nids,
10238 .input_mux = &alc861_capture_source,
10240 [ALC861_3ST_DIG] = {
10241 .mixers = { alc861_base_mixer },
10242 .init_verbs = { alc861_threestack_init_verbs },
10243 .num_dacs = ARRAY_SIZE(alc861_dac_nids),
10244 .dac_nids = alc861_dac_nids,
10245 .dig_out_nid = ALC861_DIGOUT_NID,
10246 .num_channel_mode = ARRAY_SIZE(alc861_threestack_modes),
10247 .channel_mode = alc861_threestack_modes,
10249 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
10250 .adc_nids = alc861_adc_nids,
10251 .input_mux = &alc861_capture_source,
10253 [ALC861_6ST_DIG] = {
10254 .mixers = { alc861_base_mixer },
10255 .init_verbs = { alc861_base_init_verbs },
10256 .num_dacs = ARRAY_SIZE(alc861_dac_nids),
10257 .dac_nids = alc861_dac_nids,
10258 .dig_out_nid = ALC861_DIGOUT_NID,
10259 .num_channel_mode = ARRAY_SIZE(alc861_8ch_modes),
10260 .channel_mode = alc861_8ch_modes,
10261 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
10262 .adc_nids = alc861_adc_nids,
10263 .input_mux = &alc861_capture_source,
10266 .mixers = { alc861_3ST_mixer },
10267 .init_verbs = { alc861_threestack_init_verbs },
10268 .num_dacs = ARRAY_SIZE(alc660_dac_nids),
10269 .dac_nids = alc660_dac_nids,
10270 .num_channel_mode = ARRAY_SIZE(alc861_threestack_modes),
10271 .channel_mode = alc861_threestack_modes,
10273 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
10274 .adc_nids = alc861_adc_nids,
10275 .input_mux = &alc861_capture_source,
10277 [ALC861_UNIWILL_M31] = {
10278 .mixers = { alc861_uniwill_m31_mixer },
10279 .init_verbs = { alc861_uniwill_m31_init_verbs },
10280 .num_dacs = ARRAY_SIZE(alc861_dac_nids),
10281 .dac_nids = alc861_dac_nids,
10282 .dig_out_nid = ALC861_DIGOUT_NID,
10283 .num_channel_mode = ARRAY_SIZE(alc861_uniwill_m31_modes),
10284 .channel_mode = alc861_uniwill_m31_modes,
10286 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
10287 .adc_nids = alc861_adc_nids,
10288 .input_mux = &alc861_capture_source,
10290 [ALC861_TOSHIBA] = {
10291 .mixers = { alc861_toshiba_mixer },
10292 .init_verbs = { alc861_base_init_verbs,
10293 alc861_toshiba_init_verbs },
10294 .num_dacs = ARRAY_SIZE(alc861_dac_nids),
10295 .dac_nids = alc861_dac_nids,
10296 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
10297 .channel_mode = alc883_3ST_2ch_modes,
10298 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
10299 .adc_nids = alc861_adc_nids,
10300 .input_mux = &alc861_capture_source,
10301 .unsol_event = alc861_toshiba_unsol_event,
10302 .init_hook = alc861_toshiba_automute,
10305 .mixers = { alc861_asus_mixer },
10306 .init_verbs = { alc861_asus_init_verbs },
10307 .num_dacs = ARRAY_SIZE(alc861_dac_nids),
10308 .dac_nids = alc861_dac_nids,
10309 .dig_out_nid = ALC861_DIGOUT_NID,
10310 .num_channel_mode = ARRAY_SIZE(alc861_asus_modes),
10311 .channel_mode = alc861_asus_modes,
10314 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
10315 .adc_nids = alc861_adc_nids,
10316 .input_mux = &alc861_capture_source,
10318 [ALC861_ASUS_LAPTOP] = {
10319 .mixers = { alc861_toshiba_mixer, alc861_asus_laptop_mixer },
10320 .init_verbs = { alc861_asus_init_verbs,
10321 alc861_asus_laptop_init_verbs },
10322 .num_dacs = ARRAY_SIZE(alc861_dac_nids),
10323 .dac_nids = alc861_dac_nids,
10324 .dig_out_nid = ALC861_DIGOUT_NID,
10325 .num_channel_mode = ARRAY_SIZE(alc883_3ST_2ch_modes),
10326 .channel_mode = alc883_3ST_2ch_modes,
10328 .num_adc_nids = ARRAY_SIZE(alc861_adc_nids),
10329 .adc_nids = alc861_adc_nids,
10330 .input_mux = &alc861_capture_source,
10335 static int patch_alc861(struct hda_codec *codec)
10337 struct alc_spec *spec;
10341 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
10345 codec->spec = spec;
10347 board_config = snd_hda_check_board_config(codec, ALC861_MODEL_LAST,
10351 if (board_config < 0) {
10352 printk(KERN_INFO "hda_codec: Unknown model for ALC861, "
10353 "trying auto-probe from BIOS...\n");
10354 board_config = ALC861_AUTO;
10357 if (board_config == ALC861_AUTO) {
10358 /* automatic parse from the BIOS config */
10359 err = alc861_parse_auto_config(codec);
10365 "hda_codec: Cannot set up configuration "
10366 "from BIOS. Using base mode...\n");
10367 board_config = ALC861_3ST_DIG;
10371 if (board_config != ALC861_AUTO)
10372 setup_preset(spec, &alc861_presets[board_config]);
10374 spec->stream_name_analog = "ALC861 Analog";
10375 spec->stream_analog_playback = &alc861_pcm_analog_playback;
10376 spec->stream_analog_capture = &alc861_pcm_analog_capture;
10378 spec->stream_name_digital = "ALC861 Digital";
10379 spec->stream_digital_playback = &alc861_pcm_digital_playback;
10380 spec->stream_digital_capture = &alc861_pcm_digital_capture;
10382 codec->patch_ops = alc_patch_ops;
10383 if (board_config == ALC861_AUTO)
10384 spec->init_hook = alc861_auto_init;
10385 #ifdef CONFIG_SND_HDA_POWER_SAVE
10386 if (!spec->loopback.amplist)
10387 spec->loopback.amplist = alc861_loopbacks;
10394 * ALC861-VD support
10398 * In addition, an independent DAC
10400 #define ALC861VD_DIGOUT_NID 0x06
10402 static hda_nid_t alc861vd_dac_nids[4] = {
10403 /* front, surr, clfe, side surr */
10404 0x02, 0x03, 0x04, 0x05
10407 /* dac_nids for ALC660vd are in a different order - according to
10408 * Realtek's driver.
10409 * This should probably tesult in a different mixer for 6stack models
10410 * of ALC660vd codecs, but for now there is only 3stack mixer
10411 * - and it is the same as in 861vd.
10412 * adc_nids in ALC660vd are (is) the same as in 861vd
10414 static hda_nid_t alc660vd_dac_nids[3] = {
10415 /* front, rear, clfe, rear_surr */
10419 static hda_nid_t alc861vd_adc_nids[1] = {
10425 /* FIXME: should be a matrix-type input source selection */
10426 static struct hda_input_mux alc861vd_capture_source = {
10430 { "Front Mic", 0x1 },
10436 static struct hda_input_mux alc861vd_dallas_capture_source = {
10439 { "Front Mic", 0x0 },
10440 { "ATAPI Mic", 0x1 },
10441 { "Line In", 0x5 },
10445 static struct hda_input_mux alc861vd_hp_capture_source = {
10448 { "Front Mic", 0x0 },
10449 { "ATAPI Mic", 0x1 },
10453 #define alc861vd_mux_enum_info alc_mux_enum_info
10454 #define alc861vd_mux_enum_get alc_mux_enum_get
10456 static int alc861vd_mux_enum_put(struct snd_kcontrol *kcontrol,
10457 struct snd_ctl_elem_value *ucontrol)
10459 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
10460 struct alc_spec *spec = codec->spec;
10461 const struct hda_input_mux *imux = spec->input_mux;
10462 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
10463 static hda_nid_t capture_mixers[1] = { 0x22 };
10464 hda_nid_t nid = capture_mixers[adc_idx];
10465 unsigned int *cur_val = &spec->cur_mux[adc_idx];
10466 unsigned int i, idx;
10468 idx = ucontrol->value.enumerated.item[0];
10469 if (idx >= imux->num_items)
10470 idx = imux->num_items - 1;
10471 if (*cur_val == idx)
10473 for (i = 0; i < imux->num_items; i++) {
10474 unsigned int v = (i == idx) ? 0 : HDA_AMP_MUTE;
10475 snd_hda_codec_amp_stereo(codec, nid, HDA_INPUT,
10476 imux->items[i].index,
10486 static struct hda_channel_mode alc861vd_3stack_2ch_modes[1] = {
10493 static struct hda_verb alc861vd_6stack_ch6_init[] = {
10494 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
10495 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
10496 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
10497 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
10504 static struct hda_verb alc861vd_6stack_ch8_init[] = {
10505 { 0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
10506 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
10507 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
10508 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
10512 static struct hda_channel_mode alc861vd_6stack_modes[2] = {
10513 { 6, alc861vd_6stack_ch6_init },
10514 { 8, alc861vd_6stack_ch8_init },
10517 static struct snd_kcontrol_new alc861vd_chmode_mixer[] = {
10519 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
10520 .name = "Channel Mode",
10521 .info = alc_ch_mode_info,
10522 .get = alc_ch_mode_get,
10523 .put = alc_ch_mode_put,
10528 static struct snd_kcontrol_new alc861vd_capture_mixer[] = {
10529 HDA_CODEC_VOLUME("Capture Volume", 0x09, 0x0, HDA_INPUT),
10530 HDA_CODEC_MUTE("Capture Switch", 0x09, 0x0, HDA_INPUT),
10533 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
10534 /* The multiple "Capture Source" controls confuse alsamixer
10535 * So call somewhat different..
10536 *FIXME: the controls appear in the "playback" view!
10538 /* .name = "Capture Source", */
10539 .name = "Input Source",
10541 .info = alc861vd_mux_enum_info,
10542 .get = alc861vd_mux_enum_get,
10543 .put = alc861vd_mux_enum_put,
10548 /* Pin assignment: Front=0x14, Rear=0x15, CLFE=0x16, Side=0x17
10549 * Mic=0x18, Front Mic=0x19, Line-In=0x1a, HP=0x1b
10551 static struct snd_kcontrol_new alc861vd_6st_mixer[] = {
10552 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT),
10553 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
10555 HDA_CODEC_VOLUME("Surround Playback Volume", 0x03, 0x0, HDA_OUTPUT),
10556 HDA_BIND_MUTE("Surround Playback Switch", 0x0d, 2, HDA_INPUT),
10558 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x04, 1, 0x0,
10560 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x04, 2, 0x0,
10562 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x0e, 1, 2, HDA_INPUT),
10563 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x0e, 2, 2, HDA_INPUT),
10565 HDA_CODEC_VOLUME("Side Playback Volume", 0x05, 0x0, HDA_OUTPUT),
10566 HDA_BIND_MUTE("Side Playback Switch", 0x0f, 2, HDA_INPUT),
10568 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
10570 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
10571 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
10572 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
10574 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
10575 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
10576 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
10578 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
10579 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
10581 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
10582 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
10584 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
10585 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
10590 static struct snd_kcontrol_new alc861vd_3st_mixer[] = {
10591 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT),
10592 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
10594 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
10596 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
10597 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
10598 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
10600 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
10601 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
10602 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
10604 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
10605 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
10607 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
10608 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
10610 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
10611 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
10616 static struct snd_kcontrol_new alc861vd_lenovo_mixer[] = {
10617 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT),
10618 /*HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),*/
10619 HDA_CODEC_MUTE("Front Playback Switch", 0x14, 0x0, HDA_OUTPUT),
10621 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
10623 HDA_CODEC_VOLUME("Mic Boost", 0x18, 0, HDA_INPUT),
10624 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
10625 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
10627 HDA_CODEC_VOLUME("Front Mic Boost", 0x19, 0, HDA_INPUT),
10628 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
10629 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
10631 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
10632 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
10637 /* Pin assignment: Front=0x14, HP = 0x15,
10638 * Front Mic=0x18, ATAPI Mic = 0x19, Line In = 0x1d
10640 static struct snd_kcontrol_new alc861vd_dallas_mixer[] = {
10641 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT),
10642 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
10643 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x03, 0x0, HDA_OUTPUT),
10644 HDA_BIND_MUTE("Headphone Playback Switch", 0x0d, 2, HDA_INPUT),
10645 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
10646 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
10647 HDA_CODEC_VOLUME("ATAPI Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
10648 HDA_CODEC_MUTE("ATAPI Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
10649 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x05, HDA_INPUT),
10650 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x05, HDA_INPUT),
10654 /* Pin assignment: Speaker=0x14, Line-out = 0x15,
10655 * Front Mic=0x18, ATAPI Mic = 0x19,
10657 static struct snd_kcontrol_new alc861vd_hp_mixer[] = {
10658 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT),
10659 HDA_BIND_MUTE("Front Playback Switch", 0x0c, 2, HDA_INPUT),
10660 HDA_CODEC_VOLUME("Headphone Playback Volume", 0x03, 0x0, HDA_OUTPUT),
10661 HDA_BIND_MUTE("Headphone Playback Switch", 0x0d, 2, HDA_INPUT),
10662 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
10663 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
10664 HDA_CODEC_VOLUME("ATAPI Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
10665 HDA_CODEC_MUTE("ATAPI Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
10671 * generic initialization of ADC, input mixers and output mixers
10673 static struct hda_verb alc861vd_volume_init_verbs[] = {
10675 * Unmute ADC0 and set the default input to mic-in
10677 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
10678 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
10680 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of
10681 * the analog-loopback mixer widget
10683 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
10684 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
10685 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
10686 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
10687 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
10688 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
10690 /* Capture mixer: unmute Mic, F-Mic, Line, CD inputs */
10691 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
10692 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
10693 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
10694 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
10697 * Set up output mixers (0x02 - 0x05)
10699 /* set vol=0 to output mixers */
10700 {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
10701 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
10702 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
10703 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
10705 /* set up input amps for analog loopback */
10706 /* Amp Indices: DAC = 0, mixer = 1 */
10707 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
10708 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
10709 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
10710 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
10711 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
10712 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
10713 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
10714 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
10720 * 3-stack pin configuration:
10721 * front = 0x14, mic/clfe = 0x18, HP = 0x19, line/surr = 0x1a, f-mic = 0x1b
10723 static struct hda_verb alc861vd_3stack_init_verbs[] = {
10725 * Set pin mode and muting
10727 /* set front pin widgets 0x14 for output */
10728 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
10729 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
10730 {0x14, AC_VERB_SET_CONNECT_SEL, 0x00},
10732 /* Mic (rear) pin: input vref at 80% */
10733 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
10734 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
10735 /* Front Mic pin: input vref at 80% */
10736 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
10737 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
10738 /* Line In pin: input */
10739 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
10740 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
10741 /* Line-2 In: Headphone output (output 0 - 0x0c) */
10742 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
10743 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
10744 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
10745 /* CD pin widget for input */
10746 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
10752 * 6-stack pin configuration:
10754 static struct hda_verb alc861vd_6stack_init_verbs[] = {
10756 * Set pin mode and muting
10758 /* set front pin widgets 0x14 for output */
10759 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
10760 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
10761 {0x14, AC_VERB_SET_CONNECT_SEL, 0x00},
10763 /* Rear Pin: output 1 (0x0d) */
10764 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
10765 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
10766 {0x15, AC_VERB_SET_CONNECT_SEL, 0x01},
10767 /* CLFE Pin: output 2 (0x0e) */
10768 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
10769 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
10770 {0x16, AC_VERB_SET_CONNECT_SEL, 0x02},
10771 /* Side Pin: output 3 (0x0f) */
10772 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
10773 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
10774 {0x17, AC_VERB_SET_CONNECT_SEL, 0x03},
10776 /* Mic (rear) pin: input vref at 80% */
10777 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
10778 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
10779 /* Front Mic pin: input vref at 80% */
10780 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
10781 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
10782 /* Line In pin: input */
10783 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
10784 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
10785 /* Line-2 In: Headphone output (output 0 - 0x0c) */
10786 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
10787 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
10788 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
10789 /* CD pin widget for input */
10790 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
10795 static struct hda_verb alc861vd_eapd_verbs[] = {
10796 {0x14, AC_VERB_SET_EAPD_BTLENABLE, 2},
10800 static struct hda_verb alc861vd_lenovo_unsol_verbs[] = {
10801 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
10802 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
10803 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(5)},
10804 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
10805 {0x18, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_MIC_EVENT},
10809 /* toggle speaker-output according to the hp-jack state */
10810 static void alc861vd_lenovo_hp_automute(struct hda_codec *codec)
10812 unsigned int present;
10813 unsigned char bits;
10815 present = snd_hda_codec_read(codec, 0x1b, 0,
10816 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
10817 bits = present ? HDA_AMP_MUTE : 0;
10818 snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0,
10819 HDA_AMP_MUTE, bits);
10822 static void alc861vd_lenovo_mic_automute(struct hda_codec *codec)
10824 unsigned int present;
10825 unsigned char bits;
10827 present = snd_hda_codec_read(codec, 0x18, 0,
10828 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
10829 bits = present ? HDA_AMP_MUTE : 0;
10830 snd_hda_codec_amp_stereo(codec, 0x0b, HDA_INPUT, 1,
10831 HDA_AMP_MUTE, bits);
10834 static void alc861vd_lenovo_automute(struct hda_codec *codec)
10836 alc861vd_lenovo_hp_automute(codec);
10837 alc861vd_lenovo_mic_automute(codec);
10840 static void alc861vd_lenovo_unsol_event(struct hda_codec *codec,
10843 switch (res >> 26) {
10844 case ALC880_HP_EVENT:
10845 alc861vd_lenovo_hp_automute(codec);
10847 case ALC880_MIC_EVENT:
10848 alc861vd_lenovo_mic_automute(codec);
10853 static struct hda_verb alc861vd_dallas_verbs[] = {
10854 {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
10855 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
10856 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
10857 {0x05, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
10859 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
10860 {0x0c, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
10861 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
10862 {0x0d, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
10863 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
10864 {0x0e, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
10865 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
10866 {0x0f, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
10868 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
10869 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
10870 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
10871 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
10872 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
10873 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
10874 {0x17, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
10875 {0x17, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
10877 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF50},
10878 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
10879 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF50},
10880 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
10881 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
10882 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
10883 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
10884 {0x1d, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
10886 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
10887 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
10888 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
10889 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
10891 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
10892 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
10893 {0x15, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN | ALC880_HP_EVENT},
10898 /* toggle speaker-output according to the hp-jack state */
10899 static void alc861vd_dallas_automute(struct hda_codec *codec)
10901 unsigned int present;
10903 present = snd_hda_codec_read(codec, 0x15, 0,
10904 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
10905 snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0,
10906 HDA_AMP_MUTE, present ? HDA_AMP_MUTE : 0);
10909 static void alc861vd_dallas_unsol_event(struct hda_codec *codec, unsigned int res)
10911 if ((res >> 26) == ALC880_HP_EVENT)
10912 alc861vd_dallas_automute(codec);
10915 #ifdef CONFIG_SND_HDA_POWER_SAVE
10916 #define alc861vd_loopbacks alc880_loopbacks
10919 /* pcm configuration: identiacal with ALC880 */
10920 #define alc861vd_pcm_analog_playback alc880_pcm_analog_playback
10921 #define alc861vd_pcm_analog_capture alc880_pcm_analog_capture
10922 #define alc861vd_pcm_digital_playback alc880_pcm_digital_playback
10923 #define alc861vd_pcm_digital_capture alc880_pcm_digital_capture
10926 * configuration and preset
10928 static const char *alc861vd_models[ALC861VD_MODEL_LAST] = {
10929 [ALC660VD_3ST] = "3stack-660",
10930 [ALC660VD_3ST_DIG] = "3stack-660-digout",
10931 [ALC861VD_3ST] = "3stack",
10932 [ALC861VD_3ST_DIG] = "3stack-digout",
10933 [ALC861VD_6ST_DIG] = "6stack-digout",
10934 [ALC861VD_LENOVO] = "lenovo",
10935 [ALC861VD_DALLAS] = "dallas",
10936 [ALC861VD_HP] = "hp",
10937 [ALC861VD_AUTO] = "auto",
10940 static struct snd_pci_quirk alc861vd_cfg_tbl[] = {
10941 SND_PCI_QUIRK(0x1043, 0x12e2, "Asus z35m", ALC660VD_3ST),
10942 SND_PCI_QUIRK(0x1043, 0x1339, "Asus G1", ALC660VD_3ST),
10943 SND_PCI_QUIRK(0x1043, 0x81e7, "ASUS", ALC660VD_3ST_DIG),
10944 SND_PCI_QUIRK(0x10de, 0x03f0, "Realtek ALC660 demo", ALC660VD_3ST),
10945 SND_PCI_QUIRK(0x1019, 0xa88d, "Realtek ALC660 demo", ALC660VD_3ST),
10947 /*SND_PCI_QUIRK(0x1179, 0xff00, "DALLAS", ALC861VD_DALLAS),*/ /*lenovo*/
10948 SND_PCI_QUIRK(0x1179, 0xff01, "DALLAS", ALC861VD_DALLAS),
10949 SND_PCI_QUIRK(0x17aa, 0x3802, "Lenovo 3000 C200", ALC861VD_LENOVO),
10950 SND_PCI_QUIRK(0x17aa, 0x2066, "Lenovo", ALC861VD_LENOVO),
10951 SND_PCI_QUIRK(0x1179, 0xff00, "Toshiba A135", ALC861VD_LENOVO),
10952 SND_PCI_QUIRK(0x1179, 0xff03, "Toshiba P205", ALC861VD_LENOVO),
10953 SND_PCI_QUIRK(0x1565, 0x820d, "Biostar NF61S SE", ALC861VD_6ST_DIG),
10954 SND_PCI_QUIRK(0x1849, 0x0862, "ASRock K8NF6G-VSTA", ALC861VD_6ST_DIG),
10955 SND_PCI_QUIRK(0x103c, 0x30bf, "HP TX1000", ALC861VD_HP),
10959 static struct alc_config_preset alc861vd_presets[] = {
10961 .mixers = { alc861vd_3st_mixer },
10962 .init_verbs = { alc861vd_volume_init_verbs,
10963 alc861vd_3stack_init_verbs },
10964 .num_dacs = ARRAY_SIZE(alc660vd_dac_nids),
10965 .dac_nids = alc660vd_dac_nids,
10966 .num_adc_nids = ARRAY_SIZE(alc861vd_adc_nids),
10967 .adc_nids = alc861vd_adc_nids,
10968 .num_channel_mode = ARRAY_SIZE(alc861vd_3stack_2ch_modes),
10969 .channel_mode = alc861vd_3stack_2ch_modes,
10970 .input_mux = &alc861vd_capture_source,
10972 [ALC660VD_3ST_DIG] = {
10973 .mixers = { alc861vd_3st_mixer },
10974 .init_verbs = { alc861vd_volume_init_verbs,
10975 alc861vd_3stack_init_verbs },
10976 .num_dacs = ARRAY_SIZE(alc660vd_dac_nids),
10977 .dac_nids = alc660vd_dac_nids,
10978 .dig_out_nid = ALC861VD_DIGOUT_NID,
10979 .num_adc_nids = ARRAY_SIZE(alc861vd_adc_nids),
10980 .adc_nids = alc861vd_adc_nids,
10981 .num_channel_mode = ARRAY_SIZE(alc861vd_3stack_2ch_modes),
10982 .channel_mode = alc861vd_3stack_2ch_modes,
10983 .input_mux = &alc861vd_capture_source,
10986 .mixers = { alc861vd_3st_mixer },
10987 .init_verbs = { alc861vd_volume_init_verbs,
10988 alc861vd_3stack_init_verbs },
10989 .num_dacs = ARRAY_SIZE(alc861vd_dac_nids),
10990 .dac_nids = alc861vd_dac_nids,
10991 .num_channel_mode = ARRAY_SIZE(alc861vd_3stack_2ch_modes),
10992 .channel_mode = alc861vd_3stack_2ch_modes,
10993 .input_mux = &alc861vd_capture_source,
10995 [ALC861VD_3ST_DIG] = {
10996 .mixers = { alc861vd_3st_mixer },
10997 .init_verbs = { alc861vd_volume_init_verbs,
10998 alc861vd_3stack_init_verbs },
10999 .num_dacs = ARRAY_SIZE(alc861vd_dac_nids),
11000 .dac_nids = alc861vd_dac_nids,
11001 .dig_out_nid = ALC861VD_DIGOUT_NID,
11002 .num_channel_mode = ARRAY_SIZE(alc861vd_3stack_2ch_modes),
11003 .channel_mode = alc861vd_3stack_2ch_modes,
11004 .input_mux = &alc861vd_capture_source,
11006 [ALC861VD_6ST_DIG] = {
11007 .mixers = { alc861vd_6st_mixer, alc861vd_chmode_mixer },
11008 .init_verbs = { alc861vd_volume_init_verbs,
11009 alc861vd_6stack_init_verbs },
11010 .num_dacs = ARRAY_SIZE(alc861vd_dac_nids),
11011 .dac_nids = alc861vd_dac_nids,
11012 .dig_out_nid = ALC861VD_DIGOUT_NID,
11013 .num_channel_mode = ARRAY_SIZE(alc861vd_6stack_modes),
11014 .channel_mode = alc861vd_6stack_modes,
11015 .input_mux = &alc861vd_capture_source,
11017 [ALC861VD_LENOVO] = {
11018 .mixers = { alc861vd_lenovo_mixer },
11019 .init_verbs = { alc861vd_volume_init_verbs,
11020 alc861vd_3stack_init_verbs,
11021 alc861vd_eapd_verbs,
11022 alc861vd_lenovo_unsol_verbs },
11023 .num_dacs = ARRAY_SIZE(alc660vd_dac_nids),
11024 .dac_nids = alc660vd_dac_nids,
11025 .num_adc_nids = ARRAY_SIZE(alc861vd_adc_nids),
11026 .adc_nids = alc861vd_adc_nids,
11027 .num_channel_mode = ARRAY_SIZE(alc861vd_3stack_2ch_modes),
11028 .channel_mode = alc861vd_3stack_2ch_modes,
11029 .input_mux = &alc861vd_capture_source,
11030 .unsol_event = alc861vd_lenovo_unsol_event,
11031 .init_hook = alc861vd_lenovo_automute,
11033 [ALC861VD_DALLAS] = {
11034 .mixers = { alc861vd_dallas_mixer },
11035 .init_verbs = { alc861vd_dallas_verbs },
11036 .num_dacs = ARRAY_SIZE(alc861vd_dac_nids),
11037 .dac_nids = alc861vd_dac_nids,
11038 .num_adc_nids = ARRAY_SIZE(alc861vd_adc_nids),
11039 .adc_nids = alc861vd_adc_nids,
11040 .num_channel_mode = ARRAY_SIZE(alc861vd_3stack_2ch_modes),
11041 .channel_mode = alc861vd_3stack_2ch_modes,
11042 .input_mux = &alc861vd_dallas_capture_source,
11043 .unsol_event = alc861vd_dallas_unsol_event,
11044 .init_hook = alc861vd_dallas_automute,
11047 .mixers = { alc861vd_hp_mixer },
11048 .init_verbs = { alc861vd_dallas_verbs, alc861vd_eapd_verbs },
11049 .num_dacs = ARRAY_SIZE(alc861vd_dac_nids),
11050 .dac_nids = alc861vd_dac_nids,
11051 .num_adc_nids = ARRAY_SIZE(alc861vd_adc_nids),
11052 .dig_out_nid = ALC861VD_DIGOUT_NID,
11053 .adc_nids = alc861vd_adc_nids,
11054 .num_channel_mode = ARRAY_SIZE(alc861vd_3stack_2ch_modes),
11055 .channel_mode = alc861vd_3stack_2ch_modes,
11056 .input_mux = &alc861vd_hp_capture_source,
11057 .unsol_event = alc861vd_dallas_unsol_event,
11058 .init_hook = alc861vd_dallas_automute,
11063 * BIOS auto configuration
11065 static void alc861vd_auto_set_output_and_unmute(struct hda_codec *codec,
11066 hda_nid_t nid, int pin_type, int dac_idx)
11068 /* set as output */
11069 snd_hda_codec_write(codec, nid, 0,
11070 AC_VERB_SET_PIN_WIDGET_CONTROL, pin_type);
11071 snd_hda_codec_write(codec, nid, 0,
11072 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
11075 static void alc861vd_auto_init_multi_out(struct hda_codec *codec)
11077 struct alc_spec *spec = codec->spec;
11080 alc_subsystem_id(codec, 0x15, 0x1b, 0x14);
11081 for (i = 0; i <= HDA_SIDE; i++) {
11082 hda_nid_t nid = spec->autocfg.line_out_pins[i];
11083 int pin_type = get_pin_type(spec->autocfg.line_out_type);
11085 alc861vd_auto_set_output_and_unmute(codec, nid,
11091 static void alc861vd_auto_init_hp_out(struct hda_codec *codec)
11093 struct alc_spec *spec = codec->spec;
11096 pin = spec->autocfg.hp_pins[0];
11097 if (pin) /* connect to front and use dac 0 */
11098 alc861vd_auto_set_output_and_unmute(codec, pin, PIN_HP, 0);
11101 #define alc861vd_is_input_pin(nid) alc880_is_input_pin(nid)
11102 #define ALC861VD_PIN_CD_NID ALC880_PIN_CD_NID
11104 static void alc861vd_auto_init_analog_input(struct hda_codec *codec)
11106 struct alc_spec *spec = codec->spec;
11109 for (i = 0; i < AUTO_PIN_LAST; i++) {
11110 hda_nid_t nid = spec->autocfg.input_pins[i];
11111 if (alc861vd_is_input_pin(nid)) {
11112 snd_hda_codec_write(codec, nid, 0,
11113 AC_VERB_SET_PIN_WIDGET_CONTROL,
11114 i <= AUTO_PIN_FRONT_MIC ?
11115 PIN_VREF80 : PIN_IN);
11116 if (nid != ALC861VD_PIN_CD_NID)
11117 snd_hda_codec_write(codec, nid, 0,
11118 AC_VERB_SET_AMP_GAIN_MUTE,
11124 #define alc861vd_idx_to_mixer_vol(nid) ((nid) + 0x02)
11125 #define alc861vd_idx_to_mixer_switch(nid) ((nid) + 0x0c)
11127 /* add playback controls from the parsed DAC table */
11128 /* Based on ALC880 version. But ALC861VD has separate,
11129 * different NIDs for mute/unmute switch and volume control */
11130 static int alc861vd_auto_create_multi_out_ctls(struct alc_spec *spec,
11131 const struct auto_pin_cfg *cfg)
11134 static const char *chname[4] = {"Front", "Surround", "CLFE", "Side"};
11135 hda_nid_t nid_v, nid_s;
11138 for (i = 0; i < cfg->line_outs; i++) {
11139 if (!spec->multiout.dac_nids[i])
11141 nid_v = alc861vd_idx_to_mixer_vol(
11143 spec->multiout.dac_nids[i]));
11144 nid_s = alc861vd_idx_to_mixer_switch(
11146 spec->multiout.dac_nids[i]));
11150 err = add_control(spec, ALC_CTL_WIDGET_VOL,
11151 "Center Playback Volume",
11152 HDA_COMPOSE_AMP_VAL(nid_v, 1, 0,
11156 err = add_control(spec, ALC_CTL_WIDGET_VOL,
11157 "LFE Playback Volume",
11158 HDA_COMPOSE_AMP_VAL(nid_v, 2, 0,
11162 err = add_control(spec, ALC_CTL_BIND_MUTE,
11163 "Center Playback Switch",
11164 HDA_COMPOSE_AMP_VAL(nid_s, 1, 2,
11168 err = add_control(spec, ALC_CTL_BIND_MUTE,
11169 "LFE Playback Switch",
11170 HDA_COMPOSE_AMP_VAL(nid_s, 2, 2,
11175 sprintf(name, "%s Playback Volume", chname[i]);
11176 err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
11177 HDA_COMPOSE_AMP_VAL(nid_v, 3, 0,
11181 sprintf(name, "%s Playback Switch", chname[i]);
11182 err = add_control(spec, ALC_CTL_BIND_MUTE, name,
11183 HDA_COMPOSE_AMP_VAL(nid_s, 3, 2,
11192 /* add playback controls for speaker and HP outputs */
11193 /* Based on ALC880 version. But ALC861VD has separate,
11194 * different NIDs for mute/unmute switch and volume control */
11195 static int alc861vd_auto_create_extra_out(struct alc_spec *spec,
11196 hda_nid_t pin, const char *pfx)
11198 hda_nid_t nid_v, nid_s;
11205 if (alc880_is_fixed_pin(pin)) {
11206 nid_v = alc880_idx_to_dac(alc880_fixed_pin_idx(pin));
11207 /* specify the DAC as the extra output */
11208 if (!spec->multiout.hp_nid)
11209 spec->multiout.hp_nid = nid_v;
11211 spec->multiout.extra_out_nid[0] = nid_v;
11212 /* control HP volume/switch on the output mixer amp */
11213 nid_v = alc861vd_idx_to_mixer_vol(
11214 alc880_fixed_pin_idx(pin));
11215 nid_s = alc861vd_idx_to_mixer_switch(
11216 alc880_fixed_pin_idx(pin));
11218 sprintf(name, "%s Playback Volume", pfx);
11219 err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
11220 HDA_COMPOSE_AMP_VAL(nid_v, 3, 0, HDA_OUTPUT));
11223 sprintf(name, "%s Playback Switch", pfx);
11224 err = add_control(spec, ALC_CTL_BIND_MUTE, name,
11225 HDA_COMPOSE_AMP_VAL(nid_s, 3, 2, HDA_INPUT));
11228 } else if (alc880_is_multi_pin(pin)) {
11229 /* set manual connection */
11230 /* we have only a switch on HP-out PIN */
11231 sprintf(name, "%s Playback Switch", pfx);
11232 err = add_control(spec, ALC_CTL_WIDGET_MUTE, name,
11233 HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_OUTPUT));
11240 /* parse the BIOS configuration and set up the alc_spec
11241 * return 1 if successful, 0 if the proper config is not found,
11242 * or a negative error code
11243 * Based on ALC880 version - had to change it to override
11244 * alc880_auto_create_extra_out and alc880_auto_create_multi_out_ctls */
11245 static int alc861vd_parse_auto_config(struct hda_codec *codec)
11247 struct alc_spec *spec = codec->spec;
11249 static hda_nid_t alc861vd_ignore[] = { 0x1d, 0 };
11251 err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
11255 if (!spec->autocfg.line_outs)
11256 return 0; /* can't find valid BIOS pin config */
11258 err = alc880_auto_fill_dac_nids(spec, &spec->autocfg);
11261 err = alc861vd_auto_create_multi_out_ctls(spec, &spec->autocfg);
11264 err = alc861vd_auto_create_extra_out(spec,
11265 spec->autocfg.speaker_pins[0],
11269 err = alc861vd_auto_create_extra_out(spec,
11270 spec->autocfg.hp_pins[0],
11274 err = alc880_auto_create_analog_input_ctls(spec, &spec->autocfg);
11278 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
11280 if (spec->autocfg.dig_out_pin)
11281 spec->multiout.dig_out_nid = ALC861VD_DIGOUT_NID;
11283 if (spec->kctl_alloc)
11284 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
11286 spec->init_verbs[spec->num_init_verbs++]
11287 = alc861vd_volume_init_verbs;
11289 spec->num_mux_defs = 1;
11290 spec->input_mux = &spec->private_imux;
11292 err = alc_auto_add_mic_boost(codec);
11299 /* additional initialization for auto-configuration model */
11300 static void alc861vd_auto_init(struct hda_codec *codec)
11302 alc861vd_auto_init_multi_out(codec);
11303 alc861vd_auto_init_hp_out(codec);
11304 alc861vd_auto_init_analog_input(codec);
11307 static int patch_alc861vd(struct hda_codec *codec)
11309 struct alc_spec *spec;
11310 int err, board_config;
11312 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
11316 codec->spec = spec;
11318 board_config = snd_hda_check_board_config(codec, ALC861VD_MODEL_LAST,
11322 if (board_config < 0 || board_config >= ALC861VD_MODEL_LAST) {
11323 printk(KERN_INFO "hda_codec: Unknown model for ALC660VD/"
11324 "ALC861VD, trying auto-probe from BIOS...\n");
11325 board_config = ALC861VD_AUTO;
11328 if (board_config == ALC861VD_AUTO) {
11329 /* automatic parse from the BIOS config */
11330 err = alc861vd_parse_auto_config(codec);
11336 "hda_codec: Cannot set up configuration "
11337 "from BIOS. Using base mode...\n");
11338 board_config = ALC861VD_3ST;
11342 if (board_config != ALC861VD_AUTO)
11343 setup_preset(spec, &alc861vd_presets[board_config]);
11345 spec->stream_name_analog = "ALC861VD Analog";
11346 spec->stream_analog_playback = &alc861vd_pcm_analog_playback;
11347 spec->stream_analog_capture = &alc861vd_pcm_analog_capture;
11349 spec->stream_name_digital = "ALC861VD Digital";
11350 spec->stream_digital_playback = &alc861vd_pcm_digital_playback;
11351 spec->stream_digital_capture = &alc861vd_pcm_digital_capture;
11353 spec->adc_nids = alc861vd_adc_nids;
11354 spec->num_adc_nids = ARRAY_SIZE(alc861vd_adc_nids);
11356 spec->mixers[spec->num_mixers] = alc861vd_capture_mixer;
11357 spec->num_mixers++;
11359 codec->patch_ops = alc_patch_ops;
11361 if (board_config == ALC861VD_AUTO)
11362 spec->init_hook = alc861vd_auto_init;
11363 #ifdef CONFIG_SND_HDA_POWER_SAVE
11364 if (!spec->loopback.amplist)
11365 spec->loopback.amplist = alc861vd_loopbacks;
11374 * ALC662 is almost identical with ALC880 but has cleaner and more flexible
11375 * configuration. Each pin widget can choose any input DACs and a mixer.
11376 * Each ADC is connected from a mixer of all inputs. This makes possible
11377 * 6-channel independent captures.
11379 * In addition, an independent DAC for the multi-playback (not used in this
11382 #define ALC662_DIGOUT_NID 0x06
11383 #define ALC662_DIGIN_NID 0x0a
11385 static hda_nid_t alc662_dac_nids[4] = {
11386 /* front, rear, clfe, rear_surr */
11390 static hda_nid_t alc662_adc_nids[1] = {
11395 /* FIXME: should be a matrix-type input source selection */
11397 static struct hda_input_mux alc662_capture_source = {
11401 { "Front Mic", 0x1 },
11407 static struct hda_input_mux alc662_lenovo_101e_capture_source = {
11414 #define alc662_mux_enum_info alc_mux_enum_info
11415 #define alc662_mux_enum_get alc_mux_enum_get
11417 static int alc662_mux_enum_put(struct snd_kcontrol *kcontrol,
11418 struct snd_ctl_elem_value *ucontrol)
11420 struct hda_codec *codec = snd_kcontrol_chip(kcontrol);
11421 struct alc_spec *spec = codec->spec;
11422 const struct hda_input_mux *imux = spec->input_mux;
11423 unsigned int adc_idx = snd_ctl_get_ioffidx(kcontrol, &ucontrol->id);
11424 static hda_nid_t capture_mixers[2] = { 0x23, 0x22 };
11425 hda_nid_t nid = capture_mixers[adc_idx];
11426 unsigned int *cur_val = &spec->cur_mux[adc_idx];
11427 unsigned int i, idx;
11429 idx = ucontrol->value.enumerated.item[0];
11430 if (idx >= imux->num_items)
11431 idx = imux->num_items - 1;
11432 if (*cur_val == idx)
11434 for (i = 0; i < imux->num_items; i++) {
11435 unsigned int v = (i == idx) ? 0 : HDA_AMP_MUTE;
11436 snd_hda_codec_amp_stereo(codec, nid, HDA_INPUT,
11437 imux->items[i].index,
11446 static struct hda_channel_mode alc662_3ST_2ch_modes[1] = {
11453 static struct hda_verb alc662_3ST_ch2_init[] = {
11454 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80 },
11455 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
11456 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN },
11457 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE },
11464 static struct hda_verb alc662_3ST_ch6_init[] = {
11465 { 0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
11466 { 0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
11467 { 0x18, AC_VERB_SET_CONNECT_SEL, 0x02 },
11468 { 0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
11469 { 0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE },
11470 { 0x1a, AC_VERB_SET_CONNECT_SEL, 0x01 },
11474 static struct hda_channel_mode alc662_3ST_6ch_modes[2] = {
11475 { 2, alc662_3ST_ch2_init },
11476 { 6, alc662_3ST_ch6_init },
11482 static struct hda_verb alc662_sixstack_ch6_init[] = {
11483 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
11484 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, 0x00 },
11485 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
11492 static struct hda_verb alc662_sixstack_ch8_init[] = {
11493 { 0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
11494 { 0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
11495 { 0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT },
11499 static struct hda_channel_mode alc662_5stack_modes[2] = {
11500 { 2, alc662_sixstack_ch6_init },
11501 { 6, alc662_sixstack_ch8_init },
11504 /* Pin assignment: Front=0x14, Rear=0x15, CLFE=0x16, Side=0x17
11505 * Mic=0x18, Front Mic=0x19, Line-In=0x1a, HP=0x1b
11508 static struct snd_kcontrol_new alc662_base_mixer[] = {
11509 /* output mixer control */
11510 HDA_CODEC_VOLUME("Front Playback Volume", 0x2, 0x0, HDA_OUTPUT),
11511 HDA_CODEC_MUTE("Front Playback Switch", 0x02, 0x0, HDA_OUTPUT),
11512 HDA_CODEC_VOLUME("Surround Playback Volume", 0x3, 0x0, HDA_OUTPUT),
11513 HDA_CODEC_MUTE("Surround Playback Switch", 0x03, 0x0, HDA_OUTPUT),
11514 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x04, 1, 0x0, HDA_OUTPUT),
11515 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x04, 2, 0x0, HDA_OUTPUT),
11516 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x04, 1, 2, HDA_INPUT),
11517 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x04, 2, 2, HDA_INPUT),
11518 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
11520 /*Input mixer control */
11521 HDA_CODEC_VOLUME("CD Playback Volume", 0xb, 0x4, HDA_INPUT),
11522 HDA_CODEC_MUTE("CD Playback Switch", 0xb, 0x4, HDA_INPUT),
11523 HDA_CODEC_VOLUME("Line Playback Volume", 0xb, 0x02, HDA_INPUT),
11524 HDA_CODEC_MUTE("Line Playback Switch", 0xb, 0x02, HDA_INPUT),
11525 HDA_CODEC_VOLUME("Mic Playback Volume", 0xb, 0x0, HDA_INPUT),
11526 HDA_CODEC_MUTE("Mic Playback Switch", 0xb, 0x0, HDA_INPUT),
11527 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0xb, 0x01, HDA_INPUT),
11528 HDA_CODEC_MUTE("Front Mic Playback Switch", 0xb, 0x01, HDA_INPUT),
11530 /* Capture mixer control */
11531 HDA_CODEC_VOLUME("Capture Volume", 0x09, 0x0, HDA_INPUT),
11532 HDA_CODEC_MUTE("Capture Switch", 0x09, 0x0, HDA_INPUT),
11534 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
11535 .name = "Capture Source",
11537 .info = alc_mux_enum_info,
11538 .get = alc_mux_enum_get,
11539 .put = alc_mux_enum_put,
11544 static struct snd_kcontrol_new alc662_3ST_2ch_mixer[] = {
11545 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT),
11546 HDA_BIND_MUTE("Front Playback Switch", 0x02, 2, HDA_INPUT),
11547 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
11548 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
11549 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
11550 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
11551 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
11552 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
11553 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
11554 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
11555 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
11556 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
11557 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
11558 HDA_CODEC_VOLUME("Capture Volume", 0x09, 0x0, HDA_INPUT),
11559 HDA_CODEC_MUTE("Capture Switch", 0x09, 0x0, HDA_INPUT),
11561 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
11562 /* .name = "Capture Source", */
11563 .name = "Input Source",
11565 .info = alc662_mux_enum_info,
11566 .get = alc662_mux_enum_get,
11567 .put = alc662_mux_enum_put,
11572 static struct snd_kcontrol_new alc662_3ST_6ch_mixer[] = {
11573 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT),
11574 HDA_BIND_MUTE("Front Playback Switch", 0x02, 2, HDA_INPUT),
11575 HDA_CODEC_VOLUME("Surround Playback Volume", 0x03, 0x0, HDA_OUTPUT),
11576 HDA_BIND_MUTE("Surround Playback Switch", 0x03, 2, HDA_INPUT),
11577 HDA_CODEC_VOLUME_MONO("Center Playback Volume", 0x04, 1, 0x0, HDA_OUTPUT),
11578 HDA_CODEC_VOLUME_MONO("LFE Playback Volume", 0x04, 2, 0x0, HDA_OUTPUT),
11579 HDA_BIND_MUTE_MONO("Center Playback Switch", 0x04, 1, 2, HDA_INPUT),
11580 HDA_BIND_MUTE_MONO("LFE Playback Switch", 0x04, 2, 2, HDA_INPUT),
11581 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
11582 HDA_CODEC_VOLUME("CD Playback Volume", 0x0b, 0x04, HDA_INPUT),
11583 HDA_CODEC_MUTE("CD Playback Switch", 0x0b, 0x04, HDA_INPUT),
11584 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
11585 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
11586 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x0, HDA_INPUT),
11587 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x0, HDA_INPUT),
11588 HDA_CODEC_VOLUME("Front Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
11589 HDA_CODEC_MUTE("Front Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
11590 HDA_CODEC_VOLUME("PC Speaker Playback Volume", 0x0b, 0x05, HDA_INPUT),
11591 HDA_CODEC_MUTE("PC Speaker Playback Switch", 0x0b, 0x05, HDA_INPUT),
11592 HDA_CODEC_VOLUME("Capture Volume", 0x09, 0x0, HDA_INPUT),
11593 HDA_CODEC_MUTE("Capture Switch", 0x09, 0x0, HDA_INPUT),
11595 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
11596 /* .name = "Capture Source", */
11597 .name = "Input Source",
11599 .info = alc662_mux_enum_info,
11600 .get = alc662_mux_enum_get,
11601 .put = alc662_mux_enum_put,
11606 static struct snd_kcontrol_new alc662_lenovo_101e_mixer[] = {
11607 HDA_CODEC_VOLUME("Front Playback Volume", 0x02, 0x0, HDA_OUTPUT),
11608 HDA_BIND_MUTE("Front Playback Switch", 0x02, 2, HDA_INPUT),
11609 HDA_CODEC_VOLUME("iSpeaker Playback Volume", 0x03, 0x0, HDA_OUTPUT),
11610 HDA_BIND_MUTE("iSpeaker Playback Switch", 0x03, 2, HDA_INPUT),
11611 HDA_CODEC_MUTE("Headphone Playback Switch", 0x1b, 0x0, HDA_OUTPUT),
11612 HDA_CODEC_VOLUME("Line Playback Volume", 0x0b, 0x02, HDA_INPUT),
11613 HDA_CODEC_MUTE("Line Playback Switch", 0x0b, 0x02, HDA_INPUT),
11614 HDA_CODEC_VOLUME("Mic Playback Volume", 0x0b, 0x1, HDA_INPUT),
11615 HDA_CODEC_MUTE("Mic Playback Switch", 0x0b, 0x1, HDA_INPUT),
11616 HDA_CODEC_VOLUME("Capture Volume", 0x09, 0x0, HDA_INPUT),
11617 HDA_CODEC_MUTE("Capture Switch", 0x09, 0x0, HDA_INPUT),
11619 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
11620 /* .name = "Capture Source", */
11621 .name = "Input Source",
11623 .info = alc662_mux_enum_info,
11624 .get = alc662_mux_enum_get,
11625 .put = alc662_mux_enum_put,
11630 static struct snd_kcontrol_new alc662_chmode_mixer[] = {
11632 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
11633 .name = "Channel Mode",
11634 .info = alc_ch_mode_info,
11635 .get = alc_ch_mode_get,
11636 .put = alc_ch_mode_put,
11641 static struct hda_verb alc662_init_verbs[] = {
11642 /* ADC: mute amp left and right */
11643 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
11644 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
11645 /* Front mixer: unmute input/output amp left and right (volume = 0) */
11647 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
11648 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
11649 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
11650 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
11651 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
11653 {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
11654 {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
11655 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
11656 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
11657 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
11658 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
11660 /* Front Pin: output 0 (0x0c) */
11661 {0x14, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
11662 {0x14, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
11664 /* Rear Pin: output 1 (0x0d) */
11665 {0x15, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
11666 {0x15, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
11668 /* CLFE Pin: output 2 (0x0e) */
11669 {0x16, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_OUT},
11670 {0x16, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
11672 /* Mic (rear) pin: input vref at 80% */
11673 {0x18, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
11674 {0x18, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
11675 /* Front Mic pin: input vref at 80% */
11676 {0x19, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_VREF80},
11677 {0x19, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
11678 /* Line In pin: input */
11679 {0x1a, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
11680 {0x1a, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_MUTE},
11681 /* Line-2 In: Headphone output (output 0 - 0x0c) */
11682 {0x1b, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_HP},
11683 {0x1b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE},
11684 {0x1b, AC_VERB_SET_CONNECT_SEL, 0x00},
11685 /* CD pin widget for input */
11686 {0x1c, AC_VERB_SET_PIN_WIDGET_CONTROL, PIN_IN},
11688 /* FIXME: use matrix-type input source selection */
11689 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
11691 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
11692 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
11693 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(2)},
11694 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(4)},
11698 static struct hda_verb alc662_sue_init_verbs[] = {
11699 {0x14, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|ALC880_FRONT_EVENT},
11700 {0x1b, AC_VERB_SET_UNSOLICITED_ENABLE, AC_USRSP_EN|ALC880_HP_EVENT},
11705 * generic initialization of ADC, input mixers and output mixers
11707 static struct hda_verb alc662_auto_init_verbs[] = {
11709 * Unmute ADC and set the default input to mic-in
11711 {0x09, AC_VERB_SET_CONNECT_SEL, 0x00},
11712 {0x09, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
11714 /* Unmute input amps (CD, Line In, Mic 1 & Mic 2) of the analog-loopback
11716 * Note: PASD motherboards uses the Line In 2 as the input for front
11717 * panel mic (mic 2)
11719 /* Amp Indices: Mic1 = 0, Mic2 = 1, Line1 = 2, Line2 = 3, CD = 4 */
11720 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(0)},
11721 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(1)},
11722 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(2)},
11723 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(3)},
11724 {0x0b, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_MUTE(4)},
11727 * Set up output mixers (0x0c - 0x0f)
11729 /* set vol=0 to output mixers */
11730 {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
11731 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
11732 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_ZERO},
11734 /* set up input amps for analog loopback */
11735 /* Amp Indices: DAC = 0, mixer = 1 */
11736 {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
11737 {0x02, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
11738 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
11739 {0x03, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
11740 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
11741 {0x04, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(1)},
11744 /* FIXME: use matrix-type input source selection */
11745 /* Mixer elements: 0x18, 19, 1a, 1b, 1c, 1d, 14, 15, 16, 17, 0b */
11747 {0x22, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
11748 {0x23, AC_VERB_SET_AMP_GAIN_MUTE, AMP_IN_UNMUTE(0)},
11752 /* capture mixer elements */
11753 static struct snd_kcontrol_new alc662_capture_mixer[] = {
11754 HDA_CODEC_VOLUME("Capture Volume", 0x09, 0x0, HDA_INPUT),
11755 HDA_CODEC_MUTE("Capture Switch", 0x09, 0x0, HDA_INPUT),
11757 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
11758 /* The multiple "Capture Source" controls confuse alsamixer
11759 * So call somewhat different..
11760 * FIXME: the controls appear in the "playback" view!
11762 /* .name = "Capture Source", */
11763 .name = "Input Source",
11765 .info = alc882_mux_enum_info,
11766 .get = alc882_mux_enum_get,
11767 .put = alc882_mux_enum_put,
11772 static void alc662_lenovo_101e_ispeaker_automute(struct hda_codec *codec)
11774 unsigned int present;
11775 unsigned char bits;
11777 present = snd_hda_codec_read(codec, 0x14, 0,
11778 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
11779 bits = present ? HDA_AMP_MUTE : 0;
11780 snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0,
11781 HDA_AMP_MUTE, bits);
11784 static void alc662_lenovo_101e_all_automute(struct hda_codec *codec)
11786 unsigned int present;
11787 unsigned char bits;
11789 present = snd_hda_codec_read(codec, 0x1b, 0,
11790 AC_VERB_GET_PIN_SENSE, 0) & 0x80000000;
11791 bits = present ? HDA_AMP_MUTE : 0;
11792 snd_hda_codec_amp_stereo(codec, 0x15, HDA_OUTPUT, 0,
11793 HDA_AMP_MUTE, bits);
11794 snd_hda_codec_amp_stereo(codec, 0x14, HDA_OUTPUT, 0,
11795 HDA_AMP_MUTE, bits);
11798 static void alc662_lenovo_101e_unsol_event(struct hda_codec *codec,
11801 if ((res >> 26) == ALC880_HP_EVENT)
11802 alc662_lenovo_101e_all_automute(codec);
11803 if ((res >> 26) == ALC880_FRONT_EVENT)
11804 alc662_lenovo_101e_ispeaker_automute(codec);
11807 #ifdef CONFIG_SND_HDA_POWER_SAVE
11808 #define alc662_loopbacks alc880_loopbacks
11812 /* pcm configuration: identiacal with ALC880 */
11813 #define alc662_pcm_analog_playback alc880_pcm_analog_playback
11814 #define alc662_pcm_analog_capture alc880_pcm_analog_capture
11815 #define alc662_pcm_digital_playback alc880_pcm_digital_playback
11816 #define alc662_pcm_digital_capture alc880_pcm_digital_capture
11819 * configuration and preset
11821 static const char *alc662_models[ALC662_MODEL_LAST] = {
11822 [ALC662_3ST_2ch_DIG] = "3stack-dig",
11823 [ALC662_3ST_6ch_DIG] = "3stack-6ch-dig",
11824 [ALC662_3ST_6ch] = "3stack-6ch",
11825 [ALC662_5ST_DIG] = "6stack-dig",
11826 [ALC662_LENOVO_101E] = "lenovo-101e",
11827 [ALC662_AUTO] = "auto",
11830 static struct snd_pci_quirk alc662_cfg_tbl[] = {
11831 SND_PCI_QUIRK(0x17aa, 0x101e, "Lenovo", ALC662_LENOVO_101E),
11835 static struct alc_config_preset alc662_presets[] = {
11836 [ALC662_3ST_2ch_DIG] = {
11837 .mixers = { alc662_3ST_2ch_mixer },
11838 .init_verbs = { alc662_init_verbs },
11839 .num_dacs = ARRAY_SIZE(alc662_dac_nids),
11840 .dac_nids = alc662_dac_nids,
11841 .dig_out_nid = ALC662_DIGOUT_NID,
11842 .num_adc_nids = ARRAY_SIZE(alc662_adc_nids),
11843 .adc_nids = alc662_adc_nids,
11844 .dig_in_nid = ALC662_DIGIN_NID,
11845 .num_channel_mode = ARRAY_SIZE(alc662_3ST_2ch_modes),
11846 .channel_mode = alc662_3ST_2ch_modes,
11847 .input_mux = &alc662_capture_source,
11849 [ALC662_3ST_6ch_DIG] = {
11850 .mixers = { alc662_3ST_6ch_mixer, alc662_chmode_mixer },
11851 .init_verbs = { alc662_init_verbs },
11852 .num_dacs = ARRAY_SIZE(alc662_dac_nids),
11853 .dac_nids = alc662_dac_nids,
11854 .dig_out_nid = ALC662_DIGOUT_NID,
11855 .num_adc_nids = ARRAY_SIZE(alc662_adc_nids),
11856 .adc_nids = alc662_adc_nids,
11857 .dig_in_nid = ALC662_DIGIN_NID,
11858 .num_channel_mode = ARRAY_SIZE(alc662_3ST_6ch_modes),
11859 .channel_mode = alc662_3ST_6ch_modes,
11861 .input_mux = &alc662_capture_source,
11863 [ALC662_3ST_6ch] = {
11864 .mixers = { alc662_3ST_6ch_mixer, alc662_chmode_mixer },
11865 .init_verbs = { alc662_init_verbs },
11866 .num_dacs = ARRAY_SIZE(alc662_dac_nids),
11867 .dac_nids = alc662_dac_nids,
11868 .num_adc_nids = ARRAY_SIZE(alc662_adc_nids),
11869 .adc_nids = alc662_adc_nids,
11870 .num_channel_mode = ARRAY_SIZE(alc662_3ST_6ch_modes),
11871 .channel_mode = alc662_3ST_6ch_modes,
11873 .input_mux = &alc662_capture_source,
11875 [ALC662_5ST_DIG] = {
11876 .mixers = { alc662_base_mixer, alc662_chmode_mixer },
11877 .init_verbs = { alc662_init_verbs },
11878 .num_dacs = ARRAY_SIZE(alc662_dac_nids),
11879 .dac_nids = alc662_dac_nids,
11880 .dig_out_nid = ALC662_DIGOUT_NID,
11881 .num_adc_nids = ARRAY_SIZE(alc662_adc_nids),
11882 .adc_nids = alc662_adc_nids,
11883 .dig_in_nid = ALC662_DIGIN_NID,
11884 .num_channel_mode = ARRAY_SIZE(alc662_5stack_modes),
11885 .channel_mode = alc662_5stack_modes,
11886 .input_mux = &alc662_capture_source,
11888 [ALC662_LENOVO_101E] = {
11889 .mixers = { alc662_lenovo_101e_mixer },
11890 .init_verbs = { alc662_init_verbs, alc662_sue_init_verbs },
11891 .num_dacs = ARRAY_SIZE(alc662_dac_nids),
11892 .dac_nids = alc662_dac_nids,
11893 .num_adc_nids = ARRAY_SIZE(alc662_adc_nids),
11894 .adc_nids = alc662_adc_nids,
11895 .num_channel_mode = ARRAY_SIZE(alc662_3ST_2ch_modes),
11896 .channel_mode = alc662_3ST_2ch_modes,
11897 .input_mux = &alc662_lenovo_101e_capture_source,
11898 .unsol_event = alc662_lenovo_101e_unsol_event,
11899 .init_hook = alc662_lenovo_101e_all_automute,
11906 * BIOS auto configuration
11909 /* add playback controls from the parsed DAC table */
11910 static int alc662_auto_create_multi_out_ctls(struct alc_spec *spec,
11911 const struct auto_pin_cfg *cfg)
11914 static const char *chname[4] = {
11915 "Front", "Surround", NULL /*CLFE*/, "Side"
11920 for (i = 0; i < cfg->line_outs; i++) {
11921 if (!spec->multiout.dac_nids[i])
11923 nid = alc880_idx_to_mixer(i);
11926 err = add_control(spec, ALC_CTL_WIDGET_VOL,
11927 "Center Playback Volume",
11928 HDA_COMPOSE_AMP_VAL(nid, 1, 0,
11932 err = add_control(spec, ALC_CTL_WIDGET_VOL,
11933 "LFE Playback Volume",
11934 HDA_COMPOSE_AMP_VAL(nid, 2, 0,
11938 err = add_control(spec, ALC_CTL_BIND_MUTE,
11939 "Center Playback Switch",
11940 HDA_COMPOSE_AMP_VAL(nid, 1, 2,
11944 err = add_control(spec, ALC_CTL_BIND_MUTE,
11945 "LFE Playback Switch",
11946 HDA_COMPOSE_AMP_VAL(nid, 2, 2,
11951 sprintf(name, "%s Playback Volume", chname[i]);
11952 err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
11953 HDA_COMPOSE_AMP_VAL(nid, 3, 0,
11957 sprintf(name, "%s Playback Switch", chname[i]);
11958 err = add_control(spec, ALC_CTL_BIND_MUTE, name,
11959 HDA_COMPOSE_AMP_VAL(nid, 3, 2,
11968 /* add playback controls for speaker and HP outputs */
11969 static int alc662_auto_create_extra_out(struct alc_spec *spec, hda_nid_t pin,
11979 if (alc880_is_fixed_pin(pin)) {
11980 nid = alc880_idx_to_dac(alc880_fixed_pin_idx(pin));
11981 /* printk("DAC nid=%x\n",nid); */
11982 /* specify the DAC as the extra output */
11983 if (!spec->multiout.hp_nid)
11984 spec->multiout.hp_nid = nid;
11986 spec->multiout.extra_out_nid[0] = nid;
11987 /* control HP volume/switch on the output mixer amp */
11988 nid = alc880_idx_to_dac(alc880_fixed_pin_idx(pin));
11989 sprintf(name, "%s Playback Volume", pfx);
11990 err = add_control(spec, ALC_CTL_WIDGET_VOL, name,
11991 HDA_COMPOSE_AMP_VAL(nid, 3, 0, HDA_OUTPUT));
11994 sprintf(name, "%s Playback Switch", pfx);
11995 err = add_control(spec, ALC_CTL_BIND_MUTE, name,
11996 HDA_COMPOSE_AMP_VAL(nid, 3, 2, HDA_INPUT));
11999 } else if (alc880_is_multi_pin(pin)) {
12000 /* set manual connection */
12001 /* we have only a switch on HP-out PIN */
12002 sprintf(name, "%s Playback Switch", pfx);
12003 err = add_control(spec, ALC_CTL_WIDGET_MUTE, name,
12004 HDA_COMPOSE_AMP_VAL(pin, 3, 0, HDA_OUTPUT));
12011 /* create playback/capture controls for input pins */
12012 static int alc662_auto_create_analog_input_ctls(struct alc_spec *spec,
12013 const struct auto_pin_cfg *cfg)
12015 struct hda_input_mux *imux = &spec->private_imux;
12018 for (i = 0; i < AUTO_PIN_LAST; i++) {
12019 if (alc880_is_input_pin(cfg->input_pins[i])) {
12020 idx = alc880_input_pin_idx(cfg->input_pins[i]);
12021 err = new_analog_input(spec, cfg->input_pins[i],
12022 auto_pin_cfg_labels[i],
12026 imux->items[imux->num_items].label =
12027 auto_pin_cfg_labels[i];
12028 imux->items[imux->num_items].index =
12029 alc880_input_pin_idx(cfg->input_pins[i]);
12036 static void alc662_auto_set_output_and_unmute(struct hda_codec *codec,
12037 hda_nid_t nid, int pin_type,
12040 /* set as output */
12041 snd_hda_codec_write(codec, nid, 0,
12042 AC_VERB_SET_PIN_WIDGET_CONTROL, pin_type);
12043 snd_hda_codec_write(codec, nid, 0,
12044 AC_VERB_SET_AMP_GAIN_MUTE, AMP_OUT_UNMUTE);
12045 /* need the manual connection? */
12046 if (alc880_is_multi_pin(nid)) {
12047 struct alc_spec *spec = codec->spec;
12048 int idx = alc880_multi_pin_idx(nid);
12049 snd_hda_codec_write(codec, alc880_idx_to_selector(idx), 0,
12050 AC_VERB_SET_CONNECT_SEL,
12051 alc880_dac_to_idx(spec->multiout.dac_nids[dac_idx]));
12055 static void alc662_auto_init_multi_out(struct hda_codec *codec)
12057 struct alc_spec *spec = codec->spec;
12060 for (i = 0; i <= HDA_SIDE; i++) {
12061 hda_nid_t nid = spec->autocfg.line_out_pins[i];
12062 int pin_type = get_pin_type(spec->autocfg.line_out_type);
12064 alc662_auto_set_output_and_unmute(codec, nid, pin_type,
12069 static void alc662_auto_init_hp_out(struct hda_codec *codec)
12071 struct alc_spec *spec = codec->spec;
12074 pin = spec->autocfg.hp_pins[0];
12075 if (pin) /* connect to front */
12077 alc662_auto_set_output_and_unmute(codec, pin, PIN_HP, 0);
12080 #define alc662_is_input_pin(nid) alc880_is_input_pin(nid)
12081 #define ALC662_PIN_CD_NID ALC880_PIN_CD_NID
12083 static void alc662_auto_init_analog_input(struct hda_codec *codec)
12085 struct alc_spec *spec = codec->spec;
12088 for (i = 0; i < AUTO_PIN_LAST; i++) {
12089 hda_nid_t nid = spec->autocfg.input_pins[i];
12090 if (alc662_is_input_pin(nid)) {
12091 snd_hda_codec_write(codec, nid, 0,
12092 AC_VERB_SET_PIN_WIDGET_CONTROL,
12093 (i <= AUTO_PIN_FRONT_MIC ?
12094 PIN_VREF80 : PIN_IN));
12095 if (nid != ALC662_PIN_CD_NID)
12096 snd_hda_codec_write(codec, nid, 0,
12097 AC_VERB_SET_AMP_GAIN_MUTE,
12103 static int alc662_parse_auto_config(struct hda_codec *codec)
12105 struct alc_spec *spec = codec->spec;
12107 static hda_nid_t alc662_ignore[] = { 0x1d, 0 };
12109 err = snd_hda_parse_pin_def_config(codec, &spec->autocfg,
12113 if (!spec->autocfg.line_outs)
12114 return 0; /* can't find valid BIOS pin config */
12116 err = alc880_auto_fill_dac_nids(spec, &spec->autocfg);
12119 err = alc662_auto_create_multi_out_ctls(spec, &spec->autocfg);
12122 err = alc662_auto_create_extra_out(spec,
12123 spec->autocfg.speaker_pins[0],
12127 err = alc662_auto_create_extra_out(spec, spec->autocfg.hp_pins[0],
12131 err = alc662_auto_create_analog_input_ctls(spec, &spec->autocfg);
12135 spec->multiout.max_channels = spec->multiout.num_dacs * 2;
12137 if (spec->autocfg.dig_out_pin)
12138 spec->multiout.dig_out_nid = ALC880_DIGOUT_NID;
12140 if (spec->kctl_alloc)
12141 spec->mixers[spec->num_mixers++] = spec->kctl_alloc;
12143 spec->num_mux_defs = 1;
12144 spec->input_mux = &spec->private_imux;
12146 spec->init_verbs[spec->num_init_verbs++] = alc662_auto_init_verbs;
12147 spec->mixers[spec->num_mixers] = alc662_capture_mixer;
12148 spec->num_mixers++;
12152 /* additional initialization for auto-configuration model */
12153 static void alc662_auto_init(struct hda_codec *codec)
12155 alc662_auto_init_multi_out(codec);
12156 alc662_auto_init_hp_out(codec);
12157 alc662_auto_init_analog_input(codec);
12160 static int patch_alc662(struct hda_codec *codec)
12162 struct alc_spec *spec;
12163 int err, board_config;
12165 spec = kzalloc(sizeof(*spec), GFP_KERNEL);
12169 codec->spec = spec;
12171 board_config = snd_hda_check_board_config(codec, ALC662_MODEL_LAST,
12174 if (board_config < 0) {
12175 printk(KERN_INFO "hda_codec: Unknown model for ALC662, "
12176 "trying auto-probe from BIOS...\n");
12177 board_config = ALC662_AUTO;
12180 if (board_config == ALC662_AUTO) {
12181 /* automatic parse from the BIOS config */
12182 err = alc662_parse_auto_config(codec);
12188 "hda_codec: Cannot set up configuration "
12189 "from BIOS. Using base mode...\n");
12190 board_config = ALC662_3ST_2ch_DIG;
12194 if (board_config != ALC662_AUTO)
12195 setup_preset(spec, &alc662_presets[board_config]);
12197 spec->stream_name_analog = "ALC662 Analog";
12198 spec->stream_analog_playback = &alc662_pcm_analog_playback;
12199 spec->stream_analog_capture = &alc662_pcm_analog_capture;
12201 spec->stream_name_digital = "ALC662 Digital";
12202 spec->stream_digital_playback = &alc662_pcm_digital_playback;
12203 spec->stream_digital_capture = &alc662_pcm_digital_capture;
12205 if (!spec->adc_nids && spec->input_mux) {
12206 spec->adc_nids = alc662_adc_nids;
12207 spec->num_adc_nids = ARRAY_SIZE(alc662_adc_nids);
12210 codec->patch_ops = alc_patch_ops;
12211 if (board_config == ALC662_AUTO)
12212 spec->init_hook = alc662_auto_init;
12213 #ifdef CONFIG_SND_HDA_POWER_SAVE
12214 if (!spec->loopback.amplist)
12215 spec->loopback.amplist = alc662_loopbacks;
12224 struct hda_codec_preset snd_hda_preset_realtek[] = {
12225 { .id = 0x10ec0260, .name = "ALC260", .patch = patch_alc260 },
12226 { .id = 0x10ec0262, .name = "ALC262", .patch = patch_alc262 },
12227 { .id = 0x10ec0268, .name = "ALC268", .patch = patch_alc268 },
12228 { .id = 0x10ec0861, .rev = 0x100340, .name = "ALC660",
12229 .patch = patch_alc861 },
12230 { .id = 0x10ec0660, .name = "ALC660-VD", .patch = patch_alc861vd },
12231 { .id = 0x10ec0861, .name = "ALC861", .patch = patch_alc861 },
12232 { .id = 0x10ec0862, .name = "ALC861-VD", .patch = patch_alc861vd },
12233 { .id = 0x10ec0662, .rev = 0x100002, .name = "ALC662 rev2",
12234 .patch = patch_alc883 },
12235 { .id = 0x10ec0662, .rev = 0x100101, .name = "ALC662 rev1",
12236 .patch = patch_alc662 },
12237 { .id = 0x10ec0880, .name = "ALC880", .patch = patch_alc880 },
12238 { .id = 0x10ec0882, .name = "ALC882", .patch = patch_alc882 },
12239 { .id = 0x10ec0883, .name = "ALC883", .patch = patch_alc883 },
12240 { .id = 0x10ec0885, .name = "ALC885", .patch = patch_alc882 },
12241 { .id = 0x10ec0888, .name = "ALC888", .patch = patch_alc883 },
12242 {} /* terminator */